From 8978ef0b8df8de43b79792d7ee4831e01ec7e4a2 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 12 Oct 2021 08:27:52 -0700 Subject: [PATCH 001/132] GO111MODULE=off for machiattobin Signed-off-by: Ronald G. Minnich --- mainboards/marvel/macchiatobin/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mainboards/marvel/macchiatobin/Makefile b/mainboards/marvel/macchiatobin/Makefile index 60d75da4..724bf872 100644 --- a/mainboards/marvel/macchiatobin/Makefile +++ b/mainboards/marvel/macchiatobin/Makefile @@ -40,7 +40,7 @@ TOOLCHAIN?=aarch64-linux-gnu- default: flash-image.bin u-root: - go install github.com/u-root/u-root + GO111MODULE=off go install github.com/u-root/u-root @echo Make sure $(GOPATH)/bin is in your PATH @echo if GOPATH is empty, then put ~/go/bin in your PATH @@ -87,7 +87,7 @@ flashinitramfs.cpio.xz: flashinitramfs.cpio xz --check=crc32 -f -k $< flashinitramfs.cpio: u-root Makefile - GOARCH=arm64 u-root -o $@ -build=bb \ + GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ -uinitcmd=/bbin/pxeboot \ github.com/u-root/u-root/cmds/boot/pxeboot \ github.com/u-root/u-root/cmds/core/cat \ @@ -103,7 +103,7 @@ flashinitramfs.cpio: u-root Makefile # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line cpu.cpio.xz: u-root Makefile - GOARCH=arm64 u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + GO111MODULE=off GOARCH=arm64 u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ -defaultsh="" \ github.com/u-root/cpu/cmds/cpud xz --check=crc32 -f -k cpu.cpio @@ -113,7 +113,7 @@ cpu.cpio.xz: u-root Makefile # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line sshd.cpio.xz: u-root Makefile - GOARCH=arm64 u-root -o sshd.cpio -build=bb \ + GO111MODULE=off GOARCH=arm64 u-root -o sshd.cpio -build=bb \ -uinitcmd=/bbin/sshd \ -files ../../class_key.pub:authorized_keys \ -files ../../classhostkey:id_rsa \ @@ -147,8 +147,8 @@ getkernel: git clone --depth=1 -b v5.6 --single-branch https://github.com/torvalds/linux geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... + GO111MODULE=off go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/cpu/... # Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom sshd-pxeserver: From 4872f8ae8dba41777e43886b17ccf31469bc7e28 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 15 Oct 2021 10:25:12 -0700 Subject: [PATCH 002/132] Add the solidrun honeycomb Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 83 + .../solidrun/honeycomblx2k/config-5.4.47 | 8664 +++++++++++++++++ 2 files changed, 8747 insertions(+) create mode 100644 mainboards/solidrun/honeycomblx2k/Makefile create mode 100644 mainboards/solidrun/honeycomblx2k/config-5.4.47 diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile new file mode 100644 index 00000000..177f79cb --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -0,0 +1,83 @@ +# This is the makefile for a flash image, a netbootable sshd image, +# and a netbootable cpu image. +# +# sshdkernel produces a kernel with a built-in initramfs for netboot +# It provides (and starts) an sshd, and also has flashrom. +# Hence you can ssh to a node, flashrom -r on it, scp the +# image back, process it, scp the new image to the node, and +# write with flashrom. +# e.g. +# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal +# scp -i ../../class_key -P 2022 board:/image.bin image.bin +# make tiny.bin +# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin +# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal +# +# The cpu image uses a cpud as its init, and you +# can cpu to it to run commands, including flashrom -p internal +# to flash the flash image. +# e.g. +# cpu board flashrom -r image.bin -p internal +# Note this writes image image.bin to the host directoy; no scp needed +# make tiny.bin +# cpu board flashrom -w tiny.bin -p internal +# cpu is way more convenient than ssh/scp if you can learn it. +# you can also just +# cpu board +# and once you are in: +# flashrom -r image.bin -p internal +# make tiny.bin +# flashrom -w tiny.bin -p internal +# NOTE: those commands are running on the board, and they all work +# +# You can test the flash image kernel with qemu +# make flashtest + + +default: netboot.bin + +u-root: + GO111MODULE=off go install github.com/u-root/u-root + @echo Make sure $(GOPATH)/bin is in your PATH + @echo if GOPATH is empty, then put ~/go/bin in your PATH + +usefultargets: + echo fetch, uroot, netboot.bin + +flashinitramfs.cpio: u-root Makefile + GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ + -uinitcmd=/bbin/pxeboot \ + github.com/u-root/u-root/cmds/boot/pxeboot \ + core \ + +netbootkernel: config-5.4.47 flashinitramfs.cpio + cp $< linux/.config + (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + +# These stanzas fetch code. +fetch: getkernel geturoot + +getkernel: + rm -rf linux + git clone --depth=1 -b solidrun-honeycomb --single-branch https://github.com/linuxboot/linux + +geturoot: + GO111MODULE=off go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/cpu/... + +# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom +sshd-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) + +apt: + sudo apt install gcc-aarch64-linux-gnu + +# Serve the combined cpu-kernel and cpu-initramfs image. +cpu-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 new file mode 100644 index 00000000..7dc662e1 --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -0,0 +1,8664 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm64 5.4.47 Kernel Configuration +# + +# +# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.4-2019.02) 7.4.1 20181213 [linaro-7.4-2019.02 revision 56ec6f6b99cc167ff0c2f8e1a2eed33b1edc85d4] +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70401 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_SCHED_AVG_IRQ=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_SWAP_ENABLED=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +# CONFIG_CFS_BANDWIDTH is not set +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_DEBUG is not set +# CONFIG_NAMESPACES is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_PROFILING=y +# end of General setup + +CONFIG_ARM64=y +CONFIG_64BIT=y +CONFIG_MMU=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_CONT_SHIFT=4 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_SMP=y +CONFIG_KERNEL_MODE_NEON=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_PROC_KCORE_TEXT=y + +# +# Platform selection +# +# CONFIG_ARCH_ACTIONS is not set +CONFIG_ARCH_AGILEX=y +CONFIG_ARCH_SUNXI=y +CONFIG_ARCH_ALPINE=y +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +# CONFIG_ARCH_BITMAIN is not set +CONFIG_ARCH_BRCMSTB=y +CONFIG_ARCH_EXYNOS=y +CONFIG_ARCH_K3=y +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y +CONFIG_ARCH_HISI=y +CONFIG_ARCH_MEDIATEK=y +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_MXC=y +CONFIG_HAVE_IMX_BUSFREQ=y +CONFIG_ARCH_QCOM=y +# CONFIG_ARCH_REALTEK is not set +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_ROCKCHIP=y +CONFIG_ARCH_S32=y + +# +# S32 SOC selection +# +CONFIG_SOC_S32V234=y +# end of S32 SOC selection + +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_STRATIX10=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA=y +CONFIG_ARCH_SPRD=y +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +CONFIG_ARCH_UNIPHIER=y +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_XGENE=y +CONFIG_ARCH_ZX=y +CONFIG_ARCH_ZYNQMP=y +# end of Platform selection + +# +# Kernel Features +# + +# +# ARM errata workarounds via the alternatives framework +# +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_FUJITSU_ERRATUM_010001=y +# end of ARM errata workarounds via the alternatives framework + +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_16K_PAGES is not set +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PA_BITS=48 +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_SCHED_MC=y +# CONFIG_SCHED_SMT is not set +CONFIG_NR_CPUS=16 +CONFIG_HOTPLUG_CPU=y +CONFIG_NUMA=y +CONFIG_NODES_SHIFT=2 +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_HOLES_IN_ZONE=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_SECCOMP=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_KEXEC=y +# CONFIG_KEXEC_FILE is not set +CONFIG_CRASH_DUMP=y +CONFIG_XEN_DOM0=y +CONFIG_XEN=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_HARDEN_EL2_VECTORS=y +CONFIG_ARM64_SSBD=y +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_COMPAT=y +CONFIG_KUSER_HELPERS=y +# CONFIG_ARMV8_DEPRECATED is not set + +# +# ARMv8.1 architectural features +# +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_VHE=y +# end of ARMv8.1 architectural features + +# +# ARMv8.2 architectural features +# +CONFIG_ARM64_UAO=y +# CONFIG_ARM64_PMEM is not set +CONFIG_ARM64_RAS_EXTN=y +CONFIG_ARM64_CNP=y +# end of ARMv8.2 architectural features + +# +# ARMv8.3 architectural features +# +CONFIG_ARM64_PTR_AUTH=y +# end of ARMv8.3 architectural features + +CONFIG_ARM64_SVE=y +CONFIG_ARM64_MODULE_PLTS=y +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +# end of Kernel Features + +# +# Boot options +# +# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set +CONFIG_CMDLINE="" +# CONFIG_CMDLINE_FORCE is not set +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +CONFIG_SYSVIPC_COMPAT=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +CONFIG_PM_TEST_SUSPEND=y +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +CONFIG_DT_IDLE_STATES=y + +# +# ARM CPU Idle Drivers +# +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE=y +# end of ARM CPU Idle Drivers +# end of CPU Idle + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ACPI_CPPC_CPUFREQ=m +# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set +CONFIG_ARM_ARMADA_37XX_CPUFREQ=y +# CONFIG_ARM_ARMADA_8K_CPUFREQ is not set +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=y +CONFIG_ARM_IMX_CPUFREQ_DT=y +# CONFIG_ARM_IMX7ULP_CPUFREQ is not set +# CONFIG_ARM_MEDIATEK_CPUFREQ is not set +# CONFIG_ARM_QCOM_CPUFREQ_NVMEM is not set +# CONFIG_ARM_QCOM_CPUFREQ_HW is not set +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=y +CONFIG_ARM_TEGRA124_CPUFREQ=y +CONFIG_ARM_TEGRA186_CPUFREQ=y +CONFIG_QORIQ_CPUFREQ=y +# end of CPU Frequency scaling +# end of CPU Power Management + +# +# Firmware Drivers +# +# CONFIG_ARM_SCMI_PROTOCOL is not set +CONFIG_ARM_SCPI_PROTOCOL=y +CONFIG_ARM_SCPI_POWER_DOMAIN=y +# CONFIG_ARM_SDE_INTERFACE is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_ISCSI_IBFT is not set +CONFIG_RASPBERRYPI_FIRMWARE=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_INTEL_STRATIX10_SERVICE=y +# CONFIG_INTEL_STRATIX10_RSU is not set +CONFIG_QCOM_SCM=y +CONFIG_QCOM_SCM_64=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_TI_SCI_PROTOCOL=y +# CONFIG_TURRIS_MOX_RWTM is not set +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PSCI_CHECKER is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_ARMSTUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_CAPSULE_LOADER=y +# CONFIG_EFI_TEST is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_EFI_EARLYCON=y +CONFIG_IMX_DSP=y +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +CONFIG_MESON_SM=y + +# +# Tegra firmware driver +# +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_BPMP=y +# end of Tegra firmware driver + +# +# Zynq MPSoC Firmware Drivers +# +CONFIG_ZYNQMP_FIRMWARE=y +# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set +# end of Zynq MPSoC Firmware Drivers +# end of Firmware Drivers + +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_CCA_REQUIRED=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_IPMI is not set +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +# CONFIG_ACPI_HMAT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_EINJ=y +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_IORT=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_PPTT=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=y +CONFIG_KVM_ARM_HOST=y +CONFIG_KVM_ARM_PMU=y +CONFIG_KVM_INDIRECT_VECTORS=y +CONFIG_VHOST_NET=y +CONFIG_VHOST=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_ARM64_CRYPTO=y +CONFIG_CRYPTO_SHA256_ARM64=y +CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA1_ARM64_CE=y +CONFIG_CRYPTO_SHA2_ARM64_CE=y +CONFIG_CRYPTO_SHA512_ARM64_CE=m +CONFIG_CRYPTO_SHA3_ARM64=m +CONFIG_CRYPTO_SM3_ARM64_CE=m +# CONFIG_CRYPTO_SM4_ARM64_CE is not set +CONFIG_CRYPTO_GHASH_ARM64_CE=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64=y +CONFIG_CRYPTO_AES_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_AES_ARM64_CE_BLK=y +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m +CONFIG_CRYPTO_CHACHA20_NEON=m +# CONFIG_CRYPTO_NHPOLY1305_NEON is not set +CONFIG_CRYPTO_AES_ARM64_BS=m + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +# CONFIG_KPROBES is not set +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_64BIT_TIME=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_REFCOUNT_FULL=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_RELR=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODVERSIONS=y +CONFIG_ASM_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +# CONFIG_BLK_DEV_ZONED is not set +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_CGROUP_IOLATENCY is not set +# CONFIG_BLK_CGROUP_IOCOST is not set +CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLOCK_COMPAT=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_AREAS=7 +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_HMM_MIRROR=y +CONFIG_FRAME_VECTOR=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_UNIX_DIAG=y +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +CONFIG_NET_KEY=y +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_IP_MROUTE is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +CONFIG_NET_UDP_TUNNEL=m +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +CONFIG_INET_ESP=y +# CONFIG_INET_ESP_OFFLOAD is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_ILA is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=y +CONFIG_NETFILTER_FAMILY_BRIDGE=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +CONFIG_NF_CONNTRACK=y +CONFIG_NF_LOG_COMMON=y +# CONFIG_NF_LOG_NETDEV is not set +CONFIG_NF_CONNTRACK_MARK=y +# CONFIG_NF_CONNTRACK_ZONES is not set +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +# CONFIG_NF_CONNTRACK_TIMEOUT is not set +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +# CONFIG_NF_CONNTRACK_LABELS is not set +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +# CONFIG_NF_CONNTRACK_AMANDA is not set +# CONFIG_NF_CONNTRACK_FTP is not set +# CONFIG_NF_CONNTRACK_H323 is not set +# CONFIG_NF_CONNTRACK_IRC is not set +# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set +# CONFIG_NF_CONNTRACK_SNMP is not set +# CONFIG_NF_CONNTRACK_PPTP is not set +# CONFIG_NF_CONNTRACK_SANE is not set +# CONFIG_NF_CONNTRACK_SIP is not set +# CONFIG_NF_CONNTRACK_TFTP is not set +# CONFIG_NF_CT_NETLINK is not set +CONFIG_NF_NAT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NF_TABLES=y +# CONFIG_NF_TABLES_SET is not set +# CONFIG_NF_TABLES_INET is not set +# CONFIG_NF_TABLES_NETDEV is not set +# CONFIG_NFT_NUMGEN is not set +CONFIG_NFT_CT=y +# CONFIG_NFT_COUNTER is not set +# CONFIG_NFT_CONNLIMIT is not set +# CONFIG_NFT_LOG is not set +# CONFIG_NFT_LIMIT is not set +CONFIG_NFT_MASQ=y +# CONFIG_NFT_REDIR is not set +CONFIG_NFT_NAT=y +# CONFIG_NFT_TUNNEL is not set +# CONFIG_NFT_OBJREF is not set +# CONFIG_NFT_QUOTA is not set +# CONFIG_NFT_REJECT is not set +CONFIG_NFT_COMPAT=y +# CONFIG_NFT_HASH is not set +# CONFIG_NFT_XFRM is not set +# CONFIG_NFT_SOCKET is not set +# CONFIG_NFT_OSF is not set +# CONFIG_NFT_TPROXY is not set +# CONFIG_NFT_SYNPROXY is not set +# CONFIG_NF_FLOW_TABLE is not set +CONFIG_NETFILTER_XTABLES=y + +# +# Xtables combined modules +# +# CONFIG_NETFILTER_XT_MARK is not set +CONFIG_NETFILTER_XT_CONNMARK=y + +# +# Xtables targets +# +# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set +CONFIG_NETFILTER_XT_TARGET_CONNMARK=y +# CONFIG_NETFILTER_XT_TARGET_DSCP is not set +# CONFIG_NETFILTER_XT_TARGET_HL is not set +# CONFIG_NETFILTER_XT_TARGET_HMARK is not set +# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set +CONFIG_NETFILTER_XT_TARGET_LOG=m +# CONFIG_NETFILTER_XT_TARGET_MARK is not set +CONFIG_NETFILTER_XT_NAT=y +# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set +# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set +# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set +# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set +# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y +# CONFIG_NETFILTER_XT_TARGET_TEE is not set +# CONFIG_NETFILTER_XT_TARGET_TPROXY is not set +# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set +# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +# CONFIG_NETFILTER_XT_MATCH_BPF is not set +# CONFIG_NETFILTER_XT_MATCH_CGROUP is not set +# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set +CONFIG_NETFILTER_XT_MATCH_COMMENT=y +# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set +# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set +# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set +# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +# CONFIG_NETFILTER_XT_MATCH_CPU is not set +# CONFIG_NETFILTER_XT_MATCH_DCCP is not set +# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set +# CONFIG_NETFILTER_XT_MATCH_DSCP is not set +# CONFIG_NETFILTER_XT_MATCH_ECN is not set +# CONFIG_NETFILTER_XT_MATCH_ESP is not set +# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set +# CONFIG_NETFILTER_XT_MATCH_HELPER is not set +# CONFIG_NETFILTER_XT_MATCH_HL is not set +# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set +# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set +# CONFIG_NETFILTER_XT_MATCH_L2TP is not set +# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set +# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set +# CONFIG_NETFILTER_XT_MATCH_MAC is not set +# CONFIG_NETFILTER_XT_MATCH_MARK is not set +# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set +# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set +# CONFIG_NETFILTER_XT_MATCH_OSF is not set +# CONFIG_NETFILTER_XT_MATCH_OWNER is not set +# CONFIG_NETFILTER_XT_MATCH_POLICY is not set +# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set +# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set +# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set +# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set +# CONFIG_NETFILTER_XT_MATCH_REALM is not set +# CONFIG_NETFILTER_XT_MATCH_RECENT is not set +# CONFIG_NETFILTER_XT_MATCH_SCTP is not set +# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set +# CONFIG_NETFILTER_XT_MATCH_STATE is not set +# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set +# CONFIG_NETFILTER_XT_MATCH_STRING is not set +# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set +# CONFIG_NETFILTER_XT_MATCH_TIME is not set +# CONFIG_NETFILTER_XT_MATCH_U32 is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=y +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +CONFIG_NF_TABLES_IPV4=y +# CONFIG_NFT_DUP_IPV4 is not set +# CONFIG_NFT_FIB_IPV4 is not set +# CONFIG_NF_TABLES_ARP is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_IP_NF_IPTABLES=y +# CONFIG_IP_NF_MATCH_AH is not set +# CONFIG_IP_NF_MATCH_ECN is not set +# CONFIG_IP_NF_MATCH_RPFILTER is not set +# CONFIG_IP_NF_MATCH_TTL is not set +CONFIG_IP_NF_FILTER=y +CONFIG_IP_NF_TARGET_REJECT=m +# CONFIG_IP_NF_TARGET_SYNPROXY is not set +CONFIG_IP_NF_NAT=y +CONFIG_IP_NF_TARGET_MASQUERADE=y +# CONFIG_IP_NF_TARGET_NETMAP is not set +# CONFIG_IP_NF_TARGET_REDIRECT is not set +CONFIG_IP_NF_MANGLE=y +# CONFIG_IP_NF_TARGET_CLUSTERIP is not set +# CONFIG_IP_NF_TARGET_ECN is not set +# CONFIG_IP_NF_TARGET_TTL is not set +# CONFIG_IP_NF_RAW is not set +# CONFIG_IP_NF_SECURITY is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_TABLES_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +CONFIG_NF_REJECT_IPV6=y +CONFIG_NF_LOG_IPV6=y +CONFIG_IP6_NF_IPTABLES=m +# CONFIG_IP6_NF_MATCH_AH is not set +# CONFIG_IP6_NF_MATCH_EUI64 is not set +# CONFIG_IP6_NF_MATCH_FRAG is not set +# CONFIG_IP6_NF_MATCH_OPTS is not set +# CONFIG_IP6_NF_MATCH_HL is not set +# CONFIG_IP6_NF_MATCH_IPV6HEADER is not set +# CONFIG_IP6_NF_MATCH_MH is not set +# CONFIG_IP6_NF_MATCH_RPFILTER is not set +# CONFIG_IP6_NF_MATCH_RT is not set +# CONFIG_IP6_NF_MATCH_SRH is not set +# CONFIG_IP6_NF_TARGET_HL is not set +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +# CONFIG_IP6_NF_TARGET_SYNPROXY is not set +CONFIG_IP6_NF_MANGLE=m +# CONFIG_IP6_NF_RAW is not set +# CONFIG_IP6_NF_SECURITY is not set +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +# CONFIG_IP6_NF_TARGET_NPT is not set +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=y +CONFIG_NF_TABLES_BRIDGE=y +# CONFIG_NFT_BRIDGE_META is not set +# CONFIG_NF_LOG_BRIDGE is not set +# CONFIG_NF_CONNTRACK_BRIDGE is not set +CONFIG_BRIDGE_NF_EBTABLES=y +# CONFIG_BRIDGE_EBT_BROUTE is not set +# CONFIG_BRIDGE_EBT_T_FILTER is not set +CONFIG_BRIDGE_EBT_T_NAT=y +# CONFIG_BRIDGE_EBT_802_3 is not set +# CONFIG_BRIDGE_EBT_AMONG is not set +# CONFIG_BRIDGE_EBT_ARP is not set +# CONFIG_BRIDGE_EBT_IP is not set +# CONFIG_BRIDGE_EBT_IP6 is not set +# CONFIG_BRIDGE_EBT_LIMIT is not set +# CONFIG_BRIDGE_EBT_MARK is not set +# CONFIG_BRIDGE_EBT_PKTTYPE is not set +# CONFIG_BRIDGE_EBT_STP is not set +# CONFIG_BRIDGE_EBT_VLAN is not set +# CONFIG_BRIDGE_EBT_ARPREPLY is not set +CONFIG_BRIDGE_EBT_DNAT=y +# CONFIG_BRIDGE_EBT_MARK_T is not set +# CONFIG_BRIDGE_EBT_REDIRECT is not set +CONFIG_BRIDGE_EBT_SNAT=y +# CONFIG_BRIDGE_EBT_LOG is not set +# CONFIG_BRIDGE_EBT_NFLOG is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +CONFIG_STP=y +CONFIG_GARP=y +CONFIG_MRP=y +CONFIG_BRIDGE=y +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_HAVE_NET_DSA=y +CONFIG_NET_DSA=y +# CONFIG_NET_DSA_TAG_8021Q is not set +# CONFIG_NET_DSA_TAG_BRCM is not set +# CONFIG_NET_DSA_TAG_BRCM_PREPEND is not set +# CONFIG_NET_DSA_TAG_GSWIP is not set +# CONFIG_NET_DSA_TAG_DSA is not set +# CONFIG_NET_DSA_TAG_EDSA is not set +# CONFIG_NET_DSA_TAG_MTK is not set +# CONFIG_NET_DSA_TAG_KSZ is not set +CONFIG_NET_DSA_TAG_OCELOT=y +# CONFIG_NET_DSA_TAG_QCA is not set +# CONFIG_NET_DSA_TAG_LAN9303 is not set +# CONFIG_NET_DSA_TAG_SJA1105 is not set +# CONFIG_NET_DSA_TAG_TRAILER is not set +CONFIG_VLAN_8021Q=y +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +# CONFIG_DECNET is not set +CONFIG_LLC=y +CONFIG_LLC2=y +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +# CONFIG_NET_SCH_CBQ is not set +# CONFIG_NET_SCH_HTB is not set +# CONFIG_NET_SCH_HFSC is not set +# CONFIG_NET_SCH_PRIO is not set +CONFIG_NET_SCH_MULTIQ=y +# CONFIG_NET_SCH_RED is not set +# CONFIG_NET_SCH_SFB is not set +# CONFIG_NET_SCH_SFQ is not set +# CONFIG_NET_SCH_TEQL is not set +# CONFIG_NET_SCH_TBF is not set +# CONFIG_NET_SCH_CBS is not set +# CONFIG_NET_SCH_ETF is not set +# CONFIG_NET_SCH_TAPRIO is not set +# CONFIG_NET_SCH_GRED is not set +# CONFIG_NET_SCH_DSMARK is not set +# CONFIG_NET_SCH_NETEM is not set +# CONFIG_NET_SCH_DRR is not set +CONFIG_NET_SCH_MQPRIO=y +# CONFIG_NET_SCH_SKBPRIO is not set +# CONFIG_NET_SCH_CHOKE is not set +# CONFIG_NET_SCH_QFQ is not set +# CONFIG_NET_SCH_CODEL is not set +# CONFIG_NET_SCH_FQ_CODEL is not set +# CONFIG_NET_SCH_CAKE is not set +# CONFIG_NET_SCH_FQ is not set +# CONFIG_NET_SCH_HHF is not set +# CONFIG_NET_SCH_PIE is not set +# CONFIG_NET_SCH_INGRESS is not set +# CONFIG_NET_SCH_PLUG is not set +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=y +CONFIG_NET_CLS_TCINDEX=y +# CONFIG_NET_CLS_ROUTE4 is not set +# CONFIG_NET_CLS_FW is not set +CONFIG_NET_CLS_U32=y +# CONFIG_CLS_U32_PERF is not set +# CONFIG_CLS_U32_MARK is not set +# CONFIG_NET_CLS_RSVP is not set +# CONFIG_NET_CLS_RSVP6 is not set +# CONFIG_NET_CLS_FLOW is not set +# CONFIG_NET_CLS_CGROUP is not set +# CONFIG_NET_CLS_BPF is not set +CONFIG_NET_CLS_FLOWER=y +# CONFIG_NET_CLS_MATCHALL is not set +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +# CONFIG_NET_EMATCH_CMP is not set +# CONFIG_NET_EMATCH_NBYTE is not set +CONFIG_NET_EMATCH_U32=y +# CONFIG_NET_EMATCH_META is not set +# CONFIG_NET_EMATCH_TEXT is not set +# CONFIG_NET_EMATCH_CANID is not set +# CONFIG_NET_EMATCH_IPT is not set +CONFIG_NET_CLS_ACT=y +# CONFIG_NET_ACT_POLICE is not set +# CONFIG_NET_ACT_GACT is not set +# CONFIG_NET_ACT_MIRRED is not set +# CONFIG_NET_ACT_SAMPLE is not set +# CONFIG_NET_ACT_IPT is not set +# CONFIG_NET_ACT_NAT is not set +CONFIG_NET_ACT_PEDIT=y +# CONFIG_NET_ACT_SIMP is not set +CONFIG_NET_ACT_SKBEDIT=y +# CONFIG_NET_ACT_CSUM is not set +# CONFIG_NET_ACT_MPLS is not set +CONFIG_NET_ACT_VLAN=y +# CONFIG_NET_ACT_BPF is not set +# CONFIG_NET_ACT_CONNMARK is not set +# CONFIG_NET_ACT_CTINFO is not set +CONFIG_NET_ACT_SKBMOD=y +# CONFIG_NET_ACT_IFE is not set +# CONFIG_NET_ACT_TUNNEL_KEY is not set +# CONFIG_NET_ACT_CT is not set +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +# CONFIG_DCB is not set +CONFIG_TSN=y +CONFIG_DNS_RESOLVER=y +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +CONFIG_NET_SWITCHDEV=y +# CONFIG_NET_L3_MASTER_DEV is not set +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_BPF_JIT=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m +# CONFIG_CAN_J1939 is not set + +# +# CAN Device Drivers +# +# CONFIG_CAN_VCAN is not set +# CONFIG_CAN_VXCAN is not set +# CONFIG_CAN_SLCAN is not set +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_FLEXCAN=m +# CONFIG_CAN_GRCAN is not set +# CONFIG_CAN_KVASER_PCIEFD is not set +# CONFIG_CAN_XILINXCAN is not set +# CONFIG_CAN_C_CAN is not set +# CONFIG_CAN_CC770 is not set +# CONFIG_CAN_IFI_CANFD is not set +# CONFIG_CAN_M_CAN is not set +# CONFIG_CAN_PEAK_PCIEFD is not set +# CONFIG_CAN_RCAR is not set +# CONFIG_CAN_RCAR_CANFD is not set +# CONFIG_CAN_SJA1000 is not set +# CONFIG_CAN_SOFTING is not set + +# +# CAN SPI interfaces +# +# CONFIG_CAN_HI311X is not set +# CONFIG_CAN_MCP251X is not set +# end of CAN SPI interfaces + +# +# CAN USB interfaces +# +# CONFIG_CAN_8DEV_USB is not set +# CONFIG_CAN_EMS_USB is not set +# CONFIG_CAN_ESD_USB2 is not set +# CONFIG_CAN_GS_USB is not set +# CONFIG_CAN_KVASER_USB is not set +# CONFIG_CAN_MCBA_USB is not set +# CONFIG_CAN_PEAK_USB is not set +# CONFIG_CAN_UCAN is not set +# end of CAN USB interfaces + +# CONFIG_CAN_DEBUG_DEVICES is not set +# end of CAN Device Drivers + +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +# CONFIG_CFG80211 is not set +CONFIG_LIB80211=y +CONFIG_LIB80211_CRYPT_WEP=y +CONFIG_LIB80211_CRYPT_CCMP=y +CONFIG_LIB80211_CRYPT_TKIP=y +# CONFIG_LIB80211_DEBUG is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_VIRTIO=y +# CONFIG_NET_9P_XEN is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_DEVLINK=y +CONFIG_PAGE_POOL=y +CONFIG_FAILOVER=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_TEGRA_AHB=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +# CONFIG_HOTPLUG_PCI_PCIE is not set +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_ECAM=y +CONFIG_PCI_BRIDGE_EMUL=y +CONFIG_PCI_IOV=y +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# +CONFIG_PCI_AARDVARK=y + +# +# Cadence PCIe controllers support +# +# CONFIG_PCIE_CADENCE_HOST is not set +# end of Cadence PCIe controllers support + +# CONFIG_PCIE_XILINX_NWL is not set +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_TEGRA=y +CONFIG_PCIE_RCAR=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCIE_IPROC=y +CONFIG_PCIE_IPROC_PLATFORM=y +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +# CONFIG_PCIE_MEDIATEK is not set + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_IMX6=y +# CONFIG_PCI_IMX6_COMPLIANCE_TEST is not set +# CONFIG_EP_MODE_IN_EP_RC_SYS is not set +# CONFIG_RC_MODE_IN_EP_RC_SYS is not set +CONFIG_PCI_KEYSTONE=y +CONFIG_PCI_KEYSTONE_HOST=y +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_HISI=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_KIRIN=y +CONFIG_PCIE_HISI_STB=y +# CONFIG_PCI_MESON is not set +CONFIG_PCIE_TEGRA194=m +# CONFIG_PCIE_UNIPHIER is not set +# CONFIG_PCIE_AL is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +CONFIG_PCIE_MOBIVEIL=y +CONFIG_PCIE_MOBIVEIL_HOST=y +# CONFIG_PCIE_MOBIVEIL_PLAT is not set +CONFIG_PCIE_LAYERSCAPE_GEN4=y +# end of Mobiveil PCIe Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPMI=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_BRCMSTB_GISB_ARB=y +# CONFIG_MOXTET is not set +CONFIG_HISILICON_LPC=y +# CONFIG_IMX_WEIM is not set +CONFIG_QCOM_EBI2=y +CONFIG_SIMPLE_PM_BUS=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUNXI_RSB=y +# CONFIG_TEGRA_ACONNECT is not set +# CONFIG_TEGRA_GMI is not set +CONFIG_UNIPHIER_SYSTEM_BUS=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_FSL_MC_BUS=y +CONFIG_FSL_MC_UAPI_SUPPORT=y +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +CONFIG_MTD=y +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_SWAP is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=y +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=y +CONFIG_MTD_CFI_ADV_OPTIONS=y +CONFIG_MTD_CFI_NOSWAP=y +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_GEOMETRY is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_OTP is not set +CONFIG_MTD_CFI_INTELEXT=y +CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_CFI_STAA=y +CONFIG_MTD_CFI_UTIL=y +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +CONFIG_MTD_PHYSMAP=y +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_OF=y +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +CONFIG_MTD_SST25L=y +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +CONFIG_MTD_NAND_CORE=y +# CONFIG_MTD_ONENAND is not set +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_RAW_NAND=y +# CONFIG_MTD_NAND_ECC_SW_BCH is not set + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=y +# CONFIG_MTD_NAND_DENALI_PCI is not set +CONFIG_MTD_NAND_DENALI_DT=y +# CONFIG_MTD_NAND_CAFE is not set +CONFIG_MTD_NAND_MARVELL=y +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_GPMI_NAND=y +CONFIG_MTD_NAND_FSL_IFC=y +# CONFIG_MTD_NAND_MXC is not set +# CONFIG_MTD_NAND_SUNXI is not set +# CONFIG_MTD_NAND_HISI504 is not set +CONFIG_MTD_NAND_QCOM=y +# CONFIG_MTD_NAND_MTK is not set +# CONFIG_MTD_NAND_MXIC is not set +# CONFIG_MTD_NAND_TEGRA is not set +# CONFIG_MTD_NAND_MESON is not set +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_PLATFORM is not set + +# +# Misc +# +# CONFIG_MTD_NAND_NANDSIM is not set +# CONFIG_MTD_NAND_RICOH is not set +# CONFIG_MTD_NAND_DISKONCHIP is not set +# CONFIG_MTD_SPI_NAND is not set + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=y +# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +# CONFIG_SPI_HISI_SFC is not set +# CONFIG_SPI_MTK_QUADSPI is not set +CONFIG_MTD_UBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +# CONFIG_MTD_UBI_BLOCK is not set +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_MDIO=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +CONFIG_OF_NUMA=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +CONFIG_BLK_DEV_NBD=m +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=524288 +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +CONFIG_XEN_BLKDEV_FRONTEND=y +# CONFIG_XEN_BLKDEV_BACKEND is not set +CONFIG_VIRTIO_BLK=y +# CONFIG_VIRTIO_BLK_SCSI is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_QCOM_COINCELL is not set +# CONFIG_QCOM_FASTRPC is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +CONFIG_SENSORS_FXOS8700=y +CONFIG_SENSORS_FXAS2100X=y +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +CONFIG_VEXPRESS_SYSCFG=y +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +CONFIG_EEPROM_AT25=m +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# + +# +# SCIF Bus Driver +# + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +# CONFIG_ISCSI_TCP is not set +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +CONFIG_SCSI_HISI_SAS=y +CONFIG_SCSI_HISI_SAS_PCI=y +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_SMARTPQI is not set +CONFIG_SCSI_UFSHCD=y +# CONFIG_SCSI_UFSHCD_PCI is not set +CONFIG_SCSI_UFSHCD_PLATFORM=y +# CONFIG_SCSI_UFS_CDNS_PLATFORM is not set +# CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set +CONFIG_SCSI_UFS_QCOM=m +# CONFIG_SCSI_UFS_MEDIATEK is not set +CONFIG_SCSI_UFS_HISI=y +# CONFIG_SCSI_UFS_BSG is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_XEN_SCSI_FRONTEND is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_VIRTIO is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_ATA=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_AHCI_BRCM is not set +CONFIG_AHCI_IMX=y +CONFIG_AHCI_CEVA=y +# CONFIG_AHCI_MTK is not set +CONFIG_AHCI_MVEBU=y +# CONFIG_AHCI_SUNXI is not set +# CONFIG_AHCI_TEGRA is not set +CONFIG_AHCI_XGENE=y +CONFIG_AHCI_QORIQ=y +# CONFIG_SATA_AHCI_SEATTLE is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +CONFIG_SATA_SIL24=y +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +# CONFIG_ATA_PIIX is not set +# CONFIG_SATA_DWC is not set +# CONFIG_SATA_MV is not set +# CONFIG_SATA_NV is not set +# CONFIG_SATA_PROMISE is not set +CONFIG_SATA_RCAR=y +# CONFIG_SATA_SIL is not set +# CONFIG_SATA_SIS is not set +# CONFIG_SATA_SVW is not set +# CONFIG_SATA_ULI is not set +# CONFIG_SATA_VIA is not set +# CONFIG_SATA_VITESSE is not set + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IMX is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SCH is not set +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +# CONFIG_PATA_SIS is not set +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +CONFIG_PATA_PLATFORM=y +CONFIG_PATA_OF_PLATFORM=y +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +# CONFIG_ATA_GENERIC is not set +# CONFIG_PATA_LEGACY is not set +CONFIG_MD=y +CONFIG_BLK_DEV_MD=m +# CONFIG_MD_LINEAR is not set +# CONFIG_MD_RAID0 is not set +# CONFIG_MD_RAID1 is not set +# CONFIG_MD_RAID10 is not set +# CONFIG_MD_RAID456 is not set +# CONFIG_MD_MULTIPATH is not set +# CONFIG_MD_FAULTY is not set +# CONFIG_BCACHE is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_UNSTRIPED is not set +# CONFIG_DM_CRYPT is not set +# CONFIG_DM_SNAPSHOT is not set +# CONFIG_DM_THIN_PROVISIONING is not set +# CONFIG_DM_CACHE is not set +# CONFIG_DM_WRITECACHE is not set +# CONFIG_DM_ERA is not set +# CONFIG_DM_CLONE is not set +CONFIG_DM_MIRROR=m +# CONFIG_DM_LOG_USERSPACE is not set +# CONFIG_DM_RAID is not set +CONFIG_DM_ZERO=m +# CONFIG_DM_MULTIPATH is not set +# CONFIG_DM_DELAY is not set +# CONFIG_DM_DUST is not set +# CONFIG_DM_UEVENT is not set +# CONFIG_DM_FLAKEY is not set +# CONFIG_DM_VERITY is not set +# CONFIG_DM_SWITCH is not set +# CONFIG_DM_LOG_WRITES is not set +# CONFIG_DM_INTEGRITY is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_IFB is not set +# CONFIG_NET_TEAM is not set +CONFIG_MACVLAN=y +CONFIG_MACVTAP=y +# CONFIG_IPVLAN is not set +CONFIG_VXLAN=m +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +CONFIG_TUN=y +CONFIG_TAP=y +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=y +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# CONFIG_B53 is not set +# CONFIG_NET_DSA_BCM_SF2 is not set +# CONFIG_NET_DSA_LOOP is not set +# CONFIG_NET_DSA_LANTIQ_GSWIP is not set +# CONFIG_NET_DSA_MT7530 is not set +# CONFIG_NET_DSA_MV88E6060 is not set +# CONFIG_NET_DSA_MICROCHIP_KSZ9477 is not set +# CONFIG_NET_DSA_MICROCHIP_KSZ8795 is not set +# CONFIG_NET_DSA_MV88E6XXX is not set +CONFIG_NET_DSA_MSCC_FELIX=y +CONFIG_MSCC_FELIX_SWITCH_TSN=y +# CONFIG_NET_DSA_SJA1105 is not set +# CONFIG_NET_DSA_QCA8K is not set +# CONFIG_NET_DSA_REALTEK_SMI is not set +# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set +# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set +# CONFIG_NET_DSA_VITESSE_VSC73XX_SPI is not set +# CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM is not set +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +# CONFIG_VORTEX is not set +# CONFIG_TYPHOON is not set +CONFIG_NET_VENDOR_ADAPTEC=y +# CONFIG_ADAPTEC_STARFIRE is not set +CONFIG_NET_VENDOR_AGERE=y +# CONFIG_ET131X is not set +CONFIG_NET_VENDOR_ALACRITECH=y +# CONFIG_SLICOSS is not set +CONFIG_NET_VENDOR_ALLWINNER=y +# CONFIG_SUN4I_EMAC is not set +CONFIG_NET_VENDOR_ALTEON=y +# CONFIG_ACENIC is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +# CONFIG_ENA_ETHERNET is not set +CONFIG_NET_VENDOR_AMD=y +# CONFIG_AMD8111_ETH is not set +# CONFIG_PCNET32 is not set +CONFIG_AMD_XGBE=y +CONFIG_NET_XGENE=y +# CONFIG_NET_XGENE_V2 is not set +CONFIG_NET_VENDOR_AQUANTIA=y +# CONFIG_AQTION is not set +CONFIG_NET_VENDOR_ARC=y +# CONFIG_EMAC_ROCKCHIP is not set +CONFIG_NET_VENDOR_ATHEROS=y +# CONFIG_ATL2 is not set +# CONFIG_ATL1 is not set +# CONFIG_ATL1E is not set +CONFIG_ATL1C=m +# CONFIG_ALX is not set +CONFIG_NET_VENDOR_AURORA=y +# CONFIG_AURORA_NB8800 is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +# CONFIG_TIGON3 is not set +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +CONFIG_NET_VENDOR_BROCADE=y +# CONFIG_BNA is not set +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_MACB=y +CONFIG_MACB_USE_HWSTAMP=y +# CONFIG_MACB_PCI is not set +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_THUNDER_NIC_PF=y +# CONFIG_THUNDER_NIC_VF is not set +CONFIG_THUNDER_NIC_BGX=y +CONFIG_THUNDER_NIC_RGX=y +# CONFIG_CAVIUM_PTP is not set +# CONFIG_LIQUIDIO is not set +# CONFIG_LIQUIDIO_VF is not set +CONFIG_NET_VENDOR_CHELSIO=y +# CONFIG_CHELSIO_T1 is not set +# CONFIG_CHELSIO_T3 is not set +# CONFIG_CHELSIO_T4 is not set +# CONFIG_CHELSIO_T4VF is not set +CONFIG_NET_VENDOR_CISCO=y +# CONFIG_ENIC is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_GEMINI_ETHERNET is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +# CONFIG_NET_TULIP is not set +CONFIG_NET_VENDOR_DLINK=y +# CONFIG_DL2K is not set +# CONFIG_SUNDANCE is not set +CONFIG_NET_VENDOR_EMULEX=y +# CONFIG_BE2NET is not set +CONFIG_NET_VENDOR_EZCHIP=y +# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_FEC=y +# CONFIG_FSL_FMAN is not set +# CONFIG_FSL_PQ_MDIO is not set +CONFIG_FSL_XGMAC_MDIO=y +# CONFIG_GIANFAR is not set + +# +# Frame Manager support +# +CONFIG_FSL_SDK_FMAN=y +# CONFIG_FSL_SDK_FMAN_TEST is not set + +# +# FMAN Processor support +# +CONFIG_FMAN_ARM=y +# CONFIG_FMAN_P3040_P4080_P5020 is not set +# CONFIG_FMAN_P1023 is not set +# CONFIG_FMAN_V3H is not set +# CONFIG_FMAN_V3L is not set +# end of FMAN Processor support + +# CONFIG_FSL_SDK_FMAN_RTC_API is not set +# CONFIG_FMAN_MIB_CNT_OVF_IRQ_EN is not set +CONFIG_FSL_FM_MAX_FRAME_SIZE=1522 +CONFIG_FSL_FM_RX_EXTRA_HEADROOM=64 +# CONFIG_FMAN_PFC is not set +# end of Frame Manager support + +CONFIG_FSL_SDK_DPAA_ETH=y +# CONFIG_FSL_DPAA_HOOKS is not set +# CONFIG_FSL_DPAA_CEETM is not set +CONFIG_FSL_DPAA_OFFLINE_PORTS=y +CONFIG_FSL_DPAA_ADVANCED_DRIVERS=y +# CONFIG_FSL_DPAA_ETH_JUMBO_FRAME is not set +# CONFIG_FSL_DPAA_TS is not set +# CONFIG_FSL_DPAA_1588 is not set +CONFIG_FSL_DPAA_ETH_MAX_BUF_COUNT=128 +CONFIG_FSL_DPAA_ETH_REFILL_THRESHOLD=80 +CONFIG_FSL_DPAA_CS_THRESHOLD_1G=0x06000000 +CONFIG_FSL_DPAA_CS_THRESHOLD_10G=0x10000000 +CONFIG_FSL_DPAA_INGRESS_CS_THRESHOLD=0x10000000 +CONFIG_FSL_DPAA_ETH_DEBUGFS=y +# CONFIG_FSL_DPAA_ETH_DEBUG is not set +# CONFIG_FSL_DPAA_DBG_LOOP is not set +CONFIG_FSL_DPAA2_ETH=y +# CONFIG_FSL_DPAA2_ETH_USE_ERR_QUEUE is not set +# CONFIG_FSL_DPAA2_ETH_CEETM is not set +CONFIG_FSL_DPAA2_PTP_CLOCK=y +CONFIG_FSL_ENETC=y +CONFIG_FSL_ENETC_VF=y +CONFIG_FSL_ENETC_MDIO=y +CONFIG_FSL_ENETC_PTP_CLOCK=y +CONFIG_ENETC_TSN=y +CONFIG_NET_VENDOR_GOOGLE=y +# CONFIG_GVE is not set +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_HIX5HD2_GMAC=y +# CONFIG_HISI_FEMAC is not set +# CONFIG_HIP04_ETH is not set +CONFIG_HNS_MDIO=y +CONFIG_HNS=y +CONFIG_HNS_DSAF=y +CONFIG_HNS_ENET=y +CONFIG_HNS3=y +CONFIG_HNS3_HCLGE=y +# CONFIG_HNS3_HCLGEVF is not set +CONFIG_HNS3_ENET=y +CONFIG_NET_VENDOR_HP=y +# CONFIG_HP100 is not set +CONFIG_NET_VENDOR_HUAWEI=y +# CONFIG_HINIC is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=y +CONFIG_MVNETA=y +CONFIG_MVPP2=y +# CONFIG_PXA168_ETH is not set +# CONFIG_SKGE is not set +CONFIG_SKY2=y +# CONFIG_SKY2_DEBUG is not set +# CONFIG_OCTEONTX2_AF is not set +# CONFIG_NET_VENDOR_MEDIATEK is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX5_CORE=m +# CONFIG_MLX5_FPGA is not set +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_ESWITCH=y +# CONFIG_MLX5_CORE_IPOIB is not set +CONFIG_MLX5_SW_STEERING=y +# CONFIG_MLXSW_CORE is not set +CONFIG_MLXFW=m +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +# CONFIG_KS8851 is not set +# CONFIG_KS8851_MLL is not set +# CONFIG_KSZ884X_PCI is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_ENC28J60 is not set +# CONFIG_ENCX24J600 is not set +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_MSCC_OCELOT_SWITCH=y +# CONFIG_MSCC_OCELOT_SWITCH_OCELOT is not set +CONFIG_NET_VENDOR_MYRI=y +# CONFIG_MYRI10GE is not set +# CONFIG_FEALNX is not set +CONFIG_NET_VENDOR_NATSEMI=y +# CONFIG_NATSEMI is not set +# CONFIG_NS83820 is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +CONFIG_NET_VENDOR_NETRONOME=y +# CONFIG_NFP is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_8390=y +# CONFIG_NE2K_PCI is not set +CONFIG_NET_VENDOR_NVIDIA=y +# CONFIG_FORCEDETH is not set +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +CONFIG_NET_VENDOR_QLOGIC=y +# CONFIG_QLA3XXX is not set +# CONFIG_QLCNIC is not set +# CONFIG_NETXEN_NIC is not set +# CONFIG_QED is not set +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCA7000_SPI is not set +# CONFIG_QCA7000_UART is not set +# CONFIG_QCOM_EMAC is not set +# CONFIG_RMNET is not set +CONFIG_NET_VENDOR_RDC=y +# CONFIG_R6040 is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +# CONFIG_R8169 is not set +CONFIG_NET_VENDOR_RENESAS=y +# CONFIG_SH_ETH is not set +CONFIG_RAVB=y +CONFIG_NET_VENDOR_ROCKER=y +# CONFIG_ROCKER is not set +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SOLARFLARE=y +# CONFIG_SFC is not set +# CONFIG_SFC_FALCON is not set +CONFIG_NET_VENDOR_SILAN=y +# CONFIG_SC92031 is not set +CONFIG_NET_VENDOR_SIS=y +# CONFIG_SIS900 is not set +# CONFIG_SIS190 is not set +CONFIG_NET_VENDOR_SMSC=y +CONFIG_SMC91X=y +# CONFIG_EPIC100 is not set +CONFIG_SMSC911X=y +# CONFIG_SMSC9420 is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_SNI_AVE=y +CONFIG_SNI_NETSEC=y +# CONFIG_NET_VENDOR_STMICRO is not set +CONFIG_NET_VENDOR_SUN=y +# CONFIG_HAPPYMEAL is not set +# CONFIG_SUNGEM is not set +# CONFIG_CASSINI is not set +# CONFIG_NIU is not set +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +CONFIG_NET_VENDOR_TEHUTI=y +# CONFIG_TEHUTI is not set +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +# CONFIG_TLAN is not set +CONFIG_NET_VENDOR_VIA=y +# CONFIG_VIA_RHINE is not set +# CONFIG_VIA_VELOCITY is not set +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_IPROC is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_BUS_MUX_BCM_IPROC=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MMIOREG=y +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y +CONFIG_MDIO_CAVIUM=y +# CONFIG_MDIO_GPIO is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_SUN4I is not set +CONFIG_MDIO_THUNDER=y +CONFIG_MDIO_XGENE=y +CONFIG_PHYLINK=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y + +# +# MII PHY device drivers +# +# CONFIG_SFP is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_AMD_PHY is not set +CONFIG_AQUANTIA_PHY=y +# CONFIG_AX88796B_PHY is not set +CONFIG_AT803X_PHY=y +# CONFIG_AT803X_PHY_SMART_EEE is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +CONFIG_FIXED_PHY=y +# CONFIG_ICPLUS_PHY is not set +CONFIG_INPHI_PHY=y +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_LXT_PHY is not set +CONFIG_MARVELL_PHY=m +CONFIG_MARVELL_10G_PHY=m +CONFIG_MESON_GXL_PHY=m +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=m +# CONFIG_MICROCHIP_T1_PHY is not set +CONFIG_MICROSEMI_PHY=y +# CONFIG_NATIONAL_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +CONFIG_ROCKCHIP_PHY=y +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +CONFIG_VITESSE_PHY=y +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=y +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +CONFIG_USB_NET_DM9601=m +# CONFIG_USB_NET_SR9700 is not set +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +CONFIG_USB_NET_ZAURUS=y +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=y +# CONFIG_HOSTAP_FIRMWARE is not set +# CONFIG_HOSTAP_PLX is not set +# CONFIG_HOSTAP_PCI is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +CONFIG_XEN_NETDEV_FRONTEND=y +# CONFIG_XEN_NETDEV_BACKEND is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +CONFIG_NET_FAILOVER=y +# CONFIG_IVSHMEM_NET is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +CONFIG_INPUT_POLLDEV=y +# CONFIG_INPUT_SPARSEKMAP is not set +CONFIG_INPUT_MATRIXKMAP=y + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=m +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +CONFIG_KEYBOARD_SNVS_PWRKEY=y +CONFIG_KEYBOARD_IMX_SC_PWRKEY=y +# CONFIG_KEYBOARD_IMX is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_TEGRA is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_SUN4I_LRADC is not set +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_KEYBOARD_CROS_EC=y +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +CONFIG_TOUCHSCREEN_CT36X_WLD=y +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ADC is not set +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_ELAN_TS is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_IPROC is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_RASPBERRYPI_FW is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SUN4I is not set +# CONFIG_TOUCHSCREEN_SUR40 is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_TOUCHSCREEN_SYNAPTICS_DSX=y +CONFIG_TOUCHSCREEN_SYNAPTICS_DSX_I2C=m +# CONFIG_TOUCHSCREEN_FTS is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +CONFIG_INPUT_PM8941_PWRKEY=y +# CONFIG_INPUT_PM8XXX_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_AXP20X_PEK is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_RK805_PWRKEY is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +CONFIG_INPUT_HISI_POWERKEY=y +CONFIG_INPUT_MPL3115=y +# CONFIG_SENSOR_FXLS8471 is not set +CONFIG_INPUT_ISL29023=y +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +# CONFIG_SERIO_SERPORT is not set +CONFIG_SERIO_AMBAKMI=y +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +# CONFIG_SERIO_SUN4I_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=16 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +# CONFIG_SERIAL_8250_MANY_PORTS is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_BCM2835AUX=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_OMAP=y +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y +CONFIG_SERIAL_8250_MT6577=y +CONFIG_SERIAL_8250_UNIPHIER=y +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_SAMSUNG=y +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_CONSOLE=y +CONFIG_SERIAL_TEGRA=y +CONFIG_SERIAL_TEGRA_TCU=y +CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_SH_SCI=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=18 +CONFIG_SERIAL_SH_SCI_CONSOLE=y +CONFIG_SERIAL_SH_SCI_EARLYCON=y +CONFIG_SERIAL_SH_SCI_DMA=y +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=y +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_XILINX_PS_UART=y +CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +CONFIG_SERIAL_FSL_LPUART=y +CONFIG_SERIAL_FSL_LPUART_CONSOLE=y +CONFIG_SERIAL_FSL_LINFLEXUART=y +CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +CONFIG_SERIAL_MVEBU_UART=y +CONFIG_SERIAL_MVEBU_CONSOLE=y +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_HVC_DCC is not set +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +# CONFIG_IPMI_SSIF is not set +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_BCM2835=y +CONFIG_HW_RANDOM_IPROC_RNG200=y +CONFIG_HW_RANDOM_OMAP=y +# CONFIG_HW_RANDOM_VIRTIO is not set +CONFIG_HW_RANDOM_IMX_RNGC=y +CONFIG_HW_RANDOM_HISI=y +CONFIG_HW_RANDOM_XGENE=y +CONFIG_HW_RANDOM_MESON=y +CONFIG_HW_RANDOM_CAVIUM=y +CONFIG_HW_RANDOM_MTK=y +CONFIG_HW_RANDOM_EXYNOS=y +CONFIG_HW_RANDOM_OPTEE=y +# CONFIG_APPLICOM is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +# CONFIG_TCG_TIS is not set +# CONFIG_TCG_TIS_SPI is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +CONFIG_TCG_TIS_I2C_INFINEON=y +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_ATMEL is not set +# CONFIG_TCG_INFINEON is not set +# CONFIG_TCG_XEN is not set +# CONFIG_TCG_CRB is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_FTPM_TEE is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +CONFIG_I2C_MUX_PCA954x=y +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_HIX5HD2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=y +CONFIG_I2C_BRCMSTB=y +# CONFIG_I2C_CADENCE is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=y +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_EXYNOS5=y +CONFIG_I2C_GPIO=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_IMX=y +CONFIG_I2C_IMX_LPI2C=y +CONFIG_I2C_MESON=y +# CONFIG_I2C_MT65XX is not set +CONFIG_I2C_MV64XXX=y +# CONFIG_I2C_NOMADIK is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_OMAP is not set +# CONFIG_I2C_PCA_PLATFORM is not set +CONFIG_I2C_PXA=y +# CONFIG_I2C_PXA_SLAVE is not set +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=y +# CONFIG_I2C_RIIC is not set +CONFIG_I2C_RK3X=y +CONFIG_I2C_RPBUS=y +CONFIG_I2C_SH_MOBILE=y +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_SPRD is not set +# CONFIG_I2C_SYNQUACER is not set +CONFIG_I2C_TEGRA=y +CONFIG_I2C_TEGRA_BPMP=y +# CONFIG_I2C_UNIPHIER is not set +CONFIG_I2C_UNIPHIER_F=y +# CONFIG_I2C_VERSATILE is not set +# CONFIG_I2C_THUNDERX is not set +# CONFIG_I2C_XILINX is not set +# CONFIG_I2C_XLP9XX is not set +CONFIG_I2C_RCAR=y + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_CROS_EC_TUNNEL=y +# CONFIG_I2C_XGENE_SLIMPRO is not set +CONFIG_I2C_ZX2967=y +CONFIG_XEN_I2C_FRONTEND=y +# CONFIG_XEN_I2C_BACKEND is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_STUB is not set +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +CONFIG_SPI_ARMADA_3700=y +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM_QSPI=y +CONFIG_SPI_BITBANG=y +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +CONFIG_SPI_FSL_LPSPI=y +CONFIG_SPI_FSL_QUADSPI=y +CONFIG_SPI_NXP_FLEXSPI=y +# CONFIG_SPI_GPIO is not set +CONFIG_SPI_IMX=y +# CONFIG_SPI_FSL_SPI is not set +CONFIG_SPI_FSL_DSPI=y +CONFIG_SPI_MESON_SPICC=m +CONFIG_SPI_MESON_SPIFC=m +# CONFIG_SPI_MT65XX is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_OMAP24XX is not set +CONFIG_SPI_ORION=y +CONFIG_SPI_PL022=y +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=y +# CONFIG_SPI_RSPI is not set +# CONFIG_SPI_QCOM_QSPI is not set +CONFIG_SPI_QUP=y +# CONFIG_SPI_QCOM_GENI is not set +CONFIG_SPI_S3C64XX=y +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SH_MSIOF is not set +# CONFIG_SPI_SH_HSPI is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_SLAVE_MT27XX is not set +# CONFIG_SPI_SPRD is not set +# CONFIG_SPI_SPRD_ADI is not set +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=y +# CONFIG_SPI_SYNQUACER is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_TEGRA114 is not set +# CONFIG_SPI_TEGRA20_SFLASH is not set +# CONFIG_SPI_TEGRA20_SLINK is not set +# CONFIG_SPI_THUNDERX is not set +# CONFIG_SPI_UNIPHIER is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_XLP is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_LOOPBACK_TEST is not set +# CONFIG_SPI_TLE62X0 is not set +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_TIME=y +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y +CONFIG_SPMI=y +CONFIG_SPMI_MSM_PMIC_ARB=y +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_DTE=y +CONFIG_PTP_1588_CLOCK_QORIQ=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AXP209 is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_MAX77620=y +# CONFIG_PINCTRL_RK805 is not set +# CONFIG_PINCTRL_OCELOT is not set +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_IPROC_GPIO=y +CONFIG_PINCTRL_NS2_MUX=y +# CONFIG_PINCTRL_AS370 is not set +# CONFIG_PINCTRL_BERLIN_BG4CT is not set +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX_SCU=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_S32V_CORE=y +CONFIG_PINCTRL_S32V234=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_MSM=y +# CONFIG_PINCTRL_APQ8064 is not set +# CONFIG_PINCTRL_APQ8084 is not set +# CONFIG_PINCTRL_IPQ4019 is not set +# CONFIG_PINCTRL_IPQ8064 is not set +CONFIG_PINCTRL_IPQ8074=y +# CONFIG_PINCTRL_MSM8660 is not set +# CONFIG_PINCTRL_MSM8960 is not set +# CONFIG_PINCTRL_MDM9615 is not set +# CONFIG_PINCTRL_MSM8X74 is not set +CONFIG_PINCTRL_MSM8916=y +CONFIG_PINCTRL_MSM8994=y +CONFIG_PINCTRL_MSM8996=y +CONFIG_PINCTRL_MSM8998=y +CONFIG_PINCTRL_QCS404=y +CONFIG_PINCTRL_QDF2XXX=y +CONFIG_PINCTRL_QCOM_SPMI_PMIC=y +# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set +# CONFIG_PINCTRL_SC7180 is not set +# CONFIG_PINCTRL_SDM660 is not set +CONFIG_PINCTRL_SDM845=y +CONFIG_PINCTRL_SM8150=y +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS_ARM64=y +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_PFC_R8A774A1=y +CONFIG_PINCTRL_PFC_R8A774C0=y +CONFIG_PINCTRL_PFC_R8A7795=y +CONFIG_PINCTRL_PFC_R8A7796=y +CONFIG_PINCTRL_PFC_R8A77965=y +CONFIG_PINCTRL_PFC_R8A77970=y +CONFIG_PINCTRL_PFC_R8A77980=y +CONFIG_PINCTRL_PFC_R8A77990=y +CONFIG_PINCTRL_PFC_R8A77995=y +# CONFIG_PINCTRL_SPRD is not set +CONFIG_PINCTRL_SUNXI=y +# CONFIG_PINCTRL_SUN4I_A10 is not set +# CONFIG_PINCTRL_SUN5I is not set +# CONFIG_PINCTRL_SUN6I_A31 is not set +# CONFIG_PINCTRL_SUN6I_A31_R is not set +# CONFIG_PINCTRL_SUN8I_A23 is not set +# CONFIG_PINCTRL_SUN8I_A33 is not set +# CONFIG_PINCTRL_SUN8I_A83T is not set +# CONFIG_PINCTRL_SUN8I_A83T_R is not set +# CONFIG_PINCTRL_SUN8I_A23_R is not set +# CONFIG_PINCTRL_SUN8I_H3 is not set +CONFIG_PINCTRL_SUN8I_H3_R=y +# CONFIG_PINCTRL_SUN8I_V3S is not set +# CONFIG_PINCTRL_SUN9I_A80 is not set +# CONFIG_PINCTRL_SUN9I_A80_R is not set +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H6_R=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_UNIPHIER=y +# CONFIG_PINCTRL_UNIPHIER_LD4 is not set +# CONFIG_PINCTRL_UNIPHIER_PRO4 is not set +# CONFIG_PINCTRL_UNIPHIER_SLD8 is not set +# CONFIG_PINCTRL_UNIPHIER_PRO5 is not set +# CONFIG_PINCTRL_UNIPHIER_PXS2 is not set +# CONFIG_PINCTRL_UNIPHIER_LD6B is not set +CONFIG_PINCTRL_UNIPHIER_LD11=y +CONFIG_PINCTRL_UNIPHIER_LD20=y +CONFIG_PINCTRL_UNIPHIER_PXS3=y + +# +# MediaTek pinctrl drivers +# +CONFIG_EINT_MTK=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MTK_MOORE=y +CONFIG_PINCTRL_MTK_PARIS=y +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8516=y +# end of MediaTek pinctrl drivers + +# CONFIG_PINCTRL_ZX296718 is not set +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +CONFIG_GPIO_RASPBERRYPI_EXP=y +CONFIG_GPIO_BRCMSTB=y +# CONFIG_GPIO_CADENCE is not set +# CONFIG_GPIO_DAVINCI is not set +CONFIG_GPIO_DWAPB=y +# CONFIG_GPIO_EIC_SPRD is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +CONFIG_GPIO_MB86S7X=y +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_MXC_PAD_WAKEUP=y +CONFIG_GPIO_PL061=y +CONFIG_GPIO_RCAR=y +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SPRD is not set +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +# CONFIG_GPIO_THUNDERX is not set +CONFIG_GPIO_UNIPHIER=y +# CONFIG_GPIO_IMX_RPMSG is not set +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=y +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_XLP is not set +# CONFIG_GPIO_ZYNQ is not set +# CONFIG_GPIO_ZX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +CONFIG_GPIO_MAX732X=y +# CONFIG_GPIO_MAX732X_IRQ is not set +CONFIG_GPIO_PCA953X=y +CONFIG_GPIO_PCA953X_IRQ=y +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# CONFIG_GPIO_BD9571MWV is not set +CONFIG_GPIO_MAX77620=y +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +CONFIG_POWER_AVS=y +CONFIG_ROCKCHIP_IODOMAIN=y +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_BRCMSTB=y +CONFIG_POWER_RESET_GPIO=y +# CONFIG_POWER_RESET_GPIO_RESTART is not set +# CONFIG_POWER_RESET_HISI is not set +CONFIG_POWER_RESET_MSM=y +# CONFIG_POWER_RESET_QCOM_PON is not set +# CONFIG_POWER_RESET_LTC2952 is not set +# CONFIG_POWER_RESET_RESTART is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y +CONFIG_POWER_RESET_SYSCON=y +# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set +# CONFIG_POWER_RESET_ZX is not set +CONFIG_REBOOT_MODE=y +CONFIG_SYSCON_REBOOT_MODE=y +# CONFIG_NVMEM_REBOOT_MODE is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_LEGO_EV3 is not set +CONFIG_BATTERY_SBS=m +# CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set +CONFIG_BATTERY_BQ27XXX=y +CONFIG_BATTERY_BQ27XXX_I2C=y +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +# CONFIG_AXP20X_POWER is not set +# CONFIG_AXP288_FUEL_GAUGE is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_QCOM_SMBB is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_CROS_USBPD is not set +# CONFIG_CHARGER_UCS1002 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +CONFIG_SENSORS_ARM_SCPI=y +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IBMAEM is not set +# CONFIG_SENSORS_IBMPEX is not set +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX17135 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +CONFIG_SENSORS_LM90=y +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +CONFIG_PMBUS=y +CONFIG_SENSORS_PMBUS=y +# CONFIG_SENSORS_ADM1275 is not set +# CONFIG_SENSORS_IBM_CFFPS is not set +# CONFIG_SENSORS_INSPUR_IPSPS is not set +# CONFIG_SENSORS_IR35221 is not set +# CONFIG_SENSORS_IR38064 is not set +# CONFIG_SENSORS_IRPS5401 is not set +# CONFIG_SENSORS_ISL68137 is not set +# CONFIG_SENSORS_LM25066 is not set +CONFIG_SENSORS_LTC2978=y +CONFIG_SENSORS_LTC2978_REGULATOR=y +# CONFIG_SENSORS_LTC3815 is not set +# CONFIG_SENSORS_MAX16064 is not set +# CONFIG_SENSORS_MAX20751 is not set +# CONFIG_SENSORS_MAX31785 is not set +# CONFIG_SENSORS_MAX34440 is not set +# CONFIG_SENSORS_MAX8688 is not set +# CONFIG_SENSORS_PXE1610 is not set +# CONFIG_SENSORS_TPS40422 is not set +# CONFIG_SENSORS_TPS53679 is not set +# CONFIG_SENSORS_UCD9000 is not set +# CONFIG_SENSORS_UCD9200 is not set +# CONFIG_SENSORS_ZL6100 is not set +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +CONFIG_SENSORS_AMC6821=y +# CONFIG_SENSORS_INA209 is not set +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_MAG3110 is not set +CONFIG_MXC_MMA8451=y +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_CPU_THERMAL=y +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +CONFIG_THERMAL_EMULATION=y +# CONFIG_THERMAL_MMIO is not set +CONFIG_HISI_THERMAL=y +# CONFIG_IMX_THERMAL is not set +CONFIG_IMX_SC_THERMAL=y +CONFIG_DEVICE_THERMAL=y +CONFIG_IMX8MM_THERMAL=y +# CONFIG_MAX77620_THERMAL is not set +CONFIG_QORIQ_THERMAL=y +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_RCAR_THERMAL=y +CONFIG_RCAR_GEN3_THERMAL=y +CONFIG_ARMADA_THERMAL=y +CONFIG_MTK_THERMAL=y + +# +# Broadcom thermal drivers +# +CONFIG_BCM2835_THERMAL=m +CONFIG_BRCMSTB_THERMAL=m +CONFIG_BCM_NS_THERMAL=y +CONFIG_BCM_SR_THERMAL=y +# end of Broadcom thermal drivers + +# +# Samsung thermal drivers +# +CONFIG_EXYNOS_THERMAL=y +# end of Samsung thermal drivers + +# +# NVIDIA Tegra thermal drivers +# +# CONFIG_TEGRA_SOCTHERM is not set +CONFIG_TEGRA_BPMP_THERMAL=m +# end of NVIDIA Tegra thermal drivers + +# CONFIG_GENERIC_ADC_THERMAL is not set + +# +# Qualcomm thermal drivers +# +CONFIG_QCOM_TSENS=y +# CONFIG_QCOM_SPMI_TEMP_ALARM is not set +# end of Qualcomm thermal drivers + +# CONFIG_ZX2967_THERMAL is not set +CONFIG_UNIPHIER_THERMAL=y +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=y +CONFIG_ARM_SBSA_WATCHDOG=y +# CONFIG_ARMADA_37XX_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_HAVE_S3C2410_WATCHDOG=y +CONFIG_S3C2410_WATCHDOG=y +CONFIG_DW_WATCHDOG=y +CONFIG_SUNXI_WATCHDOG=m +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAX77620_WATCHDOG is not set +CONFIG_IMX2_WDT=y +CONFIG_IMX_SC_WDT=y +# CONFIG_IMX7ULP_WDT is not set +# CONFIG_TEGRA_WATCHDOG is not set +# CONFIG_QCOM_WDT is not set +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_WATCHDOG=m +# CONFIG_MEDIATEK_WATCHDOG is not set +CONFIG_RENESAS_WDT=y +# CONFIG_RENESAS_RZAWDT is not set +# CONFIG_ZX2967_WATCHDOG is not set +CONFIG_UNIPHIER_WATCHDOG=y +# CONFIG_SPRD_WATCHDOG is not set +# CONFIG_PM8916_WATCHDOG is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +CONFIG_BCM2835_WDT=y +# CONFIG_BCM7038_WDT is not set +# CONFIG_MEN_A21_WDT is not set +# CONFIG_XEN_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +CONFIG_MFD_ALTERA_SYSMGR=y +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_SUN4I_GPADC is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +CONFIG_MFD_BD9571MWV=y +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_AXP20X=y +CONFIG_MFD_AXP20X_I2C=y +CONFIG_MFD_AXP20X_RSB=y +CONFIG_MFD_CROS_EC_DEV=y +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +CONFIG_MFD_EXYNOS_LPASS=m +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MXC_HDMI is not set +CONFIG_MFD_HI6421_PMIC=y +CONFIG_MFD_HI655X_PMIC=y +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX17135 is not set +CONFIG_MFD_MAX77620=y +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_QCOM_RPM is not set +CONFIG_MFD_SPMI_PMIC=y +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=y +# CONFIG_MFD_RN5T618 is not set +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_MFD_SC27XX_PMIC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_ROHM_BD718XX=y +# CONFIG_MFD_ROHM_BD70528 is not set +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +CONFIG_MFD_PCA9450=y +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_RAVE_SP_CORE is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_ANATOP is not set +CONFIG_REGULATOR_AXP20X=y +CONFIG_REGULATOR_BD718XX=y +CONFIG_REGULATOR_BD9571MWV=y +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=y +CONFIG_REGULATOR_GPIO=y +# CONFIG_REGULATOR_HI6421 is not set +CONFIG_REGULATOR_HI6421V530=y +CONFIG_REGULATOR_HI655X=y +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +CONFIG_REGULATOR_MAX77620=y +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +CONFIG_REGULATOR_MAX8973=y +# CONFIG_REGULATOR_MCP16502 is not set +# CONFIG_REGULATOR_MT6311 is not set +CONFIG_REGULATOR_PCA9450=y +# CONFIG_REGULATOR_PF1550_RPMSG is not set +CONFIG_REGULATOR_PFUZE100=y +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_PWM=y +CONFIG_REGULATOR_QCOM_RPMH=y +CONFIG_REGULATOR_QCOM_SMD_RPM=y +CONFIG_REGULATOR_QCOM_SPMI=y +CONFIG_REGULATOR_RK808=y +# CONFIG_REGULATOR_S2MPA01 is not set +CONFIG_REGULATOR_S2MPS11=y +# CONFIG_REGULATOR_S5M8767 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_SY8106A is not set +# CONFIG_REGULATOR_SY8824X is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_REGULATOR_UNIPHIER=y +CONFIG_REGULATOR_VCTRL=m +# CONFIG_REGULATOR_VEXPRESS is not set +CONFIG_CEC_CORE=y +CONFIG_CEC_NOTIFIER=y +CONFIG_RC_CORE=m +CONFIG_RC_MAP=m +# CONFIG_LIRC is not set +CONFIG_RC_DECODERS=y +# CONFIG_IR_NEC_DECODER is not set +# CONFIG_IR_RC5_DECODER is not set +# CONFIG_IR_RC6_DECODER is not set +# CONFIG_IR_JVC_DECODER is not set +# CONFIG_IR_SONY_DECODER is not set +# CONFIG_IR_SANYO_DECODER is not set +# CONFIG_IR_SHARP_DECODER is not set +# CONFIG_IR_MCE_KBD_DECODER is not set +# CONFIG_IR_XMP_DECODER is not set +# CONFIG_IR_IMON_DECODER is not set +# CONFIG_IR_RCMM_DECODER is not set +CONFIG_RC_DEVICES=y +# CONFIG_RC_ATI_REMOTE is not set +# CONFIG_IR_ENE is not set +# CONFIG_IR_HIX5HD2 is not set +# CONFIG_IR_IMON is not set +# CONFIG_IR_IMON_RAW is not set +# CONFIG_IR_MCEUSB is not set +# CONFIG_IR_ITE_CIR is not set +# CONFIG_IR_FINTEK is not set +CONFIG_IR_MESON=m +# CONFIG_IR_MTK is not set +# CONFIG_IR_NUVOTON is not set +# CONFIG_IR_REDRAT3 is not set +# CONFIG_IR_STREAMZAP is not set +# CONFIG_IR_IGORPLUGUSB is not set +# CONFIG_IR_IGUANA is not set +# CONFIG_IR_TTUSBIR is not set +# CONFIG_RC_LOOPBACK is not set +# CONFIG_IR_GPIO_CIR is not set +CONFIG_IR_SUNXI=m +# CONFIG_IR_SERIAL is not set +# CONFIG_IR_SIR is not set +# CONFIG_RC_XBOX_DVD is not set +# CONFIG_IR_ZX is not set +CONFIG_MEDIA_SUPPORT=y + +# +# Multimedia core support +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +# CONFIG_MEDIA_RADIO_SUPPORT is not set +# CONFIG_MEDIA_SDR_SUPPORT is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +CONFIG_MEDIA_CONTROLLER=y +# CONFIG_MEDIA_CONTROLLER_DVB is not set +# CONFIG_MEDIA_CONTROLLER_REQUEST_API is not set +CONFIG_VIDEO_DEV=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +CONFIG_VIDEO_V4L2=y +CONFIG_VIDEO_V4L2_I2C=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_V4L2_MEM2MEM_DEV=y +CONFIG_V4L2_FWNODE=y +CONFIG_DVB_CORE=y +# CONFIG_DVB_MMAP is not set +# CONFIG_DVB_NET is not set +CONFIG_DVB_MAX_ADAPTERS=16 +# CONFIG_DVB_DYNAMIC_MINORS is not set +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +# CONFIG_USB_M5602 is not set +# CONFIG_USB_STV06XX is not set +# CONFIG_USB_GL860 is not set +# CONFIG_USB_GSPCA_BENQ is not set +# CONFIG_USB_GSPCA_CONEX is not set +# CONFIG_USB_GSPCA_CPIA1 is not set +# CONFIG_USB_GSPCA_DTCS033 is not set +# CONFIG_USB_GSPCA_ETOMS is not set +# CONFIG_USB_GSPCA_FINEPIX is not set +# CONFIG_USB_GSPCA_JEILINJ is not set +# CONFIG_USB_GSPCA_JL2005BCD is not set +# CONFIG_USB_GSPCA_KINECT is not set +# CONFIG_USB_GSPCA_KONICA is not set +# CONFIG_USB_GSPCA_MARS is not set +# CONFIG_USB_GSPCA_MR97310A is not set +# CONFIG_USB_GSPCA_NW80X is not set +# CONFIG_USB_GSPCA_OV519 is not set +# CONFIG_USB_GSPCA_OV534 is not set +# CONFIG_USB_GSPCA_OV534_9 is not set +# CONFIG_USB_GSPCA_PAC207 is not set +# CONFIG_USB_GSPCA_PAC7302 is not set +# CONFIG_USB_GSPCA_PAC7311 is not set +# CONFIG_USB_GSPCA_SE401 is not set +# CONFIG_USB_GSPCA_SN9C2028 is not set +# CONFIG_USB_GSPCA_SN9C20X is not set +# CONFIG_USB_GSPCA_SONIXB is not set +# CONFIG_USB_GSPCA_SONIXJ is not set +# CONFIG_USB_GSPCA_SPCA500 is not set +# CONFIG_USB_GSPCA_SPCA501 is not set +# CONFIG_USB_GSPCA_SPCA505 is not set +# CONFIG_USB_GSPCA_SPCA506 is not set +# CONFIG_USB_GSPCA_SPCA508 is not set +# CONFIG_USB_GSPCA_SPCA561 is not set +# CONFIG_USB_GSPCA_SPCA1528 is not set +# CONFIG_USB_GSPCA_SQ905 is not set +# CONFIG_USB_GSPCA_SQ905C is not set +# CONFIG_USB_GSPCA_SQ930X is not set +# CONFIG_USB_GSPCA_STK014 is not set +# CONFIG_USB_GSPCA_STK1135 is not set +# CONFIG_USB_GSPCA_STV0680 is not set +# CONFIG_USB_GSPCA_SUNPLUS is not set +# CONFIG_USB_GSPCA_T613 is not set +# CONFIG_USB_GSPCA_TOPRO is not set +# CONFIG_USB_GSPCA_TOUPTEK is not set +# CONFIG_USB_GSPCA_TV8532 is not set +# CONFIG_USB_GSPCA_VC032X is not set +# CONFIG_USB_GSPCA_VICAM is not set +# CONFIG_USB_GSPCA_XIRLINK_CIT is not set +# CONFIG_USB_GSPCA_ZC3XX is not set +# CONFIG_USB_PWC is not set +# CONFIG_VIDEO_CPIA2 is not set +# CONFIG_USB_ZR364XX is not set +# CONFIG_USB_STKWEBCAM is not set +# CONFIG_USB_S2255 is not set +# CONFIG_VIDEO_USBTV is not set + +# +# Analog TV USB devices +# +# CONFIG_VIDEO_PVRUSB2 is not set +# CONFIG_VIDEO_HDPVR is not set +# CONFIG_VIDEO_USBVISION is not set +# CONFIG_VIDEO_STK1160_COMMON is not set +# CONFIG_VIDEO_GO7007 is not set + +# +# Analog/digital TV USB devices +# +# CONFIG_VIDEO_AU0828 is not set +# CONFIG_VIDEO_CX231XX is not set +# CONFIG_VIDEO_TM6000 is not set + +# +# Digital TV USB devices +# +# CONFIG_DVB_USB is not set +# CONFIG_DVB_USB_V2 is not set +# CONFIG_DVB_TTUSB_BUDGET is not set +# CONFIG_DVB_TTUSB_DEC is not set +# CONFIG_SMS_USB_DRV is not set +# CONFIG_DVB_B2C2_FLEXCOP_USB is not set +# CONFIG_DVB_AS102 is not set + +# +# Webcam, TV (analog/digital) USB devices +# +# CONFIG_VIDEO_EM28XX is not set +# CONFIG_MEDIA_PCI_SUPPORT is not set +CONFIG_V4L_PLATFORM_DRIVERS=y +# CONFIG_VIDEO_CAFE_CCIC is not set +# CONFIG_VIDEO_CADENCE is not set +# CONFIG_VIDEO_ASPEED is not set +# CONFIG_VIDEO_MUX is not set +# CONFIG_VIDEO_QCOM_CAMSS is not set +CONFIG_VIDEO_MX8_CAPTURE=y +CONFIG_VIDEO_MXC_CAPTURE=y +# CONFIG_VIDEO_MXC_OUTPUT is not set + +# +# IMX8 Camera ISI/MIPI Features support +# +CONFIG_IMX8_MIPI_CSI2_YAV=y +CONFIG_IMX8_JPEG=m +# end of IMX8 Camera ISI/MIPI Features support + +CONFIG_VIDEO_MXC_CSI_CAMERA=y +# CONFIG_MXC_VADC is not set +CONFIG_MXC_MIPI_CSI=y + +# +# MXC Camera/V4L2 PRP Features support +# +# CONFIG_MXC_CAMERA_OV5640_V2 is not set +CONFIG_MXC_CAMERA_OV5640_MIPI_V2=y +# CONFIG_MXC_CAMERA_OV5647_MIPI is not set +# end of MXC Camera/V4L2 PRP Features support + +# CONFIG_VIDEO_MXC_PXP_V4L2 is not set +# CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS is not set +# CONFIG_VIDEO_XILINX is not set +# CONFIG_VIDEO_RCAR_CSI2 is not set +# CONFIG_VIDEO_RCAR_VIN is not set +# CONFIG_VIDEO_SUN4I_CSI is not set +CONFIG_VIDEO_SUN6I_CSI=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +# CONFIG_VIDEO_CODA is not set +# CONFIG_VIDEO_IMX_PXP is not set +# CONFIG_VIDEO_MEDIATEK_VPU is not set +# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set +# CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set +CONFIG_VIDEO_SAMSUNG_S5P_JPEG=m +CONFIG_VIDEO_SAMSUNG_S5P_MFC=m +CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=m +# CONFIG_VIDEO_SH_VEU is not set +# CONFIG_VIDEO_RENESAS_FDP1 is not set +# CONFIG_VIDEO_RENESAS_JPU is not set +CONFIG_VIDEO_RENESAS_FCP=m +CONFIG_VIDEO_RENESAS_VSP1=m +# CONFIG_VIDEO_ROCKCHIP_RGA is not set +# CONFIG_VIDEO_QCOM_VENUS is not set +# CONFIG_V4L_TEST_DRIVERS is not set +# CONFIG_DVB_PLATFORM_DRIVERS is not set + +# +# Supported MMC/SDIO adapters +# +# CONFIG_SMS_SDIO_DRV is not set +# CONFIG_CYPRESS_FIRMWARE is not set +CONFIG_VIDEOBUF2_CORE=y +CONFIG_VIDEOBUF2_V4L2=y +CONFIG_VIDEOBUF2_MEMOPS=y +CONFIG_VIDEOBUF2_DMA_CONTIG=y +CONFIG_VIDEOBUF2_VMALLOC=y + +# +# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) +# +# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set +CONFIG_MEDIA_ATTACH=y +CONFIG_VIDEO_IR_I2C=m + +# +# I2C Encoders, decoders, sensors and other helper chips +# + +# +# Audio decoders, processors and mixers +# +# CONFIG_VIDEO_TVAUDIO is not set +# CONFIG_VIDEO_TDA7432 is not set +# CONFIG_VIDEO_TDA9840 is not set +# CONFIG_VIDEO_TDA1997X is not set +# CONFIG_VIDEO_TEA6415C is not set +# CONFIG_VIDEO_TEA6420 is not set +# CONFIG_VIDEO_MSP3400 is not set +# CONFIG_VIDEO_CS3308 is not set +# CONFIG_VIDEO_CS5345 is not set +# CONFIG_VIDEO_CS53L32A is not set +# CONFIG_VIDEO_TLV320AIC23B is not set +# CONFIG_VIDEO_UDA1342 is not set +# CONFIG_VIDEO_WM8775 is not set +# CONFIG_VIDEO_WM8739 is not set +# CONFIG_VIDEO_VP27SMPX is not set +# CONFIG_VIDEO_SONY_BTF_MPX is not set + +# +# RDS decoders +# +# CONFIG_VIDEO_SAA6588 is not set + +# +# Video decoders +# +# CONFIG_VIDEO_ADV7180 is not set +# CONFIG_VIDEO_ADV7183 is not set +# CONFIG_VIDEO_ADV748X is not set +# CONFIG_VIDEO_ADV7604 is not set +# CONFIG_VIDEO_ADV7842 is not set +# CONFIG_VIDEO_BT819 is not set +# CONFIG_VIDEO_BT856 is not set +# CONFIG_VIDEO_BT866 is not set +# CONFIG_VIDEO_KS0127 is not set +# CONFIG_VIDEO_ML86V7667 is not set +# CONFIG_VIDEO_SAA7110 is not set +# CONFIG_VIDEO_SAA711X is not set +# CONFIG_VIDEO_TC358743 is not set +# CONFIG_VIDEO_TVP514X is not set +# CONFIG_VIDEO_TVP5150 is not set +# CONFIG_VIDEO_TVP7002 is not set +# CONFIG_VIDEO_TW2804 is not set +# CONFIG_VIDEO_TW9903 is not set +# CONFIG_VIDEO_TW9906 is not set +# CONFIG_VIDEO_TW9910 is not set +# CONFIG_VIDEO_VPX3220 is not set + +# +# Video and audio decoders +# +# CONFIG_VIDEO_SAA717X is not set +# CONFIG_VIDEO_CX25840 is not set + +# +# Video encoders +# +# CONFIG_VIDEO_SAA7127 is not set +# CONFIG_VIDEO_SAA7185 is not set +# CONFIG_VIDEO_ADV7170 is not set +# CONFIG_VIDEO_ADV7175 is not set +# CONFIG_VIDEO_ADV7343 is not set +# CONFIG_VIDEO_ADV7393 is not set +# CONFIG_VIDEO_AD9389B is not set +# CONFIG_VIDEO_AK881X is not set +# CONFIG_VIDEO_THS8200 is not set + +# +# Camera sensor devices +# +# CONFIG_VIDEO_IMX214 is not set +# CONFIG_VIDEO_IMX258 is not set +# CONFIG_VIDEO_IMX274 is not set +# CONFIG_VIDEO_IMX319 is not set +# CONFIG_VIDEO_IMX355 is not set +# CONFIG_VIDEO_OV2640 is not set +# CONFIG_VIDEO_OV2659 is not set +# CONFIG_VIDEO_OV2680 is not set +# CONFIG_VIDEO_OV2685 is not set +CONFIG_VIDEO_OV5640=y +# CONFIG_VIDEO_OV5645 is not set +# CONFIG_VIDEO_OV5647 is not set +# CONFIG_VIDEO_OV6650 is not set +# CONFIG_VIDEO_OV5670 is not set +# CONFIG_VIDEO_OV5675 is not set +# CONFIG_VIDEO_OV5695 is not set +# CONFIG_VIDEO_OV7251 is not set +# CONFIG_VIDEO_OV772X is not set +# CONFIG_VIDEO_OV7640 is not set +# CONFIG_VIDEO_OV7670 is not set +# CONFIG_VIDEO_OV7740 is not set +# CONFIG_VIDEO_OV8856 is not set +# CONFIG_VIDEO_OV9640 is not set +# CONFIG_VIDEO_OV9650 is not set +# CONFIG_VIDEO_OV13858 is not set +# CONFIG_VIDEO_VS6624 is not set +# CONFIG_VIDEO_MT9M001 is not set +# CONFIG_VIDEO_MT9M032 is not set +# CONFIG_VIDEO_MT9M111 is not set +# CONFIG_VIDEO_MT9P031 is not set +# CONFIG_VIDEO_MT9T001 is not set +# CONFIG_VIDEO_MT9T112 is not set +# CONFIG_VIDEO_MT9V011 is not set +# CONFIG_VIDEO_MT9V032 is not set +# CONFIG_VIDEO_MT9V111 is not set +# CONFIG_VIDEO_SR030PC30 is not set +# CONFIG_VIDEO_NOON010PC30 is not set +# CONFIG_VIDEO_M5MOLS is not set +# CONFIG_VIDEO_RJ54N1 is not set +# CONFIG_VIDEO_S5K6AA is not set +# CONFIG_VIDEO_S5K6A3 is not set +# CONFIG_VIDEO_S5K4ECGX is not set +# CONFIG_VIDEO_S5K5BAF is not set +# CONFIG_VIDEO_SMIAPP is not set +# CONFIG_VIDEO_ET8EK8 is not set +# CONFIG_VIDEO_S5C73M3 is not set + +# +# Lens drivers +# +# CONFIG_VIDEO_AD5820 is not set +# CONFIG_VIDEO_AK7375 is not set +# CONFIG_VIDEO_DW9714 is not set +# CONFIG_VIDEO_DW9807_VCM is not set + +# +# Flash devices +# +# CONFIG_VIDEO_ADP1653 is not set +# CONFIG_VIDEO_LM3560 is not set +# CONFIG_VIDEO_LM3646 is not set + +# +# Video improvement chips +# +# CONFIG_VIDEO_UPD64031A is not set +# CONFIG_VIDEO_UPD64083 is not set + +# +# Audio/Video compression chips +# +# CONFIG_VIDEO_SAA6752HS is not set + +# +# SDR tuner chips +# + +# +# Miscellaneous helper chips +# +# CONFIG_VIDEO_THS7303 is not set +# CONFIG_VIDEO_M52790 is not set +# CONFIG_VIDEO_I2C is not set +# CONFIG_VIDEO_ST_MIPID02 is not set +# end of I2C Encoders, decoders, sensors and other helper chips + +# +# SPI helper chips +# +# CONFIG_VIDEO_GS1662 is not set +# end of SPI helper chips + +# +# Media SPI Adapters +# +CONFIG_CXD2880_SPI_DRV=m +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=y + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m +CONFIG_DVB_MN88443X=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m + +# +# Tools to develop new frontends +# +# CONFIG_DVB_DUMMY_FE is not set +# end of Customise DVB Frontends + +# +# Graphics support +# +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_TEGRA_HOST1X is not set +CONFIG_IMX8_PC=y +CONFIG_IMX8_PRG=y +CONFIG_IMX8_DPRC=y +CONFIG_IMX_DPU_CORE=y +CONFIG_IMX_DPU_BLIT=y +CONFIG_IMX_LCDIF_CORE=y +CONFIG_DRM=y +CONFIG_DRM_MIPI_DSI=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_MM is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_KMS_FB_HELPER=y +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_VM=y +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I2C_NXP_TDA998X=m +# CONFIG_DRM_I2C_NXP_TDA9950 is not set +# end of I2C encoder or helper chips + +# +# ARM devices +# +# CONFIG_DRM_HDLCD is not set +CONFIG_DRM_MALI_DISPLAY=m +# CONFIG_DRM_KOMEDA is not set +# end of ARM devices + +# CONFIG_DRM_RADEON is not set +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_USERPTR=y +# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +# end of ACP (Audio CoProcessor) Configuration + +# +# Display Engine Configuration +# +CONFIG_DRM_AMD_DC=y +# CONFIG_DEBUG_KERNEL_DC is not set +# end of Display Engine Configuration + +# CONFIG_HSA_AMD is not set +CONFIG_DRM_NOUVEAU=m +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=y +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VKMS is not set +CONFIG_DRM_ATI_PCIGART=y +# CONFIG_DRM_EXYNOS is not set +# CONFIG_DRM_ROCKCHIP is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_RCAR_DU is not set +# CONFIG_DRM_RCAR_DW_HDMI is not set +# CONFIG_DRM_RCAR_LVDS is not set +CONFIG_DRM_RCAR_WRITEBACK=y +CONFIG_DRM_SUN4I=m +CONFIG_DRM_SUN4I_HDMI=m +# CONFIG_DRM_SUN4I_HDMI_CEC is not set +CONFIG_DRM_SUN4I_BACKEND=m +# CONFIG_DRM_SUN6I_DSI is not set +CONFIG_DRM_SUN8I_DW_HDMI=m +CONFIG_DRM_SUN8I_MIXER=m +CONFIG_DRM_SUN8I_TCON_TOP=m +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_BOCHS is not set +# CONFIG_DRM_VIRTIO_GPU is not set +# CONFIG_DRM_MSM is not set +# CONFIG_DRM_TEGRA is not set +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_ARM_VERSATILE is not set +# CONFIG_DRM_PANEL_LVDS is not set +CONFIG_DRM_PANEL_SIMPLE=y +# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set +# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set +# CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set +# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set +# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set +# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_LG_LB035Q02 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set +# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set +# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set +# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set +# CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS is not set +# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set +# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set +CONFIG_DRM_PANEL_RAYDIUM_RM67191=y +# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set +# CONFIG_DRM_PANEL_ROCKTECH_JH057N00900 is not set +# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set +# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set +# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set +# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set +# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set +# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set +# CONFIG_DRM_PANEL_TPO_TPG110 is not set +# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_CDNS_DSI is not set +# CONFIG_DRM_DUMB_VGA_DAC is not set +# CONFIG_DRM_LVDS_ENCODER is not set +# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +CONFIG_DRM_SEC_MIPI_DSIM=y +# CONFIG_DRM_NXP_PTN3460 is not set +# CONFIG_DRM_PARADE_PS8622 is not set +# CONFIG_DRM_SIL_SII8620 is not set +CONFIG_DRM_SII902X=m +# CONFIG_DRM_SII9234 is not set +# CONFIG_DRM_THINE_THC63LVD1024 is not set +# CONFIG_DRM_TOSHIBA_TC358764 is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set +# CONFIG_DRM_TI_TFP410 is not set +# CONFIG_DRM_TI_SN65DSI86 is not set +CONFIG_DRM_I2C_ADV7511=y +# CONFIG_DRM_I2C_ADV7511_AUDIO is not set +CONFIG_DRM_I2C_ADV7533=y +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_NWL_MIPI_DSI=y +CONFIG_DRM_CDNS_MHDP=y +CONFIG_DRM_CDNS_HDMI=y +CONFIG_DRM_CDNS_DP=y +CONFIG_DRM_CDNS_AUDIO=y +CONFIG_DRM_CDNS_HDMI_CEC=y +CONFIG_DRM_DW_HDMI=y +# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set +# CONFIG_DRM_DW_HDMI_I2S_AUDIO is not set +# CONFIG_DRM_DW_HDMI_CEC is not set +CONFIG_DRM_ITE_IT6263=y +# end of Display Interface Bridges + +CONFIG_DRM_IMX=y +CONFIG_DRM_IMX_PARALLEL_DISPLAY=y +CONFIG_DRM_IMX_TVE=y +CONFIG_DRM_IMX_LDB=y +CONFIG_DRM_IMX_HDMI=y +CONFIG_DRM_IMX_SEC_DSIM=y +CONFIG_DRM_IMX_CDNS_MHDP=y +CONFIG_DRM_IMX_DPU=y +CONFIG_DRM_IMX_LCDIF=y +CONFIG_DRM_IMX_DCSS=y +# CONFIG_DRM_VC4 is not set +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_ETNAVIV_THERMAL=y +# CONFIG_DRM_ARCPGU is not set +# CONFIG_DRM_HISI_HIBMC is not set +# CONFIG_DRM_HISI_KIRIN is not set +# CONFIG_DRM_MEDIATEK is not set +# CONFIG_DRM_ZTE is not set +CONFIG_DRM_MXS=y +CONFIG_DRM_MXSFB=y +# CONFIG_DRM_MESON is not set +# CONFIG_DRM_GM12U320 is not set +# CONFIG_TINYDRM_HX8357D is not set +# CONFIG_TINYDRM_ILI9225 is not set +# CONFIG_TINYDRM_ILI9341 is not set +# CONFIG_TINYDRM_MI0283QT is not set +# CONFIG_TINYDRM_REPAPER is not set +# CONFIG_TINYDRM_ST7586 is not set +# CONFIG_TINYDRM_ST7735R is not set +CONFIG_DRM_PL111=m +# CONFIG_DRM_XEN is not set +CONFIG_DRM_LIMA=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_LEGACY=y +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_MODE_HELPERS=y +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +CONFIG_FB_ARMCLCD=y +# CONFIG_FB_IMX is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_EFI=y +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SH_MOBILE_LCDC is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_XILINX is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +CONFIG_FB_MX3=y +# CONFIG_FB_MXS is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +CONFIG_FB_MXC=y +# CONFIG_FB_MXC_DISP_FRAMEWORK is not set +# CONFIG_FB_MXC_OVERLAY is not set +CONFIG_FB_MXC_EDID=y +# CONFIG_FB_MXC_EINK_PANEL is not set +# CONFIG_FB_MXC_EINK_V2_PANEL is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +CONFIG_BACKLIGHT_PWM=y +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +CONFIG_BACKLIGHT_LP855X=m +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_FRAMEBUFFER_CONSOLE is not set +# end of Console display driver support + +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +CONFIG_LOGO_LINUX_CLUT224=y +# end of Graphics support + +CONFIG_SOUND=y +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +CONFIG_SND_DMAENGINE_PCM=y +CONFIG_SND_HWDEP=m +CONFIG_SND_RAWMIDI=y +CONFIG_SND_COMPRESS_OFFLOAD=y +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +# CONFIG_SND_HRTIMER is not set +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +# CONFIG_SND_SEQUENCER is not set +CONFIG_SND_DRIVERS=y +# CONFIG_SND_DUMMY is not set +# CONFIG_SND_ALOOP is not set +# CONFIG_SND_MTPAV is not set +# CONFIG_SND_SERIAL_U16550 is not set +# CONFIG_SND_MPU401 is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SE6X is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=m +# CONFIG_SND_HDA_INTEL is not set +CONFIG_SND_HDA_TEGRA=m +# CONFIG_SND_HDA_HWDEP is not set +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +# CONFIG_SND_HDA_CODEC_REALTEK is not set +# CONFIG_SND_HDA_CODEC_ANALOG is not set +# CONFIG_SND_HDA_CODEC_SIGMATEL is not set +# CONFIG_SND_HDA_CODEC_VIA is not set +CONFIG_SND_HDA_CODEC_HDMI=m +# CONFIG_SND_HDA_CODEC_CIRRUS is not set +# CONFIG_SND_HDA_CODEC_CONEXANT is not set +# CONFIG_SND_HDA_CODEC_CA0110 is not set +# CONFIG_SND_HDA_CODEC_CA0132 is not set +# CONFIG_SND_HDA_CODEC_CMEDIA is not set +# CONFIG_SND_HDA_CODEC_SI3054 is not set +# CONFIG_SND_HDA_GENERIC is not set +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# end of HD-Audio + +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +# CONFIG_SND_USB_UA101 is not set +# CONFIG_SND_USB_CAIAQ is not set +# CONFIG_SND_USB_6FIRE is not set +# CONFIG_SND_USB_HIFACE is not set +# CONFIG_SND_BCD2000 is not set +# CONFIG_SND_USB_POD is not set +# CONFIG_SND_USB_PODHD is not set +# CONFIG_SND_USB_TONEPORT is not set +# CONFIG_SND_USB_VARIAX is not set +CONFIG_SND_SOC=y +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_TOPOLOGY=y +# CONFIG_SND_SOC_AMD_ACP is not set +# CONFIG_SND_ATMEL_SOC is not set +CONFIG_SND_BCM2835_SOC_I2S=m +# CONFIG_SND_DESIGNWARE_I2S is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +CONFIG_SND_SOC_FSL_ASRC=y +CONFIG_SND_SOC_FSL_SAI=y +CONFIG_SND_SOC_FSL_AUDMIX=y +# CONFIG_SND_SOC_FSL_SSI is not set +CONFIG_SND_SOC_FSL_SPDIF=y +CONFIG_SND_SOC_FSL_ESAI=y +CONFIG_SND_SOC_FSL_DAI=m +CONFIG_SND_SOC_FSL_MICFIL=y +CONFIG_SND_SOC_FSL_EASRC=y +CONFIG_SND_SOC_FSL_DSP=y +CONFIG_SND_SOC_FSL_RPMSG_I2S=y +CONFIG_SND_SOC_FSL_UTILS=y +CONFIG_SND_SOC_IMX_PCM_DMA=y +CONFIG_SND_SOC_IMX_PCM_RPMSG=y +# CONFIG_SND_SOC_IMX_AUDMUX is not set +CONFIG_SND_IMX_SOC=y + +# +# SoC Audio support for Freescale i.MX boards: +# +CONFIG_SND_SOC_IMX_AK4458=y +CONFIG_SND_SOC_IMX_AK5558=y +CONFIG_SND_SOC_IMX_AK4497=y +CONFIG_SND_SOC_IMX_WM8960=y +CONFIG_SND_SOC_IMX_WM8524=y +# CONFIG_SND_SOC_IMX_SII902X is not set +# CONFIG_SND_SOC_IMX_WM8958 is not set +CONFIG_SND_SOC_IMX_CS42888=y +# CONFIG_SND_SOC_IMX_WM8962 is not set +CONFIG_SND_SOC_IMX_MICFIL=y +CONFIG_SND_SOC_IMX_RPMSG=y +# CONFIG_SND_SOC_IMX_ES8328 is not set +# CONFIG_SND_SOC_IMX_SGTL5000 is not set +CONFIG_SND_SOC_IMX_MQS=y +CONFIG_SND_SOC_IMX_SPDIF=y +# CONFIG_SND_SOC_FSL_ASOC_CARD is not set +CONFIG_SND_SOC_IMX_AUDMIX=y +CONFIG_SND_SOC_IMX_PDM_MIC=y +CONFIG_SND_SOC_IMX_DSP=y +# CONFIG_SND_SOC_IMX_SI476X is not set +CONFIG_SND_SOC_IMX_CDNHDMI=y +# end of SoC Audio for Freescale CPUs + +# CONFIG_SND_I2S_HI6210_I2S is not set +# CONFIG_SND_KIRKWOOD_SOC is not set +# CONFIG_SND_SOC_IMG is not set +# CONFIG_SND_SOC_MT2701 is not set +# CONFIG_SND_SOC_MT6797 is not set +# CONFIG_SND_SOC_MT8173 is not set +# CONFIG_SND_SOC_MT8183 is not set +# CONFIG_SND_SOC_MTK_BTCVSD is not set + +# +# ASoC support for Amlogic platforms +# +CONFIG_SND_MESON_AXG_FIFO=m +CONFIG_SND_MESON_AXG_FRDDR=m +CONFIG_SND_MESON_AXG_TODDR=m +CONFIG_SND_MESON_AXG_TDM_FORMATTER=m +CONFIG_SND_MESON_AXG_TDM_INTERFACE=m +CONFIG_SND_MESON_AXG_TDMIN=m +CONFIG_SND_MESON_AXG_TDMOUT=m +CONFIG_SND_MESON_AXG_SOUND_CARD=m +CONFIG_SND_MESON_AXG_SPDIFOUT=m +CONFIG_SND_MESON_AXG_SPDIFIN=m +CONFIG_SND_MESON_AXG_PDM=m +# CONFIG_SND_MESON_G12A_TOHDMITX is not set +# end of ASoC support for Amlogic platforms + +# CONFIG_SND_SOC_QCOM is not set +# CONFIG_SND_SOC_ROCKCHIP is not set +CONFIG_SND_SOC_SAMSUNG=y +# CONFIG_SND_SAMSUNG_PCM is not set +# CONFIG_SND_SAMSUNG_SPDIF is not set +# CONFIG_SND_SAMSUNG_I2S is not set +# CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994 is not set +# CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF is not set +# CONFIG_SND_SOC_SMDK_WM8994_PCM is not set +# CONFIG_SND_SOC_SNOW is not set +# CONFIG_SND_SOC_ODROID is not set +# CONFIG_SND_SOC_ARNDALE_RT5631_ALC5631 is not set + +# +# SoC Audio support for Renesas SoCs +# +# CONFIG_SND_SOC_SH4_FSI is not set +CONFIG_SND_SOC_RCAR=m +# end of SoC Audio support for Renesas SoCs + +CONFIG_SND_SOC_SOF_TOPLEVEL=y +# CONFIG_SND_SOC_SOF_PCI is not set +# CONFIG_SND_SOC_SOF_ACPI is not set +CONFIG_SND_SOC_SOF_OF=m +CONFIG_SND_SOC_SOF_OPTIONS=m +# CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT is not set +# CONFIG_SND_SOC_SOF_STRICT_ABI_CHECKS is not set +# CONFIG_SND_SOC_SOF_DEBUG is not set +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y +# CONFIG_SND_SOC_SOF_IMX8_SUPPORT is not set +# CONFIG_SND_SOC_SPRD is not set + +# +# STMicroelectronics STM32 SOC audio support +# +# end of STMicroelectronics STM32 SOC audio support + +# +# Allwinner SoC Audio support +# +# CONFIG_SND_SUN4I_CODEC is not set +# CONFIG_SND_SUN8I_CODEC is not set +# CONFIG_SND_SUN8I_CODEC_ANALOG is not set +# CONFIG_SND_SUN50I_CODEC_ANALOG is not set +# CONFIG_SND_SUN4I_I2S is not set +CONFIG_SND_SUN4I_SPDIF=m +# end of Allwinner SoC Audio support + +# CONFIG_SND_SOC_TEGRA is not set +# CONFIG_SND_SOC_UNIPHIER is not set +# CONFIG_SND_SOC_XILINX_I2S is not set +# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set +# CONFIG_SND_SOC_XILINX_SPDIF is not set +# CONFIG_SND_SOC_XTFPGA_I2S is not set +# CONFIG_ZX_SPDIF is not set +# CONFIG_ZX_I2S is not set +# CONFIG_ZX_TDM is not set +CONFIG_SND_SOC_I2C_AND_SPI=y + +# +# CODEC drivers +# +# CONFIG_SND_SOC_AC97_CODEC is not set +# CONFIG_SND_SOC_ADAU1701 is not set +# CONFIG_SND_SOC_ADAU1761_I2C is not set +# CONFIG_SND_SOC_ADAU1761_SPI is not set +# CONFIG_SND_SOC_ADAU7002 is not set +# CONFIG_SND_SOC_AK4104 is not set +# CONFIG_SND_SOC_AK4118 is not set +CONFIG_SND_SOC_AK4458=y +# CONFIG_SND_SOC_AK4554 is not set +CONFIG_SND_SOC_AK4613=m +# CONFIG_SND_SOC_AK4642 is not set +# CONFIG_SND_SOC_AK5386 is not set +CONFIG_SND_SOC_AK5558=y +# CONFIG_SND_SOC_ALC5623 is not set +# CONFIG_SND_SOC_BD28623 is not set +# CONFIG_SND_SOC_BT_SCO is not set +# CONFIG_SND_SOC_CROS_EC_CODEC is not set +# CONFIG_SND_SOC_CS35L32 is not set +# CONFIG_SND_SOC_CS35L33 is not set +# CONFIG_SND_SOC_CS35L34 is not set +# CONFIG_SND_SOC_CS35L35 is not set +# CONFIG_SND_SOC_CS35L36 is not set +# CONFIG_SND_SOC_CS42L42 is not set +# CONFIG_SND_SOC_CS42L51_I2C is not set +# CONFIG_SND_SOC_CS42L52 is not set +# CONFIG_SND_SOC_CS42L56 is not set +# CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4265 is not set +# CONFIG_SND_SOC_CS4270 is not set +# CONFIG_SND_SOC_CS4271_I2C is not set +# CONFIG_SND_SOC_CS4271_SPI is not set +CONFIG_SND_SOC_CS42XX8=y +CONFIG_SND_SOC_CS42XX8_I2C=y +# CONFIG_SND_SOC_CS43130 is not set +# CONFIG_SND_SOC_CS4341 is not set +# CONFIG_SND_SOC_CS4349 is not set +# CONFIG_SND_SOC_CS53L30 is not set +# CONFIG_SND_SOC_CX2072X is not set +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_HDMI_CODEC=y +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +# CONFIG_SND_SOC_ES8316 is not set +# CONFIG_SND_SOC_ES8328_I2C is not set +# CONFIG_SND_SOC_ES8328_SPI is not set +CONFIG_SND_SOC_FSL_MQS=y +# CONFIG_SND_SOC_GTM601 is not set +# CONFIG_SND_SOC_INNO_RK3036 is not set +# CONFIG_SND_SOC_MAX98088 is not set +# CONFIG_SND_SOC_MAX98357A is not set +# CONFIG_SND_SOC_MAX98504 is not set +# CONFIG_SND_SOC_MAX9867 is not set +# CONFIG_SND_SOC_MAX98927 is not set +# CONFIG_SND_SOC_MAX98373 is not set +# CONFIG_SND_SOC_MAX9860 is not set +# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set +# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set +# CONFIG_SND_SOC_PCM1681 is not set +# CONFIG_SND_SOC_PCM1789_I2C is not set +# CONFIG_SND_SOC_PCM179X_I2C is not set +# CONFIG_SND_SOC_PCM179X_SPI is not set +# CONFIG_SND_SOC_PCM186X_I2C is not set +# CONFIG_SND_SOC_PCM186X_SPI is not set +# CONFIG_SND_SOC_PCM3060_I2C is not set +# CONFIG_SND_SOC_PCM3060_SPI is not set +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +# CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM512x_I2C is not set +# CONFIG_SND_SOC_PCM512x_SPI is not set +# CONFIG_SND_SOC_RK3328 is not set +# CONFIG_SND_SOC_RT5616 is not set +# CONFIG_SND_SOC_RT5631 is not set +CONFIG_SND_SOC_SGTL5000=m +# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set +# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set +CONFIG_SND_SOC_SPDIF=m +# CONFIG_SND_SOC_SSM2305 is not set +# CONFIG_SND_SOC_SSM2602_SPI is not set +# CONFIG_SND_SOC_SSM2602_I2C is not set +# CONFIG_SND_SOC_SSM4567 is not set +# CONFIG_SND_SOC_STA32X is not set +# CONFIG_SND_SOC_STA350 is not set +# CONFIG_SND_SOC_STI_SAS is not set +# CONFIG_SND_SOC_TAS2552 is not set +# CONFIG_SND_SOC_TAS5086 is not set +CONFIG_SND_SOC_TAS571X=m +# CONFIG_SND_SOC_TAS5720 is not set +# CONFIG_SND_SOC_TAS6424 is not set +# CONFIG_SND_SOC_TDA7419 is not set +# CONFIG_SND_SOC_TFA9879 is not set +# CONFIG_SND_SOC_TLV320AIC23_I2C is not set +# CONFIG_SND_SOC_TLV320AIC23_SPI is not set +# CONFIG_SND_SOC_TLV320AIC31XX is not set +# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set +# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set +# CONFIG_SND_SOC_TLV320AIC3X is not set +# CONFIG_SND_SOC_TS3A227E is not set +# CONFIG_SND_SOC_TSCS42XX is not set +# CONFIG_SND_SOC_TSCS454 is not set +# CONFIG_SND_SOC_UDA1334 is not set +# CONFIG_SND_SOC_WM8510 is not set +# CONFIG_SND_SOC_WM8523 is not set +CONFIG_SND_SOC_WM8524=y +# CONFIG_SND_SOC_WM8580 is not set +# CONFIG_SND_SOC_WM8711 is not set +# CONFIG_SND_SOC_WM8728 is not set +# CONFIG_SND_SOC_WM8731 is not set +# CONFIG_SND_SOC_WM8737 is not set +# CONFIG_SND_SOC_WM8741 is not set +# CONFIG_SND_SOC_WM8750 is not set +# CONFIG_SND_SOC_WM8753 is not set +# CONFIG_SND_SOC_WM8770 is not set +# CONFIG_SND_SOC_WM8776 is not set +# CONFIG_SND_SOC_WM8782 is not set +# CONFIG_SND_SOC_WM8804_I2C is not set +# CONFIG_SND_SOC_WM8804_SPI is not set +# CONFIG_SND_SOC_WM8903 is not set +# CONFIG_SND_SOC_WM8904 is not set +CONFIG_SND_SOC_WM8960=y +# CONFIG_SND_SOC_WM8962 is not set +# CONFIG_SND_SOC_WM8974 is not set +# CONFIG_SND_SOC_WM8978 is not set +# CONFIG_SND_SOC_WM8985 is not set +# CONFIG_SND_SOC_ZX_AUD96P22 is not set +CONFIG_SND_SOC_RPMSG_WM8960=y +CONFIG_SND_SOC_RPMSG_CS42XX8=y +CONFIG_SND_SOC_RPMSG_AK4497=y +# CONFIG_SND_SOC_MAX9759 is not set +# CONFIG_SND_SOC_MT6351 is not set +# CONFIG_SND_SOC_MT6358 is not set +# CONFIG_SND_SOC_NAU8540 is not set +# CONFIG_SND_SOC_NAU8810 is not set +# CONFIG_SND_SOC_NAU8822 is not set +# CONFIG_SND_SOC_NAU8824 is not set +# CONFIG_SND_SOC_TPA6130A2 is not set +# end of CODEC drivers + +CONFIG_SND_SIMPLE_CARD_UTILS=y +CONFIG_SND_SIMPLE_CARD=y +CONFIG_SND_AUDIO_GRAPH_CARD=y +# CONFIG_SND_XEN_FRONTEND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_PRODIKEYS is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GOOGLE_HAMMER is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID=m +# end of I2C HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_OTG=y +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG_FSM is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +# CONFIG_USB_XHCI_HISTB is not set +# CONFIG_USB_XHCI_MTK is not set +# CONFIG_USB_XHCI_MVEBU is not set +CONFIG_USB_XHCI_RCAR=y +CONFIG_USB_XHCI_TEGRA=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_MXC is not set +CONFIG_USB_EHCI_HCD_ORION=y +# CONFIG_USB_EHCI_TEGRA is not set +CONFIG_USB_EHCI_EXYNOS=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_EXYNOS=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set +# CONFIG_USB_RENESAS_USBHS is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=y +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +CONFIG_USB_CDNS3=y +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +# CONFIG_USB_MTU3 is not set +CONFIG_USB_MUSB_HDRC=y +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# +CONFIG_USB_MUSB_SUNXI=y + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_DWC3=y +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_EXYNOS=y +CONFIG_USB_DWC3_PCI=y +CONFIG_USB_DWC3_HAPS=y +CONFIG_USB_DWC3_KEYSTONE=y +CONFIG_USB_DWC3_MESON_G12A=y +CONFIG_USB_DWC3_OF_SIMPLE=y +CONFIG_USB_DWC3_QCOM=y +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=y +CONFIG_USB_CHIPIDEA_OF=y +CONFIG_USB_CHIPIDEA_PCI=y +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_ISP1760=y +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=y +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=y +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=y +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_MXS_PHY=y +# CONFIG_USB_TEGRA_PHY is not set +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FSL_USB2 is not set +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +CONFIG_USB_RENESAS_USB3=m +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +CONFIG_USB_SNP_CORE=y +CONFIG_USB_SNP_UDC_PLAT=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=y + +# +# Platform Support +# +CONFIG_USB_BDC_PCI=y +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_NET2280 is not set +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=y +CONFIG_USB_F_ACM=y +CONFIG_USB_F_SS_LB=y +CONFIG_USB_U_SERIAL=y +CONFIG_USB_U_ETHER=y +CONFIG_USB_U_AUDIO=y +CONFIG_USB_F_SERIAL=y +CONFIG_USB_F_OBEX=y +CONFIG_USB_F_NCM=y +CONFIG_USB_F_ECM=y +CONFIG_USB_F_EEM=y +CONFIG_USB_F_SUBSET=y +CONFIG_USB_F_RNDIS=y +CONFIG_USB_F_MASS_STORAGE=y +CONFIG_USB_F_FS=y +CONFIG_USB_F_UAC1=y +CONFIG_USB_F_UAC1_LEGACY=y +CONFIG_USB_F_UAC2=y +CONFIG_USB_F_UVC=y +CONFIG_USB_F_MIDI=y +CONFIG_USB_F_HID=y +CONFIG_USB_CONFIGFS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY=y +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +# CONFIG_USB_CONFIGFS_F_PRINTER is not set +CONFIG_USB_ZERO=m +# CONFIG_USB_ZERO_HNPTEST is not set +CONFIG_USB_AUDIO=m +# CONFIG_GADGET_UAC1 is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_G_SERIAL=m +# CONFIG_USB_MIDI_GADGET is not set +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_G_WEBCAM is not set +CONFIG_TYPEC=y +CONFIG_TYPEC_TCPM=y +CONFIG_TYPEC_TCPCI=y +# CONFIG_TYPEC_RT1711H is not set +# CONFIG_TYPEC_FUSB302 is not set +# CONFIG_TYPEC_UCSI is not set +# CONFIG_TYPEC_TPS6598X is not set + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +# CONFIG_TYPEC_MUX_PI3USB30532 is not set +CONFIG_TYPEC_SWITCH_GPIO=y +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +# CONFIG_TYPEC_DP_ALTMODE is not set +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=32 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_QCOM_DML=y +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +# CONFIG_MMC_SDHCI_PCI is not set +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHCI_OF_ARASAN=y +# CONFIG_MMC_SDHCI_OF_ASPEED is not set +# CONFIG_MMC_SDHCI_OF_AT91 is not set +CONFIG_MMC_SDHCI_OF_ESDHC=y +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +CONFIG_MMC_SDHCI_CADENCE=y +CONFIG_MMC_SDHCI_ESDHC_IMX=y +CONFIG_MMC_SDHCI_TEGRA=y +# CONFIG_MMC_SDHCI_PXAV3 is not set +CONFIG_MMC_SDHCI_F_SDH30=y +CONFIG_MMC_SDHCI_IPROC=y +CONFIG_MMC_MESON_GX=y +# CONFIG_MMC_MESON_MX_SDIO is not set +CONFIG_MMC_SDHCI_MSM=y +# CONFIG_MMC_MXC is not set +# CONFIG_MMC_TIFM_SD is not set +CONFIG_MMC_SPI=y +# CONFIG_MMC_SDHCI_SPRD is not set +CONFIG_MMC_TMIO_CORE=y +CONFIG_MMC_SDHI=y +# CONFIG_MMC_SDHI_SYS_DMAC is not set +CONFIG_MMC_SDHI_INTERNAL_DMAC=y +CONFIG_MMC_UNIPHIER=y +# CONFIG_MMC_CB710 is not set +# CONFIG_MMC_VIA_SDMMC is not set +CONFIG_MMC_DW=y +CONFIG_MMC_DW_PLTFM=y +# CONFIG_MMC_DW_BLUEFIELD is not set +CONFIG_MMC_DW_EXYNOS=y +CONFIG_MMC_DW_HI3798CV200=y +CONFIG_MMC_DW_K3=y +# CONFIG_MMC_DW_PCI is not set +CONFIG_MMC_DW_ROCKCHIP=y +# CONFIG_MMC_DW_ZX is not set +# CONFIG_MMC_SH_MMCIF is not set +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_SUNXI=y +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_TOSHIBA_PCI is not set +CONFIG_MMC_BCM2835=y +# CONFIG_MMC_MTK is not set +CONFIG_MMC_SDHCI_BRCMSTB=y +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MMC_SDHCI_OMAP is not set +# CONFIG_MMC_SDHCI_AM654 is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=y +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +CONFIG_LEDS_PWM=y +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +CONFIG_LEDS_SYSCON=y +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +# CONFIG_LEDS_TRIGGERS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_GHES=y +# CONFIG_EDAC_LAYERSCAPE is not set +# CONFIG_EDAC_THUNDERX is not set +# CONFIG_EDAC_ALTERA is not set +# CONFIG_EDAC_SYNOPSYS is not set +# CONFIG_EDAC_XGENE is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_BRCMSTB=y +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_MESON_VRTC=m +CONFIG_RTC_DRV_RK808=m +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +CONFIG_RTC_DRV_PCF85363=y +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +CONFIG_RTC_DRV_RX8581=m +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +CONFIG_RTC_DRV_S5M=y +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=y +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=y +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set +CONFIG_RTC_DRV_CROS_EC=y + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_IMXDI is not set +CONFIG_RTC_DRV_FSL_FTM_ALARM=y +CONFIG_HAVE_S3C_RTC=y +CONFIG_RTC_DRV_S3C=y +# CONFIG_RTC_DRV_SH is not set +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_SUN6I=y +# CONFIG_RTC_DRV_MV is not set +CONFIG_RTC_DRV_ARMADA38X=y +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_PM8XXX is not set +CONFIG_RTC_DRV_TEGRA=y +# CONFIG_RTC_DRV_MXC is not set +# CONFIG_RTC_DRV_MXC_V2 is not set +CONFIG_RTC_DRV_SNVS=y +CONFIG_RTC_DRV_IMX_SC=y +# CONFIG_RTC_DRV_IMX_RPMSG is not set +# CONFIG_RTC_DRV_MT7622 is not set +CONFIG_RTC_DRV_XGENE=y +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_AXI_DMAC is not set +CONFIG_BCM_SBA_RAID=m +# CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set +CONFIG_DMA_BCM2835=m +CONFIG_DMA_SUN6I=m +# CONFIG_DW_AXI_DMAC is not set +CONFIG_FSL_EDMA=y +# CONFIG_FSL_QDMA is not set +CONFIG_FSL_EDMA_V3=y +# CONFIG_IMX_DMA is not set +CONFIG_IMX_SDMA=y +# CONFIG_INTEL_IDMA64 is not set +CONFIG_K3_DMA=y +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y +CONFIG_MXS_DMA=y +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_PL330_DMA=y +# CONFIG_SPRD_DMA is not set +CONFIG_TEGRA20_APB_DMA=y +# CONFIG_TEGRA210_ADMA is not set +# CONFIG_UNIPHIER_MDMAC is not set +# CONFIG_XGENE_DMA is not set +# CONFIG_XILINX_DMA is not set +# CONFIG_XILINX_ZYNQMP_DMA is not set +# CONFIG_ZX_DMA is not set +# CONFIG_MTK_HSDMA is not set +# CONFIG_MTK_CQDMA is not set +# CONFIG_MTK_UART_APDMA is not set +CONFIG_QCOM_BAM_DMA=y +CONFIG_QCOM_HIDMA_MGMT=y +CONFIG_QCOM_HIDMA=y +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +CONFIG_RENESAS_DMA=y +CONFIG_RCAR_DMAC=y +CONFIG_RENESAS_USB_DMAC=m +# CONFIG_FSL_DPAA2_QDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_DMATEST=y +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_SELFTESTS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=y +CONFIG_UIO_CIF=y +CONFIG_UIO_PDRV_GENIRQ=y +CONFIG_UIO_DMEM_GENIRQ=y +CONFIG_UIO_AEC=y +CONFIG_UIO_SERCOS3=y +CONFIG_UIO_PCI_GENERIC=y +CONFIG_UIO_NETX=y +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VFIO=y +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +# CONFIG_VFIO_PLATFORM is not set +# CONFIG_VFIO_MDEV is not set +CONFIG_VFIO_FSL_MC=y +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_RTL8192U is not set +# CONFIG_RTLLIB is not set +# CONFIG_R8712U is not set +# CONFIG_RTS5208 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +# CONFIG_FB_SM750 is not set +# CONFIG_USB_EMXX is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_MFD_NVEC is not set +CONFIG_STAGING_MEDIA=y +# CONFIG_VIDEO_ALLEGRO_DVT is not set +CONFIG_VIDEO_IMX_CAPTURE=y + +# +# i.MX8QXP/QM Camera ISI/MIPI Features support +# +CONFIG_IMX8_MEDIA_DEVICE=y +CONFIG_IMX8_ISI_CORE=y +CONFIG_IMX8_ISI_CAPTURE=y +CONFIG_IMX8_ISI_M2M=y +CONFIG_IMX8_MIPI_CSI2=y +CONFIG_IMX8_MIPI_CSI2_SAM=y +CONFIG_IMX8_PARALLEL_CSI=y +CONFIG_GMSL_MAX9286=y +# end of i.MX8QXP/QM Camera ISI/MIPI Features support + +# CONFIG_VIDEO_MESON_VDEC is not set +# CONFIG_VIDEO_SUNXI is not set +# CONFIG_TEGRA_VDE is not set + +# +# soc_camera sensor drivers +# + +# +# Android +# +CONFIG_ION=y +CONFIG_ION_SYSTEM_HEAP=y +CONFIG_ION_CMA_HEAP=y +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_LTE_GDM724X is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +# CONFIG_FB_TFT is not set +CONFIG_FSL_DPAA2=y +CONFIG_FSL_DPAA2_ETHSW=y +CONFIG_FSL_DPAA2_MAC=y +# CONFIG_FSL_DPAA2_MAC_NETDEVS is not set +CONFIG_FSL_DPAA2_EVB=y +# CONFIG_MOST is not set +# CONFIG_KS7010 is not set +CONFIG_BCM_VIDEOCORE=y +# CONFIG_BCM2835_VCHIQ is not set +# CONFIG_SND_BCM2835 is not set +# CONFIG_VIDEO_BCM2835 is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_KPC2000 is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_QLGE is not set +CONFIG_FSL_SDK_DPA=y + +# +# Freescale Datapath QMan/BMan options +# +# CONFIG_FSL_DPA_CHECKING is not set +CONFIG_FSL_DPA_CAN_WAIT=y +CONFIG_FSL_DPA_CAN_WAIT_SYNC=y +CONFIG_FSL_DPA_PIRQ_FAST=y +CONFIG_FSL_DPA_PIRQ_SLOW=y +CONFIG_FSL_DPA_PORTAL_SHARE=y +CONFIG_FSL_SDK_BMAN=y +CONFIG_FSL_BMAN_CONFIG=y +# CONFIG_FSL_BMAN_TEST is not set +CONFIG_FSL_BMAN_DEBUGFS=y +CONFIG_FSL_SDK_QMAN=y +CONFIG_FSL_QMAN_POLL_LIMIT=32 +CONFIG_FSL_QMAN_CONFIG=y +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_QMAN_DEBUGFS=y +CONFIG_FSL_QMAN_FQD_SZ=10 +CONFIG_FSL_QMAN_PFDR_SZ=13 +CONFIG_FSL_QMAN_CI_SCHED_CFG_SRCCIV=4 +CONFIG_FSL_QMAN_CI_SCHED_CFG_SRQ_W=3 +CONFIG_FSL_QMAN_CI_SCHED_CFG_RW_W=2 +CONFIG_FSL_QMAN_CI_SCHED_CFG_BMAN_W=2 +CONFIG_FSL_QMAN_PIRQ_DQRR_ITHRESH=12 +CONFIG_FSL_QMAN_PIRQ_MR_ITHRESH=4 +CONFIG_FSL_QMAN_PIRQ_IPERIOD=100 +CONFIG_FSL_QMAN_FQ_LOOKUP=y +CONFIG_QMAN_CEETM_UPDATE_PERIOD=1000 +CONFIG_FSL_QMAN_INIT_TIMEOUT=10 +CONFIG_FSL_USDPAA=y +# end of Freescale Datapath QMan/BMan options + +CONFIG_FSL_PPFE=y +CONFIG_FSL_PPFE_UTIL_DISABLED=y +# CONFIG_GOLDFISH is not set +CONFIG_MFD_CROS_EC=y +CONFIG_CHROME_PLATFORMS=y +# CONFIG_CHROMEOS_TBMC is not set +CONFIG_CROS_EC=y +CONFIG_CROS_EC_I2C=y +# CONFIG_CROS_EC_RPMSG is not set +CONFIG_CROS_EC_SPI=y +CONFIG_CROS_EC_PROTO=y +# CONFIG_CROS_KBD_LED_BACKLIGHT is not set +CONFIG_CROS_EC_CHARDEV=y +CONFIG_CROS_EC_LIGHTBAR=y +CONFIG_CROS_EC_VBC=y +CONFIG_CROS_EC_DEBUGFS=y +CONFIG_CROS_EC_SYSFS=y +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +CONFIG_COMMON_CLK_VERSATILE=y +CONFIG_CLK_SP810=y +CONFIG_CLK_VEXPRESS_OSC=y +# CONFIG_CLK_HSDK is not set +# CONFIG_COMMON_CLK_MAX77686 is not set +# CONFIG_COMMON_CLK_MAX9485 is not set +CONFIG_COMMON_CLK_RK808=y +CONFIG_COMMON_CLK_HI655X=y +CONFIG_COMMON_CLK_SCPI=y +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +CONFIG_COMMON_CLK_CS2000_CP=y +CONFIG_COMMON_CLK_S2MPS11=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_LS1028A_PLLDIG=y +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_PWM=y +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_CLK_BCM2835=y +CONFIG_COMMON_CLK_IPROC=y +CONFIG_CLK_BCM_NS2=y +CONFIG_CLK_BCM_SR=y +CONFIG_CLK_RASPBERRYPI=m +CONFIG_COMMON_CLK_HI3516CV300=y +CONFIG_COMMON_CLK_HI3519=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=y +CONFIG_COMMON_CLK_HI6220=y +CONFIG_RESET_HISI=y +CONFIG_STUB_CLK_HI6220=y +CONFIG_STUB_CLK_HI3660=y +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_TI_SCI_CLK=y +# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set + +# +# Clock driver for MediaTek SoC +# +CONFIG_COMMON_CLK_MEDIATEK=y +CONFIG_COMMON_CLK_MT2712=y +# CONFIG_COMMON_CLK_MT2712_BDPSYS is not set +# CONFIG_COMMON_CLK_MT2712_IMGSYS is not set +# CONFIG_COMMON_CLK_MT2712_JPGDECSYS is not set +# CONFIG_COMMON_CLK_MT2712_MFGCFG is not set +# CONFIG_COMMON_CLK_MT2712_MMSYS is not set +# CONFIG_COMMON_CLK_MT2712_VDECSYS is not set +# CONFIG_COMMON_CLK_MT2712_VENCSYS is not set +CONFIG_COMMON_CLK_MT6779=y +# CONFIG_COMMON_CLK_MT6779_MMSYS is not set +# CONFIG_COMMON_CLK_MT6779_IMGSYS is not set +# CONFIG_COMMON_CLK_MT6779_IPESYS is not set +# CONFIG_COMMON_CLK_MT6779_CAMSYS is not set +# CONFIG_COMMON_CLK_MT6779_VDECSYS is not set +# CONFIG_COMMON_CLK_MT6779_VENCSYS is not set +# CONFIG_COMMON_CLK_MT6779_MFGCFG is not set +# CONFIG_COMMON_CLK_MT6779_AUDSYS is not set +CONFIG_COMMON_CLK_MT6797=y +# CONFIG_COMMON_CLK_MT6797_MMSYS is not set +# CONFIG_COMMON_CLK_MT6797_IMGSYS is not set +# CONFIG_COMMON_CLK_MT6797_VDECSYS is not set +# CONFIG_COMMON_CLK_MT6797_VENCSYS is not set +CONFIG_COMMON_CLK_MT7622=y +# CONFIG_COMMON_CLK_MT7622_ETHSYS is not set +# CONFIG_COMMON_CLK_MT7622_HIFSYS is not set +# CONFIG_COMMON_CLK_MT7622_AUDSYS is not set +CONFIG_COMMON_CLK_MT8173=y +CONFIG_COMMON_CLK_MT8183=y +# CONFIG_COMMON_CLK_MT8183_AUDIOSYS is not set +# CONFIG_COMMON_CLK_MT8183_CAMSYS is not set +# CONFIG_COMMON_CLK_MT8183_IMGSYS is not set +# CONFIG_COMMON_CLK_MT8183_IPU_CORE0 is not set +# CONFIG_COMMON_CLK_MT8183_IPU_CORE1 is not set +# CONFIG_COMMON_CLK_MT8183_IPU_ADL is not set +# CONFIG_COMMON_CLK_MT8183_IPU_CONN is not set +# CONFIG_COMMON_CLK_MT8183_MFGCFG is not set +# CONFIG_COMMON_CLK_MT8183_MMSYS is not set +# CONFIG_COMMON_CLK_MT8183_VDECSYS is not set +# CONFIG_COMMON_CLK_MT8183_VENCSYS is not set +CONFIG_COMMON_CLK_MT8516=y +# CONFIG_COMMON_CLK_MT8516_AUDSYS is not set +# end of Clock driver for MediaTek SoC + +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COMMON_CLK_G12A=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_37XX_CLK=y +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_RPMCC=y +CONFIG_COMMON_CLK_QCOM=y +CONFIG_QCOM_A53PLL=y +CONFIG_QCOM_CLK_APCS_MSM8916=y +CONFIG_QCOM_CLK_SMD_RPM=y +CONFIG_QCOM_CLK_RPMH=y +# CONFIG_APQ_GCC_8084 is not set +# CONFIG_APQ_MMCC_8084 is not set +# CONFIG_IPQ_GCC_4019 is not set +# CONFIG_IPQ_GCC_806X is not set +# CONFIG_IPQ_LCC_806X is not set +CONFIG_IPQ_GCC_8074=y +# CONFIG_MSM_GCC_8660 is not set +CONFIG_MSM_GCC_8916=y +# CONFIG_MSM_GCC_8960 is not set +# CONFIG_MSM_LCC_8960 is not set +# CONFIG_MDM_GCC_9615 is not set +# CONFIG_MDM_LCC_9615 is not set +# CONFIG_MSM_MMCC_8960 is not set +# CONFIG_MSM_GCC_8974 is not set +# CONFIG_MSM_MMCC_8974 is not set +CONFIG_MSM_GCC_8994=y +CONFIG_MSM_GCC_8996=y +CONFIG_MSM_MMCC_8996=y +CONFIG_MSM_GCC_8998=y +CONFIG_QCS_GCC_404=y +# CONFIG_SDM_CAMCC_845 is not set +# CONFIG_SDM_GCC_660 is not set +# CONFIG_QCS_TURING_404 is not set +CONFIG_SDM_GCC_845=y +# CONFIG_SDM_GPUCC_845 is not set +# CONFIG_SDM_VIDEOCC_845 is not set +# CONFIG_SDM_DISPCC_845 is not set +# CONFIG_SDM_LPASSCC_845 is not set +CONFIG_SM_GCC_8150=y +# CONFIG_SPMI_PMIC_CLKDIV is not set +# CONFIG_QCOM_HFPLL is not set +# CONFIG_KPSS_XCC is not set +CONFIG_CLK_RENESAS=y +CONFIG_CLK_R8A774A1=y +CONFIG_CLK_R8A774C0=y +CONFIG_CLK_R8A7795=y +CONFIG_CLK_R8A7796=y +CONFIG_CLK_R8A77965=y +CONFIG_CLK_R8A77970=y +CONFIG_CLK_R8A77980=y +CONFIG_CLK_R8A77990=y +CONFIG_CLK_R8A77995=y +# CONFIG_CLK_R9A06G032 is not set +CONFIG_CLK_RCAR_GEN3_CPG=y +# CONFIG_CLK_RCAR_USB2_CLOCK_SEL is not set +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_DIV6=y +CONFIG_ARCH_S32_CLK=y +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_EXYNOS_ARM64_COMMON_CLK=y +CONFIG_EXYNOS_AUDSS_CLK_CON=y +CONFIG_SPRD_COMMON_CLK=y +CONFIG_SPRD_SC9860_CLK=y +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_SUNXI_CCU=y +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +# CONFIG_SUN8I_A83T_CCU is not set +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_TEGRA_CLK_DFLL=y +CONFIG_CLK_UNIPHIER=y +# CONFIG_COMMON_CLK_ZYNQMP is not set +# end of Common Clock Framework + +CONFIG_HWSPINLOCK=y +# CONFIG_HWSPINLOCK_OMAP is not set +CONFIG_HWSPINLOCK_QCOM=y +# CONFIG_HWSPINLOCK_SPRD is not set + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_PROBE=y +CONFIG_CLKSRC_MMIO=y +CONFIG_ROCKCHIP_TIMER=y +CONFIG_TEGRA_TIMER=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_SYS_SUPPORTS_SH_CMT=y +CONFIG_MTK_TIMER=y +CONFIG_SPRD_TIMER=y +CONFIG_SYS_SUPPORTS_SH_TMU=y +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_TMU=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_TIMER_IMX_SYS_CTR=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_ARM_MHU=y +CONFIG_IMX_MBOX=y +CONFIG_PLATFORM_MHU=y +# CONFIG_PL320_MBOX is not set +# CONFIG_ARMADA_37XX_RWTM_MBOX is not set +# CONFIG_OMAP2PLUS_MBOX is not set +# CONFIG_ROCKCHIP_MBOX is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +CONFIG_BCM2835_MBOX=y +CONFIG_TI_MESSAGE_MANAGER=y +CONFIG_HI3660_MBOX=y +CONFIG_HI6220_MBOX=y +# CONFIG_MAILBOX_TEST is not set +CONFIG_QCOM_APCS_IPC=y +CONFIG_TEGRA_HSP_MBOX=y +# CONFIG_XGENE_SLIMPRO_MBOX is not set +# CONFIG_BCM_PDC_MBOX is not set +CONFIG_BCM_FLEXRM_MBOX=m +# CONFIG_MTK_CMDQ_MBOX is not set +# CONFIG_ZYNQMP_IPI_MBOX is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_DMA=y +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_TEGRA_IOMMU_SMMU=y +# CONFIG_EXYNOS_IOMMU is not set +# CONFIG_IPMMU_VMSA is not set +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +CONFIG_ARM_SMMU_V3=y +# CONFIG_MTK_IOMMU is not set +CONFIG_QCOM_IOMMU=y +# CONFIG_VIRTIO_IOMMU is not set + +# +# Remoteproc drivers +# +CONFIG_REMOTEPROC=y +# CONFIG_IMX_REMOTEPROC is not set +CONFIG_QCOM_RPROC_COMMON=m +CONFIG_QCOM_Q6V5_COMMON=m +# CONFIG_QCOM_Q6V5_ADSP is not set +CONFIG_QCOM_Q6V5_MSS=m +CONFIG_QCOM_Q6V5_PAS=m +# CONFIG_QCOM_Q6V5_WCSS is not set +CONFIG_QCOM_SYSMON=m +# CONFIG_QCOM_WCNSS_PIL is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=y +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_QCOM_GLINK_NATIVE=y +CONFIG_RPMSG_QCOM_GLINK_RPM=y +CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_SMD=y +CONFIG_RPMSG_VIRTIO=y +CONFIG_HAVE_IMX_RPMSG=y +CONFIG_IMX_RPMSG_PINGPONG=m +CONFIG_IMX_RPMSG_TTY=m +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# CONFIG_MESON_CANVAS is not set +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_MX_SOCINFO=y +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +CONFIG_BCM2835_POWER=y +CONFIG_RASPBERRYPI_POWER=y +CONFIG_SOC_BRCMSTB=y +CONFIG_BRCMSTB_PM=y +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_FSL_DPAA is not set +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_GUTS=y +CONFIG_FSL_MC_DPIO=y +CONFIG_DPAA2_CONSOLE=y +CONFIG_FSL_QIXIS=y +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_IMX_SCU_SOC=y +CONFIG_IMX8M_PM_DOMAINS=y +CONFIG_IMX8M_BUSFREQ=y +# end of i.MX SoC drivers + +# +# MediaTek SoC drivers +# +# CONFIG_MTK_CMDQ is not set +CONFIG_MTK_INFRACFG=y +# CONFIG_MTK_PMIC_WRAP is not set +CONFIG_MTK_SCPSYS=y +# end of MediaTek SoC drivers + +# +# Qualcomm SoC drivers +# +# CONFIG_QCOM_AOSS_QMP is not set +# CONFIG_QCOM_COMMAND_DB is not set +CONFIG_QCOM_GENI_SE=y +CONFIG_QCOM_GLINK_SSR=m +# CONFIG_QCOM_GSBI is not set +# CONFIG_QCOM_LLCC is not set +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_QMI_HELPERS=m +# CONFIG_QCOM_RMTFS_MEM is not set +CONFIG_QCOM_RPMH=y +# CONFIG_QCOM_RPMPD is not set +CONFIG_QCOM_SMEM=y +CONFIG_QCOM_SMD_RPM=y +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=y +CONFIG_QCOM_SMSM=y +# CONFIG_QCOM_SOCINFO is not set +# CONFIG_QCOM_WCNSS_CTRL is not set +# CONFIG_QCOM_APR is not set +# end of Qualcomm SoC drivers + +CONFIG_SOC_RENESAS=y +CONFIG_ARCH_RCAR_GEN3=y +CONFIG_ARCH_R8A774A1=y +CONFIG_ARCH_R8A774C0=y +CONFIG_ARCH_R8A7795=y +CONFIG_ARCH_R8A7796=y +CONFIG_ARCH_R8A77965=y +CONFIG_ARCH_R8A77970=y +CONFIG_ARCH_R8A77980=y +CONFIG_ARCH_R8A77990=y +CONFIG_ARCH_R8A77995=y +CONFIG_SYSC_R8A774A1=y +CONFIG_SYSC_R8A774C0=y +CONFIG_SYSC_R8A7795=y +CONFIG_SYSC_R8A7796=y +CONFIG_SYSC_R8A77965=y +CONFIG_SYSC_R8A77970=y +CONFIG_SYSC_R8A77980=y +CONFIG_SYSC_R8A77990=y +CONFIG_SYSC_R8A77995=y +CONFIG_RST_RCAR=y +CONFIG_SYSC_RCAR=y +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_SOC_SAMSUNG=y +CONFIG_EXYNOS_CHIPID=y +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_SUNXI_SRAM=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +CONFIG_ARCH_TEGRA_186_SOC=y +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y +CONFIG_ARCH_K3_AM6_SOC=y +CONFIG_ARCH_K3_J721E_SOC=y +CONFIG_SOC_TI=y +CONFIG_TI_SCI_PM_DOMAINS=y +CONFIG_TI_SCI_INTA_MSI_DOMAIN=y + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +CONFIG_ZYNQMP_POWER=y +CONFIG_ZYNQMP_PM_DOMAINS=y +# end of Xilinx SoC drivers + +# CONFIG_SOC_ZTE is not set +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_ARM_EXYNOS_BUS_DEVFREQ is not set +# CONFIG_ARM_TEGRA_DEVFREQ is not set +# CONFIG_ARM_RK3399_DMC_DEVFREQ is not set +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +# CONFIG_EXTCON_FSA9480 is not set +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +# CONFIG_EXTCON_PTN5150 is not set +# CONFIG_EXTCON_QCOM_SPMI_MISC is not set +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=y +CONFIG_EXTCON_USBC_CROS_EC=y +CONFIG_MEMORY=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_FSL_IFC=y +CONFIG_TEGRA_MC=y +CONFIG_IIO=y +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +# CONFIG_BMC150_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set +# CONFIG_IIO_ST_ACCEL_3AXIS is not set +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +# CONFIG_MMA8452 is not set +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7124 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_AXP20X_ADC is not set +# CONFIG_AXP288_ADC is not set +# CONFIG_BCM_IPROC_ADC is not set +# CONFIG_BERLIN2_ADC is not set +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +CONFIG_EXYNOS_ADC=y +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_INA2XX_ADC is not set +# CONFIG_IMX7D_ADC is not set +CONFIG_IMX8QXP_ADC=y +# CONFIG_LTC2471 is not set +# CONFIG_LTC2485 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_MEDIATEK_MT6577_AUXADC is not set +CONFIG_MESON_SARADC=y +# CONFIG_NAU7802 is not set +# CONFIG_QCOM_SPMI_IADC is not set +# CONFIG_QCOM_SPMI_VADC is not set +# CONFIG_QCOM_SPMI_ADC5 is not set +CONFIG_ROCKCHIP_SARADC=m +# CONFIG_SD_ADC_MODULATOR is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_TLC4541 is not set +# CONFIG_VF610_ADC is not set +# CONFIG_XILINX_XADC is not set +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# end of Amplifiers + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_BME680 is not set +# CONFIG_CCS811 is not set +# CONFIG_IAQCORE is not set +# CONFIG_PMS7003 is not set +# CONFIG_SENSIRION_SGP30 is not set +# CONFIG_SPS30 is not set +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS=m +# CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE is not set + +# +# Hid Sensor IIO Common +# +# end of Hid Sensor IIO Common + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +# CONFIG_AD5446 is not set +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +# CONFIG_ADF4371 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_KMX61 is not set +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# end of Inertial measurement units + +# +# Light sensors +# +# CONFIG_ACPI_ALS is not set +# CONFIG_ADJD_S311 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_BH1750 is not set +# CONFIG_BH1780 is not set +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +# CONFIG_GP2AP020A00F is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Digital potentiometers +# +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +CONFIG_IIO_CROS_EC_BARO=m +# CONFIG_DPS310 is not set +# CONFIG_HP03 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +CONFIG_PWM_BCM_IPROC=y +CONFIG_PWM_BCM2835=m +# CONFIG_PWM_BERLIN is not set +# CONFIG_PWM_BRCMSTB is not set +CONFIG_PWM_CROS_EC=m +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_HIBVT is not set +# CONFIG_PWM_IMX1 is not set +CONFIG_PWM_IMX27=y +# CONFIG_PWM_IMX_TPM is not set +CONFIG_PWM_MESON=m +# CONFIG_PWM_MTK_DISP is not set +# CONFIG_PWM_MEDIATEK is not set +# CONFIG_PWM_PCA9685 is not set +CONFIG_PWM_RCAR=m +# CONFIG_PWM_RENESAS_TPU is not set +CONFIG_PWM_ROCKCHIP=y +CONFIG_PWM_SAMSUNG=y +# CONFIG_PWM_SPRD is not set +CONFIG_PWM_SUN4I=m +CONFIG_PWM_TEGRA=m +# CONFIG_PWM_TIECAP is not set +# CONFIG_PWM_TIEHRPWM is not set +# CONFIG_PWM_ZX is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +CONFIG_ALPINE_MSI=y +# CONFIG_AL_FIC is not set +CONFIG_BCM7038_L1_IRQ=y +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_DW_APB_ICTL=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_RENESAS_IRQC=y +CONFIG_IMX_GPCV2=y +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_LS_SCFG_MSI=y +CONFIG_PARTITION_PERCPU=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_IRQ_UNIPHIER_AIDET=y +CONFIG_MESON_IRQ_GPIO=y +# CONFIG_QCOM_PDC is not set +CONFIG_IMX_IRQSTEER=y +CONFIG_TI_SCI_INTR_IRQCHIP=y +CONFIG_TI_SCI_INTA_IRQCHIP=y +CONFIG_IMX_INTMUX=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_BERLIN=y +CONFIG_RESET_BRCMSTB=y +CONFIG_RESET_DISPMIX=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_GPIO=y +CONFIG_RESET_MESON=y +CONFIG_RESET_MESON_AUDIO_ARB=m +# CONFIG_RESET_QCOM_AOSS is not set +# CONFIG_RESET_QCOM_PDC is not set +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SUNXI=y +CONFIG_RESET_TI_SCI=y +# CONFIG_RESET_TI_SYSCON is not set +CONFIG_RESET_UNIPHIER=y +CONFIG_RESET_UNIPHIER_GLUE=y +CONFIG_COMMON_RESET_HI3660=y +CONFIG_COMMON_RESET_HI6220=y +CONFIG_RESET_TEGRA_BPMP=y + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_XGENE=y +CONFIG_PHY_MIXEL_LVDS=y +CONFIG_PHY_MIXEL_LVDS_COMBO=y +CONFIG_PHY_SUN4I_USB=y +# CONFIG_PHY_SUN6I_MIPI_DPHY is not set +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_MESON8B_USB2=y +CONFIG_PHY_MESON_GXL_USB2=y +CONFIG_PHY_MESON_GXL_USB3=y +CONFIG_PHY_MESON_G12A_USB2=y +CONFIG_PHY_MESON_G12A_USB3_PCIE=y +CONFIG_PHY_BCM_SR_USB=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_BCM_NS_USB2 is not set +# CONFIG_PHY_BCM_NS_USB3 is not set +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_NS2_USB_DRD=y +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_BRCM_USB=y +CONFIG_PHY_BCM_SR_PCIE=y +# CONFIG_PHY_CADENCE_DP is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +CONFIG_PHY_FSL_IMX8MQ_USB=y +CONFIG_PHY_MIXEL_MIPI_DPHY=y +CONFIG_PHY_HI6220_USB=y +# CONFIG_PHY_HI3660_USB is not set +CONFIG_PHY_HISTB_COMBPHY=y +CONFIG_PHY_HISI_INNO_USB2=y +# CONFIG_PHY_BERLIN_SATA is not set +# CONFIG_PHY_BERLIN_USB is not set +CONFIG_PHY_MVEBU_A3700_COMPHY=y +CONFIG_PHY_MVEBU_A3700_UTMI=y +# CONFIG_PHY_MVEBU_A38X_COMPHY is not set +CONFIG_PHY_MVEBU_CP110_COMPHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_MTK_TPHY is not set +# CONFIG_PHY_MTK_UFS is not set +# CONFIG_PHY_MTK_XSPHY is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +# CONFIG_PHY_QCOM_APQ8064_SATA is not set +# CONFIG_PHY_QCOM_IPQ806X_SATA is not set +# CONFIG_PHY_QCOM_PCIE2 is not set +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +# CONFIG_PHY_QCOM_UFS is not set +CONFIG_PHY_QCOM_USB_HS=y +# CONFIG_PHY_QCOM_USB_HSIC is not set +# CONFIG_PHY_RCAR_GEN2 is not set +CONFIG_PHY_RCAR_GEN3_PCIE=y +CONFIG_PHY_RCAR_GEN3_USB2=y +CONFIG_PHY_RCAR_GEN3_USB3=m +# CONFIG_PHY_ROCKCHIP_DP is not set +CONFIG_PHY_ROCKCHIP_EMMC=y +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=y +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=y +# CONFIG_PHY_ROCKCHIP_USB is not set +CONFIG_PHY_EXYNOS_DP_VIDEO=y +CONFIG_PHY_EXYNOS_MIPI_VIDEO=y +# CONFIG_PHY_EXYNOS_PCIE is not set +CONFIG_PHY_SAMSUNG_USB2=y +CONFIG_PHY_EXYNOS5_USBDRD=y +CONFIG_PHY_UNIPHIER_USB2=y +CONFIG_PHY_UNIPHIER_USB3=y +# CONFIG_PHY_UNIPHIER_PCIE is not set +CONFIG_PHY_TEGRA_XUSB=y +CONFIG_PHY_TEGRA194_P2U=m +# CONFIG_PHY_AM654_SERDES is not set +# CONFIG_OMAP_USB2 is not set +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_SMMU_V3_PMU is not set +# CONFIG_ARM_DSU_PMU is not set +CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_HISI_PMU=y +CONFIG_QCOM_L2_PMU=y +CONFIG_QCOM_L3_PMU=y +CONFIG_THUNDERX2_PMU=m +# CONFIG_XGENE_PMU is not set +# CONFIG_ARM_SPE_PMU is not set +# end of Performance monitor support + +CONFIG_RAS=y + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_IMX_IIM is not set +CONFIG_NVMEM_IMX_OCOTP=y +CONFIG_NVMEM_IMX_OCOTP_SCU=y +# CONFIG_MTK_EFUSE is not set +CONFIG_QCOM_QFPROM=y +CONFIG_ROCKCHIP_EFUSE=y +CONFIG_NVMEM_BCM_OCOTP=y +CONFIG_NVMEM_SUNXI_SID=y +CONFIG_UNIPHIER_EFUSE=y +CONFIG_MESON_EFUSE=m +# CONFIG_MESON_MX_EFUSE is not set +# CONFIG_NVMEM_SNVS_LPGPR is not set +# CONFIG_NVMEM_ZYNQMP is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +CONFIG_FPGA=y +# CONFIG_ALTERA_PR_IP_CORE is not set +# CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set +# CONFIG_FPGA_MGR_ALTERA_CVP is not set +CONFIG_FPGA_MGR_STRATIX10_SOC=m +# CONFIG_FPGA_MGR_XILINX_SPI is not set +# CONFIG_FPGA_MGR_ICE40_SPI is not set +# CONFIG_FPGA_MGR_MACHXO2_SPI is not set +CONFIG_FPGA_BRIDGE=m +CONFIG_ALTERA_FREEZE_BRIDGE=m +# CONFIG_XILINX_PR_DECOUPLER is not set +CONFIG_FPGA_REGION=m +CONFIG_OF_FPGA_REGION=m +# CONFIG_FPGA_DFL is not set +# CONFIG_FPGA_MGR_ZYNQMP_FPGA is not set +# CONFIG_FSI is not set +CONFIG_TEE=y + +# +# TEE drivers +# +CONFIG_OPTEE=y +CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 +# end of TEE drivers + +CONFIG_MULTIPLEXER=y + +# +# Multiplexer drivers +# +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +CONFIG_MUX_MMIO=y +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set + +# +# MXC support drivers +# +CONFIG_MXC_SIM=y +# CONFIG_MXC_IPU is not set + +# +# MXC HANTRO(Video Processing Unit) support +# +CONFIG_MXC_HANTRO=y +# end of MXC HANTRO(Video Processing Unit) support + +# +# MXC HANTRO(Video Processing Unit) 845 support +# +CONFIG_MXC_HANTRO_845=y +# end of MXC HANTRO(Video Processing Unit) 845 support + +# +# MXC HANTRO(Video Processing Unit) encoder support +# +CONFIG_MXC_HANTRO_845_H1=y +# end of MXC HANTRO(Video Processing Unit) encoder support + +# +# MXC VPU(Video Processing Unit) MALONE DECODER support +# +CONFIG_MXC_VPU_MALONE=y +# CONFIG_MXC_VPU_MALONE_DEBUG is not set +# end of MXC VPU(Video Processing Unit) MALONE DECODER support + +# +# MXC VPU(Video Processing Unit) WINDSOR ENCODER support +# +CONFIG_MXC_VPU_WINDSOR=y +# CONFIG_MXC_VPU_WINDSOR_DEBUG is not set +# end of MXC VPU(Video Processing Unit) WINDSOR ENCODER support + +# +# MXC Vivante GPU support +# +CONFIG_MXC_GPU_VIV=y +# end of MXC Vivante GPU support + +# +# MXC VPU(Video Processing Unit) support +# +# end of MXC VPU(Video Processing Unit) support + +# +# MXC SIM Support +# +# CONFIG_MXC_SIMv2 is not set +CONFIG_MXC_EMVSIM=y +# end of MXC SIM Support + +# +# MXC Media Local Bus Driver +# +CONFIG_MXC_MLB=y +CONFIG_MXC_MLB150=y +# end of MXC Media Local Bus Driver + +# +# MXC HDMI CEC (Consumer Electronics Control) support +# +# end of MXC HDMI CEC (Consumer Electronics Control) support + +# +# MXC MIPI Support +# +# end of MXC MIPI Support +# end of MXC support drivers +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +CONFIG_EXT2_FS=y +CONFIG_EXT2_FS_XATTR=y +CONFIG_EXT2_FS_POSIX_ACL=y +# CONFIG_EXT2_FS_SECURITY is not set +CONFIG_EXT3_FS=y +CONFIG_EXT3_FS_POSIX_ACL=y +# CONFIG_EXT3_FS_SECURITY is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +CONFIG_BTRFS_FS=y +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=y +CONFIG_AUTOFS_FS=y +CONFIG_FUSE_FS=y +CONFIG_CUSE=m +# CONFIG_VIRTIO_FS is not set +CONFIG_OVERLAY_FS=y +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_XINO_AUTO is not set +# CONFIG_OVERLAY_FS_METACOPY is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +CONFIG_JFFS2_FS=y +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +# CONFIG_JFFS2_SUMMARY is not set +# CONFIG_JFFS2_FS_XATTR is not set +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_RTIME=y +CONFIG_UBIFS_FS=y +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +# CONFIG_UBIFS_FS_AUTHENTICATION is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=y +CONFIG_NFS_V2=y +CONFIG_NFS_V3=y +# CONFIG_NFS_V3_ACL is not set +CONFIG_NFS_V4=y +# CONFIG_NFS_SWAP is not set +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=y +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +# CONFIG_NFS_V4_1_MIGRATION is not set +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_ROOT_NFS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFSD is not set +CONFIG_GRACE_PERIOD=y +CONFIG_LOCKD=y +CONFIG_LOCKD_V4=y +CONFIG_NFS_COMMON=y +CONFIG_SUNRPC=y +CONFIG_SUNRPC_GSS=y +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_RPCSEC_GSS_KRB5=m +# CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES is not set +# CONFIG_SUNRPC_DEBUG is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_SECURE_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +# CONFIG_SECURITY_NETWORK is not set +# CONFIG_SECURITY_PATH is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +# CONFIG_SECURITY_LOADPIN is not set +# CONFIG_SECURITY_YAMA is not set +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=y +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_CRYPTD=y +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_ENGINE=m + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +# CONFIG_CRYPTO_GCM is not set +CONFIG_CRYPTO_CHACHA20POLY1305=m +# CONFIG_CRYPTO_AEGIS128 is not set +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=y +CONFIG_CRYPTO_TLS=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=m +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +CONFIG_CRYPTO_XTS=m +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_GHASH is not set +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=y +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SM3=m +# CONFIG_CRYPTO_STREEBOG is not set +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_WP512=m + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_LIB_ARC4=y +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +CONFIG_CRYPTO_CHACHA20=m +# CONFIG_CRYPTO_SEED is not set +CONFIG_CRYPTO_SERPENT=m +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_ZSTD=y + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y +CONFIG_CRYPTO_USER_API_RNG=y +CONFIG_CRYPTO_USER_API_AEAD=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_MARVELL_CESA is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_SECVIO=y +CONFIG_CRYPTO_DEV_FSL_CAAM=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_TK_API is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=m +CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y +# CONFIG_CRYPTO_DEV_SAHARA is not set +# CONFIG_CRYPTO_DEV_EXYNOS_RNG is not set +# CONFIG_CRYPTO_DEV_S5P is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +# CONFIG_CAVIUM_CPT is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set +# CONFIG_CRYPTO_DEV_QCE is not set +# CONFIG_CRYPTO_DEV_QCOM_RNG is not set +# CONFIG_CRYPTO_DEV_ROCKCHIP is not set +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_BCM_SPU=m +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_HISI_SEC is not set +# CONFIG_CRYPTO_DEV_HISI_ZIP is not set +# CONFIG_ASYMMETRIC_KEY_TYPE is not set + +# +# Certificates for signature checking +# +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_RAID6_PQ=y +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_STMP_DEVICE=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_INDIRECT_PIO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +CONFIG_CRC7=y +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y +CONFIG_SWIOTLB=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=320 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_HAVE_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_VMALLOC is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_BPF is not set +# CONFIG_TEST_BLACKHOLE_DEV is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set +# CONFIG_ARM64_PTDUMP_DEBUGFS is not set +CONFIG_PID_IN_CONTEXTIDR=y +# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DEBUG_ALIGN_RODATA is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_ARM64_RELOC_TEST is not set +# CONFIG_CORESIGHT is not set +# end of Kernel hacking From fa4f3279756dc8ea994d0fee79759a42dd04ca66 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 15 Oct 2021 10:50:51 -0700 Subject: [PATCH 003/132] solidrun/honeycomb: basic build boots Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 5 +++-- mainboards/solidrun/honeycomblx2k/config-5.4.47 | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile index 177f79cb..369ccf02 100644 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -34,7 +34,7 @@ # make flashtest -default: netboot.bin +default: netbootkernel u-root: GO111MODULE=off go install github.com/u-root/u-root @@ -42,7 +42,7 @@ u-root: @echo if GOPATH is empty, then put ~/go/bin in your PATH usefultargets: - echo fetch, uroot, netboot.bin + echo fetch, uroot, netbootkernel flashinitramfs.cpio: u-root Makefile GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ @@ -53,6 +53,7 @@ flashinitramfs.cpio: u-root Makefile netbootkernel: config-5.4.47 flashinitramfs.cpio cp $< linux/.config (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux/arch/arm64/boot/Image $@ # These stanzas fetch code. fetch: getkernel geturoot diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 7dc662e1..176b4346 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -4,13 +4,14 @@ # # -# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.4-2019.02) 7.4.1 20181213 [linaro-7.4-2019.02 revision 56ec6f6b99cc167ff0c2f8e1a2eed33b1edc85d4] +# Compiler: aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70401 +CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y @@ -422,6 +423,8 @@ CONFIG_ARM64_MODULE_PLTS=y CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_STACKPROTECTOR_PER_TASK=y # end of Kernel Features # From 95255d82dad22040d4e7e7209396f9efa56baaa6 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 10:56:43 -0700 Subject: [PATCH 004/132] boot.scr (maybe works) Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/boot.scr | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mainboards/solidrun/honeycomblx2k/boot.scr diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr new file mode 100644 index 00000000..8c4cb30a --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/boot.scr @@ -0,0 +1,8 @@ +mmc read 0x80d00000 0x6800 0x800 +fsl_mc apply DPL 0x80d00000 +tftpboot ${kernel_addr_r} netbootkernel +tftpboot ${kernel_addr_r} lxSDK +tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb +tftpboot ${fdt_addr_r} honeycombDTB +bootefi ${kernel_addr_r} ${fdt_addr_r} + From 5c42dece8bef65043572ab1577abe1d6491b1182 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 10:57:51 -0700 Subject: [PATCH 005/132] config that booted. Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/config-5.4.47 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 176b4346..47cc2ab0 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -4,14 +4,13 @@ # # -# Compiler: aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.4-2019.02) 7.4.1 20181213 [linaro-7.4-2019.02 revision 56ec6f6b99cc167ff0c2f8e1a2eed33b1edc85d4] # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 +CONFIG_GCC_VERSION=70401 CONFIG_CLANG_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y @@ -158,13 +157,16 @@ CONFIG_SCHED_AUTOGROUP=y # CONFIG_SYSFS_DEPRECATED is not set CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" +CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 CONFIG_RD_GZIP=y CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y CONFIG_RD_XZ=y CONFIG_RD_LZO=y CONFIG_RD_LZ4=y +CONFIG_INITRAMFS_COMPRESSION=".gz" CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y @@ -423,8 +425,6 @@ CONFIG_ARM64_MODULE_PLTS=y CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y CONFIG_RANDOMIZE_MODULE_REGION_FULL=y -CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y -CONFIG_STACKPROTECTOR_PER_TASK=y # end of Kernel Features # From da93fa3c49be7ce27d33e204626761e862abb004 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 11:50:31 -0700 Subject: [PATCH 006/132] make it non modular Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 818 +++++++++--------- 1 file changed, 409 insertions(+), 409 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 47cc2ab0..793a2b47 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -505,10 +505,10 @@ CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_POWERSAVE=y CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_ONDEMAND=y -CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y # @@ -516,7 +516,7 @@ CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y # CONFIG_CPUFREQ_DT=y CONFIG_CPUFREQ_DT_PLATDEV=y -CONFIG_ACPI_CPPC_CPUFREQ=m +CONFIG_ACPI_CPPC_CPUFREQ=y # CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set CONFIG_ARM_ARMADA_37XX_CPUFREQ=y # CONFIG_ARM_ARMADA_8K_CPUFREQ is not set @@ -527,7 +527,7 @@ CONFIG_ARM_IMX_CPUFREQ_DT=y # CONFIG_ARM_MEDIATEK_CPUFREQ is not set # CONFIG_ARM_QCOM_CPUFREQ_NVMEM is not set # CONFIG_ARM_QCOM_CPUFREQ_HW is not set -CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_RASPBERRYPI_CPUFREQ=y CONFIG_ARM_TEGRA20_CPUFREQ=y CONFIG_ARM_TEGRA124_CPUFREQ=y CONFIG_ARM_TEGRA186_CPUFREQ=y @@ -664,23 +664,23 @@ CONFIG_VHOST=y # CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set CONFIG_ARM64_CRYPTO=y CONFIG_CRYPTO_SHA256_ARM64=y -CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA512_ARM64=y CONFIG_CRYPTO_SHA1_ARM64_CE=y CONFIG_CRYPTO_SHA2_ARM64_CE=y -CONFIG_CRYPTO_SHA512_ARM64_CE=m -CONFIG_CRYPTO_SHA3_ARM64=m -CONFIG_CRYPTO_SM3_ARM64_CE=m +CONFIG_CRYPTO_SHA512_ARM64_CE=y +CONFIG_CRYPTO_SHA3_ARM64=y +CONFIG_CRYPTO_SM3_ARM64_CE=y # CONFIG_CRYPTO_SM4_ARM64_CE is not set CONFIG_CRYPTO_GHASH_ARM64_CE=y -CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y CONFIG_CRYPTO_AES_ARM64=y CONFIG_CRYPTO_AES_ARM64_CE=y CONFIG_CRYPTO_AES_ARM64_CE_CCM=y CONFIG_CRYPTO_AES_ARM64_CE_BLK=y -CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m -CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y +CONFIG_CRYPTO_CHACHA20_NEON=y # CONFIG_CRYPTO_NHPOLY1305_NEON is not set -CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_BS=y # # General architecture-dependent options @@ -935,7 +935,7 @@ CONFIG_NET_IP_TUNNEL=y # CONFIG_IP_MROUTE is not set # CONFIG_SYN_COOKIES is not set # CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_UDP_TUNNEL=y # CONFIG_NET_FOU is not set # CONFIG_NET_FOU_IP_TUNNELS is not set # CONFIG_INET_AH is not set @@ -1050,14 +1050,14 @@ CONFIG_NETFILTER_XT_CONNMARK=y # Xtables targets # # CONFIG_NETFILTER_XT_TARGET_AUDIT is not set -CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=y # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set CONFIG_NETFILTER_XT_TARGET_CONNMARK=y # CONFIG_NETFILTER_XT_TARGET_DSCP is not set # CONFIG_NETFILTER_XT_TARGET_HL is not set # CONFIG_NETFILTER_XT_TARGET_HMARK is not set # CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set -CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_LOG=y # CONFIG_NETFILTER_XT_TARGET_MARK is not set CONFIG_NETFILTER_XT_NAT=y # CONFIG_NETFILTER_XT_TARGET_NETMAP is not set @@ -1074,7 +1074,7 @@ CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y # # Xtables matches # -CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y # CONFIG_NETFILTER_XT_MATCH_BPF is not set # CONFIG_NETFILTER_XT_MATCH_CGROUP is not set # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set @@ -1083,7 +1083,7 @@ CONFIG_NETFILTER_XT_MATCH_COMMENT=y # CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set -CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y # CONFIG_NETFILTER_XT_MATCH_CPU is not set # CONFIG_NETFILTER_XT_MATCH_DCCP is not set # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set @@ -1136,15 +1136,15 @@ CONFIG_NF_TABLES_IPV4=y # CONFIG_NF_TABLES_ARP is not set # CONFIG_NF_DUP_IPV4 is not set # CONFIG_NF_LOG_ARP is not set -CONFIG_NF_LOG_IPV4=m -CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_LOG_IPV4=y +CONFIG_NF_REJECT_IPV4=y CONFIG_IP_NF_IPTABLES=y # CONFIG_IP_NF_MATCH_AH is not set # CONFIG_IP_NF_MATCH_ECN is not set # CONFIG_IP_NF_MATCH_RPFILTER is not set # CONFIG_IP_NF_MATCH_TTL is not set CONFIG_IP_NF_FILTER=y -CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_REJECT=y # CONFIG_IP_NF_TARGET_SYNPROXY is not set CONFIG_IP_NF_NAT=y CONFIG_IP_NF_TARGET_MASQUERADE=y @@ -1168,7 +1168,7 @@ CONFIG_IP_NF_MANGLE=y # CONFIG_NF_DUP_IPV6 is not set CONFIG_NF_REJECT_IPV6=y CONFIG_NF_LOG_IPV6=y -CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_IPTABLES=y # CONFIG_IP6_NF_MATCH_AH is not set # CONFIG_IP6_NF_MATCH_EUI64 is not set # CONFIG_IP6_NF_MATCH_FRAG is not set @@ -1180,14 +1180,14 @@ CONFIG_IP6_NF_IPTABLES=m # CONFIG_IP6_NF_MATCH_RT is not set # CONFIG_IP6_NF_MATCH_SRH is not set # CONFIG_IP6_NF_TARGET_HL is not set -CONFIG_IP6_NF_FILTER=m -CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_FILTER=y +CONFIG_IP6_NF_TARGET_REJECT=y # CONFIG_IP6_NF_TARGET_SYNPROXY is not set -CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MANGLE=y # CONFIG_IP6_NF_RAW is not set # CONFIG_IP6_NF_SECURITY is not set -CONFIG_IP6_NF_NAT=m -CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_NAT=y +CONFIG_IP6_NF_TARGET_MASQUERADE=y # CONFIG_IP6_NF_TARGET_NPT is not set # end of IPv6: Netfilter Configuration @@ -1354,9 +1354,9 @@ CONFIG_NETLINK_DIAG=y # CONFIG_HSR is not set CONFIG_NET_SWITCHDEV=y # CONFIG_NET_L3_MASTER_DEV is not set -CONFIG_QRTR=m -CONFIG_QRTR_SMD=m -CONFIG_QRTR_TUN=m +CONFIG_QRTR=y +CONFIG_QRTR_SMD=y +CONFIG_QRTR_TUN=y # CONFIG_NET_NCSI is not set CONFIG_RPS=y CONFIG_RFS_ACCEL=y @@ -1376,10 +1376,10 @@ CONFIG_NET_PKTGEN=y # end of Networking options # CONFIG_HAMRADIO is not set -CONFIG_CAN=m -CONFIG_CAN_RAW=m -CONFIG_CAN_BCM=m -CONFIG_CAN_GW=m +CONFIG_CAN=y +CONFIG_CAN_RAW=y +CONFIG_CAN_BCM=y +CONFIG_CAN_GW=y # CONFIG_CAN_J1939 is not set # @@ -1388,9 +1388,9 @@ CONFIG_CAN_GW=m # CONFIG_CAN_VCAN is not set # CONFIG_CAN_VXCAN is not set # CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=m +CONFIG_CAN_DEV=y CONFIG_CAN_CALC_BITTIMING=y -CONFIG_CAN_FLEXCAN=m +CONFIG_CAN_FLEXCAN=y # CONFIG_CAN_GRCAN is not set # CONFIG_CAN_KVASER_PCIEFD is not set # CONFIG_CAN_XILINXCAN is not set @@ -1539,7 +1539,7 @@ CONFIG_PCIE_ALTERA_MSI=y CONFIG_PCI_HOST_THUNDER_PEM=y CONFIG_PCI_HOST_THUNDER_ECAM=y CONFIG_PCIE_ROCKCHIP=y -CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_ROCKCHIP_HOST=y # CONFIG_PCIE_MEDIATEK is not set # @@ -1561,7 +1561,7 @@ CONFIG_PCIE_ARMADA_8K=y CONFIG_PCIE_KIRIN=y CONFIG_PCIE_HISI_STB=y # CONFIG_PCI_MESON is not set -CONFIG_PCIE_TEGRA194=m +CONFIG_PCIE_TEGRA194=y # CONFIG_PCIE_UNIPHIER is not set # CONFIG_PCIE_AL is not set # end of DesignWare PCI Core Support @@ -1825,7 +1825,7 @@ CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 # CONFIG_BLK_DEV_CRYPTOLOOP is not set # CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NBD=y # CONFIG_BLK_DEV_SKD is not set # CONFIG_BLK_DEV_SX8 is not set CONFIG_BLK_DEV_RAM=y @@ -1885,7 +1885,7 @@ CONFIG_VEXPRESS_SYSCFG=y # EEPROM support # CONFIG_EEPROM_AT24=y -CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_AT25=y # CONFIG_EEPROM_LEGACY is not set # CONFIG_EEPROM_MAX6875 is not set # CONFIG_EEPROM_93CX6 is not set @@ -1955,7 +1955,7 @@ CONFIG_EEPROM_AT25=m # SCSI device support # CONFIG_SCSI_MOD=y -CONFIG_RAID_ATTRS=m +CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_PROC_FS is not set @@ -2011,7 +2011,7 @@ CONFIG_SCSI_HISI_SAS_PCI=y # CONFIG_MEGARAID_NEWGEN is not set # CONFIG_MEGARAID_LEGACY is not set # CONFIG_MEGARAID_SAS is not set -CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS=y CONFIG_SCSI_MPT2SAS_MAX_SGE=128 CONFIG_SCSI_MPT3SAS_MAX_SGE=128 # CONFIG_SCSI_MPT2SAS is not set @@ -2021,7 +2021,7 @@ CONFIG_SCSI_UFSHCD=y CONFIG_SCSI_UFSHCD_PLATFORM=y # CONFIG_SCSI_UFS_CDNS_PLATFORM is not set # CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set -CONFIG_SCSI_UFS_QCOM=m +CONFIG_SCSI_UFS_QCOM=y # CONFIG_SCSI_UFS_MEDIATEK is not set CONFIG_SCSI_UFS_HISI=y # CONFIG_SCSI_UFS_BSG is not set @@ -2159,7 +2159,7 @@ CONFIG_PATA_OF_PLATFORM=y # CONFIG_ATA_GENERIC is not set # CONFIG_PATA_LEGACY is not set CONFIG_MD=y -CONFIG_BLK_DEV_MD=m +CONFIG_BLK_DEV_MD=y # CONFIG_MD_LINEAR is not set # CONFIG_MD_RAID0 is not set # CONFIG_MD_RAID1 is not set @@ -2169,7 +2169,7 @@ CONFIG_BLK_DEV_MD=m # CONFIG_MD_FAULTY is not set # CONFIG_BCACHE is not set CONFIG_BLK_DEV_DM_BUILTIN=y -CONFIG_BLK_DEV_DM=m +CONFIG_BLK_DEV_DM=y # CONFIG_DM_DEBUG is not set # CONFIG_DM_UNSTRIPED is not set # CONFIG_DM_CRYPT is not set @@ -2179,10 +2179,10 @@ CONFIG_BLK_DEV_DM=m # CONFIG_DM_WRITECACHE is not set # CONFIG_DM_ERA is not set # CONFIG_DM_CLONE is not set -CONFIG_DM_MIRROR=m +CONFIG_DM_MIRROR=y # CONFIG_DM_LOG_USERSPACE is not set # CONFIG_DM_RAID is not set -CONFIG_DM_ZERO=m +CONFIG_DM_ZERO=y # CONFIG_DM_MULTIPATH is not set # CONFIG_DM_DELAY is not set # CONFIG_DM_DUST is not set @@ -2214,7 +2214,7 @@ CONFIG_NET_CORE=y CONFIG_MACVLAN=y CONFIG_MACVTAP=y # CONFIG_IPVLAN is not set -CONFIG_VXLAN=m +CONFIG_VXLAN=y # CONFIG_GENEVE is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set @@ -2222,7 +2222,7 @@ CONFIG_VXLAN=m CONFIG_TUN=y CONFIG_TAP=y # CONFIG_TUN_VNET_CROSS_LE is not set -CONFIG_VETH=m +CONFIG_VETH=y CONFIG_VIRTIO_NET=y # CONFIG_NLMON is not set # CONFIG_ARCNET is not set @@ -2255,7 +2255,7 @@ CONFIG_MSCC_FELIX_SWITCH_TSN=y # end of Distributed Switch Architecture drivers CONFIG_ETHERNET=y -CONFIG_MDIO=m +CONFIG_MDIO=y CONFIG_NET_VENDOR_3COM=y # CONFIG_VORTEX is not set # CONFIG_TYPHOON is not set @@ -2286,7 +2286,7 @@ CONFIG_NET_VENDOR_ATHEROS=y # CONFIG_ATL2 is not set # CONFIG_ATL1 is not set # CONFIG_ATL1E is not set -CONFIG_ATL1C=m +CONFIG_ATL1C=y # CONFIG_ALX is not set CONFIG_NET_VENDOR_AURORA=y # CONFIG_AURORA_NB8800 is not set @@ -2296,7 +2296,7 @@ CONFIG_NET_VENDOR_BROADCOM=y # CONFIG_BNX2 is not set # CONFIG_CNIC is not set # CONFIG_TIGON3 is not set -CONFIG_BNX2X=m +CONFIG_BNX2X=y CONFIG_BNX2X_SRIOV=y CONFIG_BGMAC=y CONFIG_BGMAC_PLATFORM=y @@ -2436,11 +2436,11 @@ CONFIG_SKY2=y # CONFIG_OCTEONTX2_AF is not set # CONFIG_NET_VENDOR_MEDIATEK is not set CONFIG_NET_VENDOR_MELLANOX=y -CONFIG_MLX4_EN=m -CONFIG_MLX4_CORE=m +CONFIG_MLX4_EN=y +CONFIG_MLX4_CORE=y CONFIG_MLX4_DEBUG=y CONFIG_MLX4_CORE_GEN2=y -CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE=y # CONFIG_MLX5_FPGA is not set CONFIG_MLX5_CORE_EN=y CONFIG_MLX5_EN_ARFS=y @@ -2450,7 +2450,7 @@ CONFIG_MLX5_ESWITCH=y # CONFIG_MLX5_CORE_IPOIB is not set CONFIG_MLX5_SW_STEERING=y # CONFIG_MLXSW_CORE is not set -CONFIG_MLXFW=m +CONFIG_MLXFW=y CONFIG_NET_VENDOR_MICREL=y # CONFIG_KS8842 is not set # CONFIG_KS8851 is not set @@ -2557,7 +2557,7 @@ CONFIG_MDIO_BITBANG=y CONFIG_MDIO_BUS_MUX=y CONFIG_MDIO_BUS_MUX_BCM_IPROC=y # CONFIG_MDIO_BUS_MUX_GPIO is not set -CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MESON_G12A=y CONFIG_MDIO_BUS_MUX_MMIOREG=y CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y CONFIG_MDIO_CAVIUM=y @@ -2598,11 +2598,11 @@ CONFIG_INPHI_PHY=y # CONFIG_INTEL_XWAY_PHY is not set # CONFIG_LSI_ET1011C_PHY is not set # CONFIG_LXT_PHY is not set -CONFIG_MARVELL_PHY=m -CONFIG_MARVELL_10G_PHY=m -CONFIG_MESON_GXL_PHY=m +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MESON_GXL_PHY=y CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_PHY=y # CONFIG_MICROCHIP_T1_PHY is not set CONFIG_MICROSEMI_PHY=y # CONFIG_NATIONAL_PHY is not set @@ -2622,10 +2622,10 @@ CONFIG_VITESSE_PHY=y CONFIG_USB_NET_DRIVERS=y # CONFIG_USB_CATC is not set # CONFIG_USB_KAWETH is not set -CONFIG_USB_PEGASUS=m -CONFIG_USB_RTL8150=m +CONFIG_USB_PEGASUS=y +CONFIG_USB_RTL8150=y CONFIG_USB_RTL8152=y -CONFIG_USB_LAN78XX=m +CONFIG_USB_LAN78XX=y CONFIG_USB_USBNET=y CONFIG_USB_NET_AX8817X=y CONFIG_USB_NET_AX88179_178A=y @@ -2634,15 +2634,15 @@ CONFIG_USB_NET_CDCETHER=y CONFIG_USB_NET_CDC_NCM=y # CONFIG_USB_NET_HUAWEI_CDC_NCM is not set # CONFIG_USB_NET_CDC_MBIM is not set -CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_DM9601=y # CONFIG_USB_NET_SR9700 is not set -CONFIG_USB_NET_SR9800=m -CONFIG_USB_NET_SMSC75XX=m -CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_SR9800=y +CONFIG_USB_NET_SMSC75XX=y +CONFIG_USB_NET_SMSC95XX=y # CONFIG_USB_NET_GL620A is not set CONFIG_USB_NET_NET1080=y -CONFIG_USB_NET_PLUSB=m -CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_PLUSB=y +CONFIG_USB_NET_MCS7830=y # CONFIG_USB_NET_RNDIS_HOST is not set CONFIG_USB_NET_CDC_SUBSET_ENABLE=y CONFIG_USB_NET_CDC_SUBSET=y @@ -2724,7 +2724,7 @@ CONFIG_INPUT_EVDEV=y # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADC=y # CONFIG_KEYBOARD_ADP5588 is not set # CONFIG_KEYBOARD_ADP5589 is not set CONFIG_KEYBOARD_ATKBD=y @@ -2792,7 +2792,7 @@ CONFIG_TOUCHSCREEN_CT36X_WLD=y # CONFIG_TOUCHSCREEN_AD7879 is not set # CONFIG_TOUCHSCREEN_ADC is not set # CONFIG_TOUCHSCREEN_AR1021_I2C is not set -CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=y # CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set # CONFIG_TOUCHSCREEN_BU21013 is not set @@ -2857,7 +2857,7 @@ CONFIG_TOUCHSCREEN_ATMEL_MXT=m # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set # CONFIG_TOUCHSCREEN_IQS5XX is not set CONFIG_TOUCHSCREEN_SYNAPTICS_DSX=y -CONFIG_TOUCHSCREEN_SYNAPTICS_DSX_I2C=m +CONFIG_TOUCHSCREEN_SYNAPTICS_DSX_I2C=y # CONFIG_TOUCHSCREEN_FTS is not set CONFIG_INPUT_MISC=y # CONFIG_INPUT_AD714X is not set @@ -3035,12 +3035,12 @@ CONFIG_HVC_XEN=y CONFIG_HVC_XEN_FRONTEND=y # CONFIG_HVC_DCC is not set CONFIG_VIRTIO_CONSOLE=y -CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_HANDLER=y CONFIG_IPMI_DMI_DECODE=y CONFIG_IPMI_PLAT_DATA=y # CONFIG_IPMI_PANIC_EVENT is not set -CONFIG_IPMI_DEVICE_INTERFACE=m -CONFIG_IPMI_SI=m +CONFIG_IPMI_DEVICE_INTERFACE=y +CONFIG_IPMI_SI=y # CONFIG_IPMI_SSIF is not set # CONFIG_IPMI_WATCHDOG is not set # CONFIG_IPMI_POWEROFF is not set @@ -3143,7 +3143,7 @@ CONFIG_I2C_ALGOBIT=y # # I2C system bus drivers (mostly embedded / system-on-chip) # -CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM2835=y CONFIG_I2C_BCM_IPROC=y CONFIG_I2C_BRCMSTB=y # CONFIG_I2C_CADENCE is not set @@ -3154,7 +3154,7 @@ CONFIG_I2C_DESIGNWARE_PLATFORM=y # CONFIG_I2C_DESIGNWARE_PCI is not set # CONFIG_I2C_EMEV2 is not set CONFIG_I2C_EXYNOS5=y -CONFIG_I2C_GPIO=m +CONFIG_I2C_GPIO=y # CONFIG_I2C_GPIO_FAULT_INJECTOR is not set CONFIG_I2C_IMX=y CONFIG_I2C_IMX_LPI2C=y @@ -3167,7 +3167,7 @@ CONFIG_I2C_MV64XXX=y # CONFIG_I2C_PCA_PLATFORM is not set CONFIG_I2C_PXA=y # CONFIG_I2C_PXA_SLAVE is not set -CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QCOM_GENI=y CONFIG_I2C_QUP=y # CONFIG_I2C_RIIC is not set CONFIG_I2C_RK3X=y @@ -3225,8 +3225,8 @@ CONFIG_SPI_MEM=y # CONFIG_SPI_ALTERA is not set CONFIG_SPI_ARMADA_3700=y # CONFIG_SPI_AXI_SPI_ENGINE is not set -CONFIG_SPI_BCM2835=m -CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM2835=y +CONFIG_SPI_BCM2835AUX=y CONFIG_SPI_BCM_QSPI=y CONFIG_SPI_BITBANG=y # CONFIG_SPI_CADENCE is not set @@ -3238,8 +3238,8 @@ CONFIG_SPI_NXP_FLEXSPI=y CONFIG_SPI_IMX=y # CONFIG_SPI_FSL_SPI is not set CONFIG_SPI_FSL_DSPI=y -CONFIG_SPI_MESON_SPICC=m -CONFIG_SPI_MESON_SPIFC=m +CONFIG_SPI_MESON_SPICC=y +CONFIG_SPI_MESON_SPIFC=y # CONFIG_SPI_MT65XX is not set # CONFIG_SPI_OC_TINY is not set # CONFIG_SPI_OMAP24XX is not set @@ -3571,7 +3571,7 @@ CONFIG_POWER_SUPPLY_HWMON=y # CONFIG_BATTERY_DS2781 is not set # CONFIG_BATTERY_DS2782 is not set # CONFIG_BATTERY_LEGO_EV3 is not set -CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_SBS=y # CONFIG_CHARGER_SBS is not set # CONFIG_MANAGER_SBS is not set CONFIG_BATTERY_BQ27XXX=y @@ -3719,8 +3719,8 @@ CONFIG_SENSORS_LTC2978_REGULATOR=y # CONFIG_SENSORS_UCD9000 is not set # CONFIG_SENSORS_UCD9200 is not set # CONFIG_SENSORS_ZL6100 is not set -CONFIG_SENSORS_PWM_FAN=m -CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_PWM_FAN=y +CONFIG_SENSORS_RASPBERRYPI_HWMON=y # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SHT21 is not set # CONFIG_SENSORS_SHT3x is not set @@ -3742,8 +3742,8 @@ CONFIG_SENSORS_RASPBERRYPI_HWMON=m # CONFIG_SENSORS_ADS7871 is not set CONFIG_SENSORS_AMC6821=y # CONFIG_SENSORS_INA209 is not set -CONFIG_SENSORS_INA2XX=m -CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_INA2XX=y +CONFIG_SENSORS_INA3221=y # CONFIG_SENSORS_TC74 is not set # CONFIG_SENSORS_THMC50 is not set # CONFIG_SENSORS_TMP102 is not set @@ -3800,7 +3800,7 @@ CONFIG_DEVICE_THERMAL=y CONFIG_IMX8MM_THERMAL=y # CONFIG_MAX77620_THERMAL is not set CONFIG_QORIQ_THERMAL=y -CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_THERMAL=y CONFIG_RCAR_THERMAL=y CONFIG_RCAR_GEN3_THERMAL=y CONFIG_ARMADA_THERMAL=y @@ -3809,8 +3809,8 @@ CONFIG_MTK_THERMAL=y # # Broadcom thermal drivers # -CONFIG_BCM2835_THERMAL=m -CONFIG_BRCMSTB_THERMAL=m +CONFIG_BCM2835_THERMAL=y +CONFIG_BRCMSTB_THERMAL=y CONFIG_BCM_NS_THERMAL=y CONFIG_BCM_SR_THERMAL=y # end of Broadcom thermal drivers @@ -3825,7 +3825,7 @@ CONFIG_EXYNOS_THERMAL=y # NVIDIA Tegra thermal drivers # # CONFIG_TEGRA_SOCTHERM is not set -CONFIG_TEGRA_BPMP_THERMAL=m +CONFIG_TEGRA_BPMP_THERMAL=y # end of NVIDIA Tegra thermal drivers # CONFIG_GENERIC_ADC_THERMAL is not set @@ -3866,7 +3866,7 @@ CONFIG_ARM_SBSA_WATCHDOG=y CONFIG_HAVE_S3C2410_WATCHDOG=y CONFIG_S3C2410_WATCHDOG=y CONFIG_DW_WATCHDOG=y -CONFIG_SUNXI_WATCHDOG=m +CONFIG_SUNXI_WATCHDOG=y # CONFIG_MAX63XX_WATCHDOG is not set # CONFIG_MAX77620_WATCHDOG is not set CONFIG_IMX2_WDT=y @@ -3874,8 +3874,8 @@ CONFIG_IMX_SC_WDT=y # CONFIG_IMX7ULP_WDT is not set # CONFIG_TEGRA_WATCHDOG is not set # CONFIG_QCOM_WDT is not set -CONFIG_MESON_GXBB_WATCHDOG=m -CONFIG_MESON_WATCHDOG=m +CONFIG_MESON_GXBB_WATCHDOG=y +CONFIG_MESON_WATCHDOG=y # CONFIG_MEDIATEK_WATCHDOG is not set CONFIG_RENESAS_WDT=y # CONFIG_RENESAS_RZAWDT is not set @@ -3934,7 +3934,7 @@ CONFIG_MFD_CROS_EC_DEV=y # CONFIG_MFD_DA9063 is not set # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set -CONFIG_MFD_EXYNOS_LPASS=m +CONFIG_MFD_EXYNOS_LPASS=y # CONFIG_MFD_MC13XXX_SPI is not set # CONFIG_MFD_MC13XXX_I2C is not set # CONFIG_MFD_MXC_HDMI is not set @@ -4087,12 +4087,12 @@ CONFIG_REGULATOR_S2MPS11=y # CONFIG_REGULATOR_TPS65132 is not set # CONFIG_REGULATOR_TPS6524X is not set CONFIG_REGULATOR_UNIPHIER=y -CONFIG_REGULATOR_VCTRL=m +CONFIG_REGULATOR_VCTRL=y # CONFIG_REGULATOR_VEXPRESS is not set CONFIG_CEC_CORE=y CONFIG_CEC_NOTIFIER=y -CONFIG_RC_CORE=m -CONFIG_RC_MAP=m +CONFIG_RC_CORE=y +CONFIG_RC_MAP=y # CONFIG_LIRC is not set CONFIG_RC_DECODERS=y # CONFIG_IR_NEC_DECODER is not set @@ -4115,7 +4115,7 @@ CONFIG_RC_DEVICES=y # CONFIG_IR_MCEUSB is not set # CONFIG_IR_ITE_CIR is not set # CONFIG_IR_FINTEK is not set -CONFIG_IR_MESON=m +CONFIG_IR_MESON=y # CONFIG_IR_MTK is not set # CONFIG_IR_NUVOTON is not set # CONFIG_IR_REDRAT3 is not set @@ -4125,7 +4125,7 @@ CONFIG_IR_MESON=m # CONFIG_IR_TTUSBIR is not set # CONFIG_RC_LOOPBACK is not set # CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=m +CONFIG_IR_SUNXI=y # CONFIG_IR_SERIAL is not set # CONFIG_IR_SIR is not set # CONFIG_RC_XBOX_DVD is not set @@ -4168,9 +4168,9 @@ CONFIG_MEDIA_USB_SUPPORT=y # # Webcam devices # -CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS=y CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y -CONFIG_USB_GSPCA=m +CONFIG_USB_GSPCA=y # CONFIG_USB_M5602 is not set # CONFIG_USB_STV06XX is not set # CONFIG_USB_GL860 is not set @@ -4273,7 +4273,7 @@ CONFIG_VIDEO_MXC_CAPTURE=y # IMX8 Camera ISI/MIPI Features support # CONFIG_IMX8_MIPI_CSI2_YAV=y -CONFIG_IMX8_JPEG=m +CONFIG_IMX8_JPEG=y # end of IMX8 Camera ISI/MIPI Features support CONFIG_VIDEO_MXC_CSI_CAMERA=y @@ -4294,21 +4294,21 @@ CONFIG_MXC_CAMERA_OV5640_MIPI_V2=y # CONFIG_VIDEO_RCAR_CSI2 is not set # CONFIG_VIDEO_RCAR_VIN is not set # CONFIG_VIDEO_SUN4I_CSI is not set -CONFIG_VIDEO_SUN6I_CSI=m +CONFIG_VIDEO_SUN6I_CSI=y CONFIG_V4L_MEM2MEM_DRIVERS=y # CONFIG_VIDEO_CODA is not set # CONFIG_VIDEO_IMX_PXP is not set # CONFIG_VIDEO_MEDIATEK_VPU is not set # CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set # CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set -CONFIG_VIDEO_SAMSUNG_S5P_JPEG=m -CONFIG_VIDEO_SAMSUNG_S5P_MFC=m -CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=m +CONFIG_VIDEO_SAMSUNG_S5P_JPEG=y +CONFIG_VIDEO_SAMSUNG_S5P_MFC=y +CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=y # CONFIG_VIDEO_SH_VEU is not set # CONFIG_VIDEO_RENESAS_FDP1 is not set # CONFIG_VIDEO_RENESAS_JPU is not set -CONFIG_VIDEO_RENESAS_FCP=m -CONFIG_VIDEO_RENESAS_VSP1=m +CONFIG_VIDEO_RENESAS_FCP=y +CONFIG_VIDEO_RENESAS_VSP1=y # CONFIG_VIDEO_ROCKCHIP_RGA is not set # CONFIG_VIDEO_QCOM_VENUS is not set # CONFIG_V4L_TEST_DRIVERS is not set @@ -4330,7 +4330,7 @@ CONFIG_VIDEOBUF2_VMALLOC=y # # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set CONFIG_MEDIA_ATTACH=y -CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_IR_I2C=y # # I2C Encoders, decoders, sensors and other helper chips @@ -4503,7 +4503,7 @@ CONFIG_VIDEO_OV5640=y # # Media SPI Adapters # -CONFIG_CXD2880_SPI_DRV=m +CONFIG_CXD2880_SPI_DRV=y # end of Media SPI Adapters CONFIG_MEDIA_TUNER=y @@ -4511,43 +4511,43 @@ CONFIG_MEDIA_TUNER=y # # Customize TV tuners # -CONFIG_MEDIA_TUNER_SIMPLE=m -CONFIG_MEDIA_TUNER_TDA18250=m -CONFIG_MEDIA_TUNER_TDA8290=m -CONFIG_MEDIA_TUNER_TDA827X=m -CONFIG_MEDIA_TUNER_TDA18271=m -CONFIG_MEDIA_TUNER_TDA9887=m -CONFIG_MEDIA_TUNER_TEA5761=m -CONFIG_MEDIA_TUNER_TEA5767=m -CONFIG_MEDIA_TUNER_MSI001=m -CONFIG_MEDIA_TUNER_MT20XX=m -CONFIG_MEDIA_TUNER_MT2060=m -CONFIG_MEDIA_TUNER_MT2063=m -CONFIG_MEDIA_TUNER_MT2266=m -CONFIG_MEDIA_TUNER_MT2131=m -CONFIG_MEDIA_TUNER_QT1010=m -CONFIG_MEDIA_TUNER_XC2028=m -CONFIG_MEDIA_TUNER_XC5000=m -CONFIG_MEDIA_TUNER_XC4000=m -CONFIG_MEDIA_TUNER_MXL5005S=m -CONFIG_MEDIA_TUNER_MXL5007T=m -CONFIG_MEDIA_TUNER_MC44S803=m -CONFIG_MEDIA_TUNER_MAX2165=m -CONFIG_MEDIA_TUNER_TDA18218=m -CONFIG_MEDIA_TUNER_FC0011=m -CONFIG_MEDIA_TUNER_FC0012=m -CONFIG_MEDIA_TUNER_FC0013=m -CONFIG_MEDIA_TUNER_TDA18212=m -CONFIG_MEDIA_TUNER_E4000=m -CONFIG_MEDIA_TUNER_FC2580=m -CONFIG_MEDIA_TUNER_M88RS6000T=m -CONFIG_MEDIA_TUNER_TUA9001=m -CONFIG_MEDIA_TUNER_SI2157=m -CONFIG_MEDIA_TUNER_IT913X=m -CONFIG_MEDIA_TUNER_R820T=m -CONFIG_MEDIA_TUNER_MXL301RF=m -CONFIG_MEDIA_TUNER_QM1D1C0042=m -CONFIG_MEDIA_TUNER_QM1D1B0004=m +CONFIG_MEDIA_TUNER_SIMPLE=y +CONFIG_MEDIA_TUNER_TDA18250=y +CONFIG_MEDIA_TUNER_TDA8290=y +CONFIG_MEDIA_TUNER_TDA827X=y +CONFIG_MEDIA_TUNER_TDA18271=y +CONFIG_MEDIA_TUNER_TDA9887=y +CONFIG_MEDIA_TUNER_TEA5761=y +CONFIG_MEDIA_TUNER_TEA5767=y +CONFIG_MEDIA_TUNER_MSI001=y +CONFIG_MEDIA_TUNER_MT20XX=y +CONFIG_MEDIA_TUNER_MT2060=y +CONFIG_MEDIA_TUNER_MT2063=y +CONFIG_MEDIA_TUNER_MT2266=y +CONFIG_MEDIA_TUNER_MT2131=y +CONFIG_MEDIA_TUNER_QT1010=y +CONFIG_MEDIA_TUNER_XC2028=y +CONFIG_MEDIA_TUNER_XC5000=y +CONFIG_MEDIA_TUNER_XC4000=y +CONFIG_MEDIA_TUNER_MXL5005S=y +CONFIG_MEDIA_TUNER_MXL5007T=y +CONFIG_MEDIA_TUNER_MC44S803=y +CONFIG_MEDIA_TUNER_MAX2165=y +CONFIG_MEDIA_TUNER_TDA18218=y +CONFIG_MEDIA_TUNER_FC0011=y +CONFIG_MEDIA_TUNER_FC0012=y +CONFIG_MEDIA_TUNER_FC0013=y +CONFIG_MEDIA_TUNER_TDA18212=y +CONFIG_MEDIA_TUNER_E4000=y +CONFIG_MEDIA_TUNER_FC2580=y +CONFIG_MEDIA_TUNER_M88RS6000T=y +CONFIG_MEDIA_TUNER_TUA9001=y +CONFIG_MEDIA_TUNER_SI2157=y +CONFIG_MEDIA_TUNER_IT913X=y +CONFIG_MEDIA_TUNER_R820T=y +CONFIG_MEDIA_TUNER_MXL301RF=y +CONFIG_MEDIA_TUNER_QM1D1C0042=y +CONFIG_MEDIA_TUNER_QM1D1B0004=y # end of Customize TV tuners # @@ -4557,159 +4557,159 @@ CONFIG_MEDIA_TUNER_QM1D1B0004=m # # Multistandard (satellite) frontends # -CONFIG_DVB_STB0899=m -CONFIG_DVB_STB6100=m -CONFIG_DVB_STV090x=m -CONFIG_DVB_STV0910=m -CONFIG_DVB_STV6110x=m -CONFIG_DVB_STV6111=m -CONFIG_DVB_MXL5XX=m -CONFIG_DVB_M88DS3103=m +CONFIG_DVB_STB0899=y +CONFIG_DVB_STB6100=y +CONFIG_DVB_STV090x=y +CONFIG_DVB_STV0910=y +CONFIG_DVB_STV6110x=y +CONFIG_DVB_STV6111=y +CONFIG_DVB_MXL5XX=y +CONFIG_DVB_M88DS3103=y # # Multistandard (cable + terrestrial) frontends # -CONFIG_DVB_DRXK=m -CONFIG_DVB_TDA18271C2DD=m -CONFIG_DVB_SI2165=m -CONFIG_DVB_MN88472=m -CONFIG_DVB_MN88473=m +CONFIG_DVB_DRXK=y +CONFIG_DVB_TDA18271C2DD=y +CONFIG_DVB_SI2165=y +CONFIG_DVB_MN88472=y +CONFIG_DVB_MN88473=y # # DVB-S (satellite) frontends # -CONFIG_DVB_CX24110=m -CONFIG_DVB_CX24123=m -CONFIG_DVB_MT312=m -CONFIG_DVB_ZL10036=m -CONFIG_DVB_ZL10039=m -CONFIG_DVB_S5H1420=m -CONFIG_DVB_STV0288=m -CONFIG_DVB_STB6000=m -CONFIG_DVB_STV0299=m -CONFIG_DVB_STV6110=m -CONFIG_DVB_STV0900=m -CONFIG_DVB_TDA8083=m -CONFIG_DVB_TDA10086=m -CONFIG_DVB_TDA8261=m -CONFIG_DVB_VES1X93=m -CONFIG_DVB_TUNER_ITD1000=m -CONFIG_DVB_TUNER_CX24113=m -CONFIG_DVB_TDA826X=m -CONFIG_DVB_TUA6100=m -CONFIG_DVB_CX24116=m -CONFIG_DVB_CX24117=m -CONFIG_DVB_CX24120=m -CONFIG_DVB_SI21XX=m -CONFIG_DVB_TS2020=m -CONFIG_DVB_DS3000=m -CONFIG_DVB_MB86A16=m -CONFIG_DVB_TDA10071=m +CONFIG_DVB_CX24110=y +CONFIG_DVB_CX24123=y +CONFIG_DVB_MT312=y +CONFIG_DVB_ZL10036=y +CONFIG_DVB_ZL10039=y +CONFIG_DVB_S5H1420=y +CONFIG_DVB_STV0288=y +CONFIG_DVB_STB6000=y +CONFIG_DVB_STV0299=y +CONFIG_DVB_STV6110=y +CONFIG_DVB_STV0900=y +CONFIG_DVB_TDA8083=y +CONFIG_DVB_TDA10086=y +CONFIG_DVB_TDA8261=y +CONFIG_DVB_VES1X93=y +CONFIG_DVB_TUNER_ITD1000=y +CONFIG_DVB_TUNER_CX24113=y +CONFIG_DVB_TDA826X=y +CONFIG_DVB_TUA6100=y +CONFIG_DVB_CX24116=y +CONFIG_DVB_CX24117=y +CONFIG_DVB_CX24120=y +CONFIG_DVB_SI21XX=y +CONFIG_DVB_TS2020=y +CONFIG_DVB_DS3000=y +CONFIG_DVB_MB86A16=y +CONFIG_DVB_TDA10071=y # # DVB-T (terrestrial) frontends # -CONFIG_DVB_SP8870=m -CONFIG_DVB_SP887X=m -CONFIG_DVB_CX22700=m -CONFIG_DVB_CX22702=m -CONFIG_DVB_S5H1432=m -CONFIG_DVB_DRXD=m -CONFIG_DVB_L64781=m -CONFIG_DVB_TDA1004X=m -CONFIG_DVB_NXT6000=m -CONFIG_DVB_MT352=m -CONFIG_DVB_ZL10353=m -CONFIG_DVB_DIB3000MB=m -CONFIG_DVB_DIB3000MC=m -CONFIG_DVB_DIB7000M=m -CONFIG_DVB_DIB7000P=m -CONFIG_DVB_DIB9000=m -CONFIG_DVB_TDA10048=m -CONFIG_DVB_AF9013=m -CONFIG_DVB_EC100=m -CONFIG_DVB_STV0367=m -CONFIG_DVB_CXD2820R=m -CONFIG_DVB_CXD2841ER=m -CONFIG_DVB_RTL2830=m -CONFIG_DVB_RTL2832=m -CONFIG_DVB_SI2168=m -CONFIG_DVB_ZD1301_DEMOD=m -CONFIG_DVB_CXD2880=m +CONFIG_DVB_SP8870=y +CONFIG_DVB_SP887X=y +CONFIG_DVB_CX22700=y +CONFIG_DVB_CX22702=y +CONFIG_DVB_S5H1432=y +CONFIG_DVB_DRXD=y +CONFIG_DVB_L64781=y +CONFIG_DVB_TDA1004X=y +CONFIG_DVB_NXT6000=y +CONFIG_DVB_MT352=y +CONFIG_DVB_ZL10353=y +CONFIG_DVB_DIB3000MB=y +CONFIG_DVB_DIB3000MC=y +CONFIG_DVB_DIB7000M=y +CONFIG_DVB_DIB7000P=y +CONFIG_DVB_DIB9000=y +CONFIG_DVB_TDA10048=y +CONFIG_DVB_AF9013=y +CONFIG_DVB_EC100=y +CONFIG_DVB_STV0367=y +CONFIG_DVB_CXD2820R=y +CONFIG_DVB_CXD2841ER=y +CONFIG_DVB_RTL2830=y +CONFIG_DVB_RTL2832=y +CONFIG_DVB_SI2168=y +CONFIG_DVB_ZD1301_DEMOD=y +CONFIG_DVB_CXD2880=y # # DVB-C (cable) frontends # -CONFIG_DVB_VES1820=m -CONFIG_DVB_TDA10021=m -CONFIG_DVB_TDA10023=m -CONFIG_DVB_STV0297=m +CONFIG_DVB_VES1820=y +CONFIG_DVB_TDA10021=y +CONFIG_DVB_TDA10023=y +CONFIG_DVB_STV0297=y # # ATSC (North American/Korean Terrestrial/Cable DTV) frontends # -CONFIG_DVB_NXT200X=m -CONFIG_DVB_OR51211=m -CONFIG_DVB_OR51132=m -CONFIG_DVB_BCM3510=m -CONFIG_DVB_LGDT330X=m -CONFIG_DVB_LGDT3305=m -CONFIG_DVB_LGDT3306A=m -CONFIG_DVB_LG2160=m -CONFIG_DVB_S5H1409=m -CONFIG_DVB_AU8522=m -CONFIG_DVB_AU8522_DTV=m -CONFIG_DVB_AU8522_V4L=m -CONFIG_DVB_S5H1411=m +CONFIG_DVB_NXT200X=y +CONFIG_DVB_OR51211=y +CONFIG_DVB_OR51132=y +CONFIG_DVB_BCM3510=y +CONFIG_DVB_LGDT330X=y +CONFIG_DVB_LGDT3305=y +CONFIG_DVB_LGDT3306A=y +CONFIG_DVB_LG2160=y +CONFIG_DVB_S5H1409=y +CONFIG_DVB_AU8522=y +CONFIG_DVB_AU8522_DTV=y +CONFIG_DVB_AU8522_V4L=y +CONFIG_DVB_S5H1411=y # # ISDB-T (terrestrial) frontends # -CONFIG_DVB_S921=m -CONFIG_DVB_DIB8000=m -CONFIG_DVB_MB86A20S=m +CONFIG_DVB_S921=y +CONFIG_DVB_DIB8000=y +CONFIG_DVB_MB86A20S=y # # ISDB-S (satellite) & ISDB-T (terrestrial) frontends # -CONFIG_DVB_TC90522=m -CONFIG_DVB_MN88443X=m +CONFIG_DVB_TC90522=y +CONFIG_DVB_MN88443X=y # # Digital terrestrial only tuners/PLL # -CONFIG_DVB_PLL=m -CONFIG_DVB_TUNER_DIB0070=m -CONFIG_DVB_TUNER_DIB0090=m +CONFIG_DVB_PLL=y +CONFIG_DVB_TUNER_DIB0070=y +CONFIG_DVB_TUNER_DIB0090=y # # SEC control devices for DVB-S # -CONFIG_DVB_DRX39XYJ=m -CONFIG_DVB_LNBH25=m -CONFIG_DVB_LNBH29=m -CONFIG_DVB_LNBP21=m -CONFIG_DVB_LNBP22=m -CONFIG_DVB_ISL6405=m -CONFIG_DVB_ISL6421=m -CONFIG_DVB_ISL6423=m -CONFIG_DVB_A8293=m -CONFIG_DVB_LGS8GL5=m -CONFIG_DVB_LGS8GXX=m -CONFIG_DVB_ATBM8830=m -CONFIG_DVB_TDA665x=m -CONFIG_DVB_IX2505V=m -CONFIG_DVB_M88RS2000=m -CONFIG_DVB_AF9033=m -CONFIG_DVB_HORUS3A=m -CONFIG_DVB_ASCOT2E=m -CONFIG_DVB_HELENE=m +CONFIG_DVB_DRX39XYJ=y +CONFIG_DVB_LNBH25=y +CONFIG_DVB_LNBH29=y +CONFIG_DVB_LNBP21=y +CONFIG_DVB_LNBP22=y +CONFIG_DVB_ISL6405=y +CONFIG_DVB_ISL6421=y +CONFIG_DVB_ISL6423=y +CONFIG_DVB_A8293=y +CONFIG_DVB_LGS8GL5=y +CONFIG_DVB_LGS8GXX=y +CONFIG_DVB_ATBM8830=y +CONFIG_DVB_TDA665x=y +CONFIG_DVB_IX2505V=y +CONFIG_DVB_M88RS2000=y +CONFIG_DVB_AF9033=y +CONFIG_DVB_HORUS3A=y +CONFIG_DVB_ASCOT2E=y +CONFIG_DVB_HELENE=y # # Common Interface (EN50221) controller drivers # -CONFIG_DVB_CXD2099=m -CONFIG_DVB_SP2=m +CONFIG_DVB_CXD2099=y +CONFIG_DVB_SP2=y # # Tools to develop new frontends @@ -4741,19 +4741,19 @@ CONFIG_DRM_FBDEV_OVERALLOC=100 # CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set # CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_TTM=m +CONFIG_DRM_TTM=y CONFIG_DRM_GEM_CMA_HELPER=y CONFIG_DRM_KMS_CMA_HELPER=y CONFIG_DRM_GEM_SHMEM_HELPER=y CONFIG_DRM_VM=y -CONFIG_DRM_SCHED=m +CONFIG_DRM_SCHED=y # # I2C encoder or helper chips # -CONFIG_DRM_I2C_CH7006=m -CONFIG_DRM_I2C_SIL164=m -CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_CH7006=y +CONFIG_DRM_I2C_SIL164=y +CONFIG_DRM_I2C_NXP_TDA998X=y # CONFIG_DRM_I2C_NXP_TDA9950 is not set # end of I2C encoder or helper chips @@ -4761,12 +4761,12 @@ CONFIG_DRM_I2C_NXP_TDA998X=m # ARM devices # # CONFIG_DRM_HDLCD is not set -CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MALI_DISPLAY=y # CONFIG_DRM_KOMEDA is not set # end of ARM devices # CONFIG_DRM_RADEON is not set -CONFIG_DRM_AMDGPU=m +CONFIG_DRM_AMDGPU=y CONFIG_DRM_AMDGPU_SI=y CONFIG_DRM_AMDGPU_CIK=y CONFIG_DRM_AMDGPU_USERPTR=y @@ -4786,7 +4786,7 @@ CONFIG_DRM_AMD_DC=y # end of Display Engine Configuration # CONFIG_HSA_AMD is not set -CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU=y CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=y CONFIG_NOUVEAU_PLATFORM_DRIVER=y CONFIG_NOUVEAU_DEBUG=5 @@ -4806,14 +4806,14 @@ CONFIG_DRM_ATI_PCIGART=y # CONFIG_DRM_RCAR_DW_HDMI is not set # CONFIG_DRM_RCAR_LVDS is not set CONFIG_DRM_RCAR_WRITEBACK=y -CONFIG_DRM_SUN4I=m -CONFIG_DRM_SUN4I_HDMI=m +CONFIG_DRM_SUN4I=y +CONFIG_DRM_SUN4I_HDMI=y # CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=m +CONFIG_DRM_SUN4I_BACKEND=y # CONFIG_DRM_SUN6I_DSI is not set -CONFIG_DRM_SUN8I_DW_HDMI=m -CONFIG_DRM_SUN8I_MIXER=m -CONFIG_DRM_SUN8I_TCON_TOP=m +CONFIG_DRM_SUN8I_DW_HDMI=y +CONFIG_DRM_SUN8I_MIXER=y +CONFIG_DRM_SUN8I_TCON_TOP=y # CONFIG_DRM_QXL is not set # CONFIG_DRM_BOCHS is not set # CONFIG_DRM_VIRTIO_GPU is not set @@ -4880,7 +4880,7 @@ CONFIG_DRM_SEC_MIPI_DSIM=y # CONFIG_DRM_NXP_PTN3460 is not set # CONFIG_DRM_PARADE_PS8622 is not set # CONFIG_DRM_SIL_SII8620 is not set -CONFIG_DRM_SII902X=m +CONFIG_DRM_SII902X=y # CONFIG_DRM_SII9234 is not set # CONFIG_DRM_THINE_THC63LVD1024 is not set # CONFIG_DRM_TOSHIBA_TC358764 is not set @@ -4915,7 +4915,7 @@ CONFIG_DRM_IMX_DPU=y CONFIG_DRM_IMX_LCDIF=y CONFIG_DRM_IMX_DCSS=y # CONFIG_DRM_VC4 is not set -CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_ETNAVIV=y CONFIG_DRM_ETNAVIV_THERMAL=y # CONFIG_DRM_ARCPGU is not set # CONFIG_DRM_HISI_HIBMC is not set @@ -4933,10 +4933,10 @@ CONFIG_DRM_MXSFB=y # CONFIG_TINYDRM_REPAPER is not set # CONFIG_TINYDRM_ST7586 is not set # CONFIG_TINYDRM_ST7735R is not set -CONFIG_DRM_PL111=m +CONFIG_DRM_PL111=y # CONFIG_DRM_XEN is not set -CONFIG_DRM_LIMA=m -CONFIG_DRM_PANFROST=m +CONFIG_DRM_LIMA=y +CONFIG_DRM_PANFROST=y CONFIG_DRM_LEGACY=y # CONFIG_DRM_TDFX is not set # CONFIG_DRM_R128 is not set @@ -5030,7 +5030,7 @@ CONFIG_BACKLIGHT_PWM=y # CONFIG_BACKLIGHT_ADP8870 is not set # CONFIG_BACKLIGHT_LM3630A is not set # CONFIG_BACKLIGHT_LM3639 is not set -CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP855X=y # CONFIG_BACKLIGHT_GPIO is not set # CONFIG_BACKLIGHT_LV5207LP is not set # CONFIG_BACKLIGHT_BD6107 is not set @@ -5064,7 +5064,7 @@ CONFIG_SND_PCM=y CONFIG_SND_PCM_ELD=y CONFIG_SND_PCM_IEC958=y CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_HWDEP=m +CONFIG_SND_HWDEP=y CONFIG_SND_RAWMIDI=y CONFIG_SND_COMPRESS_OFFLOAD=y CONFIG_SND_JACK=y @@ -5147,9 +5147,9 @@ CONFIG_SND_PCI=y # # HD-Audio # -CONFIG_SND_HDA=m +CONFIG_SND_HDA=y # CONFIG_SND_HDA_INTEL is not set -CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDA_TEGRA=y # CONFIG_SND_HDA_HWDEP is not set # CONFIG_SND_HDA_RECONFIG is not set # CONFIG_SND_HDA_INPUT_BEEP is not set @@ -5158,7 +5158,7 @@ CONFIG_SND_HDA_TEGRA=m # CONFIG_SND_HDA_CODEC_ANALOG is not set # CONFIG_SND_HDA_CODEC_SIGMATEL is not set # CONFIG_SND_HDA_CODEC_VIA is not set -CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_HDMI=y # CONFIG_SND_HDA_CODEC_CIRRUS is not set # CONFIG_SND_HDA_CODEC_CONEXANT is not set # CONFIG_SND_HDA_CODEC_CA0110 is not set @@ -5169,13 +5169,13 @@ CONFIG_SND_HDA_CODEC_HDMI=m CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 # end of HD-Audio -CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_CORE=y CONFIG_SND_HDA_ALIGNED_MMIO=y CONFIG_SND_HDA_COMPONENT=y CONFIG_SND_HDA_PREALLOC_SIZE=64 CONFIG_SND_SPI=y CONFIG_SND_USB=y -CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO=y CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y # CONFIG_SND_USB_UA101 is not set # CONFIG_SND_USB_CAIAQ is not set @@ -5192,7 +5192,7 @@ CONFIG_SND_SOC_COMPRESS=y CONFIG_SND_SOC_TOPOLOGY=y # CONFIG_SND_SOC_AMD_ACP is not set # CONFIG_SND_ATMEL_SOC is not set -CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM2835_SOC_I2S=y # CONFIG_SND_DESIGNWARE_I2S is not set # @@ -5208,7 +5208,7 @@ CONFIG_SND_SOC_FSL_AUDMIX=y # CONFIG_SND_SOC_FSL_SSI is not set CONFIG_SND_SOC_FSL_SPDIF=y CONFIG_SND_SOC_FSL_ESAI=y -CONFIG_SND_SOC_FSL_DAI=m +CONFIG_SND_SOC_FSL_DAI=y CONFIG_SND_SOC_FSL_MICFIL=y CONFIG_SND_SOC_FSL_EASRC=y CONFIG_SND_SOC_FSL_DSP=y @@ -5257,17 +5257,17 @@ CONFIG_SND_SOC_IMX_CDNHDMI=y # # ASoC support for Amlogic platforms # -CONFIG_SND_MESON_AXG_FIFO=m -CONFIG_SND_MESON_AXG_FRDDR=m -CONFIG_SND_MESON_AXG_TODDR=m -CONFIG_SND_MESON_AXG_TDM_FORMATTER=m -CONFIG_SND_MESON_AXG_TDM_INTERFACE=m -CONFIG_SND_MESON_AXG_TDMIN=m -CONFIG_SND_MESON_AXG_TDMOUT=m -CONFIG_SND_MESON_AXG_SOUND_CARD=m -CONFIG_SND_MESON_AXG_SPDIFOUT=m -CONFIG_SND_MESON_AXG_SPDIFIN=m -CONFIG_SND_MESON_AXG_PDM=m +CONFIG_SND_MESON_AXG_FIFO=y +CONFIG_SND_MESON_AXG_FRDDR=y +CONFIG_SND_MESON_AXG_TODDR=y +CONFIG_SND_MESON_AXG_TDM_FORMATTER=y +CONFIG_SND_MESON_AXG_TDM_INTERFACE=y +CONFIG_SND_MESON_AXG_TDMIN=y +CONFIG_SND_MESON_AXG_TDMOUT=y +CONFIG_SND_MESON_AXG_SOUND_CARD=y +CONFIG_SND_MESON_AXG_SPDIFOUT=y +CONFIG_SND_MESON_AXG_SPDIFIN=y +CONFIG_SND_MESON_AXG_PDM=y # CONFIG_SND_MESON_G12A_TOHDMITX is not set # end of ASoC support for Amlogic platforms @@ -5288,18 +5288,18 @@ CONFIG_SND_SOC_SAMSUNG=y # SoC Audio support for Renesas SoCs # # CONFIG_SND_SOC_SH4_FSI is not set -CONFIG_SND_SOC_RCAR=m +CONFIG_SND_SOC_RCAR=y # end of SoC Audio support for Renesas SoCs CONFIG_SND_SOC_SOF_TOPLEVEL=y # CONFIG_SND_SOC_SOF_PCI is not set # CONFIG_SND_SOC_SOF_ACPI is not set -CONFIG_SND_SOC_SOF_OF=m -CONFIG_SND_SOC_SOF_OPTIONS=m +CONFIG_SND_SOC_SOF_OF=y +CONFIG_SND_SOC_SOF_OPTIONS=y # CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT is not set # CONFIG_SND_SOC_SOF_STRICT_ABI_CHECKS is not set # CONFIG_SND_SOC_SOF_DEBUG is not set -CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF=y CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y # CONFIG_SND_SOC_SOF_IMX8_SUPPORT is not set # CONFIG_SND_SOC_SPRD is not set @@ -5317,7 +5317,7 @@ CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y # CONFIG_SND_SUN8I_CODEC_ANALOG is not set # CONFIG_SND_SUN50I_CODEC_ANALOG is not set # CONFIG_SND_SUN4I_I2S is not set -CONFIG_SND_SUN4I_SPDIF=m +CONFIG_SND_SUN4I_SPDIF=y # end of Allwinner SoC Audio support # CONFIG_SND_SOC_TEGRA is not set @@ -5343,7 +5343,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_AK4118 is not set CONFIG_SND_SOC_AK4458=y # CONFIG_SND_SOC_AK4554 is not set -CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4613=y # CONFIG_SND_SOC_AK4642 is not set # CONFIG_SND_SOC_AK5386 is not set CONFIG_SND_SOC_AK5558=y @@ -5372,10 +5372,10 @@ CONFIG_SND_SOC_CS42XX8_I2C=y # CONFIG_SND_SOC_CS4349 is not set # CONFIG_SND_SOC_CS53L30 is not set # CONFIG_SND_SOC_CX2072X is not set -CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_DMIC=y CONFIG_SND_SOC_HDMI_CODEC=y -CONFIG_SND_SOC_ES7134=m -CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES7134=y +CONFIG_SND_SOC_ES7241=y # CONFIG_SND_SOC_ES8316 is not set # CONFIG_SND_SOC_ES8328_I2C is not set # CONFIG_SND_SOC_ES8328_SPI is not set @@ -5399,18 +5399,18 @@ CONFIG_SND_SOC_FSL_MQS=y # CONFIG_SND_SOC_PCM186X_SPI is not set # CONFIG_SND_SOC_PCM3060_I2C is not set # CONFIG_SND_SOC_PCM3060_SPI is not set -CONFIG_SND_SOC_PCM3168A=m -CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A=y +CONFIG_SND_SOC_PCM3168A_I2C=y # CONFIG_SND_SOC_PCM3168A_SPI is not set # CONFIG_SND_SOC_PCM512x_I2C is not set # CONFIG_SND_SOC_PCM512x_SPI is not set # CONFIG_SND_SOC_RK3328 is not set # CONFIG_SND_SOC_RT5616 is not set # CONFIG_SND_SOC_RT5631 is not set -CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SGTL5000=y # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set # CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SPDIF=y # CONFIG_SND_SOC_SSM2305 is not set # CONFIG_SND_SOC_SSM2602_SPI is not set # CONFIG_SND_SOC_SSM2602_I2C is not set @@ -5420,7 +5420,7 @@ CONFIG_SND_SOC_SPDIF=m # CONFIG_SND_SOC_STI_SAS is not set # CONFIG_SND_SOC_TAS2552 is not set # CONFIG_SND_SOC_TAS5086 is not set -CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS571X=y # CONFIG_SND_SOC_TAS5720 is not set # CONFIG_SND_SOC_TAS6424 is not set # CONFIG_SND_SOC_TDA7419 is not set @@ -5588,7 +5588,7 @@ CONFIG_USB_HID=y # # I2C HID support # -CONFIG_I2C_HID=m +CONFIG_I2C_HID=y # end of I2C HID support # end of HID support @@ -5822,8 +5822,8 @@ CONFIG_USB_SERIAL_FTDI_SIO=y # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set -CONFIG_USB_TEST=m -CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_TEST=y +CONFIG_USB_EHSET_TEST_FIXTURE=y # CONFIG_USB_ISIGHTFW is not set # CONFIG_USB_YUREX is not set # CONFIG_USB_EZUSB_FX2 is not set @@ -5861,7 +5861,7 @@ CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 # CONFIG_USB_FOTG210_UDC is not set # CONFIG_USB_GR_UDC is not set # CONFIG_USB_R8A66597 is not set -CONFIG_USB_RENESAS_USB3=m +CONFIG_USB_RENESAS_USB3=y # CONFIG_USB_PXA27X is not set # CONFIG_USB_MV_UDC is not set # CONFIG_USB_MV_U3D is not set @@ -5923,18 +5923,18 @@ CONFIG_USB_CONFIGFS_F_MIDI=y CONFIG_USB_CONFIGFS_F_HID=y CONFIG_USB_CONFIGFS_F_UVC=y # CONFIG_USB_CONFIGFS_F_PRINTER is not set -CONFIG_USB_ZERO=m +CONFIG_USB_ZERO=y # CONFIG_USB_ZERO_HNPTEST is not set -CONFIG_USB_AUDIO=m +CONFIG_USB_AUDIO=y # CONFIG_GADGET_UAC1 is not set -CONFIG_USB_ETH=m +CONFIG_USB_ETH=y CONFIG_USB_ETH_RNDIS=y # CONFIG_USB_ETH_EEM is not set # CONFIG_USB_G_NCM is not set # CONFIG_USB_GADGETFS is not set # CONFIG_USB_FUNCTIONFS is not set -CONFIG_USB_MASS_STORAGE=m -CONFIG_USB_G_SERIAL=m +CONFIG_USB_MASS_STORAGE=y +CONFIG_USB_G_SERIAL=y # CONFIG_USB_MIDI_GADGET is not set # CONFIG_USB_G_PRINTER is not set # CONFIG_USB_CDC_COMPOSITE is not set @@ -6129,8 +6129,8 @@ CONFIG_RTC_DRV_DS1307=y # CONFIG_RTC_DRV_HYM8563 is not set # CONFIG_RTC_DRV_MAX6900 is not set CONFIG_RTC_DRV_MAX77686=y -CONFIG_RTC_DRV_MESON_VRTC=m -CONFIG_RTC_DRV_RK808=m +CONFIG_RTC_DRV_MESON_VRTC=y +CONFIG_RTC_DRV_RK808=y # CONFIG_RTC_DRV_RS5C372 is not set # CONFIG_RTC_DRV_ISL1208 is not set # CONFIG_RTC_DRV_ISL12022 is not set @@ -6146,7 +6146,7 @@ CONFIG_RTC_DRV_PCF85363=y # CONFIG_RTC_DRV_S35390A is not set # CONFIG_RTC_DRV_FM3130 is not set # CONFIG_RTC_DRV_RX8010 is not set -CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8581=y # CONFIG_RTC_DRV_RX8025 is not set # CONFIG_RTC_DRV_EM3027 is not set # CONFIG_RTC_DRV_RV3028 is not set @@ -6246,10 +6246,10 @@ CONFIG_DMA_OF=y # CONFIG_ALTERA_MSGDMA is not set # CONFIG_AMBA_PL08X is not set # CONFIG_AXI_DMAC is not set -CONFIG_BCM_SBA_RAID=m +CONFIG_BCM_SBA_RAID=y # CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set -CONFIG_DMA_BCM2835=m -CONFIG_DMA_SUN6I=m +CONFIG_DMA_BCM2835=y +CONFIG_DMA_SUN6I=y # CONFIG_DW_AXI_DMAC is not set CONFIG_FSL_EDMA=y # CONFIG_FSL_QDMA is not set @@ -6284,7 +6284,7 @@ CONFIG_QCOM_HIDMA=y # CONFIG_DW_EDMA_PCIE is not set CONFIG_RENESAS_DMA=y CONFIG_RCAR_DMAC=y -CONFIG_RENESAS_USB_DMAC=m +CONFIG_RENESAS_USB_DMAC=y # CONFIG_FSL_DPAA2_QDMA is not set # @@ -6591,7 +6591,7 @@ CONFIG_CLK_BCM2835=y CONFIG_COMMON_CLK_IPROC=y CONFIG_CLK_BCM_NS2=y CONFIG_CLK_BCM_SR=y -CONFIG_CLK_RASPBERRYPI=m +CONFIG_CLK_RASPBERRYPI=y CONFIG_COMMON_CLK_HI3516CV300=y CONFIG_COMMON_CLK_HI3519=y CONFIG_COMMON_CLK_HI3660=y @@ -6660,16 +6660,16 @@ CONFIG_COMMON_CLK_MT8516=y CONFIG_COMMON_CLK_MESON_REGMAP=y CONFIG_COMMON_CLK_MESON_DUALDIV=y CONFIG_COMMON_CLK_MESON_MPLL=y -CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PHASE=y CONFIG_COMMON_CLK_MESON_PLL=y -CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_SCLK_DIV=y CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y CONFIG_COMMON_CLK_MESON_AO_CLKC=y CONFIG_COMMON_CLK_MESON_EE_CLKC=y CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y CONFIG_COMMON_CLK_GXBB=y CONFIG_COMMON_CLK_AXG=y -CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COMMON_CLK_AXG_AUDIO=y CONFIG_COMMON_CLK_G12A=y CONFIG_ARMADA_AP_CP_HELPER=y CONFIG_ARMADA_37XX_CLK=y @@ -6805,7 +6805,7 @@ CONFIG_QCOM_APCS_IPC=y CONFIG_TEGRA_HSP_MBOX=y # CONFIG_XGENE_SLIMPRO_MBOX is not set # CONFIG_BCM_PDC_MBOX is not set -CONFIG_BCM_FLEXRM_MBOX=m +CONFIG_BCM_FLEXRM_MBOX=y # CONFIG_MTK_CMDQ_MBOX is not set # CONFIG_ZYNQMP_IPI_MBOX is not set CONFIG_IOMMU_IOVA=y @@ -6841,13 +6841,13 @@ CONFIG_QCOM_IOMMU=y # CONFIG_REMOTEPROC=y # CONFIG_IMX_REMOTEPROC is not set -CONFIG_QCOM_RPROC_COMMON=m -CONFIG_QCOM_Q6V5_COMMON=m +CONFIG_QCOM_RPROC_COMMON=y +CONFIG_QCOM_Q6V5_COMMON=y # CONFIG_QCOM_Q6V5_ADSP is not set -CONFIG_QCOM_Q6V5_MSS=m -CONFIG_QCOM_Q6V5_PAS=m +CONFIG_QCOM_Q6V5_MSS=y +CONFIG_QCOM_Q6V5_PAS=y # CONFIG_QCOM_Q6V5_WCSS is not set -CONFIG_QCOM_SYSMON=m +CONFIG_QCOM_SYSMON=y # CONFIG_QCOM_WCNSS_PIL is not set # end of Remoteproc drivers @@ -6858,12 +6858,12 @@ CONFIG_RPMSG=y # CONFIG_RPMSG_CHAR is not set CONFIG_RPMSG_QCOM_GLINK_NATIVE=y CONFIG_RPMSG_QCOM_GLINK_RPM=y -CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_GLINK_SMEM=y CONFIG_RPMSG_QCOM_SMD=y CONFIG_RPMSG_VIRTIO=y CONFIG_HAVE_IMX_RPMSG=y -CONFIG_IMX_RPMSG_PINGPONG=m -CONFIG_IMX_RPMSG_TTY=m +CONFIG_IMX_RPMSG_PINGPONG=y +CONFIG_IMX_RPMSG_TTY=y # end of Rpmsg drivers # CONFIG_SOUNDWIRE is not set @@ -6933,11 +6933,11 @@ CONFIG_MTK_SCPSYS=y # CONFIG_QCOM_AOSS_QMP is not set # CONFIG_QCOM_COMMAND_DB is not set CONFIG_QCOM_GENI_SE=y -CONFIG_QCOM_GLINK_SSR=m +CONFIG_QCOM_GLINK_SSR=y # CONFIG_QCOM_GSBI is not set # CONFIG_QCOM_LLCC is not set -CONFIG_QCOM_MDT_LOADER=m -CONFIG_QCOM_QMI_HELPERS=m +CONFIG_QCOM_MDT_LOADER=y +CONFIG_QCOM_QMI_HELPERS=y # CONFIG_QCOM_RMTFS_MEM is not set CONFIG_QCOM_RPMH=y # CONFIG_QCOM_RPMPD is not set @@ -7046,8 +7046,8 @@ CONFIG_IIO=y CONFIG_IIO_BUFFER=y # CONFIG_IIO_BUFFER_CB is not set # CONFIG_IIO_BUFFER_HW_CONSUMER is not set -CONFIG_IIO_KFIFO_BUF=m -CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_KFIFO_BUF=y +CONFIG_IIO_TRIGGERED_BUFFER=y # CONFIG_IIO_CONFIGFS is not set CONFIG_IIO_TRIGGER=y CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 @@ -7137,7 +7137,7 @@ CONFIG_MESON_SARADC=y # CONFIG_QCOM_SPMI_IADC is not set # CONFIG_QCOM_SPMI_VADC is not set # CONFIG_QCOM_SPMI_ADC5 is not set -CONFIG_ROCKCHIP_SARADC=m +CONFIG_ROCKCHIP_SARADC=y # CONFIG_SD_ADC_MODULATOR is not set # CONFIG_TI_ADC081C is not set # CONFIG_TI_ADC0832 is not set @@ -7181,8 +7181,8 @@ CONFIG_ROCKCHIP_SARADC=m # CONFIG_VZ89X is not set # end of Chemical Sensors -CONFIG_IIO_CROS_EC_SENSORS_CORE=m -CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_CORE=y +CONFIG_IIO_CROS_EC_SENSORS=y # CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE is not set # @@ -7327,7 +7327,7 @@ CONFIG_IIO_CROS_EC_SENSORS=m # CONFIG_CM3323 is not set # CONFIG_CM3605 is not set # CONFIG_CM36651 is not set -CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=y # CONFIG_GP2AP020A00F is not set # CONFIG_SENSORS_ISL29018 is not set # CONFIG_SENSORS_ISL29028 is not set @@ -7420,7 +7420,7 @@ CONFIG_IIO_CROS_EC_LIGHT_PROX=m # # CONFIG_ABP060MG is not set # CONFIG_BMP280 is not set -CONFIG_IIO_CROS_EC_BARO=m +CONFIG_IIO_CROS_EC_BARO=y # CONFIG_DPS310 is not set # CONFIG_HP03 is not set # CONFIG_MPL115_I2C is not set @@ -7478,26 +7478,26 @@ CONFIG_IIO_CROS_EC_BARO=m CONFIG_PWM=y CONFIG_PWM_SYSFS=y CONFIG_PWM_BCM_IPROC=y -CONFIG_PWM_BCM2835=m +CONFIG_PWM_BCM2835=y # CONFIG_PWM_BERLIN is not set # CONFIG_PWM_BRCMSTB is not set -CONFIG_PWM_CROS_EC=m +CONFIG_PWM_CROS_EC=y # CONFIG_PWM_FSL_FTM is not set # CONFIG_PWM_HIBVT is not set # CONFIG_PWM_IMX1 is not set CONFIG_PWM_IMX27=y # CONFIG_PWM_IMX_TPM is not set -CONFIG_PWM_MESON=m +CONFIG_PWM_MESON=y # CONFIG_PWM_MTK_DISP is not set # CONFIG_PWM_MEDIATEK is not set # CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_RCAR=m +CONFIG_PWM_RCAR=y # CONFIG_PWM_RENESAS_TPU is not set CONFIG_PWM_ROCKCHIP=y CONFIG_PWM_SAMSUNG=y # CONFIG_PWM_SPRD is not set -CONFIG_PWM_SUN4I=m -CONFIG_PWM_TEGRA=m +CONFIG_PWM_SUN4I=y +CONFIG_PWM_TEGRA=y # CONFIG_PWM_TIECAP is not set # CONFIG_PWM_TIEHRPWM is not set # CONFIG_PWM_ZX is not set @@ -7548,7 +7548,7 @@ CONFIG_RESET_DISPMIX=y CONFIG_RESET_IMX7=y CONFIG_RESET_GPIO=y CONFIG_RESET_MESON=y -CONFIG_RESET_MESON_AUDIO_ARB=m +CONFIG_RESET_MESON_AUDIO_ARB=y # CONFIG_RESET_QCOM_AOSS is not set # CONFIG_RESET_QCOM_PDC is not set CONFIG_RESET_SIMPLE=y @@ -7612,20 +7612,20 @@ CONFIG_PHY_MVEBU_CP110_COMPHY=y # CONFIG_PHY_QCOM_APQ8064_SATA is not set # CONFIG_PHY_QCOM_IPQ806X_SATA is not set # CONFIG_PHY_QCOM_PCIE2 is not set -CONFIG_PHY_QCOM_QMP=m -CONFIG_PHY_QCOM_QUSB2=m +CONFIG_PHY_QCOM_QMP=y +CONFIG_PHY_QCOM_QUSB2=y # CONFIG_PHY_QCOM_UFS is not set CONFIG_PHY_QCOM_USB_HS=y # CONFIG_PHY_QCOM_USB_HSIC is not set # CONFIG_PHY_RCAR_GEN2 is not set CONFIG_PHY_RCAR_GEN3_PCIE=y CONFIG_PHY_RCAR_GEN3_USB2=y -CONFIG_PHY_RCAR_GEN3_USB3=m +CONFIG_PHY_RCAR_GEN3_USB3=y # CONFIG_PHY_ROCKCHIP_DP is not set CONFIG_PHY_ROCKCHIP_EMMC=y -CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_HDMI=y CONFIG_PHY_ROCKCHIP_INNO_USB2=y -CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_PCIE=y CONFIG_PHY_ROCKCHIP_TYPEC=y # CONFIG_PHY_ROCKCHIP_USB is not set CONFIG_PHY_EXYNOS_DP_VIDEO=y @@ -7637,7 +7637,7 @@ CONFIG_PHY_UNIPHIER_USB2=y CONFIG_PHY_UNIPHIER_USB3=y # CONFIG_PHY_UNIPHIER_PCIE is not set CONFIG_PHY_TEGRA_XUSB=y -CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TEGRA194_P2U=y # CONFIG_PHY_AM654_SERDES is not set # CONFIG_OMAP_USB2 is not set # CONFIG_PHY_TUSB1210 is not set @@ -7655,11 +7655,11 @@ CONFIG_ARM_PMU=y CONFIG_ARM_PMU_ACPI=y # CONFIG_ARM_SMMU_V3_PMU is not set # CONFIG_ARM_DSU_PMU is not set -CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_FSL_IMX8_DDR_PMU=y CONFIG_HISI_PMU=y CONFIG_QCOM_L2_PMU=y CONFIG_QCOM_L3_PMU=y -CONFIG_THUNDERX2_PMU=m +CONFIG_THUNDERX2_PMU=y # CONFIG_XGENE_PMU is not set # CONFIG_ARM_SPE_PMU is not set # end of Performance monitor support @@ -7685,7 +7685,7 @@ CONFIG_ROCKCHIP_EFUSE=y CONFIG_NVMEM_BCM_OCOTP=y CONFIG_NVMEM_SUNXI_SID=y CONFIG_UNIPHIER_EFUSE=y -CONFIG_MESON_EFUSE=m +CONFIG_MESON_EFUSE=y # CONFIG_MESON_MX_EFUSE is not set # CONFIG_NVMEM_SNVS_LPGPR is not set # CONFIG_NVMEM_ZYNQMP is not set @@ -7701,15 +7701,15 @@ CONFIG_FPGA=y # CONFIG_ALTERA_PR_IP_CORE is not set # CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set # CONFIG_FPGA_MGR_ALTERA_CVP is not set -CONFIG_FPGA_MGR_STRATIX10_SOC=m +CONFIG_FPGA_MGR_STRATIX10_SOC=y # CONFIG_FPGA_MGR_XILINX_SPI is not set # CONFIG_FPGA_MGR_ICE40_SPI is not set # CONFIG_FPGA_MGR_MACHXO2_SPI is not set -CONFIG_FPGA_BRIDGE=m -CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_FPGA_BRIDGE=y +CONFIG_ALTERA_FREEZE_BRIDGE=y # CONFIG_XILINX_PR_DECOUPLER is not set -CONFIG_FPGA_REGION=m -CONFIG_OF_FPGA_REGION=m +CONFIG_FPGA_REGION=y +CONFIG_OF_FPGA_REGION=y # CONFIG_FPGA_DFL is not set # CONFIG_FPGA_MGR_ZYNQMP_FPGA is not set # CONFIG_FSI is not set @@ -7871,7 +7871,7 @@ CONFIG_QUOTACTL=y CONFIG_AUTOFS4_FS=y CONFIG_AUTOFS_FS=y CONFIG_FUSE_FS=y -CONFIG_CUSE=m +CONFIG_CUSE=y # CONFIG_VIRTIO_FS is not set CONFIG_OVERLAY_FS=y # CONFIG_OVERLAY_FS_REDIRECT_DIR is not set @@ -8005,8 +8005,8 @@ CONFIG_NFS_V4=y CONFIG_NFS_V4_1=y CONFIG_NFS_V4_2=y CONFIG_PNFS_FILE_LAYOUT=y -CONFIG_PNFS_BLOCK=m -CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_PNFS_BLOCK=y +CONFIG_PNFS_FLEXFILE_LAYOUT=y CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" # CONFIG_NFS_V4_1_MIGRATION is not set CONFIG_NFS_V4_SECURITY_LABEL=y @@ -8021,7 +8021,7 @@ CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y CONFIG_SUNRPC_BACKCHANNEL=y -CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPCSEC_GSS_KRB5=y # CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES is not set # CONFIG_SUNRPC_DEBUG is not set # CONFIG_CEPH_FS is not set @@ -8169,9 +8169,9 @@ CONFIG_CRYPTO_NULL2=y # CONFIG_CRYPTO_PCRYPT is not set CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y -CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TEST=y CONFIG_CRYPTO_SIMD=y -CONFIG_CRYPTO_ENGINE=m +CONFIG_CRYPTO_ENGINE=y # # Public-key cryptography @@ -8186,11 +8186,11 @@ CONFIG_CRYPTO_RSA=y # CONFIG_CRYPTO_CCM=y # CONFIG_CRYPTO_GCM is not set -CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CHACHA20POLY1305=y # CONFIG_CRYPTO_AEGIS128 is not set CONFIG_CRYPTO_SEQIV=y CONFIG_CRYPTO_ECHAINIV=y -CONFIG_CRYPTO_TLS=m +CONFIG_CRYPTO_TLS=y # # Block modes @@ -8198,12 +8198,12 @@ CONFIG_CRYPTO_TLS=m CONFIG_CRYPTO_CBC=y # CONFIG_CRYPTO_CFB is not set CONFIG_CRYPTO_CTR=y -CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_ECB=y -CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_LRW=y # CONFIG_CRYPTO_OFB is not set # CONFIG_CRYPTO_PCBC is not set -CONFIG_CRYPTO_XTS=m +CONFIG_CRYPTO_XTS=y # CONFIG_CRYPTO_KEYWRAP is not set # CONFIG_CRYPTO_ADIANTUM is not set # CONFIG_CRYPTO_ESSIV is not set @@ -8224,23 +8224,23 @@ CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_XXHASH is not set CONFIG_CRYPTO_CRCT10DIF=y # CONFIG_CRYPTO_GHASH is not set -CONFIG_CRYPTO_POLY1305=m -CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_POLY1305=y +CONFIG_CRYPTO_MD4=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y -CONFIG_CRYPTO_RMD128=m -CONFIG_CRYPTO_RMD160=m -CONFIG_CRYPTO_RMD256=m -CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_RMD128=y +CONFIG_CRYPTO_RMD160=y +CONFIG_CRYPTO_RMD256=y +CONFIG_CRYPTO_RMD320=y CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_LIB_SHA256=y CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=m -CONFIG_CRYPTO_SHA3=m -CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=y +CONFIG_CRYPTO_SM3=y # CONFIG_CRYPTO_STREEBOG is not set -CONFIG_CRYPTO_TGR192=m -CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_TGR192=y +CONFIG_CRYPTO_WP512=y # # Ciphers @@ -8251,24 +8251,24 @@ CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_LIB_ARC4=y CONFIG_CRYPTO_ARC4=y -CONFIG_CRYPTO_BLOWFISH=m -CONFIG_CRYPTO_BLOWFISH_COMMON=m -CONFIG_CRYPTO_CAMELLIA=m -CONFIG_CRYPTO_CAST_COMMON=m -CONFIG_CRYPTO_CAST5=m -CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_BLOWFISH=y +CONFIG_CRYPTO_BLOWFISH_COMMON=y +CONFIG_CRYPTO_CAMELLIA=y +CONFIG_CRYPTO_CAST_COMMON=y +CONFIG_CRYPTO_CAST5=y +CONFIG_CRYPTO_CAST6=y CONFIG_CRYPTO_LIB_DES=y CONFIG_CRYPTO_DES=y # CONFIG_CRYPTO_FCRYPT is not set # CONFIG_CRYPTO_KHAZAD is not set # CONFIG_CRYPTO_SALSA20 is not set -CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20=y # CONFIG_CRYPTO_SEED is not set -CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT=y # CONFIG_CRYPTO_SM4 is not set # CONFIG_CRYPTO_TEA is not set -CONFIG_CRYPTO_TWOFISH=m -CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH=y +CONFIG_CRYPTO_TWOFISH_COMMON=y # # Compression @@ -8317,7 +8317,7 @@ CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y # CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 -CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=m +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=y CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y # CONFIG_CRYPTO_DEV_SAHARA is not set @@ -8333,8 +8333,8 @@ CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y # CONFIG_CRYPTO_DEV_QCE is not set # CONFIG_CRYPTO_DEV_QCOM_RNG is not set # CONFIG_CRYPTO_DEV_ROCKCHIP is not set -CONFIG_CRYPTO_DEV_VIRTIO=m -CONFIG_CRYPTO_DEV_BCM_SPU=m +CONFIG_CRYPTO_DEV_VIRTIO=y +CONFIG_CRYPTO_DEV_BCM_SPU=y # CONFIG_CRYPTO_DEV_SAFEXCEL is not set # CONFIG_CRYPTO_DEV_CCREE is not set # CONFIG_CRYPTO_DEV_HISI_SEC is not set From 6f8495fb00e8c15bf7157e2a38b9db8e9657785c Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 12:33:51 -0700 Subject: [PATCH 007/132] Remove CPUs we don't want. Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 2257 +---------------- 1 file changed, 47 insertions(+), 2210 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 793a2b47..bb26db80 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -4,13 +4,14 @@ # # -# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.4-2019.02) 7.4.1 20181213 [linaro-7.4-2019.02 revision 56ec6f6b99cc167ff0c2f8e1a2eed33b1edc85d4] +# Compiler: aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70401 +CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y @@ -258,48 +259,41 @@ CONFIG_ARCH_PROC_KCORE_TEXT=y # Platform selection # # CONFIG_ARCH_ACTIONS is not set -CONFIG_ARCH_AGILEX=y -CONFIG_ARCH_SUNXI=y -CONFIG_ARCH_ALPINE=y -CONFIG_ARCH_BCM2835=y -CONFIG_ARCH_BCM_IPROC=y -CONFIG_ARCH_BERLIN=y +# CONFIG_ARCH_AGILEX is not set +# CONFIG_ARCH_SUNXI is not set +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_BCM2835 is not set +# CONFIG_ARCH_BCM_IPROC is not set +# CONFIG_ARCH_BERLIN is not set # CONFIG_ARCH_BITMAIN is not set -CONFIG_ARCH_BRCMSTB=y -CONFIG_ARCH_EXYNOS=y -CONFIG_ARCH_K3=y +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_K3 is not set CONFIG_ARCH_LAYERSCAPE=y -CONFIG_ARCH_LG1K=y -CONFIG_ARCH_HISI=y -CONFIG_ARCH_MEDIATEK=y -CONFIG_ARCH_MESON=y -CONFIG_ARCH_MVEBU=y -CONFIG_ARCH_MXC=y -CONFIG_HAVE_IMX_BUSFREQ=y -CONFIG_ARCH_QCOM=y +# CONFIG_ARCH_LG1K is not set +# CONFIG_ARCH_HISI is not set +# CONFIG_ARCH_MEDIATEK is not set +# CONFIG_ARCH_MESON is not set +# CONFIG_ARCH_MVEBU is not set +# CONFIG_ARCH_MXC is not set +# CONFIG_HAVE_IMX_BUSFREQ is not set +# CONFIG_ARCH_QCOM is not set # CONFIG_ARCH_REALTEK is not set -CONFIG_ARCH_RENESAS=y -CONFIG_ARCH_ROCKCHIP=y -CONFIG_ARCH_S32=y - -# -# S32 SOC selection -# -CONFIG_SOC_S32V234=y -# end of S32 SOC selection - -CONFIG_ARCH_SEATTLE=y -CONFIG_ARCH_STRATIX10=y -CONFIG_ARCH_SYNQUACER=y -CONFIG_ARCH_TEGRA=y -CONFIG_ARCH_SPRD=y -CONFIG_ARCH_THUNDER=y -CONFIG_ARCH_THUNDER2=y -CONFIG_ARCH_UNIPHIER=y -CONFIG_ARCH_VEXPRESS=y -CONFIG_ARCH_XGENE=y -CONFIG_ARCH_ZX=y -CONFIG_ARCH_ZYNQMP=y +# CONFIG_ARCH_RENESAS is not set +# CONFIG_ARCH_ROCKCHIP is not set +# CONFIG_ARCH_S32 is not set +# CONFIG_ARCH_SEATTLE is not set +# CONFIG_ARCH_STRATIX10 is not set +# CONFIG_ARCH_SYNQUACER is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_SPRD is not set +# CONFIG_ARCH_THUNDER is not set +# CONFIG_ARCH_THUNDER2 is not set +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARCH_VEXPRESS is not set +# CONFIG_ARCH_XGENE is not set +# CONFIG_ARCH_ZX is not set +# CONFIG_ARCH_ZYNQMP is not set # end of Platform selection # @@ -425,6 +419,8 @@ CONFIG_ARM64_MODULE_PLTS=y CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_STACKPROTECTOR_PER_TASK=y # end of Kernel Features # @@ -517,20 +513,7 @@ CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y CONFIG_CPUFREQ_DT=y CONFIG_CPUFREQ_DT_PLATDEV=y CONFIG_ACPI_CPPC_CPUFREQ=y -# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -CONFIG_ARM_ARMADA_37XX_CPUFREQ=y -# CONFIG_ARM_ARMADA_8K_CPUFREQ is not set CONFIG_ARM_SCPI_CPUFREQ=y -CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=y -CONFIG_ARM_IMX_CPUFREQ_DT=y -# CONFIG_ARM_IMX7ULP_CPUFREQ is not set -# CONFIG_ARM_MEDIATEK_CPUFREQ is not set -# CONFIG_ARM_QCOM_CPUFREQ_NVMEM is not set -# CONFIG_ARM_QCOM_CPUFREQ_HW is not set -CONFIG_ARM_RASPBERRYPI_CPUFREQ=y -CONFIG_ARM_TEGRA20_CPUFREQ=y -CONFIG_ARM_TEGRA124_CPUFREQ=y -CONFIG_ARM_TEGRA186_CPUFREQ=y CONFIG_QORIQ_CPUFREQ=y # end of CPU Frequency scaling # end of CPU Power Management @@ -546,15 +529,7 @@ CONFIG_ARM_SCPI_POWER_DOMAIN=y CONFIG_DMIID=y # CONFIG_DMI_SYSFS is not set # CONFIG_ISCSI_IBFT is not set -CONFIG_RASPBERRYPI_FIRMWARE=y # CONFIG_FW_CFG_SYSFS is not set -CONFIG_INTEL_STRATIX10_SERVICE=y -# CONFIG_INTEL_STRATIX10_RSU is not set -CONFIG_QCOM_SCM=y -CONFIG_QCOM_SCM_64=y -# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set -CONFIG_TI_SCI_PROTOCOL=y -# CONFIG_TURRIS_MOX_RWTM is not set CONFIG_HAVE_ARM_SMCCC=y CONFIG_ARM_PSCI_FW=y # CONFIG_ARM_PSCI_CHECKER is not set @@ -577,24 +552,11 @@ CONFIG_EFI_CAPSULE_LOADER=y CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_ARM=y CONFIG_EFI_EARLYCON=y -CONFIG_IMX_DSP=y -CONFIG_IMX_SCU=y -CONFIG_IMX_SCU_PD=y -CONFIG_MESON_SM=y # # Tegra firmware driver # -CONFIG_TEGRA_IVC=y -CONFIG_TEGRA_BPMP=y # end of Tegra firmware driver - -# -# Zynq MPSoC Firmware Drivers -# -CONFIG_ZYNQMP_FIRMWARE=y -# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set -# end of Zynq MPSoC Firmware Drivers # end of Firmware Drivers CONFIG_ARCH_SUPPORTS_ACPI=y @@ -892,7 +854,6 @@ CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_IDLE_PAGE_TRACKING is not set CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_HMM_MIRROR=y -CONFIG_FRAME_VECTOR=y # CONFIG_PERCPU_STATS is not set # CONFIG_GUP_BENCHMARK is not set # CONFIG_READ_ONLY_THP_FOR_FS is not set @@ -1354,9 +1315,6 @@ CONFIG_NETLINK_DIAG=y # CONFIG_HSR is not set CONFIG_NET_SWITCHDEV=y # CONFIG_NET_L3_MASTER_DEV is not set -CONFIG_QRTR=y -CONFIG_QRTR_SMD=y -CONFIG_QRTR_TUN=y # CONFIG_NET_NCSI is not set CONFIG_RPS=y CONFIG_RFS_ACCEL=y @@ -1399,8 +1357,6 @@ CONFIG_CAN_FLEXCAN=y # CONFIG_CAN_IFI_CANFD is not set # CONFIG_CAN_M_CAN is not set # CONFIG_CAN_PEAK_PCIEFD is not set -# CONFIG_CAN_RCAR is not set -# CONFIG_CAN_RCAR_CANFD is not set # CONFIG_CAN_SJA1000 is not set # CONFIG_CAN_SOFTING is not set @@ -1470,7 +1426,6 @@ CONFIG_HAVE_EBPF_JIT=y # Device Drivers # CONFIG_ARM_AMBA=y -CONFIG_TEGRA_AHB=y CONFIG_HAVE_PCI=y CONFIG_PCI=y CONFIG_PCI_DOMAINS=y @@ -1500,7 +1455,6 @@ CONFIG_PCI_QUIRKS=y # CONFIG_PCI_PF_STUB is not set CONFIG_PCI_ATS=y CONFIG_PCI_ECAM=y -CONFIG_PCI_BRIDGE_EMUL=y CONFIG_PCI_IOV=y # CONFIG_PCI_PRI is not set # CONFIG_PCI_PASID is not set @@ -1514,7 +1468,6 @@ CONFIG_HOTPLUG_PCI_ACPI=y # # PCI controller drivers # -CONFIG_PCI_AARDVARK=y # # Cadence PCIe controllers support @@ -1522,25 +1475,16 @@ CONFIG_PCI_AARDVARK=y # CONFIG_PCIE_CADENCE_HOST is not set # end of Cadence PCIe controllers support -# CONFIG_PCIE_XILINX_NWL is not set # CONFIG_PCI_FTPCI100 is not set -CONFIG_PCI_TEGRA=y -CONFIG_PCIE_RCAR=y CONFIG_PCI_HOST_COMMON=y CONFIG_PCI_HOST_GENERIC=y # CONFIG_PCIE_XILINX is not set CONFIG_PCI_XGENE=y CONFIG_PCI_XGENE_MSI=y -CONFIG_PCIE_IPROC=y -CONFIG_PCIE_IPROC_PLATFORM=y -CONFIG_PCIE_IPROC_MSI=y CONFIG_PCIE_ALTERA=y CONFIG_PCIE_ALTERA_MSI=y CONFIG_PCI_HOST_THUNDER_PEM=y CONFIG_PCI_HOST_THUNDER_ECAM=y -CONFIG_PCIE_ROCKCHIP=y -CONFIG_PCIE_ROCKCHIP_HOST=y -# CONFIG_PCIE_MEDIATEK is not set # # DesignWare PCI Core Support @@ -1548,21 +1492,10 @@ CONFIG_PCIE_ROCKCHIP_HOST=y CONFIG_PCIE_DW=y CONFIG_PCIE_DW_HOST=y # CONFIG_PCIE_DW_PLAT_HOST is not set -CONFIG_PCI_IMX6=y -# CONFIG_PCI_IMX6_COMPLIANCE_TEST is not set -# CONFIG_EP_MODE_IN_EP_RC_SYS is not set -# CONFIG_RC_MODE_IN_EP_RC_SYS is not set -CONFIG_PCI_KEYSTONE=y -CONFIG_PCI_KEYSTONE_HOST=y CONFIG_PCI_LAYERSCAPE=y CONFIG_PCI_HISI=y -CONFIG_PCIE_QCOM=y -CONFIG_PCIE_ARMADA_8K=y CONFIG_PCIE_KIRIN=y -CONFIG_PCIE_HISI_STB=y # CONFIG_PCI_MESON is not set -CONFIG_PCIE_TEGRA194=y -# CONFIG_PCIE_UNIPHIER is not set # CONFIG_PCIE_AL is not set # end of DesignWare PCI Core Support @@ -1571,7 +1504,6 @@ CONFIG_PCIE_TEGRA194=y # CONFIG_PCIE_MOBIVEIL=y CONFIG_PCIE_MOBIVEIL_HOST=y -# CONFIG_PCIE_MOBIVEIL_PLAT is not set CONFIG_PCIE_LAYERSCAPE_GEN4=y # end of Mobiveil PCIe Core Support # end of PCI controller drivers @@ -1625,7 +1557,6 @@ CONFIG_SOC_BUS=y CONFIG_REGMAP=y CONFIG_REGMAP_I2C=y CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_SPMI=y CONFIG_REGMAP_MMIO=y CONFIG_REGMAP_IRQ=y CONFIG_DMA_SHARED_BUFFER=y @@ -1638,15 +1569,7 @@ CONFIG_GENERIC_ARCH_TOPOLOGY=y # CONFIG_BRCMSTB_GISB_ARB=y # CONFIG_MOXTET is not set -CONFIG_HISILICON_LPC=y -# CONFIG_IMX_WEIM is not set -CONFIG_QCOM_EBI2=y CONFIG_SIMPLE_PM_BUS=y -CONFIG_SUN50I_DE2_BUS=y -CONFIG_SUNXI_RSB=y -# CONFIG_TEGRA_ACONNECT is not set -# CONFIG_TEGRA_GMI is not set -CONFIG_UNIPHIER_SYSTEM_BUS=y CONFIG_VEXPRESS_CONFIG=y CONFIG_FSL_MC_BUS=y CONFIG_FSL_MC_UAPI_SUPPORT=y @@ -1755,18 +1678,9 @@ CONFIG_MTD_NAND_DENALI=y # CONFIG_MTD_NAND_DENALI_PCI is not set CONFIG_MTD_NAND_DENALI_DT=y # CONFIG_MTD_NAND_CAFE is not set -CONFIG_MTD_NAND_MARVELL=y # CONFIG_MTD_NAND_BRCMNAND is not set -CONFIG_MTD_NAND_GPMI_NAND=y CONFIG_MTD_NAND_FSL_IFC=y -# CONFIG_MTD_NAND_MXC is not set -# CONFIG_MTD_NAND_SUNXI is not set -# CONFIG_MTD_NAND_HISI504 is not set -CONFIG_MTD_NAND_QCOM=y -# CONFIG_MTD_NAND_MTK is not set # CONFIG_MTD_NAND_MXIC is not set -# CONFIG_MTD_NAND_TEGRA is not set -# CONFIG_MTD_NAND_MESON is not set # CONFIG_MTD_NAND_GPIO is not set # CONFIG_MTD_NAND_PLATFORM is not set @@ -1787,7 +1701,6 @@ CONFIG_MTD_NAND_QCOM=y CONFIG_MTD_SPI_NOR=y # CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set # CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_HISI_SFC is not set # CONFIG_SPI_MTK_QUADSPI is not set CONFIG_MTD_UBI=y CONFIG_MTD_UBI_WL_THRESHOLD=4096 @@ -1861,8 +1774,6 @@ CONFIG_BLK_DEV_NVME=y # CONFIG_ICS932S401 is not set # CONFIG_ENCLOSURE_SERVICES is not set # CONFIG_HP_ILO is not set -# CONFIG_QCOM_COINCELL is not set -# CONFIG_QCOM_FASTRPC is not set # CONFIG_APDS9802ALS is not set # CONFIG_ISL29003 is not set # CONFIG_ISL29020 is not set @@ -2021,9 +1932,6 @@ CONFIG_SCSI_UFSHCD=y CONFIG_SCSI_UFSHCD_PLATFORM=y # CONFIG_SCSI_UFS_CDNS_PLATFORM is not set # CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set -CONFIG_SCSI_UFS_QCOM=y -# CONFIG_SCSI_UFS_MEDIATEK is not set -CONFIG_SCSI_UFS_HISI=y # CONFIG_SCSI_UFS_BSG is not set # CONFIG_SCSI_HPTIOP is not set # CONFIG_SCSI_MYRB is not set @@ -2064,16 +1972,9 @@ CONFIG_SATA_PMP=y CONFIG_SATA_AHCI=y CONFIG_SATA_MOBILE_LPM_POLICY=0 CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_AHCI_BRCM is not set -CONFIG_AHCI_IMX=y CONFIG_AHCI_CEVA=y -# CONFIG_AHCI_MTK is not set -CONFIG_AHCI_MVEBU=y -# CONFIG_AHCI_SUNXI is not set -# CONFIG_AHCI_TEGRA is not set CONFIG_AHCI_XGENE=y CONFIG_AHCI_QORIQ=y -# CONFIG_SATA_AHCI_SEATTLE is not set # CONFIG_SATA_INIC162X is not set # CONFIG_SATA_ACARD_AHCI is not set CONFIG_SATA_SIL24=y @@ -2095,7 +1996,6 @@ CONFIG_ATA_BMDMA=y # CONFIG_SATA_MV is not set # CONFIG_SATA_NV is not set # CONFIG_SATA_PROMISE is not set -CONFIG_SATA_RCAR=y # CONFIG_SATA_SIL is not set # CONFIG_SATA_SIS is not set # CONFIG_SATA_SVW is not set @@ -2118,7 +2018,6 @@ CONFIG_SATA_RCAR=y # CONFIG_PATA_HPT37X is not set # CONFIG_PATA_HPT3X2N is not set # CONFIG_PATA_HPT3X3 is not set -# CONFIG_PATA_IMX is not set # CONFIG_PATA_IT8213 is not set # CONFIG_PATA_IT821X is not set # CONFIG_PATA_JMICRON is not set @@ -2160,6 +2059,7 @@ CONFIG_PATA_OF_PLATFORM=y # CONFIG_PATA_LEGACY is not set CONFIG_MD=y CONFIG_BLK_DEV_MD=y +# CONFIG_MD_AUTODETECT is not set # CONFIG_MD_LINEAR is not set # CONFIG_MD_RAID0 is not set # CONFIG_MD_RAID1 is not set @@ -2186,6 +2086,7 @@ CONFIG_DM_ZERO=y # CONFIG_DM_MULTIPATH is not set # CONFIG_DM_DELAY is not set # CONFIG_DM_DUST is not set +# CONFIG_DM_INIT is not set # CONFIG_DM_UEVENT is not set # CONFIG_DM_FLAKEY is not set # CONFIG_DM_VERITY is not set @@ -2265,8 +2166,6 @@ CONFIG_NET_VENDOR_AGERE=y # CONFIG_ET131X is not set CONFIG_NET_VENDOR_ALACRITECH=y # CONFIG_SLICOSS is not set -CONFIG_NET_VENDOR_ALLWINNER=y -# CONFIG_SUN4I_EMAC is not set CONFIG_NET_VENDOR_ALTEON=y # CONFIG_ACENIC is not set # CONFIG_ALTERA_TSE is not set @@ -2276,12 +2175,9 @@ CONFIG_NET_VENDOR_AMD=y # CONFIG_AMD8111_ETH is not set # CONFIG_PCNET32 is not set CONFIG_AMD_XGBE=y -CONFIG_NET_XGENE=y -# CONFIG_NET_XGENE_V2 is not set CONFIG_NET_VENDOR_AQUANTIA=y # CONFIG_AQTION is not set CONFIG_NET_VENDOR_ARC=y -# CONFIG_EMAC_ROCKCHIP is not set CONFIG_NET_VENDOR_ATHEROS=y # CONFIG_ATL2 is not set # CONFIG_ATL1 is not set @@ -2298,8 +2194,6 @@ CONFIG_NET_VENDOR_BROADCOM=y # CONFIG_TIGON3 is not set CONFIG_BNX2X=y CONFIG_BNX2X_SRIOV=y -CONFIG_BGMAC=y -CONFIG_BGMAC_PLATFORM=y # CONFIG_SYSTEMPORT is not set # CONFIG_BNXT is not set CONFIG_NET_VENDOR_BROCADE=y @@ -2336,7 +2230,6 @@ CONFIG_NET_VENDOR_EMULEX=y CONFIG_NET_VENDOR_EZCHIP=y # CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set CONFIG_NET_VENDOR_FREESCALE=y -CONFIG_FEC=y # CONFIG_FSL_FMAN is not set # CONFIG_FSL_PQ_MDIO is not set CONFIG_FSL_XGMAC_MDIO=y @@ -2427,14 +2320,10 @@ CONFIG_IGBVF=y # CONFIG_JME is not set CONFIG_NET_VENDOR_MARVELL=y CONFIG_MVMDIO=y -CONFIG_MVNETA=y -CONFIG_MVPP2=y -# CONFIG_PXA168_ETH is not set # CONFIG_SKGE is not set CONFIG_SKY2=y # CONFIG_SKY2_DEBUG is not set # CONFIG_OCTEONTX2_AF is not set -# CONFIG_NET_VENDOR_MEDIATEK is not set CONFIG_NET_VENDOR_MELLANOX=y CONFIG_MLX4_EN=y CONFIG_MLX4_CORE=y @@ -2504,8 +2393,6 @@ CONFIG_NET_VENDOR_REALTEK=y # CONFIG_8139TOO is not set # CONFIG_R8169 is not set CONFIG_NET_VENDOR_RENESAS=y -# CONFIG_SH_ETH is not set -CONFIG_RAVB=y CONFIG_NET_VENDOR_ROCKER=y # CONFIG_ROCKER is not set CONFIG_NET_VENDOR_SAMSUNG=y @@ -2525,8 +2412,6 @@ CONFIG_SMC91X=y CONFIG_SMSC911X=y # CONFIG_SMSC9420 is not set CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_SNI_AVE=y -CONFIG_SNI_NETSEC=y # CONFIG_NET_VENDOR_STMICRO is not set CONFIG_NET_VENDOR_SUN=y # CONFIG_HAPPYMEAL is not set @@ -2551,13 +2436,10 @@ CONFIG_NET_VENDOR_WIZNET=y # CONFIG_NET_SB1000 is not set CONFIG_MDIO_DEVICE=y CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_IPROC is not set # CONFIG_MDIO_BCM_UNIMAC is not set CONFIG_MDIO_BITBANG=y CONFIG_MDIO_BUS_MUX=y -CONFIG_MDIO_BUS_MUX_BCM_IPROC=y # CONFIG_MDIO_BUS_MUX_GPIO is not set -CONFIG_MDIO_BUS_MUX_MESON_G12A=y CONFIG_MDIO_BUS_MUX_MMIOREG=y CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y CONFIG_MDIO_CAVIUM=y @@ -2565,9 +2447,7 @@ CONFIG_MDIO_CAVIUM=y # CONFIG_MDIO_HISI_FEMAC is not set # CONFIG_MDIO_MSCC_MIIM is not set # CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_SUN4I is not set CONFIG_MDIO_THUNDER=y -CONFIG_MDIO_XGENE=y CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y @@ -2600,7 +2480,6 @@ CONFIG_INPHI_PHY=y # CONFIG_LXT_PHY is not set CONFIG_MARVELL_PHY=y CONFIG_MARVELL_10G_PHY=y -CONFIG_MESON_GXL_PHY=y CONFIG_MICREL_PHY=y CONFIG_MICROCHIP_PHY=y # CONFIG_MICROCHIP_T1_PHY is not set @@ -2743,16 +2622,11 @@ CONFIG_KEYBOARD_GPIO=y # CONFIG_KEYBOARD_MAX7359 is not set # CONFIG_KEYBOARD_MCS is not set # CONFIG_KEYBOARD_MPR121 is not set -CONFIG_KEYBOARD_SNVS_PWRKEY=y -CONFIG_KEYBOARD_IMX_SC_PWRKEY=y -# CONFIG_KEYBOARD_IMX is not set # CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_TEGRA is not set # CONFIG_KEYBOARD_OPENCORES is not set # CONFIG_KEYBOARD_SAMSUNG is not set # CONFIG_KEYBOARD_STOWAWAY is not set # CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_SUN4I_LRADC is not set # CONFIG_KEYBOARD_OMAP4 is not set # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set # CONFIG_KEYBOARD_XTKBD is not set @@ -2793,7 +2667,6 @@ CONFIG_TOUCHSCREEN_CT36X_WLD=y # CONFIG_TOUCHSCREEN_ADC is not set # CONFIG_TOUCHSCREEN_AR1021_I2C is not set CONFIG_TOUCHSCREEN_ATMEL_MXT=y -# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set # CONFIG_TOUCHSCREEN_BU21013 is not set # CONFIG_TOUCHSCREEN_BU21029 is not set @@ -2813,7 +2686,6 @@ CONFIG_TOUCHSCREEN_ATMEL_MXT=y # CONFIG_TOUCHSCREEN_GOODIX is not set # CONFIG_TOUCHSCREEN_HIDEEP is not set # CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_IPROC is not set # CONFIG_TOUCHSCREEN_S6SY761 is not set # CONFIG_TOUCHSCREEN_GUNZE is not set # CONFIG_TOUCHSCREEN_EKTF2127 is not set @@ -2831,7 +2703,6 @@ CONFIG_TOUCHSCREEN_ATMEL_MXT=y # CONFIG_TOUCHSCREEN_MK712 is not set # CONFIG_TOUCHSCREEN_PENMOUNT is not set # CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_RASPBERRYPI_FW is not set # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set # CONFIG_TOUCHSCREEN_TOUCHWIN is not set # CONFIG_TOUCHSCREEN_PIXCIR is not set @@ -2847,8 +2718,6 @@ CONFIG_TOUCHSCREEN_ATMEL_MXT=y # CONFIG_TOUCHSCREEN_SIS_I2C is not set # CONFIG_TOUCHSCREEN_ST1232 is not set # CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SUN4I is not set -# CONFIG_TOUCHSCREEN_SUR40 is not set # CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set # CONFIG_TOUCHSCREEN_SX8654 is not set # CONFIG_TOUCHSCREEN_TPS6507X is not set @@ -2865,8 +2734,6 @@ CONFIG_INPUT_MISC=y # CONFIG_INPUT_BMA150 is not set # CONFIG_INPUT_E3X0_BUTTON is not set # CONFIG_INPUT_MSM_VIBRATOR is not set -CONFIG_INPUT_PM8941_PWRKEY=y -# CONFIG_INPUT_PM8XXX_VIBRATOR is not set # CONFIG_INPUT_MMA8450 is not set # CONFIG_INPUT_GP2A is not set # CONFIG_INPUT_GPIO_BEEPER is not set @@ -2894,7 +2761,6 @@ CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y # CONFIG_INPUT_DRV260X_HAPTICS is not set # CONFIG_INPUT_DRV2665_HAPTICS is not set # CONFIG_INPUT_DRV2667_HAPTICS is not set -CONFIG_INPUT_HISI_POWERKEY=y CONFIG_INPUT_MPL3115=y # CONFIG_SENSOR_FXLS8471 is not set CONFIG_INPUT_ISL29023=y @@ -2913,7 +2779,6 @@ CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_PS2MULT is not set # CONFIG_SERIO_ARC_PS2 is not set # CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_SUN4I_PS2 is not set # CONFIG_SERIO_GPIO_PS2 is not set # CONFIG_USERIO is not set # CONFIG_GAMEPORT is not set @@ -2962,14 +2827,9 @@ CONFIG_SERIAL_8250_SHARE_IRQ=y # CONFIG_SERIAL_8250_DETECT_IRQ is not set # CONFIG_SERIAL_8250_RSA is not set CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_BCM2835AUX=y CONFIG_SERIAL_8250_FSL=y CONFIG_SERIAL_8250_DW=y # CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_OMAP=y -CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y -CONFIG_SERIAL_8250_MT6577=y -CONFIG_SERIAL_8250_UNIPHIER=y CONFIG_SERIAL_OF_PLATFORM=y # @@ -2979,32 +2839,12 @@ CONFIG_SERIAL_OF_PLATFORM=y CONFIG_SERIAL_AMBA_PL011=y CONFIG_SERIAL_AMBA_PL011_CONSOLE=y # CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -CONFIG_SERIAL_MESON=y -CONFIG_SERIAL_MESON_CONSOLE=y -CONFIG_SERIAL_SAMSUNG=y -CONFIG_SERIAL_SAMSUNG_UARTS_4=y -CONFIG_SERIAL_SAMSUNG_UARTS=4 -CONFIG_SERIAL_SAMSUNG_CONSOLE=y -CONFIG_SERIAL_TEGRA=y -CONFIG_SERIAL_TEGRA_TCU=y -CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y # CONFIG_SERIAL_MAX3100 is not set # CONFIG_SERIAL_MAX310X is not set -CONFIG_SERIAL_IMX=y -CONFIG_SERIAL_IMX_CONSOLE=y # CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_SH_SCI=y -CONFIG_SERIAL_SH_SCI_NR_UARTS=18 -CONFIG_SERIAL_SH_SCI_CONSOLE=y -CONFIG_SERIAL_SH_SCI_EARLYCON=y -CONFIG_SERIAL_SH_SCI_DMA=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set -CONFIG_SERIAL_MSM=y -CONFIG_SERIAL_MSM_CONSOLE=y -CONFIG_SERIAL_QCOM_GENI=y -CONFIG_SERIAL_QCOM_GENI_CONSOLE=y # CONFIG_SERIAL_SIFIVE is not set # CONFIG_SERIAL_SCCNXP is not set # CONFIG_SERIAL_SC16IS7XX is not set @@ -3020,9 +2860,6 @@ CONFIG_SERIAL_FSL_LPUART_CONSOLE=y CONFIG_SERIAL_FSL_LINFLEXUART=y CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -CONFIG_SERIAL_MVEBU_UART=y -CONFIG_SERIAL_MVEBU_CONSOLE=y # end of Serial drivers CONFIG_SERIAL_MCTRL_GPIO=y @@ -3047,17 +2884,8 @@ CONFIG_IPMI_SI=y # CONFIG_IPMB_DEVICE_INTERFACE is not set CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_BCM2835=y -CONFIG_HW_RANDOM_IPROC_RNG200=y -CONFIG_HW_RANDOM_OMAP=y # CONFIG_HW_RANDOM_VIRTIO is not set -CONFIG_HW_RANDOM_IMX_RNGC=y -CONFIG_HW_RANDOM_HISI=y -CONFIG_HW_RANDOM_XGENE=y -CONFIG_HW_RANDOM_MESON=y CONFIG_HW_RANDOM_CAVIUM=y -CONFIG_HW_RANDOM_MTK=y -CONFIG_HW_RANDOM_EXYNOS=y CONFIG_HW_RANDOM_OPTEE=y # CONFIG_APPLICOM is not set # CONFIG_RAW_DRIVER is not set @@ -3123,7 +2951,6 @@ CONFIG_I2C_ALGOBIT=y # CONFIG_I2C_AMD756 is not set # CONFIG_I2C_AMD8111 is not set # CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_HIX5HD2 is not set # CONFIG_I2C_I801 is not set # CONFIG_I2C_ISCH is not set # CONFIG_I2C_PIIX4 is not set @@ -3143,9 +2970,6 @@ CONFIG_I2C_ALGOBIT=y # # I2C system bus drivers (mostly embedded / system-on-chip) # -CONFIG_I2C_BCM2835=y -CONFIG_I2C_BCM_IPROC=y -CONFIG_I2C_BRCMSTB=y # CONFIG_I2C_CADENCE is not set # CONFIG_I2C_CBUS_GPIO is not set CONFIG_I2C_DESIGNWARE_CORE=y @@ -3153,38 +2977,17 @@ CONFIG_I2C_DESIGNWARE_PLATFORM=y # CONFIG_I2C_DESIGNWARE_SLAVE is not set # CONFIG_I2C_DESIGNWARE_PCI is not set # CONFIG_I2C_EMEV2 is not set -CONFIG_I2C_EXYNOS5=y CONFIG_I2C_GPIO=y # CONFIG_I2C_GPIO_FAULT_INJECTOR is not set CONFIG_I2C_IMX=y -CONFIG_I2C_IMX_LPI2C=y -CONFIG_I2C_MESON=y -# CONFIG_I2C_MT65XX is not set -CONFIG_I2C_MV64XXX=y # CONFIG_I2C_NOMADIK is not set # CONFIG_I2C_OCORES is not set -# CONFIG_I2C_OMAP is not set # CONFIG_I2C_PCA_PLATFORM is not set -CONFIG_I2C_PXA=y -# CONFIG_I2C_PXA_SLAVE is not set -CONFIG_I2C_QCOM_GENI=y -CONFIG_I2C_QUP=y -# CONFIG_I2C_RIIC is not set CONFIG_I2C_RK3X=y CONFIG_I2C_RPBUS=y -CONFIG_I2C_SH_MOBILE=y # CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_SPRD is not set -# CONFIG_I2C_SYNQUACER is not set -CONFIG_I2C_TEGRA=y -CONFIG_I2C_TEGRA_BPMP=y -# CONFIG_I2C_UNIPHIER is not set -CONFIG_I2C_UNIPHIER_F=y -# CONFIG_I2C_VERSATILE is not set # CONFIG_I2C_THUNDERX is not set # CONFIG_I2C_XILINX is not set -# CONFIG_I2C_XLP9XX is not set -CONFIG_I2C_RCAR=y # # External I2C/SMBus adapter drivers @@ -3199,8 +3002,6 @@ CONFIG_I2C_RCAR=y # Other I2C/SMBus bus drivers # CONFIG_I2C_CROS_EC_TUNNEL=y -# CONFIG_I2C_XGENE_SLIMPRO is not set -CONFIG_I2C_ZX2967=y CONFIG_XEN_I2C_FRONTEND=y # CONFIG_XEN_I2C_BACKEND is not set # end of I2C Hardware Bus support @@ -3223,54 +3024,25 @@ CONFIG_SPI_MEM=y # SPI Master Controller Drivers # # CONFIG_SPI_ALTERA is not set -CONFIG_SPI_ARMADA_3700=y # CONFIG_SPI_AXI_SPI_ENGINE is not set -CONFIG_SPI_BCM2835=y -CONFIG_SPI_BCM2835AUX=y -CONFIG_SPI_BCM_QSPI=y CONFIG_SPI_BITBANG=y # CONFIG_SPI_CADENCE is not set # CONFIG_SPI_DESIGNWARE is not set -CONFIG_SPI_FSL_LPSPI=y CONFIG_SPI_FSL_QUADSPI=y CONFIG_SPI_NXP_FLEXSPI=y # CONFIG_SPI_GPIO is not set -CONFIG_SPI_IMX=y # CONFIG_SPI_FSL_SPI is not set CONFIG_SPI_FSL_DSPI=y -CONFIG_SPI_MESON_SPICC=y -CONFIG_SPI_MESON_SPIFC=y -# CONFIG_SPI_MT65XX is not set # CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_OMAP24XX is not set -CONFIG_SPI_ORION=y CONFIG_SPI_PL022=y # CONFIG_SPI_PXA2XX is not set CONFIG_SPI_ROCKCHIP=y -# CONFIG_SPI_RSPI is not set -# CONFIG_SPI_QCOM_QSPI is not set -CONFIG_SPI_QUP=y -# CONFIG_SPI_QCOM_GENI is not set -CONFIG_SPI_S3C64XX=y # CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SH_MSIOF is not set -# CONFIG_SPI_SH_HSPI is not set # CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_SLAVE_MT27XX is not set -# CONFIG_SPI_SPRD is not set -# CONFIG_SPI_SPRD_ADI is not set -# CONFIG_SPI_SUN4I is not set -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_SYNQUACER is not set # CONFIG_SPI_MXIC is not set -# CONFIG_SPI_TEGRA114 is not set -# CONFIG_SPI_TEGRA20_SFLASH is not set -# CONFIG_SPI_TEGRA20_SLINK is not set # CONFIG_SPI_THUNDERX is not set -# CONFIG_SPI_UNIPHIER is not set # CONFIG_SPI_XCOMM is not set # CONFIG_SPI_XILINX is not set -# CONFIG_SPI_XLP is not set # CONFIG_SPI_ZYNQMP_GQSPI is not set # @@ -3283,7 +3055,6 @@ CONFIG_SPI_SLAVE=y CONFIG_SPI_SLAVE_TIME=y CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y CONFIG_SPMI=y -CONFIG_SPMI_MSM_PMIC_ARB=y # CONFIG_HSI is not set CONFIG_PPS=y # CONFIG_PPS_DEBUG is not set @@ -3303,7 +3074,6 @@ CONFIG_PPS=y # PTP clock support # CONFIG_PTP_1588_CLOCK=y -CONFIG_PTP_1588_CLOCK_DTE=y CONFIG_PTP_1588_CLOCK_QORIQ=y # @@ -3321,127 +3091,13 @@ CONFIG_GENERIC_PINCONF=y # CONFIG_PINCTRL_AXP209 is not set # CONFIG_PINCTRL_AMD is not set # CONFIG_PINCTRL_MCP23S08 is not set -CONFIG_PINCTRL_ROCKCHIP=y CONFIG_PINCTRL_SINGLE=y # CONFIG_PINCTRL_SX150X is not set # CONFIG_PINCTRL_STMFX is not set CONFIG_PINCTRL_MAX77620=y # CONFIG_PINCTRL_RK805 is not set # CONFIG_PINCTRL_OCELOT is not set -CONFIG_PINCTRL_BCM2835=y -CONFIG_PINCTRL_IPROC_GPIO=y -CONFIG_PINCTRL_NS2_MUX=y -# CONFIG_PINCTRL_AS370 is not set -# CONFIG_PINCTRL_BERLIN_BG4CT is not set -CONFIG_PINCTRL_IMX=y -CONFIG_PINCTRL_IMX_SCU=y -CONFIG_PINCTRL_IMX8MM=y -CONFIG_PINCTRL_IMX8MN=y -CONFIG_PINCTRL_IMX8MQ=y -CONFIG_PINCTRL_IMX8QM=y -CONFIG_PINCTRL_IMX8QXP=y CONFIG_PINCTRL_S32V_CORE=y -CONFIG_PINCTRL_S32V234=y -CONFIG_PINCTRL_MVEBU=y -CONFIG_PINCTRL_ARMADA_AP806=y -CONFIG_PINCTRL_ARMADA_CP110=y -CONFIG_PINCTRL_ARMADA_37XX=y -CONFIG_PINCTRL_MSM=y -# CONFIG_PINCTRL_APQ8064 is not set -# CONFIG_PINCTRL_APQ8084 is not set -# CONFIG_PINCTRL_IPQ4019 is not set -# CONFIG_PINCTRL_IPQ8064 is not set -CONFIG_PINCTRL_IPQ8074=y -# CONFIG_PINCTRL_MSM8660 is not set -# CONFIG_PINCTRL_MSM8960 is not set -# CONFIG_PINCTRL_MDM9615 is not set -# CONFIG_PINCTRL_MSM8X74 is not set -CONFIG_PINCTRL_MSM8916=y -CONFIG_PINCTRL_MSM8994=y -CONFIG_PINCTRL_MSM8996=y -CONFIG_PINCTRL_MSM8998=y -CONFIG_PINCTRL_QCS404=y -CONFIG_PINCTRL_QDF2XXX=y -CONFIG_PINCTRL_QCOM_SPMI_PMIC=y -# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set -# CONFIG_PINCTRL_SC7180 is not set -# CONFIG_PINCTRL_SDM660 is not set -CONFIG_PINCTRL_SDM845=y -CONFIG_PINCTRL_SM8150=y -CONFIG_PINCTRL_SAMSUNG=y -CONFIG_PINCTRL_EXYNOS=y -CONFIG_PINCTRL_EXYNOS_ARM64=y -CONFIG_PINCTRL_SH_PFC=y -CONFIG_PINCTRL_PFC_R8A774A1=y -CONFIG_PINCTRL_PFC_R8A774C0=y -CONFIG_PINCTRL_PFC_R8A7795=y -CONFIG_PINCTRL_PFC_R8A7796=y -CONFIG_PINCTRL_PFC_R8A77965=y -CONFIG_PINCTRL_PFC_R8A77970=y -CONFIG_PINCTRL_PFC_R8A77980=y -CONFIG_PINCTRL_PFC_R8A77990=y -CONFIG_PINCTRL_PFC_R8A77995=y -# CONFIG_PINCTRL_SPRD is not set -CONFIG_PINCTRL_SUNXI=y -# CONFIG_PINCTRL_SUN4I_A10 is not set -# CONFIG_PINCTRL_SUN5I is not set -# CONFIG_PINCTRL_SUN6I_A31 is not set -# CONFIG_PINCTRL_SUN6I_A31_R is not set -# CONFIG_PINCTRL_SUN8I_A23 is not set -# CONFIG_PINCTRL_SUN8I_A33 is not set -# CONFIG_PINCTRL_SUN8I_A83T is not set -# CONFIG_PINCTRL_SUN8I_A83T_R is not set -# CONFIG_PINCTRL_SUN8I_A23_R is not set -# CONFIG_PINCTRL_SUN8I_H3 is not set -CONFIG_PINCTRL_SUN8I_H3_R=y -# CONFIG_PINCTRL_SUN8I_V3S is not set -# CONFIG_PINCTRL_SUN9I_A80 is not set -# CONFIG_PINCTRL_SUN9I_A80_R is not set -CONFIG_PINCTRL_SUN50I_A64=y -CONFIG_PINCTRL_SUN50I_A64_R=y -CONFIG_PINCTRL_SUN50I_H5=y -CONFIG_PINCTRL_SUN50I_H6=y -CONFIG_PINCTRL_SUN50I_H6_R=y -CONFIG_PINCTRL_TEGRA=y -CONFIG_PINCTRL_TEGRA124=y -CONFIG_PINCTRL_TEGRA210=y -CONFIG_PINCTRL_TEGRA194=y -CONFIG_PINCTRL_TEGRA_XUSB=y -CONFIG_PINCTRL_UNIPHIER=y -# CONFIG_PINCTRL_UNIPHIER_LD4 is not set -# CONFIG_PINCTRL_UNIPHIER_PRO4 is not set -# CONFIG_PINCTRL_UNIPHIER_SLD8 is not set -# CONFIG_PINCTRL_UNIPHIER_PRO5 is not set -# CONFIG_PINCTRL_UNIPHIER_PXS2 is not set -# CONFIG_PINCTRL_UNIPHIER_LD6B is not set -CONFIG_PINCTRL_UNIPHIER_LD11=y -CONFIG_PINCTRL_UNIPHIER_LD20=y -CONFIG_PINCTRL_UNIPHIER_PXS3=y - -# -# MediaTek pinctrl drivers -# -CONFIG_EINT_MTK=y -CONFIG_PINCTRL_MTK=y -CONFIG_PINCTRL_MTK_MOORE=y -CONFIG_PINCTRL_MTK_PARIS=y -CONFIG_PINCTRL_MT2712=y -CONFIG_PINCTRL_MT6765=y -CONFIG_PINCTRL_MT6797=y -CONFIG_PINCTRL_MT7622=y -CONFIG_PINCTRL_MT8173=y -CONFIG_PINCTRL_MT8183=y -CONFIG_PINCTRL_MT8516=y -# end of MediaTek pinctrl drivers - -# CONFIG_PINCTRL_ZX296718 is not set -CONFIG_PINCTRL_MESON=y -CONFIG_PINCTRL_MESON_GXBB=y -CONFIG_PINCTRL_MESON_GXL=y -CONFIG_PINCTRL_MESON8_PMX=y -CONFIG_PINCTRL_MESON_AXG=y -CONFIG_PINCTRL_MESON_AXG_PMX=y -CONFIG_PINCTRL_MESON_G12A=y CONFIG_GPIOLIB=y CONFIG_GPIOLIB_FASTPATH_LIMIT=512 CONFIG_OF_GPIO=y @@ -3457,12 +3113,8 @@ CONFIG_GPIO_GENERIC=y # CONFIG_GPIO_74XX_MMIO is not set # CONFIG_GPIO_ALTERA is not set # CONFIG_GPIO_AMDPT is not set -CONFIG_GPIO_RASPBERRYPI_EXP=y -CONFIG_GPIO_BRCMSTB=y # CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DAVINCI is not set CONFIG_GPIO_DWAPB=y -# CONFIG_GPIO_EIC_SPRD is not set # CONFIG_GPIO_EXAR is not set # CONFIG_GPIO_FTGPIO010 is not set CONFIG_GPIO_GENERIC_PLATFORM=y @@ -3470,25 +3122,11 @@ CONFIG_GPIO_GENERIC_PLATFORM=y # CONFIG_GPIO_HLWD is not set CONFIG_GPIO_MB86S7X=y CONFIG_GPIO_MPC8XXX=y -CONFIG_GPIO_MVEBU=y -CONFIG_GPIO_MXC=y -CONFIG_GPIO_MXC_PAD_WAKEUP=y CONFIG_GPIO_PL061=y -CONFIG_GPIO_RCAR=y # CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SPRD is not set # CONFIG_GPIO_SYSCON is not set -CONFIG_GPIO_TEGRA=y -CONFIG_GPIO_TEGRA186=y -# CONFIG_GPIO_THUNDERX is not set -CONFIG_GPIO_UNIPHIER=y -# CONFIG_GPIO_IMX_RPMSG is not set CONFIG_GPIO_XGENE=y -CONFIG_GPIO_XGENE_SB=y # CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_XLP is not set -# CONFIG_GPIO_ZYNQ is not set -# CONFIG_GPIO_ZX is not set # CONFIG_GPIO_AMD_FCH is not set # end of Memory mapped GPIO drivers @@ -3542,21 +3180,16 @@ CONFIG_GPIO_MAX77620=y # CONFIG_GPIO_MOCKUP is not set # CONFIG_W1 is not set CONFIG_POWER_AVS=y -CONFIG_ROCKCHIP_IODOMAIN=y CONFIG_POWER_RESET=y CONFIG_POWER_RESET_BRCMSTB=y CONFIG_POWER_RESET_GPIO=y # CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_HISI is not set -CONFIG_POWER_RESET_MSM=y -# CONFIG_POWER_RESET_QCOM_PON is not set # CONFIG_POWER_RESET_LTC2952 is not set # CONFIG_POWER_RESET_RESTART is not set CONFIG_POWER_RESET_VEXPRESS=y CONFIG_POWER_RESET_XGENE=y CONFIG_POWER_RESET_SYSCON=y # CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_POWER_RESET_ZX is not set CONFIG_REBOOT_MODE=y CONFIG_SYSCON_REBOOT_MODE=y # CONFIG_NVMEM_REBOOT_MODE is not set @@ -3588,7 +3221,6 @@ CONFIG_BATTERY_BQ27XXX_I2C=y # CONFIG_CHARGER_MANAGER is not set # CONFIG_CHARGER_LT3651 is not set # CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_QCOM_SMBB is not set # CONFIG_CHARGER_BQ2415X is not set # CONFIG_CHARGER_BQ24190 is not set # CONFIG_CHARGER_BQ24257 is not set @@ -3720,7 +3352,6 @@ CONFIG_SENSORS_LTC2978_REGULATOR=y # CONFIG_SENSORS_UCD9200 is not set # CONFIG_SENSORS_ZL6100 is not set CONFIG_SENSORS_PWM_FAN=y -CONFIG_SENSORS_RASPBERRYPI_HWMON=y # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SHT21 is not set # CONFIG_SENSORS_SHT3x is not set @@ -3793,52 +3424,10 @@ CONFIG_CPU_THERMAL=y # CONFIG_DEVFREQ_THERMAL is not set CONFIG_THERMAL_EMULATION=y # CONFIG_THERMAL_MMIO is not set -CONFIG_HISI_THERMAL=y -# CONFIG_IMX_THERMAL is not set -CONFIG_IMX_SC_THERMAL=y CONFIG_DEVICE_THERMAL=y -CONFIG_IMX8MM_THERMAL=y # CONFIG_MAX77620_THERMAL is not set CONFIG_QORIQ_THERMAL=y -CONFIG_ROCKCHIP_THERMAL=y -CONFIG_RCAR_THERMAL=y -CONFIG_RCAR_GEN3_THERMAL=y -CONFIG_ARMADA_THERMAL=y -CONFIG_MTK_THERMAL=y - -# -# Broadcom thermal drivers -# -CONFIG_BCM2835_THERMAL=y -CONFIG_BRCMSTB_THERMAL=y -CONFIG_BCM_NS_THERMAL=y -CONFIG_BCM_SR_THERMAL=y -# end of Broadcom thermal drivers - -# -# Samsung thermal drivers -# -CONFIG_EXYNOS_THERMAL=y -# end of Samsung thermal drivers - -# -# NVIDIA Tegra thermal drivers -# -# CONFIG_TEGRA_SOCTHERM is not set -CONFIG_TEGRA_BPMP_THERMAL=y -# end of NVIDIA Tegra thermal drivers - # CONFIG_GENERIC_ADC_THERMAL is not set - -# -# Qualcomm thermal drivers -# -CONFIG_QCOM_TSENS=y -# CONFIG_QCOM_SPMI_TEMP_ALARM is not set -# end of Qualcomm thermal drivers - -# CONFIG_ZX2967_THERMAL is not set -CONFIG_UNIPHIER_THERMAL=y CONFIG_WATCHDOG=y CONFIG_WATCHDOG_CORE=y # CONFIG_WATCHDOG_NOWAYOUT is not set @@ -3861,32 +3450,13 @@ CONFIG_WATCHDOG_OPEN_TIMEOUT=0 # CONFIG_ZIIRAVE_WATCHDOG is not set CONFIG_ARM_SP805_WATCHDOG=y CONFIG_ARM_SBSA_WATCHDOG=y -# CONFIG_ARMADA_37XX_WATCHDOG is not set # CONFIG_CADENCE_WATCHDOG is not set -CONFIG_HAVE_S3C2410_WATCHDOG=y -CONFIG_S3C2410_WATCHDOG=y CONFIG_DW_WATCHDOG=y -CONFIG_SUNXI_WATCHDOG=y # CONFIG_MAX63XX_WATCHDOG is not set # CONFIG_MAX77620_WATCHDOG is not set CONFIG_IMX2_WDT=y -CONFIG_IMX_SC_WDT=y -# CONFIG_IMX7ULP_WDT is not set -# CONFIG_TEGRA_WATCHDOG is not set -# CONFIG_QCOM_WDT is not set -CONFIG_MESON_GXBB_WATCHDOG=y -CONFIG_MESON_WATCHDOG=y -# CONFIG_MEDIATEK_WATCHDOG is not set -CONFIG_RENESAS_WDT=y -# CONFIG_RENESAS_RZAWDT is not set -# CONFIG_ZX2967_WATCHDOG is not set -CONFIG_UNIPHIER_WATCHDOG=y -# CONFIG_SPRD_WATCHDOG is not set -# CONFIG_PM8916_WATCHDOG is not set # CONFIG_ALIM7101_WDT is not set # CONFIG_I6300ESB_WDT is not set -CONFIG_BCM2835_WDT=y -# CONFIG_BCM7038_WDT is not set # CONFIG_MEN_A21_WDT is not set # CONFIG_XEN_WDT is not set @@ -3909,9 +3479,7 @@ CONFIG_BCMA_POSSIBLE=y # Multifunction device drivers # CONFIG_MFD_CORE=y -CONFIG_MFD_ALTERA_SYSMGR=y # CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_SUN4I_GPADC is not set # CONFIG_MFD_AS3711 is not set # CONFIG_MFD_AS3722 is not set # CONFIG_PMIC_ADP5520 is not set @@ -3920,10 +3488,8 @@ CONFIG_MFD_ALTERA_SYSMGR=y # CONFIG_MFD_ATMEL_HLCDC is not set # CONFIG_MFD_BCM590XX is not set CONFIG_MFD_BD9571MWV=y -# CONFIG_MFD_AC100 is not set CONFIG_MFD_AXP20X=y CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_AXP20X_RSB=y CONFIG_MFD_CROS_EC_DEV=y # CONFIG_MFD_MADERA is not set # CONFIG_PMIC_DA903X is not set @@ -3934,12 +3500,10 @@ CONFIG_MFD_CROS_EC_DEV=y # CONFIG_MFD_DA9063 is not set # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set -CONFIG_MFD_EXYNOS_LPASS=y # CONFIG_MFD_MC13XXX_SPI is not set # CONFIG_MFD_MC13XXX_I2C is not set # CONFIG_MFD_MXC_HDMI is not set CONFIG_MFD_HI6421_PMIC=y -CONFIG_MFD_HI655X_PMIC=y # CONFIG_HTC_PASIC3 is not set # CONFIG_HTC_I2CPLD is not set # CONFIG_LPC_ICH is not set @@ -3967,8 +3531,6 @@ CONFIG_MFD_MAX77620=y # CONFIG_MFD_VIPERBOARD is not set # CONFIG_MFD_RETU is not set # CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_QCOM_RPM is not set -CONFIG_MFD_SPMI_PMIC=y # CONFIG_MFD_RDC321X is not set # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RC5T583 is not set @@ -3979,10 +3541,8 @@ CONFIG_MFD_SEC_CORE=y # CONFIG_MFD_SM501 is not set # CONFIG_MFD_SKY81452 is not set # CONFIG_MFD_SMSC is not set -# CONFIG_MFD_SC27XX_PMIC is not set # CONFIG_ABX500_CORE is not set # CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y CONFIG_MFD_SYSCON=y # CONFIG_MFD_TI_AM335X_TSCADC is not set # CONFIG_MFD_LP3943 is not set @@ -4046,7 +3606,6 @@ CONFIG_REGULATOR_FAN53555=y CONFIG_REGULATOR_GPIO=y # CONFIG_REGULATOR_HI6421 is not set CONFIG_REGULATOR_HI6421V530=y -CONFIG_REGULATOR_HI655X=y # CONFIG_REGULATOR_ISL9305 is not set # CONFIG_REGULATOR_ISL6271A is not set # CONFIG_REGULATOR_LP3971 is not set @@ -4070,8 +3629,6 @@ CONFIG_REGULATOR_PFUZE100=y # CONFIG_REGULATOR_PV88080 is not set # CONFIG_REGULATOR_PV88090 is not set CONFIG_REGULATOR_PWM=y -CONFIG_REGULATOR_QCOM_RPMH=y -CONFIG_REGULATOR_QCOM_SMD_RPM=y CONFIG_REGULATOR_QCOM_SPMI=y CONFIG_REGULATOR_RK808=y # CONFIG_REGULATOR_S2MPA01 is not set @@ -4086,7 +3643,6 @@ CONFIG_REGULATOR_S2MPS11=y # CONFIG_REGULATOR_TPS6507X is not set # CONFIG_REGULATOR_TPS65132 is not set # CONFIG_REGULATOR_TPS6524X is not set -CONFIG_REGULATOR_UNIPHIER=y CONFIG_REGULATOR_VCTRL=y # CONFIG_REGULATOR_VEXPRESS is not set CONFIG_CEC_CORE=y @@ -4115,8 +3671,6 @@ CONFIG_RC_DEVICES=y # CONFIG_IR_MCEUSB is not set # CONFIG_IR_ITE_CIR is not set # CONFIG_IR_FINTEK is not set -CONFIG_IR_MESON=y -# CONFIG_IR_MTK is not set # CONFIG_IR_NUVOTON is not set # CONFIG_IR_REDRAT3 is not set # CONFIG_IR_STREAMZAP is not set @@ -4125,610 +3679,16 @@ CONFIG_IR_MESON=y # CONFIG_IR_TTUSBIR is not set # CONFIG_RC_LOOPBACK is not set # CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=y # CONFIG_IR_SERIAL is not set # CONFIG_IR_SIR is not set # CONFIG_RC_XBOX_DVD is not set -# CONFIG_IR_ZX is not set -CONFIG_MEDIA_SUPPORT=y - -# -# Multimedia core support -# -CONFIG_MEDIA_CAMERA_SUPPORT=y -CONFIG_MEDIA_ANALOG_TV_SUPPORT=y -CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y -# CONFIG_MEDIA_RADIO_SUPPORT is not set -# CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -CONFIG_MEDIA_CONTROLLER=y -# CONFIG_MEDIA_CONTROLLER_DVB is not set -# CONFIG_MEDIA_CONTROLLER_REQUEST_API is not set -CONFIG_VIDEO_DEV=y -CONFIG_VIDEO_V4L2_SUBDEV_API=y -CONFIG_VIDEO_V4L2=y -CONFIG_VIDEO_V4L2_I2C=y -# CONFIG_VIDEO_ADV_DEBUG is not set -# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set -CONFIG_V4L2_MEM2MEM_DEV=y -CONFIG_V4L2_FWNODE=y -CONFIG_DVB_CORE=y -# CONFIG_DVB_MMAP is not set -# CONFIG_DVB_NET is not set -CONFIG_DVB_MAX_ADAPTERS=16 -# CONFIG_DVB_DYNAMIC_MINORS is not set -# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set -# CONFIG_DVB_ULE_DEBUG is not set - -# -# Media drivers -# -CONFIG_MEDIA_USB_SUPPORT=y - -# -# Webcam devices -# -CONFIG_USB_VIDEO_CLASS=y -CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y -CONFIG_USB_GSPCA=y -# CONFIG_USB_M5602 is not set -# CONFIG_USB_STV06XX is not set -# CONFIG_USB_GL860 is not set -# CONFIG_USB_GSPCA_BENQ is not set -# CONFIG_USB_GSPCA_CONEX is not set -# CONFIG_USB_GSPCA_CPIA1 is not set -# CONFIG_USB_GSPCA_DTCS033 is not set -# CONFIG_USB_GSPCA_ETOMS is not set -# CONFIG_USB_GSPCA_FINEPIX is not set -# CONFIG_USB_GSPCA_JEILINJ is not set -# CONFIG_USB_GSPCA_JL2005BCD is not set -# CONFIG_USB_GSPCA_KINECT is not set -# CONFIG_USB_GSPCA_KONICA is not set -# CONFIG_USB_GSPCA_MARS is not set -# CONFIG_USB_GSPCA_MR97310A is not set -# CONFIG_USB_GSPCA_NW80X is not set -# CONFIG_USB_GSPCA_OV519 is not set -# CONFIG_USB_GSPCA_OV534 is not set -# CONFIG_USB_GSPCA_OV534_9 is not set -# CONFIG_USB_GSPCA_PAC207 is not set -# CONFIG_USB_GSPCA_PAC7302 is not set -# CONFIG_USB_GSPCA_PAC7311 is not set -# CONFIG_USB_GSPCA_SE401 is not set -# CONFIG_USB_GSPCA_SN9C2028 is not set -# CONFIG_USB_GSPCA_SN9C20X is not set -# CONFIG_USB_GSPCA_SONIXB is not set -# CONFIG_USB_GSPCA_SONIXJ is not set -# CONFIG_USB_GSPCA_SPCA500 is not set -# CONFIG_USB_GSPCA_SPCA501 is not set -# CONFIG_USB_GSPCA_SPCA505 is not set -# CONFIG_USB_GSPCA_SPCA506 is not set -# CONFIG_USB_GSPCA_SPCA508 is not set -# CONFIG_USB_GSPCA_SPCA561 is not set -# CONFIG_USB_GSPCA_SPCA1528 is not set -# CONFIG_USB_GSPCA_SQ905 is not set -# CONFIG_USB_GSPCA_SQ905C is not set -# CONFIG_USB_GSPCA_SQ930X is not set -# CONFIG_USB_GSPCA_STK014 is not set -# CONFIG_USB_GSPCA_STK1135 is not set -# CONFIG_USB_GSPCA_STV0680 is not set -# CONFIG_USB_GSPCA_SUNPLUS is not set -# CONFIG_USB_GSPCA_T613 is not set -# CONFIG_USB_GSPCA_TOPRO is not set -# CONFIG_USB_GSPCA_TOUPTEK is not set -# CONFIG_USB_GSPCA_TV8532 is not set -# CONFIG_USB_GSPCA_VC032X is not set -# CONFIG_USB_GSPCA_VICAM is not set -# CONFIG_USB_GSPCA_XIRLINK_CIT is not set -# CONFIG_USB_GSPCA_ZC3XX is not set -# CONFIG_USB_PWC is not set -# CONFIG_VIDEO_CPIA2 is not set -# CONFIG_USB_ZR364XX is not set -# CONFIG_USB_STKWEBCAM is not set -# CONFIG_USB_S2255 is not set -# CONFIG_VIDEO_USBTV is not set - -# -# Analog TV USB devices -# -# CONFIG_VIDEO_PVRUSB2 is not set -# CONFIG_VIDEO_HDPVR is not set -# CONFIG_VIDEO_USBVISION is not set -# CONFIG_VIDEO_STK1160_COMMON is not set -# CONFIG_VIDEO_GO7007 is not set - -# -# Analog/digital TV USB devices -# -# CONFIG_VIDEO_AU0828 is not set -# CONFIG_VIDEO_CX231XX is not set -# CONFIG_VIDEO_TM6000 is not set - -# -# Digital TV USB devices -# -# CONFIG_DVB_USB is not set -# CONFIG_DVB_USB_V2 is not set -# CONFIG_DVB_TTUSB_BUDGET is not set -# CONFIG_DVB_TTUSB_DEC is not set -# CONFIG_SMS_USB_DRV is not set -# CONFIG_DVB_B2C2_FLEXCOP_USB is not set -# CONFIG_DVB_AS102 is not set - -# -# Webcam, TV (analog/digital) USB devices -# -# CONFIG_VIDEO_EM28XX is not set -# CONFIG_MEDIA_PCI_SUPPORT is not set -CONFIG_V4L_PLATFORM_DRIVERS=y -# CONFIG_VIDEO_CAFE_CCIC is not set -# CONFIG_VIDEO_CADENCE is not set -# CONFIG_VIDEO_ASPEED is not set -# CONFIG_VIDEO_MUX is not set -# CONFIG_VIDEO_QCOM_CAMSS is not set -CONFIG_VIDEO_MX8_CAPTURE=y -CONFIG_VIDEO_MXC_CAPTURE=y -# CONFIG_VIDEO_MXC_OUTPUT is not set - -# -# IMX8 Camera ISI/MIPI Features support -# -CONFIG_IMX8_MIPI_CSI2_YAV=y -CONFIG_IMX8_JPEG=y -# end of IMX8 Camera ISI/MIPI Features support - -CONFIG_VIDEO_MXC_CSI_CAMERA=y -# CONFIG_MXC_VADC is not set -CONFIG_MXC_MIPI_CSI=y - -# -# MXC Camera/V4L2 PRP Features support -# -# CONFIG_MXC_CAMERA_OV5640_V2 is not set -CONFIG_MXC_CAMERA_OV5640_MIPI_V2=y -# CONFIG_MXC_CAMERA_OV5647_MIPI is not set -# end of MXC Camera/V4L2 PRP Features support - -# CONFIG_VIDEO_MXC_PXP_V4L2 is not set -# CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS is not set -# CONFIG_VIDEO_XILINX is not set -# CONFIG_VIDEO_RCAR_CSI2 is not set -# CONFIG_VIDEO_RCAR_VIN is not set -# CONFIG_VIDEO_SUN4I_CSI is not set -CONFIG_VIDEO_SUN6I_CSI=y -CONFIG_V4L_MEM2MEM_DRIVERS=y -# CONFIG_VIDEO_CODA is not set -# CONFIG_VIDEO_IMX_PXP is not set -# CONFIG_VIDEO_MEDIATEK_VPU is not set -# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set -# CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set -CONFIG_VIDEO_SAMSUNG_S5P_JPEG=y -CONFIG_VIDEO_SAMSUNG_S5P_MFC=y -CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=y -# CONFIG_VIDEO_SH_VEU is not set -# CONFIG_VIDEO_RENESAS_FDP1 is not set -# CONFIG_VIDEO_RENESAS_JPU is not set -CONFIG_VIDEO_RENESAS_FCP=y -CONFIG_VIDEO_RENESAS_VSP1=y -# CONFIG_VIDEO_ROCKCHIP_RGA is not set -# CONFIG_VIDEO_QCOM_VENUS is not set -# CONFIG_V4L_TEST_DRIVERS is not set -# CONFIG_DVB_PLATFORM_DRIVERS is not set - -# -# Supported MMC/SDIO adapters -# -# CONFIG_SMS_SDIO_DRV is not set -# CONFIG_CYPRESS_FIRMWARE is not set -CONFIG_VIDEOBUF2_CORE=y -CONFIG_VIDEOBUF2_V4L2=y -CONFIG_VIDEOBUF2_MEMOPS=y -CONFIG_VIDEOBUF2_DMA_CONTIG=y -CONFIG_VIDEOBUF2_VMALLOC=y - -# -# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) -# -# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set -CONFIG_MEDIA_ATTACH=y -CONFIG_VIDEO_IR_I2C=y - -# -# I2C Encoders, decoders, sensors and other helper chips -# - -# -# Audio decoders, processors and mixers -# -# CONFIG_VIDEO_TVAUDIO is not set -# CONFIG_VIDEO_TDA7432 is not set -# CONFIG_VIDEO_TDA9840 is not set -# CONFIG_VIDEO_TDA1997X is not set -# CONFIG_VIDEO_TEA6415C is not set -# CONFIG_VIDEO_TEA6420 is not set -# CONFIG_VIDEO_MSP3400 is not set -# CONFIG_VIDEO_CS3308 is not set -# CONFIG_VIDEO_CS5345 is not set -# CONFIG_VIDEO_CS53L32A is not set -# CONFIG_VIDEO_TLV320AIC23B is not set -# CONFIG_VIDEO_UDA1342 is not set -# CONFIG_VIDEO_WM8775 is not set -# CONFIG_VIDEO_WM8739 is not set -# CONFIG_VIDEO_VP27SMPX is not set -# CONFIG_VIDEO_SONY_BTF_MPX is not set - -# -# RDS decoders -# -# CONFIG_VIDEO_SAA6588 is not set - -# -# Video decoders -# -# CONFIG_VIDEO_ADV7180 is not set -# CONFIG_VIDEO_ADV7183 is not set -# CONFIG_VIDEO_ADV748X is not set -# CONFIG_VIDEO_ADV7604 is not set -# CONFIG_VIDEO_ADV7842 is not set -# CONFIG_VIDEO_BT819 is not set -# CONFIG_VIDEO_BT856 is not set -# CONFIG_VIDEO_BT866 is not set -# CONFIG_VIDEO_KS0127 is not set -# CONFIG_VIDEO_ML86V7667 is not set -# CONFIG_VIDEO_SAA7110 is not set -# CONFIG_VIDEO_SAA711X is not set -# CONFIG_VIDEO_TC358743 is not set -# CONFIG_VIDEO_TVP514X is not set -# CONFIG_VIDEO_TVP5150 is not set -# CONFIG_VIDEO_TVP7002 is not set -# CONFIG_VIDEO_TW2804 is not set -# CONFIG_VIDEO_TW9903 is not set -# CONFIG_VIDEO_TW9906 is not set -# CONFIG_VIDEO_TW9910 is not set -# CONFIG_VIDEO_VPX3220 is not set - -# -# Video and audio decoders -# -# CONFIG_VIDEO_SAA717X is not set -# CONFIG_VIDEO_CX25840 is not set - -# -# Video encoders -# -# CONFIG_VIDEO_SAA7127 is not set -# CONFIG_VIDEO_SAA7185 is not set -# CONFIG_VIDEO_ADV7170 is not set -# CONFIG_VIDEO_ADV7175 is not set -# CONFIG_VIDEO_ADV7343 is not set -# CONFIG_VIDEO_ADV7393 is not set -# CONFIG_VIDEO_AD9389B is not set -# CONFIG_VIDEO_AK881X is not set -# CONFIG_VIDEO_THS8200 is not set - -# -# Camera sensor devices -# -# CONFIG_VIDEO_IMX214 is not set -# CONFIG_VIDEO_IMX258 is not set -# CONFIG_VIDEO_IMX274 is not set -# CONFIG_VIDEO_IMX319 is not set -# CONFIG_VIDEO_IMX355 is not set -# CONFIG_VIDEO_OV2640 is not set -# CONFIG_VIDEO_OV2659 is not set -# CONFIG_VIDEO_OV2680 is not set -# CONFIG_VIDEO_OV2685 is not set -CONFIG_VIDEO_OV5640=y -# CONFIG_VIDEO_OV5645 is not set -# CONFIG_VIDEO_OV5647 is not set -# CONFIG_VIDEO_OV6650 is not set -# CONFIG_VIDEO_OV5670 is not set -# CONFIG_VIDEO_OV5675 is not set -# CONFIG_VIDEO_OV5695 is not set -# CONFIG_VIDEO_OV7251 is not set -# CONFIG_VIDEO_OV772X is not set -# CONFIG_VIDEO_OV7640 is not set -# CONFIG_VIDEO_OV7670 is not set -# CONFIG_VIDEO_OV7740 is not set -# CONFIG_VIDEO_OV8856 is not set -# CONFIG_VIDEO_OV9640 is not set -# CONFIG_VIDEO_OV9650 is not set -# CONFIG_VIDEO_OV13858 is not set -# CONFIG_VIDEO_VS6624 is not set -# CONFIG_VIDEO_MT9M001 is not set -# CONFIG_VIDEO_MT9M032 is not set -# CONFIG_VIDEO_MT9M111 is not set -# CONFIG_VIDEO_MT9P031 is not set -# CONFIG_VIDEO_MT9T001 is not set -# CONFIG_VIDEO_MT9T112 is not set -# CONFIG_VIDEO_MT9V011 is not set -# CONFIG_VIDEO_MT9V032 is not set -# CONFIG_VIDEO_MT9V111 is not set -# CONFIG_VIDEO_SR030PC30 is not set -# CONFIG_VIDEO_NOON010PC30 is not set -# CONFIG_VIDEO_M5MOLS is not set -# CONFIG_VIDEO_RJ54N1 is not set -# CONFIG_VIDEO_S5K6AA is not set -# CONFIG_VIDEO_S5K6A3 is not set -# CONFIG_VIDEO_S5K4ECGX is not set -# CONFIG_VIDEO_S5K5BAF is not set -# CONFIG_VIDEO_SMIAPP is not set -# CONFIG_VIDEO_ET8EK8 is not set -# CONFIG_VIDEO_S5C73M3 is not set - -# -# Lens drivers -# -# CONFIG_VIDEO_AD5820 is not set -# CONFIG_VIDEO_AK7375 is not set -# CONFIG_VIDEO_DW9714 is not set -# CONFIG_VIDEO_DW9807_VCM is not set - -# -# Flash devices -# -# CONFIG_VIDEO_ADP1653 is not set -# CONFIG_VIDEO_LM3560 is not set -# CONFIG_VIDEO_LM3646 is not set - -# -# Video improvement chips -# -# CONFIG_VIDEO_UPD64031A is not set -# CONFIG_VIDEO_UPD64083 is not set - -# -# Audio/Video compression chips -# -# CONFIG_VIDEO_SAA6752HS is not set - -# -# SDR tuner chips -# - -# -# Miscellaneous helper chips -# -# CONFIG_VIDEO_THS7303 is not set -# CONFIG_VIDEO_M52790 is not set -# CONFIG_VIDEO_I2C is not set -# CONFIG_VIDEO_ST_MIPID02 is not set -# end of I2C Encoders, decoders, sensors and other helper chips - -# -# SPI helper chips -# -# CONFIG_VIDEO_GS1662 is not set -# end of SPI helper chips - -# -# Media SPI Adapters -# -CONFIG_CXD2880_SPI_DRV=y -# end of Media SPI Adapters - -CONFIG_MEDIA_TUNER=y - -# -# Customize TV tuners -# -CONFIG_MEDIA_TUNER_SIMPLE=y -CONFIG_MEDIA_TUNER_TDA18250=y -CONFIG_MEDIA_TUNER_TDA8290=y -CONFIG_MEDIA_TUNER_TDA827X=y -CONFIG_MEDIA_TUNER_TDA18271=y -CONFIG_MEDIA_TUNER_TDA9887=y -CONFIG_MEDIA_TUNER_TEA5761=y -CONFIG_MEDIA_TUNER_TEA5767=y -CONFIG_MEDIA_TUNER_MSI001=y -CONFIG_MEDIA_TUNER_MT20XX=y -CONFIG_MEDIA_TUNER_MT2060=y -CONFIG_MEDIA_TUNER_MT2063=y -CONFIG_MEDIA_TUNER_MT2266=y -CONFIG_MEDIA_TUNER_MT2131=y -CONFIG_MEDIA_TUNER_QT1010=y -CONFIG_MEDIA_TUNER_XC2028=y -CONFIG_MEDIA_TUNER_XC5000=y -CONFIG_MEDIA_TUNER_XC4000=y -CONFIG_MEDIA_TUNER_MXL5005S=y -CONFIG_MEDIA_TUNER_MXL5007T=y -CONFIG_MEDIA_TUNER_MC44S803=y -CONFIG_MEDIA_TUNER_MAX2165=y -CONFIG_MEDIA_TUNER_TDA18218=y -CONFIG_MEDIA_TUNER_FC0011=y -CONFIG_MEDIA_TUNER_FC0012=y -CONFIG_MEDIA_TUNER_FC0013=y -CONFIG_MEDIA_TUNER_TDA18212=y -CONFIG_MEDIA_TUNER_E4000=y -CONFIG_MEDIA_TUNER_FC2580=y -CONFIG_MEDIA_TUNER_M88RS6000T=y -CONFIG_MEDIA_TUNER_TUA9001=y -CONFIG_MEDIA_TUNER_SI2157=y -CONFIG_MEDIA_TUNER_IT913X=y -CONFIG_MEDIA_TUNER_R820T=y -CONFIG_MEDIA_TUNER_MXL301RF=y -CONFIG_MEDIA_TUNER_QM1D1C0042=y -CONFIG_MEDIA_TUNER_QM1D1B0004=y -# end of Customize TV tuners - -# -# Customise DVB Frontends -# - -# -# Multistandard (satellite) frontends -# -CONFIG_DVB_STB0899=y -CONFIG_DVB_STB6100=y -CONFIG_DVB_STV090x=y -CONFIG_DVB_STV0910=y -CONFIG_DVB_STV6110x=y -CONFIG_DVB_STV6111=y -CONFIG_DVB_MXL5XX=y -CONFIG_DVB_M88DS3103=y - -# -# Multistandard (cable + terrestrial) frontends -# -CONFIG_DVB_DRXK=y -CONFIG_DVB_TDA18271C2DD=y -CONFIG_DVB_SI2165=y -CONFIG_DVB_MN88472=y -CONFIG_DVB_MN88473=y - -# -# DVB-S (satellite) frontends -# -CONFIG_DVB_CX24110=y -CONFIG_DVB_CX24123=y -CONFIG_DVB_MT312=y -CONFIG_DVB_ZL10036=y -CONFIG_DVB_ZL10039=y -CONFIG_DVB_S5H1420=y -CONFIG_DVB_STV0288=y -CONFIG_DVB_STB6000=y -CONFIG_DVB_STV0299=y -CONFIG_DVB_STV6110=y -CONFIG_DVB_STV0900=y -CONFIG_DVB_TDA8083=y -CONFIG_DVB_TDA10086=y -CONFIG_DVB_TDA8261=y -CONFIG_DVB_VES1X93=y -CONFIG_DVB_TUNER_ITD1000=y -CONFIG_DVB_TUNER_CX24113=y -CONFIG_DVB_TDA826X=y -CONFIG_DVB_TUA6100=y -CONFIG_DVB_CX24116=y -CONFIG_DVB_CX24117=y -CONFIG_DVB_CX24120=y -CONFIG_DVB_SI21XX=y -CONFIG_DVB_TS2020=y -CONFIG_DVB_DS3000=y -CONFIG_DVB_MB86A16=y -CONFIG_DVB_TDA10071=y - -# -# DVB-T (terrestrial) frontends -# -CONFIG_DVB_SP8870=y -CONFIG_DVB_SP887X=y -CONFIG_DVB_CX22700=y -CONFIG_DVB_CX22702=y -CONFIG_DVB_S5H1432=y -CONFIG_DVB_DRXD=y -CONFIG_DVB_L64781=y -CONFIG_DVB_TDA1004X=y -CONFIG_DVB_NXT6000=y -CONFIG_DVB_MT352=y -CONFIG_DVB_ZL10353=y -CONFIG_DVB_DIB3000MB=y -CONFIG_DVB_DIB3000MC=y -CONFIG_DVB_DIB7000M=y -CONFIG_DVB_DIB7000P=y -CONFIG_DVB_DIB9000=y -CONFIG_DVB_TDA10048=y -CONFIG_DVB_AF9013=y -CONFIG_DVB_EC100=y -CONFIG_DVB_STV0367=y -CONFIG_DVB_CXD2820R=y -CONFIG_DVB_CXD2841ER=y -CONFIG_DVB_RTL2830=y -CONFIG_DVB_RTL2832=y -CONFIG_DVB_SI2168=y -CONFIG_DVB_ZD1301_DEMOD=y -CONFIG_DVB_CXD2880=y - -# -# DVB-C (cable) frontends -# -CONFIG_DVB_VES1820=y -CONFIG_DVB_TDA10021=y -CONFIG_DVB_TDA10023=y -CONFIG_DVB_STV0297=y - -# -# ATSC (North American/Korean Terrestrial/Cable DTV) frontends -# -CONFIG_DVB_NXT200X=y -CONFIG_DVB_OR51211=y -CONFIG_DVB_OR51132=y -CONFIG_DVB_BCM3510=y -CONFIG_DVB_LGDT330X=y -CONFIG_DVB_LGDT3305=y -CONFIG_DVB_LGDT3306A=y -CONFIG_DVB_LG2160=y -CONFIG_DVB_S5H1409=y -CONFIG_DVB_AU8522=y -CONFIG_DVB_AU8522_DTV=y -CONFIG_DVB_AU8522_V4L=y -CONFIG_DVB_S5H1411=y - -# -# ISDB-T (terrestrial) frontends -# -CONFIG_DVB_S921=y -CONFIG_DVB_DIB8000=y -CONFIG_DVB_MB86A20S=y - -# -# ISDB-S (satellite) & ISDB-T (terrestrial) frontends -# -CONFIG_DVB_TC90522=y -CONFIG_DVB_MN88443X=y - -# -# Digital terrestrial only tuners/PLL -# -CONFIG_DVB_PLL=y -CONFIG_DVB_TUNER_DIB0070=y -CONFIG_DVB_TUNER_DIB0090=y - -# -# SEC control devices for DVB-S -# -CONFIG_DVB_DRX39XYJ=y -CONFIG_DVB_LNBH25=y -CONFIG_DVB_LNBH29=y -CONFIG_DVB_LNBP21=y -CONFIG_DVB_LNBP22=y -CONFIG_DVB_ISL6405=y -CONFIG_DVB_ISL6421=y -CONFIG_DVB_ISL6423=y -CONFIG_DVB_A8293=y -CONFIG_DVB_LGS8GL5=y -CONFIG_DVB_LGS8GXX=y -CONFIG_DVB_ATBM8830=y -CONFIG_DVB_TDA665x=y -CONFIG_DVB_IX2505V=y -CONFIG_DVB_M88RS2000=y -CONFIG_DVB_AF9033=y -CONFIG_DVB_HORUS3A=y -CONFIG_DVB_ASCOT2E=y -CONFIG_DVB_HELENE=y - -# -# Common Interface (EN50221) controller drivers -# -CONFIG_DVB_CXD2099=y -CONFIG_DVB_SP2=y - -# -# Tools to develop new frontends -# -# CONFIG_DVB_DUMMY_FE is not set -# end of Customise DVB Frontends +# CONFIG_MEDIA_SUPPORT is not set # # Graphics support # CONFIG_VGA_ARB=y CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_TEGRA_HOST1X is not set -CONFIG_IMX8_PC=y -CONFIG_IMX8_PRG=y -CONFIG_IMX8_DPRC=y -CONFIG_IMX_DPU_CORE=y -CONFIG_IMX_DPU_BLIT=y -CONFIG_IMX_LCDIF_CORE=y CONFIG_DRM=y CONFIG_DRM_MIPI_DSI=y # CONFIG_DRM_DP_AUX_CHARDEV is not set @@ -4788,7 +3748,6 @@ CONFIG_DRM_AMD_DC=y # CONFIG_HSA_AMD is not set CONFIG_DRM_NOUVEAU=y CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=y -CONFIG_NOUVEAU_PLATFORM_DRIVER=y CONFIG_NOUVEAU_DEBUG=5 CONFIG_NOUVEAU_DEBUG_DEFAULT=3 # CONFIG_NOUVEAU_DEBUG_MMU is not set @@ -4796,29 +3755,16 @@ CONFIG_DRM_NOUVEAU_BACKLIGHT=y # CONFIG_DRM_VGEM is not set # CONFIG_DRM_VKMS is not set CONFIG_DRM_ATI_PCIGART=y -# CONFIG_DRM_EXYNOS is not set -# CONFIG_DRM_ROCKCHIP is not set # CONFIG_DRM_UDL is not set # CONFIG_DRM_AST is not set # CONFIG_DRM_MGAG200 is not set # CONFIG_DRM_CIRRUS_QEMU is not set -# CONFIG_DRM_RCAR_DU is not set # CONFIG_DRM_RCAR_DW_HDMI is not set # CONFIG_DRM_RCAR_LVDS is not set CONFIG_DRM_RCAR_WRITEBACK=y -CONFIG_DRM_SUN4I=y -CONFIG_DRM_SUN4I_HDMI=y -# CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=y -# CONFIG_DRM_SUN6I_DSI is not set -CONFIG_DRM_SUN8I_DW_HDMI=y -CONFIG_DRM_SUN8I_MIXER=y -CONFIG_DRM_SUN8I_TCON_TOP=y # CONFIG_DRM_QXL is not set # CONFIG_DRM_BOCHS is not set # CONFIG_DRM_VIRTIO_GPU is not set -# CONFIG_DRM_MSM is not set -# CONFIG_DRM_TEGRA is not set CONFIG_DRM_PANEL=y # @@ -4888,7 +3834,6 @@ CONFIG_DRM_SII902X=y # CONFIG_DRM_TI_TFP410 is not set # CONFIG_DRM_TI_SN65DSI86 is not set CONFIG_DRM_I2C_ADV7511=y -# CONFIG_DRM_I2C_ADV7511_AUDIO is not set CONFIG_DRM_I2C_ADV7533=y CONFIG_DRM_I2C_ADV7511_CEC=y CONFIG_DRM_NWL_MIPI_DSI=y @@ -4897,34 +3842,17 @@ CONFIG_DRM_CDNS_HDMI=y CONFIG_DRM_CDNS_DP=y CONFIG_DRM_CDNS_AUDIO=y CONFIG_DRM_CDNS_HDMI_CEC=y -CONFIG_DRM_DW_HDMI=y -# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set -# CONFIG_DRM_DW_HDMI_I2S_AUDIO is not set -# CONFIG_DRM_DW_HDMI_CEC is not set CONFIG_DRM_ITE_IT6263=y # end of Display Interface Bridges -CONFIG_DRM_IMX=y -CONFIG_DRM_IMX_PARALLEL_DISPLAY=y -CONFIG_DRM_IMX_TVE=y -CONFIG_DRM_IMX_LDB=y -CONFIG_DRM_IMX_HDMI=y -CONFIG_DRM_IMX_SEC_DSIM=y -CONFIG_DRM_IMX_CDNS_MHDP=y -CONFIG_DRM_IMX_DPU=y -CONFIG_DRM_IMX_LCDIF=y CONFIG_DRM_IMX_DCSS=y -# CONFIG_DRM_VC4 is not set CONFIG_DRM_ETNAVIV=y CONFIG_DRM_ETNAVIV_THERMAL=y # CONFIG_DRM_ARCPGU is not set # CONFIG_DRM_HISI_HIBMC is not set # CONFIG_DRM_HISI_KIRIN is not set -# CONFIG_DRM_MEDIATEK is not set -# CONFIG_DRM_ZTE is not set CONFIG_DRM_MXS=y CONFIG_DRM_MXSFB=y -# CONFIG_DRM_MESON is not set # CONFIG_DRM_GM12U320 is not set # CONFIG_TINYDRM_HX8357D is not set # CONFIG_TINYDRM_ILI9225 is not set @@ -4970,7 +3898,6 @@ CONFIG_FB_MODE_HELPERS=y # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set CONFIG_FB_ARMCLCD=y -# CONFIG_FB_IMX is not set # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set @@ -4996,17 +3923,13 @@ CONFIG_FB_EFI=y # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_CARMINE is not set -# CONFIG_FB_SH_MOBILE_LCDC is not set # CONFIG_FB_SMSCUFX is not set # CONFIG_FB_UDL is not set # CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_XILINX is not set # CONFIG_FB_VIRTUAL is not set CONFIG_XEN_FBDEV_FRONTEND=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set -CONFIG_FB_MX3=y -# CONFIG_FB_MXS is not set # CONFIG_FB_SIMPLE is not set # CONFIG_FB_SSD1307 is not set # CONFIG_FB_SM712 is not set @@ -5055,427 +3978,7 @@ CONFIG_LOGO=y CONFIG_LOGO_LINUX_CLUT224=y # end of Graphics support -CONFIG_SOUND=y -CONFIG_SOUND_OSS_CORE=y -CONFIG_SOUND_OSS_CORE_PRECLAIM=y -CONFIG_SND=y -CONFIG_SND_TIMER=y -CONFIG_SND_PCM=y -CONFIG_SND_PCM_ELD=y -CONFIG_SND_PCM_IEC958=y -CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_HWDEP=y -CONFIG_SND_RAWMIDI=y -CONFIG_SND_COMPRESS_OFFLOAD=y -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -CONFIG_SND_OSSEMUL=y -CONFIG_SND_MIXER_OSS=y -CONFIG_SND_PCM_OSS=y -CONFIG_SND_PCM_OSS_PLUGINS=y -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_HRTIMER is not set -CONFIG_SND_DYNAMIC_MINORS=y -CONFIG_SND_MAX_CARDS=32 -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -CONFIG_SND_VMASTER=y -# CONFIG_SND_SEQUENCER is not set -CONFIG_SND_DRIVERS=y -# CONFIG_SND_DUMMY is not set -# CONFIG_SND_ALOOP is not set -# CONFIG_SND_MTPAV is not set -# CONFIG_SND_SERIAL_U16550 is not set -# CONFIG_SND_MPU401 is not set -CONFIG_SND_PCI=y -# CONFIG_SND_AD1889 is not set -# CONFIG_SND_ATIIXP is not set -# CONFIG_SND_ATIIXP_MODEM is not set -# CONFIG_SND_AU8810 is not set -# CONFIG_SND_AU8820 is not set -# CONFIG_SND_AU8830 is not set -# CONFIG_SND_AW2 is not set -# CONFIG_SND_BT87X is not set -# CONFIG_SND_CA0106 is not set -# CONFIG_SND_CMIPCI is not set -# CONFIG_SND_OXYGEN is not set -# CONFIG_SND_CS4281 is not set -# CONFIG_SND_CS46XX is not set -# CONFIG_SND_CTXFI is not set -# CONFIG_SND_DARLA20 is not set -# CONFIG_SND_GINA20 is not set -# CONFIG_SND_LAYLA20 is not set -# CONFIG_SND_DARLA24 is not set -# CONFIG_SND_GINA24 is not set -# CONFIG_SND_LAYLA24 is not set -# CONFIG_SND_MONA is not set -# CONFIG_SND_MIA is not set -# CONFIG_SND_ECHO3G is not set -# CONFIG_SND_INDIGO is not set -# CONFIG_SND_INDIGOIO is not set -# CONFIG_SND_INDIGODJ is not set -# CONFIG_SND_INDIGOIOX is not set -# CONFIG_SND_INDIGODJX is not set -# CONFIG_SND_ENS1370 is not set -# CONFIG_SND_ENS1371 is not set -# CONFIG_SND_FM801 is not set -# CONFIG_SND_HDSP is not set -# CONFIG_SND_HDSPM is not set -# CONFIG_SND_ICE1724 is not set -# CONFIG_SND_INTEL8X0 is not set -# CONFIG_SND_INTEL8X0M is not set -# CONFIG_SND_KORG1212 is not set -# CONFIG_SND_LOLA is not set -# CONFIG_SND_LX6464ES is not set -# CONFIG_SND_MIXART is not set -# CONFIG_SND_NM256 is not set -# CONFIG_SND_PCXHR is not set -# CONFIG_SND_RIPTIDE is not set -# CONFIG_SND_RME32 is not set -# CONFIG_SND_RME96 is not set -# CONFIG_SND_RME9652 is not set -# CONFIG_SND_SE6X is not set -# CONFIG_SND_VIA82XX is not set -# CONFIG_SND_VIA82XX_MODEM is not set -# CONFIG_SND_VIRTUOSO is not set -# CONFIG_SND_VX222 is not set -# CONFIG_SND_YMFPCI is not set - -# -# HD-Audio -# -CONFIG_SND_HDA=y -# CONFIG_SND_HDA_INTEL is not set -CONFIG_SND_HDA_TEGRA=y -# CONFIG_SND_HDA_HWDEP is not set -# CONFIG_SND_HDA_RECONFIG is not set -# CONFIG_SND_HDA_INPUT_BEEP is not set -# CONFIG_SND_HDA_PATCH_LOADER is not set -# CONFIG_SND_HDA_CODEC_REALTEK is not set -# CONFIG_SND_HDA_CODEC_ANALOG is not set -# CONFIG_SND_HDA_CODEC_SIGMATEL is not set -# CONFIG_SND_HDA_CODEC_VIA is not set -CONFIG_SND_HDA_CODEC_HDMI=y -# CONFIG_SND_HDA_CODEC_CIRRUS is not set -# CONFIG_SND_HDA_CODEC_CONEXANT is not set -# CONFIG_SND_HDA_CODEC_CA0110 is not set -# CONFIG_SND_HDA_CODEC_CA0132 is not set -# CONFIG_SND_HDA_CODEC_CMEDIA is not set -# CONFIG_SND_HDA_CODEC_SI3054 is not set -# CONFIG_SND_HDA_GENERIC is not set -CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 -# end of HD-Audio - -CONFIG_SND_HDA_CORE=y -CONFIG_SND_HDA_ALIGNED_MMIO=y -CONFIG_SND_HDA_COMPONENT=y -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -CONFIG_SND_USB_AUDIO=y -CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y -# CONFIG_SND_USB_UA101 is not set -# CONFIG_SND_USB_CAIAQ is not set -# CONFIG_SND_USB_6FIRE is not set -# CONFIG_SND_USB_HIFACE is not set -# CONFIG_SND_BCD2000 is not set -# CONFIG_SND_USB_POD is not set -# CONFIG_SND_USB_PODHD is not set -# CONFIG_SND_USB_TONEPORT is not set -# CONFIG_SND_USB_VARIAX is not set -CONFIG_SND_SOC=y -CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y -CONFIG_SND_SOC_COMPRESS=y -CONFIG_SND_SOC_TOPOLOGY=y -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -CONFIG_SND_BCM2835_SOC_I2S=y -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -CONFIG_SND_SOC_FSL_ASRC=y -CONFIG_SND_SOC_FSL_SAI=y -CONFIG_SND_SOC_FSL_AUDMIX=y -# CONFIG_SND_SOC_FSL_SSI is not set -CONFIG_SND_SOC_FSL_SPDIF=y -CONFIG_SND_SOC_FSL_ESAI=y -CONFIG_SND_SOC_FSL_DAI=y -CONFIG_SND_SOC_FSL_MICFIL=y -CONFIG_SND_SOC_FSL_EASRC=y -CONFIG_SND_SOC_FSL_DSP=y -CONFIG_SND_SOC_FSL_RPMSG_I2S=y -CONFIG_SND_SOC_FSL_UTILS=y -CONFIG_SND_SOC_IMX_PCM_DMA=y -CONFIG_SND_SOC_IMX_PCM_RPMSG=y -# CONFIG_SND_SOC_IMX_AUDMUX is not set -CONFIG_SND_IMX_SOC=y - -# -# SoC Audio support for Freescale i.MX boards: -# -CONFIG_SND_SOC_IMX_AK4458=y -CONFIG_SND_SOC_IMX_AK5558=y -CONFIG_SND_SOC_IMX_AK4497=y -CONFIG_SND_SOC_IMX_WM8960=y -CONFIG_SND_SOC_IMX_WM8524=y -# CONFIG_SND_SOC_IMX_SII902X is not set -# CONFIG_SND_SOC_IMX_WM8958 is not set -CONFIG_SND_SOC_IMX_CS42888=y -# CONFIG_SND_SOC_IMX_WM8962 is not set -CONFIG_SND_SOC_IMX_MICFIL=y -CONFIG_SND_SOC_IMX_RPMSG=y -# CONFIG_SND_SOC_IMX_ES8328 is not set -# CONFIG_SND_SOC_IMX_SGTL5000 is not set -CONFIG_SND_SOC_IMX_MQS=y -CONFIG_SND_SOC_IMX_SPDIF=y -# CONFIG_SND_SOC_FSL_ASOC_CARD is not set -CONFIG_SND_SOC_IMX_AUDMIX=y -CONFIG_SND_SOC_IMX_PDM_MIC=y -CONFIG_SND_SOC_IMX_DSP=y -# CONFIG_SND_SOC_IMX_SI476X is not set -CONFIG_SND_SOC_IMX_CDNHDMI=y -# end of SoC Audio for Freescale CPUs - -# CONFIG_SND_I2S_HI6210_I2S is not set -# CONFIG_SND_KIRKWOOD_SOC is not set -# CONFIG_SND_SOC_IMG is not set -# CONFIG_SND_SOC_MT2701 is not set -# CONFIG_SND_SOC_MT6797 is not set -# CONFIG_SND_SOC_MT8173 is not set -# CONFIG_SND_SOC_MT8183 is not set -# CONFIG_SND_SOC_MTK_BTCVSD is not set - -# -# ASoC support for Amlogic platforms -# -CONFIG_SND_MESON_AXG_FIFO=y -CONFIG_SND_MESON_AXG_FRDDR=y -CONFIG_SND_MESON_AXG_TODDR=y -CONFIG_SND_MESON_AXG_TDM_FORMATTER=y -CONFIG_SND_MESON_AXG_TDM_INTERFACE=y -CONFIG_SND_MESON_AXG_TDMIN=y -CONFIG_SND_MESON_AXG_TDMOUT=y -CONFIG_SND_MESON_AXG_SOUND_CARD=y -CONFIG_SND_MESON_AXG_SPDIFOUT=y -CONFIG_SND_MESON_AXG_SPDIFIN=y -CONFIG_SND_MESON_AXG_PDM=y -# CONFIG_SND_MESON_G12A_TOHDMITX is not set -# end of ASoC support for Amlogic platforms - -# CONFIG_SND_SOC_QCOM is not set -# CONFIG_SND_SOC_ROCKCHIP is not set -CONFIG_SND_SOC_SAMSUNG=y -# CONFIG_SND_SAMSUNG_PCM is not set -# CONFIG_SND_SAMSUNG_SPDIF is not set -# CONFIG_SND_SAMSUNG_I2S is not set -# CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994 is not set -# CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF is not set -# CONFIG_SND_SOC_SMDK_WM8994_PCM is not set -# CONFIG_SND_SOC_SNOW is not set -# CONFIG_SND_SOC_ODROID is not set -# CONFIG_SND_SOC_ARNDALE_RT5631_ALC5631 is not set - -# -# SoC Audio support for Renesas SoCs -# -# CONFIG_SND_SOC_SH4_FSI is not set -CONFIG_SND_SOC_RCAR=y -# end of SoC Audio support for Renesas SoCs - -CONFIG_SND_SOC_SOF_TOPLEVEL=y -# CONFIG_SND_SOC_SOF_PCI is not set -# CONFIG_SND_SOC_SOF_ACPI is not set -CONFIG_SND_SOC_SOF_OF=y -CONFIG_SND_SOC_SOF_OPTIONS=y -# CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT is not set -# CONFIG_SND_SOC_SOF_STRICT_ABI_CHECKS is not set -# CONFIG_SND_SOC_SOF_DEBUG is not set -CONFIG_SND_SOC_SOF=y -CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y -# CONFIG_SND_SOC_SOF_IMX8_SUPPORT is not set -# CONFIG_SND_SOC_SPRD is not set - -# -# STMicroelectronics STM32 SOC audio support -# -# end of STMicroelectronics STM32 SOC audio support - -# -# Allwinner SoC Audio support -# -# CONFIG_SND_SUN4I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC_ANALOG is not set -# CONFIG_SND_SUN50I_CODEC_ANALOG is not set -# CONFIG_SND_SUN4I_I2S is not set -CONFIG_SND_SUN4I_SPDIF=y -# end of Allwinner SoC Audio support - -# CONFIG_SND_SOC_TEGRA is not set -# CONFIG_SND_SOC_UNIPHIER is not set -# CONFIG_SND_SOC_XILINX_I2S is not set -# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set -# CONFIG_SND_SOC_XILINX_SPDIF is not set -# CONFIG_SND_SOC_XTFPGA_I2S is not set -# CONFIG_ZX_SPDIF is not set -# CONFIG_ZX_I2S is not set -# CONFIG_ZX_TDM is not set -CONFIG_SND_SOC_I2C_AND_SPI=y - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU1761_I2C is not set -# CONFIG_SND_SOC_ADAU1761_SPI is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4118 is not set -CONFIG_SND_SOC_AK4458=y -# CONFIG_SND_SOC_AK4554 is not set -CONFIG_SND_SOC_AK4613=y -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -CONFIG_SND_SOC_AK5558=y -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BD28623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CROS_EC_CODEC is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS35L34 is not set -# CONFIG_SND_SOC_CS35L35 is not set -# CONFIG_SND_SOC_CS35L36 is not set -# CONFIG_SND_SOC_CS42L42 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -CONFIG_SND_SOC_CS42XX8=y -CONFIG_SND_SOC_CS42XX8_I2C=y -# CONFIG_SND_SOC_CS43130 is not set -# CONFIG_SND_SOC_CS4341 is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -# CONFIG_SND_SOC_CX2072X is not set -CONFIG_SND_SOC_DMIC=y -CONFIG_SND_SOC_HDMI_CODEC=y -CONFIG_SND_SOC_ES7134=y -CONFIG_SND_SOC_ES7241=y -# CONFIG_SND_SOC_ES8316 is not set -# CONFIG_SND_SOC_ES8328_I2C is not set -# CONFIG_SND_SOC_ES8328_SPI is not set -CONFIG_SND_SOC_FSL_MQS=y -# CONFIG_SND_SOC_GTM601 is not set -# CONFIG_SND_SOC_INNO_RK3036 is not set -# CONFIG_SND_SOC_MAX98088 is not set -# CONFIG_SND_SOC_MAX98357A is not set -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9867 is not set -# CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set -# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM1789_I2C is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM186X_I2C is not set -# CONFIG_SND_SOC_PCM186X_SPI is not set -# CONFIG_SND_SOC_PCM3060_I2C is not set -# CONFIG_SND_SOC_PCM3060_SPI is not set -CONFIG_SND_SOC_PCM3168A=y -CONFIG_SND_SOC_PCM3168A_I2C=y -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -# CONFIG_SND_SOC_RK3328 is not set -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -CONFIG_SND_SOC_SGTL5000=y -# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -CONFIG_SND_SOC_SPDIF=y -# CONFIG_SND_SOC_SSM2305 is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -# CONFIG_SND_SOC_SSM4567 is not set -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS5086 is not set -CONFIG_SND_SOC_TAS571X=y -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TAS6424 is not set -# CONFIG_SND_SOC_TDA7419 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set -# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -# CONFIG_SND_SOC_TS3A227E is not set -# CONFIG_SND_SOC_TSCS42XX is not set -# CONFIG_SND_SOC_TSCS454 is not set -# CONFIG_SND_SOC_UDA1334 is not set -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -CONFIG_SND_SOC_WM8524=y -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8782 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8904 is not set -CONFIG_SND_SOC_WM8960=y -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_ZX_AUD96P22 is not set -CONFIG_SND_SOC_RPMSG_WM8960=y -CONFIG_SND_SOC_RPMSG_CS42XX8=y -CONFIG_SND_SOC_RPMSG_AK4497=y -# CONFIG_SND_SOC_MAX9759 is not set -# CONFIG_SND_SOC_MT6351 is not set -# CONFIG_SND_SOC_MT6358 is not set -# CONFIG_SND_SOC_NAU8540 is not set -# CONFIG_SND_SOC_NAU8810 is not set -# CONFIG_SND_SOC_NAU8822 is not set -# CONFIG_SND_SOC_NAU8824 is not set -# CONFIG_SND_SOC_TPA6130A2 is not set -# end of CODEC drivers - -CONFIG_SND_SIMPLE_CARD_UTILS=y -CONFIG_SND_SIMPLE_CARD=y -CONFIG_SND_AUDIO_GRAPH_CARD=y -# CONFIG_SND_XEN_FRONTEND is not set +# CONFIG_SOUND is not set # # HID support @@ -5504,7 +4007,6 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_CORSAIR is not set # CONFIG_HID_COUGAR is not set # CONFIG_HID_MACALLY is not set -# CONFIG_HID_PRODIKEYS is not set # CONFIG_HID_CMEDIA is not set # CONFIG_HID_CREATIVE_SB0540 is not set # CONFIG_HID_CYPRESS is not set @@ -5622,20 +4124,11 @@ CONFIG_USB_XHCI_HCD=y # CONFIG_USB_XHCI_DBGCAP is not set CONFIG_USB_XHCI_PCI=y CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_XHCI_HISTB is not set -# CONFIG_USB_XHCI_MTK is not set -# CONFIG_USB_XHCI_MVEBU is not set -CONFIG_USB_XHCI_RCAR=y -CONFIG_USB_XHCI_TEGRA=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_ROOT_HUB_TT=y CONFIG_USB_EHCI_TT_NEWSCHED=y CONFIG_USB_EHCI_PCI=y # CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_MXC is not set -CONFIG_USB_EHCI_HCD_ORION=y -# CONFIG_USB_EHCI_TEGRA is not set -CONFIG_USB_EHCI_EXYNOS=y CONFIG_USB_EHCI_HCD_PLATFORM=y # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set @@ -5643,13 +4136,11 @@ CONFIG_USB_EHCI_HCD_PLATFORM=y # CONFIG_USB_MAX3421_HCD is not set CONFIG_USB_OHCI_HCD=y CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_EXYNOS=y CONFIG_USB_OHCI_HCD_PLATFORM=y # CONFIG_USB_UHCI_HCD is not set # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_HCD_TEST_MODE is not set -# CONFIG_USB_RENESAS_USBHS is not set # # USB Device Class drivers @@ -5692,7 +4183,6 @@ CONFIG_USB_STORAGE=y CONFIG_USB_CDNS3=y CONFIG_USB_CDNS3_GADGET=y CONFIG_USB_CDNS3_HOST=y -# CONFIG_USB_MTU3 is not set CONFIG_USB_MUSB_HDRC=y # CONFIG_USB_MUSB_HOST is not set # CONFIG_USB_MUSB_GADGET is not set @@ -5701,7 +4191,6 @@ CONFIG_USB_MUSB_DUAL_ROLE=y # # Platform Glue Layer # -CONFIG_USB_MUSB_SUNXI=y # # MUSB DMA mode @@ -5716,13 +4205,9 @@ CONFIG_USB_DWC3_DUAL_ROLE=y # # Platform Glue Driver Support # -CONFIG_USB_DWC3_EXYNOS=y CONFIG_USB_DWC3_PCI=y CONFIG_USB_DWC3_HAPS=y -CONFIG_USB_DWC3_KEYSTONE=y -CONFIG_USB_DWC3_MESON_G12A=y CONFIG_USB_DWC3_OF_SIMPLE=y -CONFIG_USB_DWC3_QCOM=y CONFIG_USB_DWC2=y # CONFIG_USB_DWC2_HOST is not set @@ -5840,8 +4325,6 @@ CONFIG_USB_PHY=y CONFIG_NOP_USB_XCEIV=y # CONFIG_USB_GPIO_VBUS is not set # CONFIG_USB_ISP1301 is not set -CONFIG_USB_MXS_PHY=y -# CONFIG_USB_TEGRA_PHY is not set CONFIG_USB_ULPI=y CONFIG_USB_ULPI_VIEWPORT=y # end of USB Physical Layer drivers @@ -5857,11 +4340,9 @@ CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 # # USB Peripheral Controller # -# CONFIG_USB_FSL_USB2 is not set # CONFIG_USB_FOTG210_UDC is not set # CONFIG_USB_GR_UDC is not set # CONFIG_USB_R8A66597 is not set -CONFIG_USB_RENESAS_USB3=y # CONFIG_USB_PXA27X is not set # CONFIG_USB_MV_UDC is not set # CONFIG_USB_MV_U3D is not set @@ -5888,7 +4369,6 @@ CONFIG_USB_F_ACM=y CONFIG_USB_F_SS_LB=y CONFIG_USB_U_SERIAL=y CONFIG_USB_U_ETHER=y -CONFIG_USB_U_AUDIO=y CONFIG_USB_F_SERIAL=y CONFIG_USB_F_OBEX=y CONFIG_USB_F_NCM=y @@ -5898,11 +4378,6 @@ CONFIG_USB_F_SUBSET=y CONFIG_USB_F_RNDIS=y CONFIG_USB_F_MASS_STORAGE=y CONFIG_USB_F_FS=y -CONFIG_USB_F_UAC1=y -CONFIG_USB_F_UAC1_LEGACY=y -CONFIG_USB_F_UAC2=y -CONFIG_USB_F_UVC=y -CONFIG_USB_F_MIDI=y CONFIG_USB_F_HID=y CONFIG_USB_CONFIGFS=y CONFIG_USB_CONFIGFS_SERIAL=y @@ -5916,33 +4391,21 @@ CONFIG_USB_CONFIGFS_EEM=y CONFIG_USB_CONFIGFS_MASS_STORAGE=y CONFIG_USB_CONFIGFS_F_LB_SS=y CONFIG_USB_CONFIGFS_F_FS=y -CONFIG_USB_CONFIGFS_F_UAC1=y -CONFIG_USB_CONFIGFS_F_UAC1_LEGACY=y -CONFIG_USB_CONFIGFS_F_UAC2=y -CONFIG_USB_CONFIGFS_F_MIDI=y CONFIG_USB_CONFIGFS_F_HID=y -CONFIG_USB_CONFIGFS_F_UVC=y # CONFIG_USB_CONFIGFS_F_PRINTER is not set -CONFIG_USB_ZERO=y -# CONFIG_USB_ZERO_HNPTEST is not set -CONFIG_USB_AUDIO=y -# CONFIG_GADGET_UAC1 is not set -CONFIG_USB_ETH=y -CONFIG_USB_ETH_RNDIS=y -# CONFIG_USB_ETH_EEM is not set +# CONFIG_USB_ZERO is not set +# CONFIG_USB_ETH is not set # CONFIG_USB_G_NCM is not set # CONFIG_USB_GADGETFS is not set # CONFIG_USB_FUNCTIONFS is not set -CONFIG_USB_MASS_STORAGE=y +# CONFIG_USB_MASS_STORAGE is not set CONFIG_USB_G_SERIAL=y -# CONFIG_USB_MIDI_GADGET is not set # CONFIG_USB_G_PRINTER is not set # CONFIG_USB_CDC_COMPOSITE is not set # CONFIG_USB_G_ACM_MS is not set # CONFIG_USB_G_MULTI is not set # CONFIG_USB_G_HID is not set # CONFIG_USB_G_DBGP is not set -# CONFIG_USB_G_WEBCAM is not set CONFIG_TYPEC=y CONFIG_TYPEC_TCPM=y CONFIG_TYPEC_TCPCI=y @@ -5978,7 +4441,6 @@ CONFIG_MMC_BLOCK_MINORS=32 # # CONFIG_MMC_DEBUG is not set CONFIG_MMC_ARMMMCI=y -CONFIG_MMC_QCOM_DML=y CONFIG_MMC_STM32_SDMMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_IO_ACCESSORS=y @@ -5991,23 +4453,9 @@ CONFIG_MMC_SDHCI_OF_ARASAN=y CONFIG_MMC_SDHCI_OF_ESDHC=y # CONFIG_MMC_SDHCI_OF_DWCMSHC is not set CONFIG_MMC_SDHCI_CADENCE=y -CONFIG_MMC_SDHCI_ESDHC_IMX=y -CONFIG_MMC_SDHCI_TEGRA=y -# CONFIG_MMC_SDHCI_PXAV3 is not set CONFIG_MMC_SDHCI_F_SDH30=y -CONFIG_MMC_SDHCI_IPROC=y -CONFIG_MMC_MESON_GX=y -# CONFIG_MMC_MESON_MX_SDIO is not set -CONFIG_MMC_SDHCI_MSM=y -# CONFIG_MMC_MXC is not set # CONFIG_MMC_TIFM_SD is not set CONFIG_MMC_SPI=y -# CONFIG_MMC_SDHCI_SPRD is not set -CONFIG_MMC_TMIO_CORE=y -CONFIG_MMC_SDHI=y -# CONFIG_MMC_SDHI_SYS_DMAC is not set -CONFIG_MMC_SDHI_INTERNAL_DMAC=y -CONFIG_MMC_UNIPHIER=y # CONFIG_MMC_CB710 is not set # CONFIG_MMC_VIA_SDMMC is not set CONFIG_MMC_DW=y @@ -6017,18 +4465,12 @@ CONFIG_MMC_DW_EXYNOS=y CONFIG_MMC_DW_HI3798CV200=y CONFIG_MMC_DW_K3=y # CONFIG_MMC_DW_PCI is not set -CONFIG_MMC_DW_ROCKCHIP=y -# CONFIG_MMC_DW_ZX is not set -# CONFIG_MMC_SH_MMCIF is not set # CONFIG_MMC_VUB300 is not set # CONFIG_MMC_USHC is not set # CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y CONFIG_MMC_CQHCI=y # CONFIG_MMC_TOSHIBA_PCI is not set -CONFIG_MMC_BCM2835=y # CONFIG_MMC_MTK is not set -CONFIG_MMC_SDHCI_BRCMSTB=y CONFIG_MMC_SDHCI_XENON=y # CONFIG_MMC_SDHCI_OMAP is not set # CONFIG_MMC_SDHCI_AM654 is not set @@ -6094,8 +4536,6 @@ CONFIG_EDAC_LEGACY_SYSFS=y CONFIG_EDAC_GHES=y # CONFIG_EDAC_LAYERSCAPE is not set # CONFIG_EDAC_THUNDERX is not set -# CONFIG_EDAC_ALTERA is not set -# CONFIG_EDAC_SYNOPSYS is not set # CONFIG_EDAC_XGENE is not set CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y @@ -6121,7 +4561,6 @@ CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_DRV_ABB5ZES3 is not set # CONFIG_RTC_DRV_ABEOZ9 is not set # CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_BRCMSTB=y CONFIG_RTC_DRV_DS1307=y # CONFIG_RTC_DRV_DS1307_CENTURY is not set # CONFIG_RTC_DRV_DS1374 is not set @@ -6129,7 +4568,6 @@ CONFIG_RTC_DRV_DS1307=y # CONFIG_RTC_DRV_HYM8563 is not set # CONFIG_RTC_DRV_MAX6900 is not set CONFIG_RTC_DRV_MAX77686=y -CONFIG_RTC_DRV_MESON_VRTC=y CONFIG_RTC_DRV_RK808=y # CONFIG_RTC_DRV_RS5C372 is not set # CONFIG_RTC_DRV_ISL1208 is not set @@ -6206,27 +4644,13 @@ CONFIG_RTC_DRV_CROS_EC=y # # on-CPU RTC drivers # -# CONFIG_RTC_DRV_IMXDI is not set CONFIG_RTC_DRV_FSL_FTM_ALARM=y -CONFIG_HAVE_S3C_RTC=y -CONFIG_RTC_DRV_S3C=y -# CONFIG_RTC_DRV_SH is not set # CONFIG_RTC_DRV_PL030 is not set CONFIG_RTC_DRV_PL031=y -CONFIG_RTC_DRV_SUN6I=y -# CONFIG_RTC_DRV_MV is not set -CONFIG_RTC_DRV_ARMADA38X=y # CONFIG_RTC_DRV_CADENCE is not set # CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_PM8XXX is not set -CONFIG_RTC_DRV_TEGRA=y -# CONFIG_RTC_DRV_MXC is not set -# CONFIG_RTC_DRV_MXC_V2 is not set CONFIG_RTC_DRV_SNVS=y -CONFIG_RTC_DRV_IMX_SC=y # CONFIG_RTC_DRV_IMX_RPMSG is not set -# CONFIG_RTC_DRV_MT7622 is not set -CONFIG_RTC_DRV_XGENE=y # CONFIG_RTC_DRV_R7301 is not set # @@ -6245,46 +4669,23 @@ CONFIG_DMA_ACPI=y CONFIG_DMA_OF=y # CONFIG_ALTERA_MSGDMA is not set # CONFIG_AMBA_PL08X is not set -# CONFIG_AXI_DMAC is not set CONFIG_BCM_SBA_RAID=y # CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set -CONFIG_DMA_BCM2835=y -CONFIG_DMA_SUN6I=y # CONFIG_DW_AXI_DMAC is not set CONFIG_FSL_EDMA=y # CONFIG_FSL_QDMA is not set CONFIG_FSL_EDMA_V3=y -# CONFIG_IMX_DMA is not set -CONFIG_IMX_SDMA=y # CONFIG_INTEL_IDMA64 is not set -CONFIG_K3_DMA=y -CONFIG_MV_XOR=y CONFIG_MV_XOR_V2=y -CONFIG_MXS_DMA=y -CONFIG_MX3_IPU=y -CONFIG_MX3_IPU_IRQS=4 CONFIG_PL330_DMA=y -# CONFIG_SPRD_DMA is not set -CONFIG_TEGRA20_APB_DMA=y -# CONFIG_TEGRA210_ADMA is not set -# CONFIG_UNIPHIER_MDMAC is not set -# CONFIG_XGENE_DMA is not set # CONFIG_XILINX_DMA is not set # CONFIG_XILINX_ZYNQMP_DMA is not set -# CONFIG_ZX_DMA is not set -# CONFIG_MTK_HSDMA is not set -# CONFIG_MTK_CQDMA is not set -# CONFIG_MTK_UART_APDMA is not set -CONFIG_QCOM_BAM_DMA=y CONFIG_QCOM_HIDMA_MGMT=y CONFIG_QCOM_HIDMA=y # CONFIG_DW_DMAC is not set # CONFIG_DW_DMAC_PCI is not set # CONFIG_DW_EDMA is not set # CONFIG_DW_EDMA_PCIE is not set -CONFIG_RENESAS_DMA=y -CONFIG_RCAR_DMAC=y -CONFIG_RENESAS_USB_DMAC=y # CONFIG_FSL_DPAA2_QDMA is not set # @@ -6428,7 +4829,6 @@ CONFIG_STAGING=y # end of IIO staging drivers # CONFIG_FB_SM750 is not set -# CONFIG_USB_EMXX is not set # # Speakup console speech @@ -6436,31 +4836,7 @@ CONFIG_STAGING=y # CONFIG_SPEAKUP is not set # end of Speakup console speech -# CONFIG_MFD_NVEC is not set CONFIG_STAGING_MEDIA=y -# CONFIG_VIDEO_ALLEGRO_DVT is not set -CONFIG_VIDEO_IMX_CAPTURE=y - -# -# i.MX8QXP/QM Camera ISI/MIPI Features support -# -CONFIG_IMX8_MEDIA_DEVICE=y -CONFIG_IMX8_ISI_CORE=y -CONFIG_IMX8_ISI_CAPTURE=y -CONFIG_IMX8_ISI_M2M=y -CONFIG_IMX8_MIPI_CSI2=y -CONFIG_IMX8_MIPI_CSI2_SAM=y -CONFIG_IMX8_PARALLEL_CSI=y -CONFIG_GMSL_MAX9286=y -# end of i.MX8QXP/QM Camera ISI/MIPI Features support - -# CONFIG_VIDEO_MESON_VDEC is not set -# CONFIG_VIDEO_SUNXI is not set -# CONFIG_TEGRA_VDE is not set - -# -# soc_camera sensor drivers -# # # Android @@ -6483,10 +4859,6 @@ CONFIG_FSL_DPAA2_MAC=y CONFIG_FSL_DPAA2_EVB=y # CONFIG_MOST is not set # CONFIG_KS7010 is not set -CONFIG_BCM_VIDEOCORE=y -# CONFIG_BCM2835_VCHIQ is not set -# CONFIG_SND_BCM2835 is not set -# CONFIG_VIDEO_BCM2835 is not set # CONFIG_PI433 is not set # @@ -6569,7 +4941,6 @@ CONFIG_CLK_VEXPRESS_OSC=y # CONFIG_COMMON_CLK_MAX77686 is not set # CONFIG_COMMON_CLK_MAX9485 is not set CONFIG_COMMON_CLK_RK808=y -CONFIG_COMMON_CLK_HI655X=y CONFIG_COMMON_CLK_SCPI=y # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set @@ -6587,177 +4958,10 @@ CONFIG_COMMON_CLK_PWM=y # CONFIG_COMMON_CLK_VC5 is not set # CONFIG_COMMON_CLK_BD718XX is not set # CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_BCM2835=y -CONFIG_COMMON_CLK_IPROC=y -CONFIG_CLK_BCM_NS2=y -CONFIG_CLK_BCM_SR=y -CONFIG_CLK_RASPBERRYPI=y -CONFIG_COMMON_CLK_HI3516CV300=y -CONFIG_COMMON_CLK_HI3519=y -CONFIG_COMMON_CLK_HI3660=y -CONFIG_COMMON_CLK_HI3670=y -CONFIG_COMMON_CLK_HI3798CV200=y -CONFIG_COMMON_CLK_HI6220=y -CONFIG_RESET_HISI=y -CONFIG_STUB_CLK_HI6220=y -CONFIG_STUB_CLK_HI3660=y -CONFIG_MXC_CLK=y -CONFIG_MXC_CLK_SCU=y -CONFIG_CLK_IMX8MM=y -CONFIG_CLK_IMX8MN=y -CONFIG_CLK_IMX8MQ=y -CONFIG_CLK_IMX8QXP=y -CONFIG_TI_SCI_CLK=y -# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set - -# -# Clock driver for MediaTek SoC -# -CONFIG_COMMON_CLK_MEDIATEK=y -CONFIG_COMMON_CLK_MT2712=y -# CONFIG_COMMON_CLK_MT2712_BDPSYS is not set -# CONFIG_COMMON_CLK_MT2712_IMGSYS is not set -# CONFIG_COMMON_CLK_MT2712_JPGDECSYS is not set -# CONFIG_COMMON_CLK_MT2712_MFGCFG is not set -# CONFIG_COMMON_CLK_MT2712_MMSYS is not set -# CONFIG_COMMON_CLK_MT2712_VDECSYS is not set -# CONFIG_COMMON_CLK_MT2712_VENCSYS is not set -CONFIG_COMMON_CLK_MT6779=y -# CONFIG_COMMON_CLK_MT6779_MMSYS is not set -# CONFIG_COMMON_CLK_MT6779_IMGSYS is not set -# CONFIG_COMMON_CLK_MT6779_IPESYS is not set -# CONFIG_COMMON_CLK_MT6779_CAMSYS is not set -# CONFIG_COMMON_CLK_MT6779_VDECSYS is not set -# CONFIG_COMMON_CLK_MT6779_VENCSYS is not set -# CONFIG_COMMON_CLK_MT6779_MFGCFG is not set -# CONFIG_COMMON_CLK_MT6779_AUDSYS is not set -CONFIG_COMMON_CLK_MT6797=y -# CONFIG_COMMON_CLK_MT6797_MMSYS is not set -# CONFIG_COMMON_CLK_MT6797_IMGSYS is not set -# CONFIG_COMMON_CLK_MT6797_VDECSYS is not set -# CONFIG_COMMON_CLK_MT6797_VENCSYS is not set -CONFIG_COMMON_CLK_MT7622=y -# CONFIG_COMMON_CLK_MT7622_ETHSYS is not set -# CONFIG_COMMON_CLK_MT7622_HIFSYS is not set -# CONFIG_COMMON_CLK_MT7622_AUDSYS is not set -CONFIG_COMMON_CLK_MT8173=y -CONFIG_COMMON_CLK_MT8183=y -# CONFIG_COMMON_CLK_MT8183_AUDIOSYS is not set -# CONFIG_COMMON_CLK_MT8183_CAMSYS is not set -# CONFIG_COMMON_CLK_MT8183_IMGSYS is not set -# CONFIG_COMMON_CLK_MT8183_IPU_CORE0 is not set -# CONFIG_COMMON_CLK_MT8183_IPU_CORE1 is not set -# CONFIG_COMMON_CLK_MT8183_IPU_ADL is not set -# CONFIG_COMMON_CLK_MT8183_IPU_CONN is not set -# CONFIG_COMMON_CLK_MT8183_MFGCFG is not set -# CONFIG_COMMON_CLK_MT8183_MMSYS is not set -# CONFIG_COMMON_CLK_MT8183_VDECSYS is not set -# CONFIG_COMMON_CLK_MT8183_VENCSYS is not set -CONFIG_COMMON_CLK_MT8516=y -# CONFIG_COMMON_CLK_MT8516_AUDSYS is not set -# end of Clock driver for MediaTek SoC - -CONFIG_COMMON_CLK_MESON_REGMAP=y -CONFIG_COMMON_CLK_MESON_DUALDIV=y -CONFIG_COMMON_CLK_MESON_MPLL=y -CONFIG_COMMON_CLK_MESON_PHASE=y -CONFIG_COMMON_CLK_MESON_PLL=y -CONFIG_COMMON_CLK_MESON_SCLK_DIV=y -CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y -CONFIG_COMMON_CLK_MESON_AO_CLKC=y -CONFIG_COMMON_CLK_MESON_EE_CLKC=y -CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y -CONFIG_COMMON_CLK_GXBB=y -CONFIG_COMMON_CLK_AXG=y -CONFIG_COMMON_CLK_AXG_AUDIO=y -CONFIG_COMMON_CLK_G12A=y -CONFIG_ARMADA_AP_CP_HELPER=y -CONFIG_ARMADA_37XX_CLK=y -CONFIG_ARMADA_AP806_SYSCON=y -CONFIG_ARMADA_CP110_SYSCON=y -CONFIG_QCOM_GDSC=y -CONFIG_QCOM_RPMCC=y -CONFIG_COMMON_CLK_QCOM=y -CONFIG_QCOM_A53PLL=y -CONFIG_QCOM_CLK_APCS_MSM8916=y -CONFIG_QCOM_CLK_SMD_RPM=y -CONFIG_QCOM_CLK_RPMH=y -# CONFIG_APQ_GCC_8084 is not set -# CONFIG_APQ_MMCC_8084 is not set -# CONFIG_IPQ_GCC_4019 is not set -# CONFIG_IPQ_GCC_806X is not set -# CONFIG_IPQ_LCC_806X is not set -CONFIG_IPQ_GCC_8074=y -# CONFIG_MSM_GCC_8660 is not set -CONFIG_MSM_GCC_8916=y -# CONFIG_MSM_GCC_8960 is not set -# CONFIG_MSM_LCC_8960 is not set -# CONFIG_MDM_GCC_9615 is not set -# CONFIG_MDM_LCC_9615 is not set -# CONFIG_MSM_MMCC_8960 is not set -# CONFIG_MSM_GCC_8974 is not set -# CONFIG_MSM_MMCC_8974 is not set -CONFIG_MSM_GCC_8994=y -CONFIG_MSM_GCC_8996=y -CONFIG_MSM_MMCC_8996=y -CONFIG_MSM_GCC_8998=y -CONFIG_QCS_GCC_404=y -# CONFIG_SDM_CAMCC_845 is not set -# CONFIG_SDM_GCC_660 is not set -# CONFIG_QCS_TURING_404 is not set -CONFIG_SDM_GCC_845=y -# CONFIG_SDM_GPUCC_845 is not set -# CONFIG_SDM_VIDEOCC_845 is not set -# CONFIG_SDM_DISPCC_845 is not set -# CONFIG_SDM_LPASSCC_845 is not set -CONFIG_SM_GCC_8150=y -# CONFIG_SPMI_PMIC_CLKDIV is not set -# CONFIG_QCOM_HFPLL is not set -# CONFIG_KPSS_XCC is not set -CONFIG_CLK_RENESAS=y -CONFIG_CLK_R8A774A1=y -CONFIG_CLK_R8A774C0=y -CONFIG_CLK_R8A7795=y -CONFIG_CLK_R8A7796=y -CONFIG_CLK_R8A77965=y -CONFIG_CLK_R8A77970=y -CONFIG_CLK_R8A77980=y -CONFIG_CLK_R8A77990=y -CONFIG_CLK_R8A77995=y -# CONFIG_CLK_R9A06G032 is not set -CONFIG_CLK_RCAR_GEN3_CPG=y -# CONFIG_CLK_RCAR_USB2_CLOCK_SEL is not set -CONFIG_CLK_RENESAS_CPG_MSSR=y -CONFIG_CLK_RENESAS_DIV6=y CONFIG_ARCH_S32_CLK=y -CONFIG_COMMON_CLK_SAMSUNG=y -CONFIG_EXYNOS_ARM64_COMMON_CLK=y -CONFIG_EXYNOS_AUDSS_CLK_CON=y -CONFIG_SPRD_COMMON_CLK=y -CONFIG_SPRD_SC9860_CLK=y -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN50I_A64_CCU=y -CONFIG_SUN50I_H6_CCU=y -CONFIG_SUN50I_H6_R_CCU=y -# CONFIG_SUN8I_A83T_CCU is not set -CONFIG_SUN8I_H3_CCU=y -CONFIG_SUN8I_DE2_CCU=y -CONFIG_SUN8I_R_CCU=y -CONFIG_CLK_TEGRA_BPMP=y -CONFIG_TEGRA_CLK_DFLL=y -CONFIG_CLK_UNIPHIER=y -# CONFIG_COMMON_CLK_ZYNQMP is not set # end of Common Clock Framework CONFIG_HWSPINLOCK=y -# CONFIG_HWSPINLOCK_OMAP is not set -CONFIG_HWSPINLOCK_QCOM=y -# CONFIG_HWSPINLOCK_SPRD is not set # # Clock Source drivers @@ -6766,48 +4970,22 @@ CONFIG_TIMER_OF=y CONFIG_TIMER_ACPI=y CONFIG_TIMER_PROBE=y CONFIG_CLKSRC_MMIO=y -CONFIG_ROCKCHIP_TIMER=y -CONFIG_TEGRA_TIMER=y CONFIG_ARM_ARCH_TIMER=y CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y CONFIG_FSL_ERRATUM_A008585=y CONFIG_HISILICON_ERRATUM_161010101=y CONFIG_ARM64_ERRATUM_858921=y -CONFIG_SUN50I_ERRATUM_UNKNOWN1=y -CONFIG_ARM_TIMER_SP804=y -CONFIG_SYS_SUPPORTS_SH_CMT=y -CONFIG_MTK_TIMER=y -CONFIG_SPRD_TIMER=y -CONFIG_SYS_SUPPORTS_SH_TMU=y -CONFIG_SH_TIMER_CMT=y -CONFIG_SH_TIMER_TMU=y CONFIG_CLKSRC_VERSATILE=y -CONFIG_TIMER_IMX_SYS_CTR=y # end of Clock Source drivers CONFIG_MAILBOX=y CONFIG_ARM_MHU=y -CONFIG_IMX_MBOX=y CONFIG_PLATFORM_MHU=y # CONFIG_PL320_MBOX is not set -# CONFIG_ARMADA_37XX_RWTM_MBOX is not set -# CONFIG_OMAP2PLUS_MBOX is not set -# CONFIG_ROCKCHIP_MBOX is not set CONFIG_PCC=y # CONFIG_ALTERA_MBOX is not set -CONFIG_BCM2835_MBOX=y -CONFIG_TI_MESSAGE_MANAGER=y -CONFIG_HI3660_MBOX=y -CONFIG_HI6220_MBOX=y # CONFIG_MAILBOX_TEST is not set -CONFIG_QCOM_APCS_IPC=y -CONFIG_TEGRA_HSP_MBOX=y -# CONFIG_XGENE_SLIMPRO_MBOX is not set -# CONFIG_BCM_PDC_MBOX is not set -CONFIG_BCM_FLEXRM_MBOX=y -# CONFIG_MTK_CMDQ_MBOX is not set -# CONFIG_ZYNQMP_IPI_MBOX is not set CONFIG_IOMMU_IOVA=y CONFIG_IOMMU_API=y CONFIG_IOMMU_SUPPORT=y @@ -6825,30 +5003,15 @@ CONFIG_IOMMU_IO_PGTABLE_LPAE=y CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y CONFIG_OF_IOMMU=y CONFIG_IOMMU_DMA=y -CONFIG_ROCKCHIP_IOMMU=y -CONFIG_TEGRA_IOMMU_SMMU=y -# CONFIG_EXYNOS_IOMMU is not set -# CONFIG_IPMMU_VMSA is not set CONFIG_ARM_SMMU=y # CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set CONFIG_ARM_SMMU_V3=y -# CONFIG_MTK_IOMMU is not set -CONFIG_QCOM_IOMMU=y # CONFIG_VIRTIO_IOMMU is not set # # Remoteproc drivers # CONFIG_REMOTEPROC=y -# CONFIG_IMX_REMOTEPROC is not set -CONFIG_QCOM_RPROC_COMMON=y -CONFIG_QCOM_Q6V5_COMMON=y -# CONFIG_QCOM_Q6V5_ADSP is not set -CONFIG_QCOM_Q6V5_MSS=y -CONFIG_QCOM_Q6V5_PAS=y -# CONFIG_QCOM_Q6V5_WCSS is not set -CONFIG_QCOM_SYSMON=y -# CONFIG_QCOM_WCNSS_PIL is not set # end of Remoteproc drivers # @@ -6858,12 +5021,7 @@ CONFIG_RPMSG=y # CONFIG_RPMSG_CHAR is not set CONFIG_RPMSG_QCOM_GLINK_NATIVE=y CONFIG_RPMSG_QCOM_GLINK_RPM=y -CONFIG_RPMSG_QCOM_GLINK_SMEM=y -CONFIG_RPMSG_QCOM_SMD=y CONFIG_RPMSG_VIRTIO=y -CONFIG_HAVE_IMX_RPMSG=y -CONFIG_IMX_RPMSG_PINGPONG=y -CONFIG_IMX_RPMSG_TTY=y # end of Rpmsg drivers # CONFIG_SOUNDWIRE is not set @@ -6875,12 +5033,6 @@ CONFIG_IMX_RPMSG_TTY=y # # Amlogic SoC drivers # -# CONFIG_MESON_CANVAS is not set -CONFIG_MESON_CLK_MEASURE=y -CONFIG_MESON_GX_SOCINFO=y -CONFIG_MESON_GX_PM_DOMAINS=y -CONFIG_MESON_EE_PM_DOMAINS=y -CONFIG_MESON_MX_SOCINFO=y # end of Amlogic SoC drivers # @@ -6891,10 +5043,7 @@ CONFIG_MESON_MX_SOCINFO=y # # Broadcom SoC drivers # -CONFIG_BCM2835_POWER=y -CONFIG_RASPBERRYPI_POWER=y CONFIG_SOC_BRCMSTB=y -CONFIG_BRCMSTB_PM=y # end of Broadcom SoC drivers # @@ -6912,97 +5061,20 @@ CONFIG_FSL_RCPM=y # # i.MX SoC drivers # -CONFIG_IMX_GPCV2_PM_DOMAINS=y -CONFIG_IMX_SCU_SOC=y -CONFIG_IMX8M_PM_DOMAINS=y -CONFIG_IMX8M_BUSFREQ=y # end of i.MX SoC drivers -# -# MediaTek SoC drivers -# -# CONFIG_MTK_CMDQ is not set -CONFIG_MTK_INFRACFG=y -# CONFIG_MTK_PMIC_WRAP is not set -CONFIG_MTK_SCPSYS=y -# end of MediaTek SoC drivers - # # Qualcomm SoC drivers # -# CONFIG_QCOM_AOSS_QMP is not set -# CONFIG_QCOM_COMMAND_DB is not set -CONFIG_QCOM_GENI_SE=y -CONFIG_QCOM_GLINK_SSR=y -# CONFIG_QCOM_GSBI is not set -# CONFIG_QCOM_LLCC is not set -CONFIG_QCOM_MDT_LOADER=y -CONFIG_QCOM_QMI_HELPERS=y -# CONFIG_QCOM_RMTFS_MEM is not set -CONFIG_QCOM_RPMH=y -# CONFIG_QCOM_RPMPD is not set -CONFIG_QCOM_SMEM=y -CONFIG_QCOM_SMD_RPM=y -CONFIG_QCOM_SMEM_STATE=y -CONFIG_QCOM_SMP2P=y -CONFIG_QCOM_SMSM=y -# CONFIG_QCOM_SOCINFO is not set -# CONFIG_QCOM_WCNSS_CTRL is not set -# CONFIG_QCOM_APR is not set # end of Qualcomm SoC drivers -CONFIG_SOC_RENESAS=y -CONFIG_ARCH_RCAR_GEN3=y -CONFIG_ARCH_R8A774A1=y -CONFIG_ARCH_R8A774C0=y -CONFIG_ARCH_R8A7795=y -CONFIG_ARCH_R8A7796=y -CONFIG_ARCH_R8A77965=y -CONFIG_ARCH_R8A77970=y -CONFIG_ARCH_R8A77980=y -CONFIG_ARCH_R8A77990=y -CONFIG_ARCH_R8A77995=y -CONFIG_SYSC_R8A774A1=y -CONFIG_SYSC_R8A774C0=y -CONFIG_SYSC_R8A7795=y -CONFIG_SYSC_R8A7796=y -CONFIG_SYSC_R8A77965=y -CONFIG_SYSC_R8A77970=y -CONFIG_SYSC_R8A77980=y -CONFIG_SYSC_R8A77990=y -CONFIG_SYSC_R8A77995=y -CONFIG_RST_RCAR=y -CONFIG_SYSC_RCAR=y -CONFIG_ROCKCHIP_GRF=y -CONFIG_ROCKCHIP_PM_DOMAINS=y -CONFIG_SOC_SAMSUNG=y -CONFIG_EXYNOS_CHIPID=y -CONFIG_EXYNOS_PMU=y -CONFIG_EXYNOS_PM_DOMAINS=y -CONFIG_SUNXI_SRAM=y -CONFIG_ARCH_TEGRA_132_SOC=y -CONFIG_ARCH_TEGRA_210_SOC=y -CONFIG_ARCH_TEGRA_186_SOC=y -CONFIG_ARCH_TEGRA_194_SOC=y -CONFIG_SOC_TEGRA_FUSE=y -CONFIG_SOC_TEGRA_FLOWCTRL=y -CONFIG_SOC_TEGRA_PMC=y -CONFIG_SOC_TEGRA_POWERGATE_BPMP=y -CONFIG_ARCH_K3_AM6_SOC=y -CONFIG_ARCH_K3_J721E_SOC=y CONFIG_SOC_TI=y -CONFIG_TI_SCI_PM_DOMAINS=y -CONFIG_TI_SCI_INTA_MSI_DOMAIN=y # # Xilinx SoC drivers # # CONFIG_XILINX_VCU is not set -CONFIG_ZYNQMP_POWER=y -CONFIG_ZYNQMP_PM_DOMAINS=y # end of Xilinx SoC drivers - -# CONFIG_SOC_ZTE is not set # end of SOC (System On Chip) specific Drivers CONFIG_PM_DEVFREQ=y @@ -7019,9 +5091,6 @@ CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y # # DEVFREQ Drivers # -# CONFIG_ARM_EXYNOS_BUS_DEVFREQ is not set -# CONFIG_ARM_TEGRA_DEVFREQ is not set -# CONFIG_ARM_RK3399_DMC_DEVFREQ is not set # CONFIG_PM_DEVFREQ_EVENT is not set CONFIG_EXTCON=y @@ -7033,7 +5102,6 @@ CONFIG_EXTCON=y # CONFIG_EXTCON_GPIO is not set # CONFIG_EXTCON_MAX3355 is not set # CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_QCOM_SPMI_MISC is not set # CONFIG_EXTCON_RT8973A is not set # CONFIG_EXTCON_SM5502 is not set CONFIG_EXTCON_USB_GPIO=y @@ -7041,7 +5109,6 @@ CONFIG_EXTCON_USBC_CROS_EC=y CONFIG_MEMORY=y # CONFIG_ARM_PL172_MPMC is not set CONFIG_FSL_IFC=y -CONFIG_TEGRA_MC=y CONFIG_IIO=y CONFIG_IIO_BUFFER=y # CONFIG_IIO_BUFFER_CB is not set @@ -7110,16 +5177,10 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 # CONFIG_AD799X is not set # CONFIG_AXP20X_ADC is not set # CONFIG_AXP288_ADC is not set -# CONFIG_BCM_IPROC_ADC is not set -# CONFIG_BERLIN2_ADC is not set # CONFIG_CC10001_ADC is not set # CONFIG_ENVELOPE_DETECTOR is not set -CONFIG_EXYNOS_ADC=y # CONFIG_HI8435 is not set # CONFIG_HX711 is not set -# CONFIG_INA2XX_ADC is not set -# CONFIG_IMX7D_ADC is not set -CONFIG_IMX8QXP_ADC=y # CONFIG_LTC2471 is not set # CONFIG_LTC2485 is not set # CONFIG_LTC2497 is not set @@ -7131,13 +5192,10 @@ CONFIG_IMX8QXP_ADC=y # CONFIG_MCP320X is not set # CONFIG_MCP3422 is not set # CONFIG_MCP3911 is not set -# CONFIG_MEDIATEK_MT6577_AUXADC is not set -CONFIG_MESON_SARADC=y # CONFIG_NAU7802 is not set # CONFIG_QCOM_SPMI_IADC is not set # CONFIG_QCOM_SPMI_VADC is not set # CONFIG_QCOM_SPMI_ADC5 is not set -CONFIG_ROCKCHIP_SARADC=y # CONFIG_SD_ADC_MODULATOR is not set # CONFIG_TI_ADC081C is not set # CONFIG_TI_ADC0832 is not set @@ -7477,89 +5535,31 @@ CONFIG_IIO_CROS_EC_BARO=y # CONFIG_VME_BUS is not set CONFIG_PWM=y CONFIG_PWM_SYSFS=y -CONFIG_PWM_BCM_IPROC=y -CONFIG_PWM_BCM2835=y -# CONFIG_PWM_BERLIN is not set -# CONFIG_PWM_BRCMSTB is not set CONFIG_PWM_CROS_EC=y # CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_HIBVT is not set -# CONFIG_PWM_IMX1 is not set -CONFIG_PWM_IMX27=y -# CONFIG_PWM_IMX_TPM is not set -CONFIG_PWM_MESON=y -# CONFIG_PWM_MTK_DISP is not set -# CONFIG_PWM_MEDIATEK is not set # CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_RCAR=y -# CONFIG_PWM_RENESAS_TPU is not set -CONFIG_PWM_ROCKCHIP=y -CONFIG_PWM_SAMSUNG=y -# CONFIG_PWM_SPRD is not set -CONFIG_PWM_SUN4I=y -CONFIG_PWM_TEGRA=y -# CONFIG_PWM_TIECAP is not set -# CONFIG_PWM_TIEHRPWM is not set -# CONFIG_PWM_ZX is not set # # IRQ chip support # CONFIG_IRQCHIP=y CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_PM=y CONFIG_ARM_GIC_MAX_NR=1 CONFIG_ARM_GIC_V2M=y CONFIG_ARM_GIC_V3=y CONFIG_ARM_GIC_V3_ITS=y CONFIG_ARM_GIC_V3_ITS_PCI=y CONFIG_ARM_GIC_V3_ITS_FSL_MC=y -CONFIG_ALPINE_MSI=y # CONFIG_AL_FIC is not set -CONFIG_BCM7038_L1_IRQ=y -CONFIG_BRCMSTB_L2_IRQ=y -CONFIG_DW_APB_ICTL=y -CONFIG_HISILICON_IRQ_MBIGEN=y -CONFIG_RENESAS_IRQC=y -CONFIG_IMX_GPCV2=y -CONFIG_MVEBU_GICP=y -CONFIG_MVEBU_ICU=y -CONFIG_MVEBU_ODMI=y -CONFIG_MVEBU_PIC=y -CONFIG_MVEBU_SEI=y CONFIG_LS_SCFG_MSI=y CONFIG_PARTITION_PERCPU=y -CONFIG_QCOM_IRQ_COMBINER=y -CONFIG_IRQ_UNIPHIER_AIDET=y -CONFIG_MESON_IRQ_GPIO=y -# CONFIG_QCOM_PDC is not set CONFIG_IMX_IRQSTEER=y -CONFIG_TI_SCI_INTR_IRQCHIP=y -CONFIG_TI_SCI_INTA_IRQCHIP=y -CONFIG_IMX_INTMUX=y # end of IRQ chip support # CONFIG_IPACK_BUS is not set -CONFIG_ARCH_HAS_RESET_CONTROLLER=y CONFIG_RESET_CONTROLLER=y -CONFIG_RESET_BERLIN=y -CONFIG_RESET_BRCMSTB=y -CONFIG_RESET_DISPMIX=y -CONFIG_RESET_IMX7=y CONFIG_RESET_GPIO=y -CONFIG_RESET_MESON=y -CONFIG_RESET_MESON_AUDIO_ARB=y -# CONFIG_RESET_QCOM_AOSS is not set -# CONFIG_RESET_QCOM_PDC is not set -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -CONFIG_RESET_TI_SCI=y # CONFIG_RESET_TI_SYSCON is not set -CONFIG_RESET_UNIPHIER=y -CONFIG_RESET_UNIPHIER_GLUE=y -CONFIG_COMMON_RESET_HI3660=y -CONFIG_COMMON_RESET_HI6220=y -CONFIG_RESET_TEGRA_BPMP=y # # PHY Subsystem @@ -7569,77 +5569,20 @@ CONFIG_GENERIC_PHY_MIPI_DPHY=y CONFIG_PHY_XGENE=y CONFIG_PHY_MIXEL_LVDS=y CONFIG_PHY_MIXEL_LVDS_COMBO=y -CONFIG_PHY_SUN4I_USB=y -# CONFIG_PHY_SUN6I_MIPI_DPHY is not set -# CONFIG_PHY_SUN9I_USB is not set -CONFIG_PHY_MESON8B_USB2=y -CONFIG_PHY_MESON_GXL_USB2=y -CONFIG_PHY_MESON_GXL_USB3=y -CONFIG_PHY_MESON_G12A_USB2=y -CONFIG_PHY_MESON_G12A_USB3_PCIE=y -CONFIG_PHY_BCM_SR_USB=y # CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_BCM_NS_USB2 is not set -# CONFIG_PHY_BCM_NS_USB3 is not set -CONFIG_PHY_NS2_PCIE=y -CONFIG_PHY_NS2_USB_DRD=y -CONFIG_PHY_BRCM_SATA=y -CONFIG_PHY_BRCM_USB=y -CONFIG_PHY_BCM_SR_PCIE=y # CONFIG_PHY_CADENCE_DP is not set # CONFIG_PHY_CADENCE_DPHY is not set # CONFIG_PHY_CADENCE_SIERRA is not set CONFIG_PHY_FSL_IMX8MQ_USB=y CONFIG_PHY_MIXEL_MIPI_DPHY=y -CONFIG_PHY_HI6220_USB=y -# CONFIG_PHY_HI3660_USB is not set -CONFIG_PHY_HISTB_COMBPHY=y -CONFIG_PHY_HISI_INNO_USB2=y -# CONFIG_PHY_BERLIN_SATA is not set -# CONFIG_PHY_BERLIN_USB is not set -CONFIG_PHY_MVEBU_A3700_COMPHY=y -CONFIG_PHY_MVEBU_A3700_UTMI=y -# CONFIG_PHY_MVEBU_A38X_COMPHY is not set -CONFIG_PHY_MVEBU_CP110_COMPHY=y # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MTK_TPHY is not set -# CONFIG_PHY_MTK_UFS is not set -# CONFIG_PHY_MTK_XSPHY is not set # CONFIG_PHY_CPCAP_USB is not set # CONFIG_PHY_MAPPHONE_MDM6600 is not set # CONFIG_PHY_OCELOT_SERDES is not set -# CONFIG_PHY_QCOM_APQ8064_SATA is not set -# CONFIG_PHY_QCOM_IPQ806X_SATA is not set -# CONFIG_PHY_QCOM_PCIE2 is not set -CONFIG_PHY_QCOM_QMP=y -CONFIG_PHY_QCOM_QUSB2=y -# CONFIG_PHY_QCOM_UFS is not set CONFIG_PHY_QCOM_USB_HS=y # CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_RCAR_GEN2 is not set -CONFIG_PHY_RCAR_GEN3_PCIE=y -CONFIG_PHY_RCAR_GEN3_USB2=y -CONFIG_PHY_RCAR_GEN3_USB3=y -# CONFIG_PHY_ROCKCHIP_DP is not set -CONFIG_PHY_ROCKCHIP_EMMC=y -CONFIG_PHY_ROCKCHIP_INNO_HDMI=y -CONFIG_PHY_ROCKCHIP_INNO_USB2=y -CONFIG_PHY_ROCKCHIP_PCIE=y -CONFIG_PHY_ROCKCHIP_TYPEC=y -# CONFIG_PHY_ROCKCHIP_USB is not set -CONFIG_PHY_EXYNOS_DP_VIDEO=y -CONFIG_PHY_EXYNOS_MIPI_VIDEO=y -# CONFIG_PHY_EXYNOS_PCIE is not set CONFIG_PHY_SAMSUNG_USB2=y -CONFIG_PHY_EXYNOS5_USBDRD=y -CONFIG_PHY_UNIPHIER_USB2=y -CONFIG_PHY_UNIPHIER_USB3=y -# CONFIG_PHY_UNIPHIER_PCIE is not set -CONFIG_PHY_TEGRA_XUSB=y -CONFIG_PHY_TEGRA194_P2U=y -# CONFIG_PHY_AM654_SERDES is not set -# CONFIG_OMAP_USB2 is not set # CONFIG_PHY_TUSB1210 is not set # end of PHY Subsystem @@ -7655,12 +5598,7 @@ CONFIG_ARM_PMU=y CONFIG_ARM_PMU_ACPI=y # CONFIG_ARM_SMMU_V3_PMU is not set # CONFIG_ARM_DSU_PMU is not set -CONFIG_FSL_IMX8_DDR_PMU=y CONFIG_HISI_PMU=y -CONFIG_QCOM_L2_PMU=y -CONFIG_QCOM_L3_PMU=y -CONFIG_THUNDERX2_PMU=y -# CONFIG_XGENE_PMU is not set # CONFIG_ARM_SPE_PMU is not set # end of Performance monitor support @@ -7676,19 +5614,6 @@ CONFIG_RAS=y # CONFIG_DAX is not set CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_IMX_IIM is not set -CONFIG_NVMEM_IMX_OCOTP=y -CONFIG_NVMEM_IMX_OCOTP_SCU=y -# CONFIG_MTK_EFUSE is not set -CONFIG_QCOM_QFPROM=y -CONFIG_ROCKCHIP_EFUSE=y -CONFIG_NVMEM_BCM_OCOTP=y -CONFIG_NVMEM_SUNXI_SID=y -CONFIG_UNIPHIER_EFUSE=y -CONFIG_MESON_EFUSE=y -# CONFIG_MESON_MX_EFUSE is not set -# CONFIG_NVMEM_SNVS_LPGPR is not set -# CONFIG_NVMEM_ZYNQMP is not set # # HW tracing support @@ -7701,7 +5626,6 @@ CONFIG_FPGA=y # CONFIG_ALTERA_PR_IP_CORE is not set # CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set # CONFIG_FPGA_MGR_ALTERA_CVP is not set -CONFIG_FPGA_MGR_STRATIX10_SOC=y # CONFIG_FPGA_MGR_XILINX_SPI is not set # CONFIG_FPGA_MGR_ICE40_SPI is not set # CONFIG_FPGA_MGR_MACHXO2_SPI is not set @@ -7711,7 +5635,6 @@ CONFIG_ALTERA_FREEZE_BRIDGE=y CONFIG_FPGA_REGION=y CONFIG_OF_FPGA_REGION=y # CONFIG_FPGA_DFL is not set -# CONFIG_FPGA_MGR_ZYNQMP_FPGA is not set # CONFIG_FSI is not set CONFIG_TEE=y @@ -7738,80 +5661,6 @@ CONFIG_PM_OPP=y # CONFIG_SLIMBUS is not set # CONFIG_INTERCONNECT is not set # CONFIG_COUNTER is not set - -# -# MXC support drivers -# -CONFIG_MXC_SIM=y -# CONFIG_MXC_IPU is not set - -# -# MXC HANTRO(Video Processing Unit) support -# -CONFIG_MXC_HANTRO=y -# end of MXC HANTRO(Video Processing Unit) support - -# -# MXC HANTRO(Video Processing Unit) 845 support -# -CONFIG_MXC_HANTRO_845=y -# end of MXC HANTRO(Video Processing Unit) 845 support - -# -# MXC HANTRO(Video Processing Unit) encoder support -# -CONFIG_MXC_HANTRO_845_H1=y -# end of MXC HANTRO(Video Processing Unit) encoder support - -# -# MXC VPU(Video Processing Unit) MALONE DECODER support -# -CONFIG_MXC_VPU_MALONE=y -# CONFIG_MXC_VPU_MALONE_DEBUG is not set -# end of MXC VPU(Video Processing Unit) MALONE DECODER support - -# -# MXC VPU(Video Processing Unit) WINDSOR ENCODER support -# -CONFIG_MXC_VPU_WINDSOR=y -# CONFIG_MXC_VPU_WINDSOR_DEBUG is not set -# end of MXC VPU(Video Processing Unit) WINDSOR ENCODER support - -# -# MXC Vivante GPU support -# -CONFIG_MXC_GPU_VIV=y -# end of MXC Vivante GPU support - -# -# MXC VPU(Video Processing Unit) support -# -# end of MXC VPU(Video Processing Unit) support - -# -# MXC SIM Support -# -# CONFIG_MXC_SIMv2 is not set -CONFIG_MXC_EMVSIM=y -# end of MXC SIM Support - -# -# MXC Media Local Bus Driver -# -CONFIG_MXC_MLB=y -CONFIG_MXC_MLB150=y -# end of MXC Media Local Bus Driver - -# -# MXC HDMI CEC (Consumer Electronics Control) support -# -# end of MXC HDMI CEC (Consumer Electronics Control) support - -# -# MXC MIPI Support -# -# end of MXC MIPI Support -# end of MXC support drivers # end of Device Drivers # @@ -8006,7 +5855,7 @@ CONFIG_NFS_V4_1=y CONFIG_NFS_V4_2=y CONFIG_PNFS_FILE_LAYOUT=y CONFIG_PNFS_BLOCK=y -CONFIG_PNFS_FLEXFILE_LAYOUT=y +CONFIG_PNFS_FLEXFILE_LAYOUT=m CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" # CONFIG_NFS_V4_1_MIGRATION is not set CONFIG_NFS_V4_SECURITY_LABEL=y @@ -8169,7 +6018,7 @@ CONFIG_CRYPTO_NULL2=y # CONFIG_CRYPTO_PCRYPT is not set CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y -CONFIG_CRYPTO_TEST=y +CONFIG_CRYPTO_TEST=m CONFIG_CRYPTO_SIMD=y CONFIG_CRYPTO_ENGINE=y @@ -8298,11 +6147,9 @@ CONFIG_CRYPTO_USER_API_AEAD=y # CONFIG_CRYPTO_STATS is not set CONFIG_CRYPTO_HASH_INFO=y CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_MARVELL_CESA is not set CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y -CONFIG_CRYPTO_DEV_FSL_CAAM_SECVIO=y CONFIG_CRYPTO_DEV_FSL_CAAM=y # CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y @@ -8317,24 +6164,15 @@ CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y # CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 -CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=y +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=m CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y -# CONFIG_CRYPTO_DEV_SAHARA is not set -# CONFIG_CRYPTO_DEV_EXYNOS_RNG is not set -# CONFIG_CRYPTO_DEV_S5P is not set # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set # CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_MXS_DCP is not set -# CONFIG_CAVIUM_CPT is not set # CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set -# CONFIG_CRYPTO_DEV_QCE is not set -# CONFIG_CRYPTO_DEV_QCOM_RNG is not set -# CONFIG_CRYPTO_DEV_ROCKCHIP is not set CONFIG_CRYPTO_DEV_VIRTIO=y -CONFIG_CRYPTO_DEV_BCM_SPU=y # CONFIG_CRYPTO_DEV_SAFEXCEL is not set # CONFIG_CRYPTO_DEV_CCREE is not set # CONFIG_CRYPTO_DEV_HISI_SEC is not set @@ -8361,7 +6199,6 @@ CONFIG_GENERIC_NET_UTILS=y # CONFIG_CORDIC is not set CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_STMP_DEVICE=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y CONFIG_INDIRECT_PIO=y From c10fa09adcc6f4ccfa0ba81fd267278f7a4395bf Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 12:40:55 -0700 Subject: [PATCH 008/132] Lines that work for ethernet Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/boot.scr | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr index 8c4cb30a..8a81c9d8 100644 --- a/mainboards/solidrun/honeycomblx2k/boot.scr +++ b/mainboards/solidrun/honeycomblx2k/boot.scr @@ -1,8 +1,9 @@ mmc read 0x80d00000 0x6800 0x800 -fsl_mc apply DPL 0x80d00000 +dhcp tftpboot ${kernel_addr_r} netbootkernel -tftpboot ${kernel_addr_r} lxSDK +fsl_mc apply DPL 0x80d00000 tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb -tftpboot ${fdt_addr_r} honeycombDTB bootefi ${kernel_addr_r} ${fdt_addr_r} +tftpboot ${kernel_addr_r} lxSDK +tftpboot ${fdt_addr_r} honeycombDTB From 965463409cb6f0ea6cd500a3b05397c05fdd0c12 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 12:59:32 -0700 Subject: [PATCH 009/132] Tweak boot.scr Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/boot.scr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr index 8a81c9d8..f3cdaa54 100644 --- a/mainboards/solidrun/honeycomblx2k/boot.scr +++ b/mainboards/solidrun/honeycomblx2k/boot.scr @@ -1,8 +1,8 @@ mmc read 0x80d00000 0x6800 0x800 dhcp tftpboot ${kernel_addr_r} netbootkernel -fsl_mc apply DPL 0x80d00000 tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb +fsl_mc apply DPL 0x80d00000 bootefi ${kernel_addr_r} ${fdt_addr_r} tftpboot ${kernel_addr_r} lxSDK From 7f823c79aa6af8cfee7ab9b389972692e7bfab3b Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 13:02:05 -0700 Subject: [PATCH 010/132] Prune some more stuff Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 352 ++---------------- 1 file changed, 22 insertions(+), 330 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index bb26db80..c6b807cd 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -171,11 +171,9 @@ CONFIG_INITRAMFS_COMPRESSION=".gz" CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_BPF=y CONFIG_EXPERT=y -CONFIG_UID16=y CONFIG_MULTIUSER=y # CONFIG_SGETMASK_SYSCALL is not set CONFIG_SYSFS_SYSCALL=y @@ -310,10 +308,8 @@ CONFIG_ARM64_ERRATUM_824069=y CONFIG_ARM64_ERRATUM_819472=y CONFIG_ARM64_ERRATUM_832075=y CONFIG_ARM64_ERRATUM_834220=y -CONFIG_ARM64_ERRATUM_845719=y CONFIG_ARM64_ERRATUM_843419=y CONFIG_ARM64_ERRATUM_1024718=y -CONFIG_ARM64_ERRATUM_1418040=y CONFIG_ARM64_ERRATUM_1165522=y CONFIG_ARM64_ERRATUM_1286807=y CONFIG_ARM64_ERRATUM_1463225=y @@ -374,9 +370,8 @@ CONFIG_PARAVIRT=y # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set CONFIG_KEXEC=y # CONFIG_KEXEC_FILE is not set -CONFIG_CRASH_DUMP=y -CONFIG_XEN_DOM0=y -CONFIG_XEN=y +# CONFIG_CRASH_DUMP is not set +# CONFIG_XEN is not set CONFIG_FORCE_MAX_ZONEORDER=11 CONFIG_UNMAP_KERNEL_AT_EL0=y CONFIG_HARDEN_BRANCH_PREDICTOR=y @@ -385,9 +380,7 @@ CONFIG_ARM64_SSBD=y CONFIG_RODATA_FULL_DEFAULT_ENABLED=y # CONFIG_ARM64_SW_TTBR0_PAN is not set CONFIG_ARM64_TAGGED_ADDR_ABI=y -CONFIG_COMPAT=y -CONFIG_KUSER_HELPERS=y -# CONFIG_ARMV8_DEPRECATED is not set +# CONFIG_COMPAT is not set # # ARMv8.1 architectural features @@ -413,8 +406,7 @@ CONFIG_ARM64_CNP=y CONFIG_ARM64_PTR_AUTH=y # end of ARMv8.3 architectural features -CONFIG_ARM64_SVE=y -CONFIG_ARM64_MODULE_PLTS=y +# CONFIG_ARM64_SVE is not set # CONFIG_ARM64_PSEUDO_NMI is not set CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y @@ -434,7 +426,6 @@ CONFIG_EFI=y CONFIG_DMI=y # end of Boot options -CONFIG_SYSVIPC_COMPAT=y CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y # @@ -649,7 +640,6 @@ CONFIG_CRYPTO_AES_ARM64_BS=y # CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y -# CONFIG_KPROBES is not set CONFIG_JUMP_LABEL=y # CONFIG_STATIC_KEYS_SELFTEST is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y @@ -680,7 +670,6 @@ CONFIG_HAVE_RCU_TABLE_FREE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_ARCH_STACKLEAK=y @@ -693,26 +682,19 @@ CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y CONFIG_HAVE_COPY_THREAD_TLS=y CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y CONFIG_64BIT_TIME=y -CONFIG_COMPAT_32BIT_TIME=y CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y CONFIG_REFCOUNT_FULL=y CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_ARCH_USE_MEMREMAP_PROT=y @@ -732,32 +714,20 @@ CONFIG_HAVE_GCC_PLUGINS=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -CONFIG_MODULE_FORCE_LOAD=y -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -CONFIG_MODVERSIONS=y -CONFIG_ASM_MODVERSIONS=y -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set +# CONFIG_MODULES is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLK_SCSI_REQUEST=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEV_BSGLIB=y -CONFIG_BLK_DEV_INTEGRITY=y +# CONFIG_BLK_DEV_INTEGRITY is not set # CONFIG_BLK_DEV_ZONED is not set -CONFIG_BLK_DEV_THROTTLING=y -# CONFIG_BLK_DEV_THROTTLING_LOW is not set +# CONFIG_BLK_DEV_THROTTLING is not set # CONFIG_BLK_CMDLINE_PARSER is not set # CONFIG_BLK_WBT is not set # CONFIG_BLK_CGROUP_IOLATENCY is not set # CONFIG_BLK_CGROUP_IOCOST is not set -CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_DEBUG_FS is not set # CONFIG_BLK_SED_OPAL is not set # @@ -768,7 +738,6 @@ CONFIG_MSDOS_PARTITION=y CONFIG_EFI_PARTITION=y # end of Partition Types -CONFIG_BLOCK_COMPAT=y CONFIG_BLK_MQ_PCI=y CONFIG_BLK_MQ_VIRTIO=y CONFIG_BLK_PM=y @@ -799,7 +768,6 @@ CONFIG_FREEZER=y # Executable file formats # CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y CONFIG_ELFCORE=y # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set CONFIG_BINFMT_SCRIPT=y @@ -861,7 +829,6 @@ CONFIG_ARCH_HAS_PTE_SPECIAL=y # end of Memory Management options CONFIG_NET=y -CONFIG_COMPAT_NETLINK_MESSAGES=y CONFIG_NET_INGRESS=y CONFIG_SKB_EXTENSIONS=y @@ -1323,7 +1290,6 @@ CONFIG_XPS=y # CONFIG_CGROUP_NET_CLASSID is not set CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y -CONFIG_BPF_JIT=y CONFIG_NET_FLOW_LIMIT=y # @@ -1407,7 +1373,6 @@ CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 # CONFIG_RFKILL is not set CONFIG_NET_9P=y CONFIG_NET_9P_VIRTIO=y -# CONFIG_NET_9P_XEN is not set # CONFIG_NET_9P_DEBUG is not set # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set @@ -1549,8 +1514,6 @@ CONFIG_DEV_COREDUMP=y # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_SYS_HYPERVISOR=y CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y CONFIG_SOC_BUS=y @@ -1578,7 +1541,6 @@ CONFIG_FSL_MC_UAPI_SUPPORT=y # CONFIG_CONNECTOR is not set # CONFIG_GNSS is not set CONFIG_MTD=y -# CONFIG_MTD_TESTS is not set # # Partition parsers @@ -1746,8 +1708,6 @@ CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=524288 # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set -CONFIG_XEN_BLKDEV_FRONTEND=y -# CONFIG_XEN_BLKDEV_BACKEND is not set CONFIG_VIRTIO_BLK=y # CONFIG_VIRTIO_BLK_SCSI is not set # CONFIG_BLK_DEV_RBD is not set @@ -1891,7 +1851,6 @@ CONFIG_BLK_DEV_SD=y # CONFIG_SCSI_ISCSI_ATTRS is not set CONFIG_SCSI_SAS_ATTRS=y CONFIG_SCSI_SAS_LIBSAS=y -CONFIG_SCSI_SAS_ATA=y CONFIG_SCSI_SAS_HOST_SMP=y # CONFIG_SCSI_SRP_ATTRS is not set # end of SCSI Transports @@ -1912,8 +1871,6 @@ CONFIG_SCSI_LOWLEVEL=y # CONFIG_SCSI_AIC7XXX is not set # CONFIG_SCSI_AIC79XX is not set # CONFIG_SCSI_AIC94XX is not set -CONFIG_SCSI_HISI_SAS=y -CONFIG_SCSI_HISI_SAS_PCI=y # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_MVUMI is not set # CONFIG_SCSI_ADVANSYS is not set @@ -1936,7 +1893,6 @@ CONFIG_SCSI_UFSHCD_PLATFORM=y # CONFIG_SCSI_HPTIOP is not set # CONFIG_SCSI_MYRB is not set # CONFIG_SCSI_MYRS is not set -# CONFIG_XEN_SCSI_FRONTEND is not set # CONFIG_SCSI_SNIC is not set # CONFIG_SCSI_DMX3191D is not set # CONFIG_SCSI_FDOMAIN_PCI is not set @@ -1946,7 +1902,6 @@ CONFIG_SCSI_UFSHCD_PLATFORM=y # CONFIG_SCSI_INIA100 is not set # CONFIG_SCSI_STEX is not set # CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set # CONFIG_SCSI_QLOGIC_1280 is not set # CONFIG_SCSI_QLA_ISCSI is not set # CONFIG_SCSI_DC395x is not set @@ -1960,139 +1915,8 @@ CONFIG_SCSI_UFSHCD_PLATFORM=y # end of SCSI device support CONFIG_HAVE_PATA_PLATFORM=y -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -# CONFIG_SATA_ZPODD is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -CONFIG_AHCI_CEVA=y -CONFIG_AHCI_XGENE=y -CONFIG_AHCI_QORIQ=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -CONFIG_SATA_SIL24=y -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_ATA_PIIX is not set -# CONFIG_SATA_DWC is not set -# CONFIG_SATA_MV is not set -# CONFIG_SATA_NV is not set -# CONFIG_SATA_PROMISE is not set -# CONFIG_SATA_SIL is not set -# CONFIG_SATA_SIS is not set -# CONFIG_SATA_SVW is not set -# CONFIG_SATA_ULI is not set -# CONFIG_SATA_VIA is not set -# CONFIG_SATA_VITESSE is not set - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -# CONFIG_PATA_HPT3X3 is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -# CONFIG_PATA_SIS is not set -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -CONFIG_PATA_PLATFORM=y -CONFIG_PATA_OF_PLATFORM=y -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -# CONFIG_ATA_GENERIC is not set -# CONFIG_PATA_LEGACY is not set -CONFIG_MD=y -CONFIG_BLK_DEV_MD=y -# CONFIG_MD_AUTODETECT is not set -# CONFIG_MD_LINEAR is not set -# CONFIG_MD_RAID0 is not set -# CONFIG_MD_RAID1 is not set -# CONFIG_MD_RAID10 is not set -# CONFIG_MD_RAID456 is not set -# CONFIG_MD_MULTIPATH is not set -# CONFIG_MD_FAULTY is not set -# CONFIG_BCACHE is not set -CONFIG_BLK_DEV_DM_BUILTIN=y -CONFIG_BLK_DEV_DM=y -# CONFIG_DM_DEBUG is not set -# CONFIG_DM_UNSTRIPED is not set -# CONFIG_DM_CRYPT is not set -# CONFIG_DM_SNAPSHOT is not set -# CONFIG_DM_THIN_PROVISIONING is not set -# CONFIG_DM_CACHE is not set -# CONFIG_DM_WRITECACHE is not set -# CONFIG_DM_ERA is not set -# CONFIG_DM_CLONE is not set -CONFIG_DM_MIRROR=y -# CONFIG_DM_LOG_USERSPACE is not set -# CONFIG_DM_RAID is not set -CONFIG_DM_ZERO=y -# CONFIG_DM_MULTIPATH is not set -# CONFIG_DM_DELAY is not set -# CONFIG_DM_DUST is not set -# CONFIG_DM_INIT is not set -# CONFIG_DM_UEVENT is not set -# CONFIG_DM_FLAKEY is not set -# CONFIG_DM_VERITY is not set -# CONFIG_DM_SWITCH is not set -# CONFIG_DM_LOG_WRITES is not set -# CONFIG_DM_INTEGRITY is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set # CONFIG_TARGET_CORE is not set # CONFIG_FUSION is not set @@ -2571,8 +2395,6 @@ CONFIG_WLAN_VENDOR_QUANTENNA=y # Enable WiMAX (Networking options) to see the WiMAX drivers # # CONFIG_WAN is not set -CONFIG_XEN_NETDEV_FRONTEND=y -# CONFIG_XEN_NETDEV_BACKEND is not set # CONFIG_VMXNET3 is not set # CONFIG_FUJITSU_ES is not set # CONFIG_NETDEVSIM is not set @@ -2756,7 +2578,6 @@ CONFIG_INPUT_MISC=y # CONFIG_INPUT_ADXL34X is not set # CONFIG_INPUT_IMS_PCU is not set # CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y # CONFIG_INPUT_SOC_BUTTON_ARRAY is not set # CONFIG_INPUT_DRV260X_HAPTICS is not set # CONFIG_INPUT_DRV2665_HAPTICS is not set @@ -2867,9 +2688,6 @@ CONFIG_SERIAL_DEV_BUS=y CONFIG_SERIAL_DEV_CTRL_TTYPORT=y # CONFIG_TTY_PRINTK is not set CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y # CONFIG_HVC_DCC is not set CONFIG_VIRTIO_CONSOLE=y CONFIG_IPMI_HANDLER=y @@ -2886,7 +2704,6 @@ CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set # CONFIG_HW_RANDOM_VIRTIO is not set CONFIG_HW_RANDOM_CAVIUM=y -CONFIG_HW_RANDOM_OPTEE=y # CONFIG_APPLICOM is not set # CONFIG_RAW_DRIVER is not set CONFIG_TCG_TPM=y @@ -2898,10 +2715,8 @@ CONFIG_TCG_TIS_I2C_INFINEON=y # CONFIG_TCG_TIS_I2C_NUVOTON is not set # CONFIG_TCG_ATMEL is not set # CONFIG_TCG_INFINEON is not set -# CONFIG_TCG_XEN is not set # CONFIG_TCG_CRB is not set # CONFIG_TCG_VTPM_PROXY is not set -# CONFIG_TCG_FTPM_TEE is not set # CONFIG_TCG_TIS_ST33ZP24_I2C is not set # CONFIG_TCG_TIS_ST33ZP24_SPI is not set CONFIG_DEVPORT=y @@ -3002,11 +2817,8 @@ CONFIG_I2C_RPBUS=y # Other I2C/SMBus bus drivers # CONFIG_I2C_CROS_EC_TUNNEL=y -CONFIG_XEN_I2C_FRONTEND=y -# CONFIG_XEN_I2C_BACKEND is not set # end of I2C Hardware Bus support -# CONFIG_I2C_STUB is not set CONFIG_I2C_SLAVE=y # CONFIG_I2C_SLAVE_EEPROM is not set # CONFIG_I2C_DEBUG_CORE is not set @@ -3049,7 +2861,6 @@ CONFIG_SPI_ROCKCHIP=y # SPI Protocol Masters # CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_LOOPBACK_TEST is not set # CONFIG_SPI_TLE62X0 is not set CONFIG_SPI_SLAVE=y CONFIG_SPI_SLAVE_TIME=y @@ -3458,7 +3269,6 @@ CONFIG_IMX2_WDT=y # CONFIG_ALIM7101_WDT is not set # CONFIG_I6300ESB_WDT is not set # CONFIG_MEN_A21_WDT is not set -# CONFIG_XEN_WDT is not set # # PCI-based Watchdog Cards @@ -3862,7 +3672,6 @@ CONFIG_DRM_MXSFB=y # CONFIG_TINYDRM_ST7586 is not set # CONFIG_TINYDRM_ST7735R is not set CONFIG_DRM_PL111=y -# CONFIG_DRM_XEN is not set CONFIG_DRM_LIMA=y CONFIG_DRM_PANFROST=y CONFIG_DRM_LEGACY=y @@ -3927,7 +3736,6 @@ CONFIG_FB_EFI=y # CONFIG_FB_UDL is not set # CONFIG_FB_IBM_GXT4500 is not set # CONFIG_FB_VIRTUAL is not set -CONFIG_XEN_FBDEV_FRONTEND=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_SIMPLE is not set @@ -4669,7 +4477,6 @@ CONFIG_DMA_ACPI=y CONFIG_DMA_OF=y # CONFIG_ALTERA_MSGDMA is not set # CONFIG_AMBA_PL08X is not set -CONFIG_BCM_SBA_RAID=y # CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set # CONFIG_DW_AXI_DMAC is not set CONFIG_FSL_EDMA=y @@ -4740,33 +4547,9 @@ CONFIG_VIRTIO_MMIO=y # # end of Microsoft Hyper-V guest support -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_SCRUB_PAGES_DEFAULT=y -CONFIG_XEN_DEV_EVTCHN=y -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=y -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=y -CONFIG_XEN_GRANT_DEV_ALLOC=y -# CONFIG_XEN_GRANT_DMA_ALLOC is not set -CONFIG_SWIOTLB_XEN=y -# CONFIG_XEN_PVCALLS_FRONTEND is not set -# CONFIG_XEN_PVCALLS_BACKEND is not set -CONFIG_XEN_PRIVCMD=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -# end of Xen driver support - # CONFIG_GREYBUS is not set CONFIG_STAGING=y # CONFIG_COMEDI is not set -# CONFIG_RTL8192U is not set -# CONFIG_RTLLIB is not set # CONFIG_R8712U is not set # CONFIG_RTS5208 is not set @@ -4847,7 +4630,6 @@ CONFIG_ION_CMA_HEAP=y # end of Android # CONFIG_STAGING_BOARD is not set -# CONFIG_LTE_GDM724X is not set # CONFIG_GS_FPGABOOT is not set # CONFIG_UNISYSSPAR is not set # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set @@ -4912,7 +4694,7 @@ CONFIG_FSL_USDPAA=y CONFIG_FSL_PPFE=y CONFIG_FSL_PPFE_UTIL_DISABLED=y # CONFIG_GOLDFISH is not set -CONFIG_MFD_CROS_EC=y +# CONFIG_MFD_CROS_EC is not set CONFIG_CHROME_PLATFORMS=y # CONFIG_CHROMEOS_TBMC is not set CONFIG_CROS_EC=y @@ -5622,29 +5404,9 @@ CONFIG_NVMEM_SYSFS=y # CONFIG_INTEL_TH is not set # end of HW tracing support -CONFIG_FPGA=y -# CONFIG_ALTERA_PR_IP_CORE is not set -# CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set -# CONFIG_FPGA_MGR_ALTERA_CVP is not set -# CONFIG_FPGA_MGR_XILINX_SPI is not set -# CONFIG_FPGA_MGR_ICE40_SPI is not set -# CONFIG_FPGA_MGR_MACHXO2_SPI is not set -CONFIG_FPGA_BRIDGE=y -CONFIG_ALTERA_FREEZE_BRIDGE=y -# CONFIG_XILINX_PR_DECOUPLER is not set -CONFIG_FPGA_REGION=y -CONFIG_OF_FPGA_REGION=y -# CONFIG_FPGA_DFL is not set +# CONFIG_FPGA is not set # CONFIG_FSI is not set -CONFIG_TEE=y - -# -# TEE drivers -# -CONFIG_OPTEE=y -CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 -# end of TEE drivers - +# CONFIG_TEE is not set CONFIG_MULTIPLEXER=y # @@ -5668,33 +5430,15 @@ CONFIG_PM_OPP=y # CONFIG_DCACHE_WORD_ACCESS=y # CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -CONFIG_EXT2_FS_XATTR=y -CONFIG_EXT2_FS_POSIX_ACL=y -# CONFIG_EXT2_FS_SECURITY is not set -CONFIG_EXT3_FS=y -CONFIG_EXT3_FS_POSIX_ACL=y -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set # CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set # CONFIG_XFS_FS is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set -CONFIG_BTRFS_FS=y -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_BTRFS_FS is not set # CONFIG_NILFS2_FS is not set # CONFIG_F2FS_FS is not set # CONFIG_FS_DAX is not set @@ -5712,22 +5456,17 @@ CONFIG_FANOTIFY=y CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y CONFIG_QUOTA=y # CONFIG_QUOTA_NETLINK_INTERFACE is not set -CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_PRINT_QUOTA_WARNING is not set # CONFIG_QUOTA_DEBUG is not set # CONFIG_QFMT_V1 is not set # CONFIG_QFMT_V2 is not set CONFIG_QUOTACTL=y -CONFIG_AUTOFS4_FS=y -CONFIG_AUTOFS_FS=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set CONFIG_FUSE_FS=y CONFIG_CUSE=y # CONFIG_VIRTIO_FS is not set -CONFIG_OVERLAY_FS=y -# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set -CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y -# CONFIG_OVERLAY_FS_INDEX is not set -# CONFIG_OVERLAY_FS_XINO_AUTO is not set -# CONFIG_OVERLAY_FS_METACOPY is not set +# CONFIG_OVERLAY_FS is not set # # Caches @@ -5759,8 +5498,6 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_PROC_CHILDREN=y @@ -5845,34 +5582,8 @@ CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" # CONFIG_UFS_FS is not set # CONFIG_EROFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set -CONFIG_NFS_V4=y -# CONFIG_NFS_SWAP is not set -CONFIG_NFS_V4_1=y -CONFIG_NFS_V4_2=y -CONFIG_PNFS_FILE_LAYOUT=y -CONFIG_PNFS_BLOCK=y -CONFIG_PNFS_FLEXFILE_LAYOUT=m -CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" -# CONFIG_NFS_V4_1_MIGRATION is not set -CONFIG_NFS_V4_SECURITY_LABEL=y -CONFIG_ROOT_NFS=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_FS is not set # CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -CONFIG_SUNRPC_GSS=y -CONFIG_SUNRPC_BACKCHANNEL=y -CONFIG_RPCSEC_GSS_KRB5=y -# CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES is not set -# CONFIG_SUNRPC_DEBUG is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set @@ -5939,7 +5650,6 @@ CONFIG_NLS_ISO8859_1=y # Security options # CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y # CONFIG_KEYS_REQUEST_CACHE is not set # CONFIG_PERSISTENT_KEYRINGS is not set # CONFIG_BIG_KEYS is not set @@ -5985,9 +5695,6 @@ CONFIG_INIT_STACK_NONE=y # end of Kernel hardening options # end of Security options -CONFIG_XOR_BLOCKS=y -CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y -CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y CONFIG_CRYPTO=y # @@ -6018,7 +5725,6 @@ CONFIG_CRYPTO_NULL2=y # CONFIG_CRYPTO_PCRYPT is not set CONFIG_CRYPTO_CRYPTD=y CONFIG_CRYPTO_AUTHENC=y -CONFIG_CRYPTO_TEST=m CONFIG_CRYPTO_SIMD=y CONFIG_CRYPTO_ENGINE=y @@ -6164,7 +5870,6 @@ CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y # CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 -CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=m CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set @@ -6188,8 +5893,6 @@ CONFIG_CRYPTO_DEV_VIRTIO=y # # Library routines # -CONFIG_RAID6_PQ=y -CONFIG_RAID6_PQ_BENCHMARK=y CONFIG_PACKING=y CONFIG_BITREVERSE=y CONFIG_HAVE_ARCH_BITREVERSE=y @@ -6220,7 +5923,6 @@ CONFIG_LIBCRC32C=y CONFIG_XXHASH=y CONFIG_AUDIT_GENERIC=y CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y -CONFIG_AUDIT_COMPAT_GENERIC=y # CONFIG_RANDOM32_SELFTEST is not set CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y @@ -6287,7 +5989,6 @@ CONFIG_IRQ_POLL=y CONFIG_MPILIB=y CONFIG_DIMLIB=y CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y @@ -6453,7 +6154,6 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_RBTREE_TEST is not set # CONFIG_REED_SOLOMON_TEST is not set # CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set # CONFIG_ATOMIC64_SELFTEST is not set # CONFIG_TEST_HEXDUMP is not set # CONFIG_TEST_STRING_HELPERS is not set @@ -6468,17 +6168,10 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_RHASHTABLE is not set # CONFIG_TEST_HASH is not set # CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_BLACKHOLE_DEV is not set # CONFIG_FIND_BIT_BENCHMARK is not set # CONFIG_TEST_FIRMWARE is not set # CONFIG_TEST_SYSCTL is not set # CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set # CONFIG_TEST_MEMCAT_P is not set # CONFIG_TEST_STACKINIT is not set # CONFIG_TEST_MEMINIT is not set @@ -6499,6 +6192,5 @@ CONFIG_PID_IN_CONTEXTIDR=y # CONFIG_DEBUG_WX is not set # CONFIG_DEBUG_ALIGN_RODATA is not set # CONFIG_DEBUG_EFI is not set -# CONFIG_ARM64_RELOC_TEST is not set # CONFIG_CORESIGHT is not set # end of Kernel hacking From 10a337e98c15a90c964acd79528fbeca683981c3 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 13:32:36 -0700 Subject: [PATCH 011/132] Tweaks Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 597 ++---------------- 1 file changed, 39 insertions(+), 558 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index c6b807cd..185a673a 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -128,8 +128,6 @@ CONFIG_GENERIC_SCHED_CLOCK=y CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y CONFIG_CGROUPS=y CONFIG_PAGE_COUNTER=y CONFIG_MEMCG=y @@ -161,13 +159,13 @@ CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" CONFIG_INITRAMFS_ROOT_UID=0 CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_INITRAMFS_COMPRESSION=".gz" +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".xz" CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y @@ -315,7 +313,6 @@ CONFIG_ARM64_ERRATUM_1286807=y CONFIG_ARM64_ERRATUM_1463225=y CONFIG_ARM64_ERRATUM_1542419=y CONFIG_CAVIUM_ERRATUM_22375=y -CONFIG_CAVIUM_ERRATUM_23144=y CONFIG_CAVIUM_ERRATUM_23154=y CONFIG_CAVIUM_ERRATUM_27456=y CONFIG_CAVIUM_ERRATUM_30115=y @@ -343,11 +340,7 @@ CONFIG_SCHED_MC=y # CONFIG_SCHED_SMT is not set CONFIG_NR_CPUS=16 CONFIG_HOTPLUG_CPU=y -CONFIG_NUMA=y -CONFIG_NODES_SHIFT=2 -CONFIG_USE_PERCPU_NUMA_NODE_ID=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NUMA is not set CONFIG_HOLES_IN_ZONE=y # CONFIG_HZ_100 is not set CONFIG_HZ_250=y @@ -359,14 +352,15 @@ CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_HAVE_ARCH_PFN_VALID=y CONFIG_HW_PERF_EVENTS=y CONFIG_SYS_SUPPORTS_HUGETLBFS=y CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_SECCOMP=y -CONFIG_PARAVIRT=y +# CONFIG_SECCOMP is not set +# CONFIG_PARAVIRT is not set # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set CONFIG_KEXEC=y # CONFIG_KEXEC_FILE is not set @@ -519,7 +513,6 @@ CONFIG_ARM_SCPI_POWER_DOMAIN=y # CONFIG_FIRMWARE_MEMMAP is not set CONFIG_DMIID=y # CONFIG_DMI_SYSFS is not set -# CONFIG_ISCSI_IBFT is not set # CONFIG_FW_CFG_SYSFS is not set CONFIG_HAVE_ARM_SMCCC=y CONFIG_ARM_PSCI_FW=y @@ -558,7 +551,7 @@ CONFIG_ACPI_CCA_REQUIRED=y CONFIG_ACPI_SPCR_TABLE=y # CONFIG_ACPI_EC_DEBUGFS is not set CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y +# CONFIG_ACPI_BATTERY is not set CONFIG_ACPI_BUTTON=y CONFIG_ACPI_FAN=y # CONFIG_ACPI_TAD is not set @@ -570,7 +563,6 @@ CONFIG_ACPI_PROCESSOR=y # CONFIG_ACPI_IPMI is not set CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_NUMA=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_TABLE_UPGRADE=y # CONFIG_ACPI_DEBUG is not set @@ -580,7 +572,6 @@ CONFIG_ACPI_HED=y # CONFIG_ACPI_CUSTOM_METHOD is not set # CONFIG_ACPI_BGRT is not set CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_HMAT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_ACPI_APEI=y CONFIG_ACPI_APEI_GHES=y @@ -671,7 +662,6 @@ CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_ARCH_STACKLEAK=y CONFIG_HAVE_STACKPROTECTOR=y CONFIG_CC_HAS_STACKPROTECTOR_NONE=y @@ -779,14 +769,13 @@ CONFIG_COREDUMP=y # Memory Management options # CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_FLATMEM_MANUAL is not set CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y CONFIG_HAVE_FAST_GUP=y CONFIG_ARCH_KEEP_MEMBLOCK=y CONFIG_MEMORY_ISOLATION=y @@ -829,7 +818,6 @@ CONFIG_ARCH_HAS_PTE_SPECIAL=y # end of Memory Management options CONFIG_NET=y -CONFIG_NET_INGRESS=y CONFIG_SKB_EXTENSIONS=y # @@ -843,7 +831,7 @@ CONFIG_UNIX_DIAG=y # CONFIG_TLS is not set CONFIG_XFRM=y CONFIG_XFRM_ALGO=y -CONFIG_XFRM_USER=y +# CONFIG_XFRM_USER is not set # CONFIG_XFRM_INTERFACE is not set # CONFIG_XFRM_SUB_POLICY is not set # CONFIG_XFRM_MIGRATE is not set @@ -863,12 +851,10 @@ CONFIG_NET_IP_TUNNEL=y # CONFIG_IP_MROUTE is not set # CONFIG_SYN_COOKIES is not set # CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y # CONFIG_NET_FOU is not set # CONFIG_NET_FOU_IP_TUNNELS is not set # CONFIG_INET_AH is not set -CONFIG_INET_ESP=y -# CONFIG_INET_ESP_OFFLOAD is not set +# CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set CONFIG_INET_TUNNEL=y CONFIG_INET_DIAG=y @@ -887,7 +873,6 @@ CONFIG_IPV6=y # CONFIG_INET6_ESP is not set # CONFIG_INET6_IPCOMP is not set # CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_ILA is not set # CONFIG_IPV6_VTI is not set CONFIG_IPV6_SIT=y # CONFIG_IPV6_SIT_6RD is not set @@ -901,250 +886,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y # CONFIG_NETWORK_SECMARK is not set CONFIG_NET_PTP_CLASSIFY=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y -CONFIG_BRIDGE_NETFILTER=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -CONFIG_NETFILTER_NETLINK=y -CONFIG_NETFILTER_FAMILY_BRIDGE=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -CONFIG_NF_CONNTRACK=y -CONFIG_NF_LOG_COMMON=y -# CONFIG_NF_LOG_NETDEV is not set -CONFIG_NF_CONNTRACK_MARK=y -# CONFIG_NF_CONNTRACK_ZONES is not set -CONFIG_NF_CONNTRACK_PROCFS=y -CONFIG_NF_CONNTRACK_EVENTS=y -# CONFIG_NF_CONNTRACK_TIMEOUT is not set -# CONFIG_NF_CONNTRACK_TIMESTAMP is not set -# CONFIG_NF_CONNTRACK_LABELS is not set -CONFIG_NF_CT_PROTO_DCCP=y -CONFIG_NF_CT_PROTO_SCTP=y -CONFIG_NF_CT_PROTO_UDPLITE=y -# CONFIG_NF_CONNTRACK_AMANDA is not set -# CONFIG_NF_CONNTRACK_FTP is not set -# CONFIG_NF_CONNTRACK_H323 is not set -# CONFIG_NF_CONNTRACK_IRC is not set -# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set -# CONFIG_NF_CONNTRACK_SNMP is not set -# CONFIG_NF_CONNTRACK_PPTP is not set -# CONFIG_NF_CONNTRACK_SANE is not set -# CONFIG_NF_CONNTRACK_SIP is not set -# CONFIG_NF_CONNTRACK_TFTP is not set -# CONFIG_NF_CT_NETLINK is not set -CONFIG_NF_NAT=y -CONFIG_NF_NAT_MASQUERADE=y -CONFIG_NF_TABLES=y -# CONFIG_NF_TABLES_SET is not set -# CONFIG_NF_TABLES_INET is not set -# CONFIG_NF_TABLES_NETDEV is not set -# CONFIG_NFT_NUMGEN is not set -CONFIG_NFT_CT=y -# CONFIG_NFT_COUNTER is not set -# CONFIG_NFT_CONNLIMIT is not set -# CONFIG_NFT_LOG is not set -# CONFIG_NFT_LIMIT is not set -CONFIG_NFT_MASQ=y -# CONFIG_NFT_REDIR is not set -CONFIG_NFT_NAT=y -# CONFIG_NFT_TUNNEL is not set -# CONFIG_NFT_OBJREF is not set -# CONFIG_NFT_QUOTA is not set -# CONFIG_NFT_REJECT is not set -CONFIG_NFT_COMPAT=y -# CONFIG_NFT_HASH is not set -# CONFIG_NFT_XFRM is not set -# CONFIG_NFT_SOCKET is not set -# CONFIG_NFT_OSF is not set -# CONFIG_NFT_TPROXY is not set -# CONFIG_NFT_SYNPROXY is not set -# CONFIG_NF_FLOW_TABLE is not set -CONFIG_NETFILTER_XTABLES=y - -# -# Xtables combined modules -# -# CONFIG_NETFILTER_XT_MARK is not set -CONFIG_NETFILTER_XT_CONNMARK=y - -# -# Xtables targets -# -# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set -CONFIG_NETFILTER_XT_TARGET_CHECKSUM=y -# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set -CONFIG_NETFILTER_XT_TARGET_CONNMARK=y -# CONFIG_NETFILTER_XT_TARGET_DSCP is not set -# CONFIG_NETFILTER_XT_TARGET_HL is not set -# CONFIG_NETFILTER_XT_TARGET_HMARK is not set -# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set -CONFIG_NETFILTER_XT_TARGET_LOG=y -# CONFIG_NETFILTER_XT_TARGET_MARK is not set -CONFIG_NETFILTER_XT_NAT=y -# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set -# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set -# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set -# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set -# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set -CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y -# CONFIG_NETFILTER_XT_TARGET_TEE is not set -# CONFIG_NETFILTER_XT_TARGET_TPROXY is not set -# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set -# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set - -# -# Xtables matches -# -CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y -# CONFIG_NETFILTER_XT_MATCH_BPF is not set -# CONFIG_NETFILTER_XT_MATCH_CGROUP is not set -# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set -CONFIG_NETFILTER_XT_MATCH_COMMENT=y -# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set -# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set -# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set -# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set -CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y -# CONFIG_NETFILTER_XT_MATCH_CPU is not set -# CONFIG_NETFILTER_XT_MATCH_DCCP is not set -# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set -# CONFIG_NETFILTER_XT_MATCH_DSCP is not set -# CONFIG_NETFILTER_XT_MATCH_ECN is not set -# CONFIG_NETFILTER_XT_MATCH_ESP is not set -# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set -# CONFIG_NETFILTER_XT_MATCH_HELPER is not set -# CONFIG_NETFILTER_XT_MATCH_HL is not set -# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set -# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set -# CONFIG_NETFILTER_XT_MATCH_L2TP is not set -# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set -# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set -# CONFIG_NETFILTER_XT_MATCH_MAC is not set -# CONFIG_NETFILTER_XT_MATCH_MARK is not set -# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set -# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set -# CONFIG_NETFILTER_XT_MATCH_OSF is not set -# CONFIG_NETFILTER_XT_MATCH_OWNER is not set -# CONFIG_NETFILTER_XT_MATCH_POLICY is not set -# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set -# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set -# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set -# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set -# CONFIG_NETFILTER_XT_MATCH_REALM is not set -# CONFIG_NETFILTER_XT_MATCH_RECENT is not set -# CONFIG_NETFILTER_XT_MATCH_SCTP is not set -# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set -# CONFIG_NETFILTER_XT_MATCH_STATE is not set -# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set -# CONFIG_NETFILTER_XT_MATCH_STRING is not set -# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set -# CONFIG_NETFILTER_XT_MATCH_TIME is not set -# CONFIG_NETFILTER_XT_MATCH_U32 is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -CONFIG_NF_DEFRAG_IPV4=y -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -CONFIG_NF_TABLES_IPV4=y -# CONFIG_NFT_DUP_IPV4 is not set -# CONFIG_NFT_FIB_IPV4 is not set -# CONFIG_NF_TABLES_ARP is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -CONFIG_NF_LOG_IPV4=y -CONFIG_NF_REJECT_IPV4=y -CONFIG_IP_NF_IPTABLES=y -# CONFIG_IP_NF_MATCH_AH is not set -# CONFIG_IP_NF_MATCH_ECN is not set -# CONFIG_IP_NF_MATCH_RPFILTER is not set -# CONFIG_IP_NF_MATCH_TTL is not set -CONFIG_IP_NF_FILTER=y -CONFIG_IP_NF_TARGET_REJECT=y -# CONFIG_IP_NF_TARGET_SYNPROXY is not set -CONFIG_IP_NF_NAT=y -CONFIG_IP_NF_TARGET_MASQUERADE=y -# CONFIG_IP_NF_TARGET_NETMAP is not set -# CONFIG_IP_NF_TARGET_REDIRECT is not set -CONFIG_IP_NF_MANGLE=y -# CONFIG_IP_NF_TARGET_CLUSTERIP is not set -# CONFIG_IP_NF_TARGET_ECN is not set -# CONFIG_IP_NF_TARGET_TTL is not set -# CONFIG_IP_NF_RAW is not set -# CONFIG_IP_NF_SECURITY is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_TABLES_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -CONFIG_NF_REJECT_IPV6=y -CONFIG_NF_LOG_IPV6=y -CONFIG_IP6_NF_IPTABLES=y -# CONFIG_IP6_NF_MATCH_AH is not set -# CONFIG_IP6_NF_MATCH_EUI64 is not set -# CONFIG_IP6_NF_MATCH_FRAG is not set -# CONFIG_IP6_NF_MATCH_OPTS is not set -# CONFIG_IP6_NF_MATCH_HL is not set -# CONFIG_IP6_NF_MATCH_IPV6HEADER is not set -# CONFIG_IP6_NF_MATCH_MH is not set -# CONFIG_IP6_NF_MATCH_RPFILTER is not set -# CONFIG_IP6_NF_MATCH_RT is not set -# CONFIG_IP6_NF_MATCH_SRH is not set -# CONFIG_IP6_NF_TARGET_HL is not set -CONFIG_IP6_NF_FILTER=y -CONFIG_IP6_NF_TARGET_REJECT=y -# CONFIG_IP6_NF_TARGET_SYNPROXY is not set -CONFIG_IP6_NF_MANGLE=y -# CONFIG_IP6_NF_RAW is not set -# CONFIG_IP6_NF_SECURITY is not set -CONFIG_IP6_NF_NAT=y -CONFIG_IP6_NF_TARGET_MASQUERADE=y -# CONFIG_IP6_NF_TARGET_NPT is not set -# end of IPv6: Netfilter Configuration - -CONFIG_NF_DEFRAG_IPV6=y -CONFIG_NF_TABLES_BRIDGE=y -# CONFIG_NFT_BRIDGE_META is not set -# CONFIG_NF_LOG_BRIDGE is not set -# CONFIG_NF_CONNTRACK_BRIDGE is not set -CONFIG_BRIDGE_NF_EBTABLES=y -# CONFIG_BRIDGE_EBT_BROUTE is not set -# CONFIG_BRIDGE_EBT_T_FILTER is not set -CONFIG_BRIDGE_EBT_T_NAT=y -# CONFIG_BRIDGE_EBT_802_3 is not set -# CONFIG_BRIDGE_EBT_AMONG is not set -# CONFIG_BRIDGE_EBT_ARP is not set -# CONFIG_BRIDGE_EBT_IP is not set -# CONFIG_BRIDGE_EBT_IP6 is not set -# CONFIG_BRIDGE_EBT_LIMIT is not set -# CONFIG_BRIDGE_EBT_MARK is not set -# CONFIG_BRIDGE_EBT_PKTTYPE is not set -# CONFIG_BRIDGE_EBT_STP is not set -# CONFIG_BRIDGE_EBT_VLAN is not set -# CONFIG_BRIDGE_EBT_ARPREPLY is not set -CONFIG_BRIDGE_EBT_DNAT=y -# CONFIG_BRIDGE_EBT_MARK_T is not set -# CONFIG_BRIDGE_EBT_REDIRECT is not set -CONFIG_BRIDGE_EBT_SNAT=y -# CONFIG_BRIDGE_EBT_LOG is not set -# CONFIG_BRIDGE_EBT_NFLOG is not set +# CONFIG_NETFILTER is not set # CONFIG_BPFILTER is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set @@ -1152,127 +894,24 @@ CONFIG_BRIDGE_EBT_SNAT=y # CONFIG_TIPC is not set # CONFIG_ATM is not set # CONFIG_L2TP is not set -CONFIG_STP=y -CONFIG_GARP=y -CONFIG_MRP=y -CONFIG_BRIDGE=y -CONFIG_BRIDGE_IGMP_SNOOPING=y -CONFIG_BRIDGE_VLAN_FILTERING=y +# CONFIG_BRIDGE is not set CONFIG_HAVE_NET_DSA=y -CONFIG_NET_DSA=y -# CONFIG_NET_DSA_TAG_8021Q is not set -# CONFIG_NET_DSA_TAG_BRCM is not set -# CONFIG_NET_DSA_TAG_BRCM_PREPEND is not set -# CONFIG_NET_DSA_TAG_GSWIP is not set -# CONFIG_NET_DSA_TAG_DSA is not set -# CONFIG_NET_DSA_TAG_EDSA is not set -# CONFIG_NET_DSA_TAG_MTK is not set -# CONFIG_NET_DSA_TAG_KSZ is not set -CONFIG_NET_DSA_TAG_OCELOT=y -# CONFIG_NET_DSA_TAG_QCA is not set -# CONFIG_NET_DSA_TAG_LAN9303 is not set -# CONFIG_NET_DSA_TAG_SJA1105 is not set -# CONFIG_NET_DSA_TAG_TRAILER is not set +# CONFIG_NET_DSA is not set CONFIG_VLAN_8021Q=y -CONFIG_VLAN_8021Q_GVRP=y -CONFIG_VLAN_8021Q_MVRP=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_VLAN_8021Q_MVRP is not set # CONFIG_DECNET is not set -CONFIG_LLC=y -CONFIG_LLC2=y +# CONFIG_LLC2 is not set # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_PHONET is not set # CONFIG_6LOWPAN is not set # CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -CONFIG_NET_SCH_MULTIQ=y -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -CONFIG_NET_SCH_MQPRIO=y -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_INGRESS is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -CONFIG_NET_CLS_BASIC=y -CONFIG_NET_CLS_TCINDEX=y -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -CONFIG_NET_CLS_U32=y -# CONFIG_CLS_U32_PERF is not set -# CONFIG_CLS_U32_MARK is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -CONFIG_NET_CLS_FLOWER=y -# CONFIG_NET_CLS_MATCHALL is not set -CONFIG_NET_EMATCH=y -CONFIG_NET_EMATCH_STACK=32 -# CONFIG_NET_EMATCH_CMP is not set -# CONFIG_NET_EMATCH_NBYTE is not set -CONFIG_NET_EMATCH_U32=y -# CONFIG_NET_EMATCH_META is not set -# CONFIG_NET_EMATCH_TEXT is not set -# CONFIG_NET_EMATCH_CANID is not set -# CONFIG_NET_EMATCH_IPT is not set -CONFIG_NET_CLS_ACT=y -# CONFIG_NET_ACT_POLICE is not set -# CONFIG_NET_ACT_GACT is not set -# CONFIG_NET_ACT_MIRRED is not set -# CONFIG_NET_ACT_SAMPLE is not set -# CONFIG_NET_ACT_IPT is not set -# CONFIG_NET_ACT_NAT is not set -CONFIG_NET_ACT_PEDIT=y -# CONFIG_NET_ACT_SIMP is not set -CONFIG_NET_ACT_SKBEDIT=y -# CONFIG_NET_ACT_CSUM is not set -# CONFIG_NET_ACT_MPLS is not set -CONFIG_NET_ACT_VLAN=y -# CONFIG_NET_ACT_BPF is not set -# CONFIG_NET_ACT_CONNMARK is not set -# CONFIG_NET_ACT_CTINFO is not set -CONFIG_NET_ACT_SKBMOD=y -# CONFIG_NET_ACT_IFE is not set -# CONFIG_NET_ACT_TUNNEL_KEY is not set -# CONFIG_NET_ACT_CT is not set -# CONFIG_NET_TC_SKB_EXT is not set -CONFIG_NET_SCH_FIFO=y +# CONFIG_NET_SCHED is not set # CONFIG_DCB is not set -CONFIG_TSN=y -CONFIG_DNS_RESOLVER=y +# CONFIG_TSN is not set +# CONFIG_DNS_RESOLVER is not set # CONFIG_BATMAN_ADV is not set # CONFIG_OPENVSWITCH is not set # CONFIG_VSOCKETS is not set @@ -1280,7 +919,7 @@ CONFIG_NETLINK_DIAG=y # CONFIG_MPLS is not set # CONFIG_NET_NSH is not set # CONFIG_HSR is not set -CONFIG_NET_SWITCHDEV=y +# CONFIG_NET_SWITCHDEV is not set # CONFIG_NET_L3_MASTER_DEV is not set # CONFIG_NET_NCSI is not set CONFIG_RPS=y @@ -1300,55 +939,7 @@ CONFIG_NET_PKTGEN=y # end of Networking options # CONFIG_HAMRADIO is not set -CONFIG_CAN=y -CONFIG_CAN_RAW=y -CONFIG_CAN_BCM=y -CONFIG_CAN_GW=y -# CONFIG_CAN_J1939 is not set - -# -# CAN Device Drivers -# -# CONFIG_CAN_VCAN is not set -# CONFIG_CAN_VXCAN is not set -# CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=y -CONFIG_CAN_CALC_BITTIMING=y -CONFIG_CAN_FLEXCAN=y -# CONFIG_CAN_GRCAN is not set -# CONFIG_CAN_KVASER_PCIEFD is not set -# CONFIG_CAN_XILINXCAN is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -# CONFIG_CAN_PEAK_PCIEFD is not set -# CONFIG_CAN_SJA1000 is not set -# CONFIG_CAN_SOFTING is not set - -# -# CAN SPI interfaces -# -# CONFIG_CAN_HI311X is not set -# CONFIG_CAN_MCP251X is not set -# end of CAN SPI interfaces - -# -# CAN USB interfaces -# -# CONFIG_CAN_8DEV_USB is not set -# CONFIG_CAN_EMS_USB is not set -# CONFIG_CAN_ESD_USB2 is not set -# CONFIG_CAN_GS_USB is not set -# CONFIG_CAN_KVASER_USB is not set -# CONFIG_CAN_MCBA_USB is not set -# CONFIG_CAN_PEAK_USB is not set -# CONFIG_CAN_UCAN is not set -# end of CAN USB interfaces - -# CONFIG_CAN_DEBUG_DEVICES is not set -# end of CAN Device Drivers - +# CONFIG_CAN is not set # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set @@ -1397,7 +988,6 @@ CONFIG_PCI_DOMAINS=y CONFIG_PCI_DOMAINS_GENERIC=y CONFIG_PCI_SYSCALL=y CONFIG_PCIEPORTBUS=y -# CONFIG_HOTPLUG_PCI_PCIE is not set CONFIG_PCIEAER=y # CONFIG_PCIEAER_INJECT is not set # CONFIG_PCIE_ECRC is not set @@ -1415,20 +1005,13 @@ CONFIG_PCI_MSI=y CONFIG_PCI_MSI_IRQ_DOMAIN=y CONFIG_PCI_QUIRKS=y # CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set # CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y CONFIG_PCI_ECAM=y -CONFIG_PCI_IOV=y +# CONFIG_PCI_IOV is not set # CONFIG_PCI_PRI is not set # CONFIG_PCI_PASID is not set CONFIG_PCI_LABEL=y -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set +# CONFIG_HOTPLUG_PCI is not set # # PCI controller drivers @@ -1683,7 +1266,6 @@ CONFIG_OF_NET=y CONFIG_OF_MDIO=y CONFIG_OF_RESERVED_MEM=y # CONFIG_OF_OVERLAY is not set -CONFIG_OF_NUMA=y # CONFIG_PARPORT is not set CONFIG_PNP=y CONFIG_PNP_DEBUG_MESSAGES=y @@ -1700,27 +1282,21 @@ CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 # CONFIG_BLK_DEV_CRYPTOLOOP is not set # CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=y +# CONFIG_BLK_DEV_NBD is not set # CONFIG_BLK_DEV_SKD is not set # CONFIG_BLK_DEV_SX8 is not set -CONFIG_BLK_DEV_RAM=y -CONFIG_BLK_DEV_RAM_COUNT=16 -CONFIG_BLK_DEV_RAM_SIZE=524288 +# CONFIG_BLK_DEV_RAM is not set # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set -CONFIG_VIRTIO_BLK=y -# CONFIG_VIRTIO_BLK_SCSI is not set +# CONFIG_VIRTIO_BLK is not set # CONFIG_BLK_DEV_RBD is not set # CONFIG_BLK_DEV_RSXX is not set # # NVME Support # -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y -# CONFIG_NVME_MULTIPATH is not set +# CONFIG_BLK_DEV_NVME is not set # CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set # CONFIG_NVME_TARGET is not set # end of NVME Support @@ -1746,7 +1322,7 @@ CONFIG_SENSORS_FXAS2100X=y # CONFIG_DS1682 is not set # CONFIG_LATTICE_ECP3_CONFIG is not set CONFIG_SRAM=y -CONFIG_VEXPRESS_SYSCFG=y +# CONFIG_VEXPRESS_SYSCFG is not set # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_XILINX_SDFEC is not set # CONFIG_PVPANIC is not set @@ -1826,7 +1402,7 @@ CONFIG_EEPROM_AT25=y # SCSI device support # CONFIG_SCSI_MOD=y -CONFIG_RAID_ATTRS=y +# CONFIG_RAID_ATTRS is not set CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_PROC_FS is not set @@ -1855,62 +1431,7 @@ CONFIG_SCSI_SAS_HOST_SMP=y # CONFIG_SCSI_SRP_ATTRS is not set # end of SCSI Transports -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -CONFIG_SCSI_MPT3SAS=y -CONFIG_SCSI_MPT2SAS_MAX_SGE=128 -CONFIG_SCSI_MPT3SAS_MAX_SGE=128 -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -CONFIG_SCSI_UFSHCD=y -# CONFIG_SCSI_UFSHCD_PCI is not set -CONFIG_SCSI_UFSHCD_PLATFORM=y -# CONFIG_SCSI_UFS_CDNS_PLATFORM is not set -# CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set -# CONFIG_SCSI_UFS_BSG is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_VIRTIO is not set +# CONFIG_SCSI_LOWLEVEL is not set # CONFIG_SCSI_DH is not set # end of SCSI device support @@ -1934,12 +1455,11 @@ CONFIG_NET_CORE=y # CONFIG_DUMMY is not set # CONFIG_EQUALIZER is not set # CONFIG_NET_FC is not set -# CONFIG_IFB is not set # CONFIG_NET_TEAM is not set CONFIG_MACVLAN=y CONFIG_MACVTAP=y # CONFIG_IPVLAN is not set -CONFIG_VXLAN=y +# CONFIG_VXLAN is not set # CONFIG_GENEVE is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set @@ -1947,8 +1467,8 @@ CONFIG_VXLAN=y CONFIG_TUN=y CONFIG_TAP=y # CONFIG_TUN_VNET_CROSS_LE is not set -CONFIG_VETH=y -CONFIG_VIRTIO_NET=y +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set # CONFIG_NLMON is not set # CONFIG_ARCNET is not set @@ -1959,33 +1479,12 @@ CONFIG_VIRTIO_NET=y # # Distributed Switch Architecture drivers # -# CONFIG_B53 is not set -# CONFIG_NET_DSA_BCM_SF2 is not set -# CONFIG_NET_DSA_LOOP is not set -# CONFIG_NET_DSA_LANTIQ_GSWIP is not set -# CONFIG_NET_DSA_MT7530 is not set -# CONFIG_NET_DSA_MV88E6060 is not set -# CONFIG_NET_DSA_MICROCHIP_KSZ9477 is not set -# CONFIG_NET_DSA_MICROCHIP_KSZ8795 is not set -# CONFIG_NET_DSA_MV88E6XXX is not set -CONFIG_NET_DSA_MSCC_FELIX=y -CONFIG_MSCC_FELIX_SWITCH_TSN=y -# CONFIG_NET_DSA_SJA1105 is not set -# CONFIG_NET_DSA_QCA8K is not set -# CONFIG_NET_DSA_REALTEK_SMI is not set -# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set -# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set -# CONFIG_NET_DSA_VITESSE_VSC73XX_SPI is not set -# CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM is not set # end of Distributed Switch Architecture drivers CONFIG_ETHERNET=y CONFIG_MDIO=y -CONFIG_NET_VENDOR_3COM=y -# CONFIG_VORTEX is not set -# CONFIG_TYPHOON is not set -CONFIG_NET_VENDOR_ADAPTEC=y -# CONFIG_ADAPTEC_STARFIRE is not set +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set CONFIG_NET_VENDOR_AGERE=y # CONFIG_ET131X is not set CONFIG_NET_VENDOR_ALACRITECH=y @@ -2017,7 +1516,6 @@ CONFIG_NET_VENDOR_BROADCOM=y # CONFIG_CNIC is not set # CONFIG_TIGON3 is not set CONFIG_BNX2X=y -CONFIG_BNX2X_SRIOV=y # CONFIG_SYSTEMPORT is not set # CONFIG_BNXT is not set CONFIG_NET_VENDOR_BROCADE=y @@ -2084,7 +1582,6 @@ CONFIG_FSL_FM_RX_EXTRA_HEADROOM=64 CONFIG_FSL_SDK_DPAA_ETH=y # CONFIG_FSL_DPAA_HOOKS is not set -# CONFIG_FSL_DPAA_CEETM is not set CONFIG_FSL_DPAA_OFFLINE_PORTS=y CONFIG_FSL_DPAA_ADVANCED_DRIVERS=y # CONFIG_FSL_DPAA_ETH_JUMBO_FRAME is not set @@ -2100,13 +1597,11 @@ CONFIG_FSL_DPAA_ETH_DEBUGFS=y # CONFIG_FSL_DPAA_DBG_LOOP is not set CONFIG_FSL_DPAA2_ETH=y # CONFIG_FSL_DPAA2_ETH_USE_ERR_QUEUE is not set -# CONFIG_FSL_DPAA2_ETH_CEETM is not set CONFIG_FSL_DPAA2_PTP_CLOCK=y CONFIG_FSL_ENETC=y CONFIG_FSL_ENETC_VF=y CONFIG_FSL_ENETC_MDIO=y CONFIG_FSL_ENETC_PTP_CLOCK=y -CONFIG_ENETC_TSN=y CONFIG_NET_VENDOR_GOOGLE=y # CONFIG_GVE is not set CONFIG_NET_VENDOR_HISILICON=y @@ -2159,9 +1654,7 @@ CONFIG_MLX5_CORE_EN=y CONFIG_MLX5_EN_ARFS=y CONFIG_MLX5_EN_RXNFC=y CONFIG_MLX5_MPFS=y -CONFIG_MLX5_ESWITCH=y # CONFIG_MLX5_CORE_IPOIB is not set -CONFIG_MLX5_SW_STEERING=y # CONFIG_MLXSW_CORE is not set CONFIG_MLXFW=y CONFIG_NET_VENDOR_MICREL=y @@ -2174,8 +1667,6 @@ CONFIG_NET_VENDOR_MICROCHIP=y # CONFIG_ENCX24J600 is not set # CONFIG_LAN743X is not set CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_MSCC_OCELOT_SWITCH=y -# CONFIG_MSCC_OCELOT_SWITCH_OCELOT is not set CONFIG_NET_VENDOR_MYRI=y # CONFIG_MYRI10GE is not set # CONFIG_FEALNX is not set @@ -2218,7 +1709,6 @@ CONFIG_NET_VENDOR_REALTEK=y # CONFIG_R8169 is not set CONFIG_NET_VENDOR_RENESAS=y CONFIG_NET_VENDOR_ROCKER=y -# CONFIG_ROCKER is not set CONFIG_NET_VENDOR_SAMSUNG=y # CONFIG_SXGBE_ETH is not set CONFIG_NET_VENDOR_SEEQ=y @@ -2272,14 +1762,12 @@ CONFIG_MDIO_CAVIUM=y # CONFIG_MDIO_MSCC_MIIM is not set # CONFIG_MDIO_OCTEON is not set CONFIG_MDIO_THUNDER=y -CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y # # MII PHY device drivers # -# CONFIG_SFP is not set # CONFIG_ADIN_PHY is not set # CONFIG_AMD_PHY is not set CONFIG_AQUANTIA_PHY=y @@ -4635,7 +4123,6 @@ CONFIG_ION_CMA_HEAP=y # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set # CONFIG_FB_TFT is not set CONFIG_FSL_DPAA2=y -CONFIG_FSL_DPAA2_ETHSW=y CONFIG_FSL_DPAA2_MAC=y # CONFIG_FSL_DPAA2_MAC_NETDEVS is not set CONFIG_FSL_DPAA2_EVB=y @@ -5928,7 +5415,6 @@ CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y CONFIG_ZSTD_COMPRESS=y CONFIG_ZSTD_DECOMPRESS=y CONFIG_XZ_DEC=y @@ -5940,12 +5426,7 @@ CONFIG_XZ_DEC_ARMTHUMB=y CONFIG_XZ_DEC_SPARC=y CONFIG_XZ_DEC_BCJ=y # CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y From afd148c1afec1ecf531181a161cdf5ae4e30b1e5 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 13:52:22 -0700 Subject: [PATCH 012/132] More removals Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 374 +----------------- 1 file changed, 17 insertions(+), 357 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 185a673a..484f3aa8 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -810,7 +810,6 @@ CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set # CONFIG_IDLE_PAGE_TRACKING is not set CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_HMM_MIRROR=y # CONFIG_PERCPU_STATS is not set # CONFIG_GUP_BENCHMARK is not set # CONFIG_READ_ONLY_THP_FOR_FS is not set @@ -1091,9 +1090,7 @@ CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y # CONFIG_FW_LOADER_COMPRESS is not set # end of Firmware loader -CONFIG_WANT_DEV_COREDUMP=y CONFIG_ALLOW_DEV_COREDUMP=y -CONFIG_DEV_COREDUMP=y # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set @@ -1940,7 +1937,6 @@ CONFIG_KEYBOARD_GPIO=y # CONFIG_KEYBOARD_OMAP4 is not set # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set # CONFIG_KEYBOARD_XTKBD is not set -CONFIG_KEYBOARD_CROS_EC=y # CONFIG_KEYBOARD_CAP11XX is not set # CONFIG_KEYBOARD_BCM is not set CONFIG_INPUT_MOUSE=y @@ -2304,7 +2300,6 @@ CONFIG_I2C_RPBUS=y # # Other I2C/SMBus bus drivers # -CONFIG_I2C_CROS_EC_TUNNEL=y # end of I2C Hardware Bus support CONFIG_I2C_SLAVE=y @@ -2528,7 +2523,6 @@ CONFIG_BATTERY_BQ27XXX_I2C=y # CONFIG_CHARGER_SMB347 is not set # CONFIG_BATTERY_GAUGE_LTC2941 is not set # CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_CROS_USBPD is not set # CONFIG_CHARGER_UCS1002 is not set CONFIG_HWMON=y # CONFIG_HWMON_DEBUG_CHIP is not set @@ -2788,7 +2782,6 @@ CONFIG_MFD_CORE=y CONFIG_MFD_BD9571MWV=y CONFIG_MFD_AXP20X=y CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_CROS_EC_DEV=y # CONFIG_MFD_MADERA is not set # CONFIG_PMIC_DA903X is not set # CONFIG_MFD_DA9052_SPI is not set @@ -2943,335 +2936,50 @@ CONFIG_REGULATOR_S2MPS11=y # CONFIG_REGULATOR_TPS6524X is not set CONFIG_REGULATOR_VCTRL=y # CONFIG_REGULATOR_VEXPRESS is not set -CONFIG_CEC_CORE=y -CONFIG_CEC_NOTIFIER=y -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -# CONFIG_LIRC is not set -CONFIG_RC_DECODERS=y -# CONFIG_IR_NEC_DECODER is not set -# CONFIG_IR_RC5_DECODER is not set -# CONFIG_IR_RC6_DECODER is not set -# CONFIG_IR_JVC_DECODER is not set -# CONFIG_IR_SONY_DECODER is not set -# CONFIG_IR_SANYO_DECODER is not set -# CONFIG_IR_SHARP_DECODER is not set -# CONFIG_IR_MCE_KBD_DECODER is not set -# CONFIG_IR_XMP_DECODER is not set -# CONFIG_IR_IMON_DECODER is not set -# CONFIG_IR_RCMM_DECODER is not set -CONFIG_RC_DEVICES=y -# CONFIG_RC_ATI_REMOTE is not set -# CONFIG_IR_ENE is not set -# CONFIG_IR_HIX5HD2 is not set -# CONFIG_IR_IMON is not set -# CONFIG_IR_IMON_RAW is not set -# CONFIG_IR_MCEUSB is not set -# CONFIG_IR_ITE_CIR is not set -# CONFIG_IR_FINTEK is not set -# CONFIG_IR_NUVOTON is not set -# CONFIG_IR_REDRAT3 is not set -# CONFIG_IR_STREAMZAP is not set -# CONFIG_IR_IGORPLUGUSB is not set -# CONFIG_IR_IGUANA is not set -# CONFIG_IR_TTUSBIR is not set -# CONFIG_RC_LOOPBACK is not set -# CONFIG_IR_GPIO_CIR is not set -# CONFIG_IR_SERIAL is not set -# CONFIG_IR_SIR is not set -# CONFIG_RC_XBOX_DVD is not set +# CONFIG_RC_CORE is not set # CONFIG_MEDIA_SUPPORT is not set # # Graphics support # -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_DRM=y -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -# CONFIG_DRM_DEBUG_SELFTEST is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +# CONFIG_VGA_ARB is not set +# CONFIG_DRM is not set # CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_TTM=y -CONFIG_DRM_GEM_CMA_HELPER=y -CONFIG_DRM_KMS_CMA_HELPER=y -CONFIG_DRM_GEM_SHMEM_HELPER=y -CONFIG_DRM_VM=y -CONFIG_DRM_SCHED=y - -# -# I2C encoder or helper chips -# -CONFIG_DRM_I2C_CH7006=y -CONFIG_DRM_I2C_SIL164=y -CONFIG_DRM_I2C_NXP_TDA998X=y -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips # # ARM devices # -# CONFIG_DRM_HDLCD is not set -CONFIG_DRM_MALI_DISPLAY=y -# CONFIG_DRM_KOMEDA is not set # end of ARM devices -# CONFIG_DRM_RADEON is not set -CONFIG_DRM_AMDGPU=y -CONFIG_DRM_AMDGPU_SI=y -CONFIG_DRM_AMDGPU_CIK=y -CONFIG_DRM_AMDGPU_USERPTR=y -# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set - # # ACP (Audio CoProcessor) Configuration # -# CONFIG_DRM_AMD_ACP is not set # end of ACP (Audio CoProcessor) Configuration -# -# Display Engine Configuration -# -CONFIG_DRM_AMD_DC=y -# CONFIG_DEBUG_KERNEL_DC is not set -# end of Display Engine Configuration - -# CONFIG_HSA_AMD is not set -CONFIG_DRM_NOUVEAU=y -CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT=y -CONFIG_NOUVEAU_DEBUG=5 -CONFIG_NOUVEAU_DEBUG_DEFAULT=3 -# CONFIG_NOUVEAU_DEBUG_MMU is not set -CONFIG_DRM_NOUVEAU_BACKLIGHT=y -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -CONFIG_DRM_ATI_PCIGART=y -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_AST is not set -# CONFIG_DRM_MGAG200 is not set -# CONFIG_DRM_CIRRUS_QEMU is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set CONFIG_DRM_RCAR_WRITEBACK=y -# CONFIG_DRM_QXL is not set -# CONFIG_DRM_BOCHS is not set -# CONFIG_DRM_VIRTIO_GPU is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_LVDS is not set -CONFIG_DRM_PANEL_SIMPLE=y -# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set -# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set -# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set -# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set -# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set -# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set -# CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS is not set -# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set -# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set -CONFIG_DRM_PANEL_RAYDIUM_RM67191=y -# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set -# CONFIG_DRM_PANEL_ROCKTECH_JH057N00900 is not set -# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set -# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set -# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set -# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set -# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set -# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set -# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set -# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set -# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set -# CONFIG_DRM_PANEL_TPO_TPG110 is not set -# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_DUMB_VGA_DAC is not set -# CONFIG_DRM_LVDS_ENCODER is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -CONFIG_DRM_SEC_MIPI_DSIM=y -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_SIL_SII8620 is not set -CONFIG_DRM_SII902X=y -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -CONFIG_DRM_I2C_ADV7511=y -CONFIG_DRM_I2C_ADV7533=y -CONFIG_DRM_I2C_ADV7511_CEC=y -CONFIG_DRM_NWL_MIPI_DSI=y -CONFIG_DRM_CDNS_MHDP=y -CONFIG_DRM_CDNS_HDMI=y -CONFIG_DRM_CDNS_DP=y -CONFIG_DRM_CDNS_AUDIO=y -CONFIG_DRM_CDNS_HDMI_CEC=y -CONFIG_DRM_ITE_IT6263=y -# end of Display Interface Bridges - -CONFIG_DRM_IMX_DCSS=y -CONFIG_DRM_ETNAVIV=y -CONFIG_DRM_ETNAVIV_THERMAL=y -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_HISI_HIBMC is not set -# CONFIG_DRM_HISI_KIRIN is not set -CONFIG_DRM_MXS=y -CONFIG_DRM_MXSFB=y -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -CONFIG_DRM_PL111=y -CONFIG_DRM_LIMA=y -CONFIG_DRM_PANFROST=y -CONFIG_DRM_LEGACY=y -# CONFIG_DRM_TDFX is not set -# CONFIG_DRM_R128 is not set -# CONFIG_DRM_MGA is not set -# CONFIG_DRM_VIA is not set -# CONFIG_DRM_SAVAGE is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +# CONFIG_DRM_IMX_DCSS is not set # # Frame buffer Devices # -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -CONFIG_FB_MODE_HELPERS=y -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -CONFIG_FB_ARMCLCD=y -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -CONFIG_FB_EFI=y -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -CONFIG_FB_MXC=y +# CONFIG_FB is not set # CONFIG_FB_MXC_DISP_FRAMEWORK is not set -# CONFIG_FB_MXC_OVERLAY is not set -CONFIG_FB_MXC_EDID=y -# CONFIG_FB_MXC_EINK_PANEL is not set -# CONFIG_FB_MXC_EINK_V2_PANEL is not set # end of Frame buffer Devices # # Backlight & LCD device support # # CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set -CONFIG_BACKLIGHT_PWM=y -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -CONFIG_BACKLIGHT_LP855X=y -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set # end of Backlight & LCD device support -CONFIG_VIDEOMODE_HELPERS=y -CONFIG_HDMI=y - # # Console display driver support # CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_FRAMEBUFFER_CONSOLE is not set # end of Console display driver support - -CONFIG_LOGO=y -# CONFIG_LOGO_LINUX_MONO is not set -# CONFIG_LOGO_LINUX_VGA16 is not set -CONFIG_LOGO_LINUX_CLUT224=y # end of Graphics support # CONFIG_SOUND is not set @@ -3315,7 +3023,6 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_GEMBIRD is not set # CONFIG_HID_GFRM is not set # CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GOOGLE_HAMMER is not set # CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set @@ -3935,7 +3642,6 @@ CONFIG_RTC_DRV_EFI=y # CONFIG_RTC_DRV_RP5C01 is not set # CONFIG_RTC_DRV_V3020 is not set # CONFIG_RTC_DRV_ZYNQMP is not set -CONFIG_RTC_DRV_CROS_EC=y # # on-CPU RTC drivers @@ -4099,8 +3805,6 @@ CONFIG_STAGING=y # end of Resolver to digital converters # end of IIO staging drivers -# CONFIG_FB_SM750 is not set - # # Speakup console speech # @@ -4121,7 +3825,6 @@ CONFIG_ION_CMA_HEAP=y # CONFIG_GS_FPGABOOT is not set # CONFIG_UNISYSSPAR is not set # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set -# CONFIG_FB_TFT is not set CONFIG_FSL_DPAA2=y CONFIG_FSL_DPAA2_MAC=y # CONFIG_FSL_DPAA2_MAC_NETDEVS is not set @@ -4182,19 +3885,7 @@ CONFIG_FSL_PPFE=y CONFIG_FSL_PPFE_UTIL_DISABLED=y # CONFIG_GOLDFISH is not set # CONFIG_MFD_CROS_EC is not set -CONFIG_CHROME_PLATFORMS=y -# CONFIG_CHROMEOS_TBMC is not set -CONFIG_CROS_EC=y -CONFIG_CROS_EC_I2C=y -# CONFIG_CROS_EC_RPMSG is not set -CONFIG_CROS_EC_SPI=y -CONFIG_CROS_EC_PROTO=y -# CONFIG_CROS_KBD_LED_BACKLIGHT is not set -CONFIG_CROS_EC_CHARDEV=y -CONFIG_CROS_EC_LIGHTBAR=y -CONFIG_CROS_EC_VBC=y -CONFIG_CROS_EC_DEBUGFS=y -CONFIG_CROS_EC_SYSFS=y +# CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y @@ -4243,8 +3934,8 @@ CONFIG_ARM_ARCH_TIMER=y CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y CONFIG_FSL_ERRATUM_A008585=y -CONFIG_HISILICON_ERRATUM_161010101=y -CONFIG_ARM64_ERRATUM_858921=y +# CONFIG_HISILICON_ERRATUM_161010101 is not set +# CONFIG_ARM64_ERRATUM_858921 is not set CONFIG_CLKSRC_VERSATILE=y # end of Clock Source drivers @@ -4280,7 +3971,7 @@ CONFIG_ARM_SMMU_V3=y # # Remoteproc drivers # -CONFIG_REMOTEPROC=y +# CONFIG_REMOTEPROC is not set # end of Remoteproc drivers # @@ -4312,7 +4003,7 @@ CONFIG_RPMSG_VIRTIO=y # # Broadcom SoC drivers # -CONFIG_SOC_BRCMSTB=y +# CONFIG_SOC_BRCMSTB is not set # end of Broadcom SoC drivers # @@ -4337,7 +4028,7 @@ CONFIG_FSL_RCPM=y # # end of Qualcomm SoC drivers -CONFIG_SOC_TI=y +# CONFIG_SOC_TI is not set # # Xilinx SoC drivers @@ -4374,7 +4065,6 @@ CONFIG_EXTCON=y # CONFIG_EXTCON_RT8973A is not set # CONFIG_EXTCON_SM5502 is not set CONFIG_EXTCON_USB_GPIO=y -CONFIG_EXTCON_USBC_CROS_EC=y CONFIG_MEMORY=y # CONFIG_ARM_PL172_MPMC is not set CONFIG_FSL_IFC=y @@ -4383,7 +4073,6 @@ CONFIG_IIO_BUFFER=y # CONFIG_IIO_BUFFER_CB is not set # CONFIG_IIO_BUFFER_HW_CONSUMER is not set CONFIG_IIO_KFIFO_BUF=y -CONFIG_IIO_TRIGGERED_BUFFER=y # CONFIG_IIO_CONFIGFS is not set CONFIG_IIO_TRIGGER=y CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 @@ -4407,7 +4096,6 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 # CONFIG_DMARD06 is not set # CONFIG_DMARD09 is not set # CONFIG_DMARD10 is not set -# CONFIG_IIO_CROS_EC_ACCEL_LEGACY is not set # CONFIG_IIO_ST_ACCEL_3AXIS is not set # CONFIG_KXSD9 is not set # CONFIG_KXCJK1013 is not set @@ -4508,10 +4196,6 @@ CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 # CONFIG_VZ89X is not set # end of Chemical Sensors -CONFIG_IIO_CROS_EC_SENSORS_CORE=y -CONFIG_IIO_CROS_EC_SENSORS=y -# CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE is not set - # # Hid Sensor IIO Common # @@ -4654,7 +4338,6 @@ CONFIG_IIO_CROS_EC_SENSORS=y # CONFIG_CM3323 is not set # CONFIG_CM3605 is not set # CONFIG_CM36651 is not set -CONFIG_IIO_CROS_EC_LIGHT_PROX=y # CONFIG_GP2AP020A00F is not set # CONFIG_SENSORS_ISL29018 is not set # CONFIG_SENSORS_ISL29028 is not set @@ -4747,7 +4430,6 @@ CONFIG_IIO_CROS_EC_LIGHT_PROX=y # # CONFIG_ABP060MG is not set # CONFIG_BMP280 is not set -CONFIG_IIO_CROS_EC_BARO=y # CONFIG_DPS310 is not set # CONFIG_HP03 is not set # CONFIG_MPL115_I2C is not set @@ -4804,7 +4486,6 @@ CONFIG_IIO_CROS_EC_BARO=y # CONFIG_VME_BUS is not set CONFIG_PWM=y CONFIG_PWM_SYSFS=y -CONFIG_PWM_CROS_EC=y # CONFIG_PWM_FSL_FTM is not set # CONFIG_PWM_PCA9685 is not set @@ -4822,7 +4503,6 @@ CONFIG_ARM_GIC_V3_ITS_FSL_MC=y # CONFIG_AL_FIC is not set CONFIG_LS_SCFG_MSI=y CONFIG_PARTITION_PERCPU=y -CONFIG_IMX_IRQSTEER=y # end of IRQ chip support # CONFIG_IPACK_BUS is not set @@ -4867,7 +4547,7 @@ CONFIG_ARM_PMU=y CONFIG_ARM_PMU_ACPI=y # CONFIG_ARM_SMMU_V3_PMU is not set # CONFIG_ARM_DSU_PMU is not set -CONFIG_HISI_PMU=y +# CONFIG_HISI_PMU is not set # CONFIG_ARM_SPE_PMU is not set # end of Performance monitor support @@ -5011,24 +4691,8 @@ CONFIG_MISC_FILESYSTEMS=y # CONFIG_BEFS_FS is not set # CONFIG_BFS_FS is not set # CONFIG_EFS_FS is not set -CONFIG_JFFS2_FS=y -CONFIG_JFFS2_FS_DEBUG=0 -CONFIG_JFFS2_FS_WRITEBUFFER=y -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set -# CONFIG_JFFS2_SUMMARY is not set -# CONFIG_JFFS2_FS_XATTR is not set -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set -CONFIG_JFFS2_ZLIB=y -CONFIG_JFFS2_RTIME=y -CONFIG_UBIFS_FS=y -# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set -CONFIG_UBIFS_FS_LZO=y -CONFIG_UBIFS_FS_ZLIB=y -CONFIG_UBIFS_FS_ZSTD=y -# CONFIG_UBIFS_ATIME_SUPPORT is not set -CONFIG_UBIFS_FS_XATTR=y -CONFIG_UBIFS_FS_SECURITY=y -# CONFIG_UBIFS_FS_AUTHENTICATION is not set +# CONFIG_JFFS2_FS is not set +# CONFIG_UBIFS_FS is not set # CONFIG_CRAMFS is not set CONFIG_SQUASHFS=y CONFIG_SQUASHFS_FILE_CACHE=y @@ -5037,7 +4701,7 @@ CONFIG_SQUASHFS_DECOMP_SINGLE=y # CONFIG_SQUASHFS_DECOMP_MULTI is not set # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set # CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_ZLIB is not set # CONFIG_SQUASHFS_LZ4 is not set # CONFIG_SQUASHFS_LZO is not set CONFIG_SQUASHFS_XZ=y @@ -5053,15 +4717,12 @@ CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 # CONFIG_QNX6FS_FS is not set # CONFIG_ROMFS_FS is not set CONFIG_PSTORE=y -CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_DEFLATE_COMPRESS is not set # CONFIG_PSTORE_LZO_COMPRESS is not set # CONFIG_PSTORE_LZ4_COMPRESS is not set # CONFIG_PSTORE_LZ4HC_COMPRESS is not set # CONFIG_PSTORE_842_COMPRESS is not set # CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" # CONFIG_PSTORE_CONSOLE is not set # CONFIG_PSTORE_PMSG is not set # CONFIG_PSTORE_RAM is not set @@ -5428,7 +5089,6 @@ CONFIG_XZ_DEC_BCJ=y # CONFIG_XZ_DEC_TEST is not set CONFIG_DECOMPRESS_XZ=y CONFIG_GENERIC_ALLOCATOR=y -CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y From 9b117177dc4aec465fc5992b2ed745ed09e7e354 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 14:21:07 -0700 Subject: [PATCH 013/132] Prune more crap Signed-off-by: Ronald G. Minnich --- .../solidrun/honeycomblx2k/config-5.4.47 | 271 ++++-------------- 1 file changed, 60 insertions(+), 211 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 484f3aa8..62ac60e6 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -30,11 +30,10 @@ CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CROSS_MEMORY_ATTACH is not set # CONFIG_USELIB is not set -CONFIG_AUDIT=y +# CONFIG_AUDIT is not set CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y # # IRQ subsystem @@ -972,8 +971,6 @@ CONFIG_NET_9P_VIRTIO=y # CONFIG_LWTUNNEL is not set CONFIG_DST_CACHE=y CONFIG_GRO_CELLS=y -CONFIG_NET_DEVLINK=y -CONFIG_PAGE_POOL=y CONFIG_FAILOVER=y CONFIG_HAVE_EBPF_JIT=y @@ -1479,75 +1476,30 @@ CONFIG_TAP=y # end of Distributed Switch Architecture drivers CONFIG_ETHERNET=y -CONFIG_MDIO=y # CONFIG_NET_VENDOR_3COM is not set # CONFIG_NET_VENDOR_ADAPTEC is not set -CONFIG_NET_VENDOR_AGERE=y -# CONFIG_ET131X is not set -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_SLICOSS is not set -CONFIG_NET_VENDOR_ALTEON=y -# CONFIG_ACENIC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set # CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -# CONFIG_ENA_ETHERNET is not set -CONFIG_NET_VENDOR_AMD=y -# CONFIG_AMD8111_ETH is not set -# CONFIG_PCNET32 is not set -CONFIG_AMD_XGBE=y -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_AQTION is not set -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_ATHEROS=y -# CONFIG_ATL2 is not set -# CONFIG_ATL1 is not set -# CONFIG_ATL1E is not set -CONFIG_ATL1C=y -# CONFIG_ALX is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -# CONFIG_TIGON3 is not set -CONFIG_BNX2X=y -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -CONFIG_NET_VENDOR_BROCADE=y -# CONFIG_BNA is not set -CONFIG_NET_VENDOR_CADENCE=y -CONFIG_MACB=y -CONFIG_MACB_USE_HWSTAMP=y -# CONFIG_MACB_PCI is not set -CONFIG_NET_VENDOR_CAVIUM=y -CONFIG_THUNDER_NIC_PF=y -# CONFIG_THUNDER_NIC_VF is not set -CONFIG_THUNDER_NIC_BGX=y -CONFIG_THUNDER_NIC_RGX=y -# CONFIG_CAVIUM_PTP is not set -# CONFIG_LIQUIDIO is not set -# CONFIG_LIQUIDIO_VF is not set -CONFIG_NET_VENDOR_CHELSIO=y -# CONFIG_CHELSIO_T1 is not set -# CONFIG_CHELSIO_T3 is not set -# CONFIG_CHELSIO_T4 is not set -# CONFIG_CHELSIO_T4VF is not set -CONFIG_NET_VENDOR_CISCO=y -# CONFIG_ENIC is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set # CONFIG_DNET is not set -CONFIG_NET_VENDOR_DEC=y -# CONFIG_NET_TULIP is not set -CONFIG_NET_VENDOR_DLINK=y -# CONFIG_DL2K is not set -# CONFIG_SUNDANCE is not set -CONFIG_NET_VENDOR_EMULEX=y -# CONFIG_BE2NET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set CONFIG_NET_VENDOR_FREESCALE=y # CONFIG_FSL_FMAN is not set # CONFIG_FSL_PQ_MDIO is not set @@ -1599,149 +1551,48 @@ CONFIG_FSL_ENETC=y CONFIG_FSL_ENETC_VF=y CONFIG_FSL_ENETC_MDIO=y CONFIG_FSL_ENETC_PTP_CLOCK=y -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -CONFIG_NET_VENDOR_HISILICON=y -CONFIG_HIX5HD2_GMAC=y -# CONFIG_HISI_FEMAC is not set -# CONFIG_HIP04_ETH is not set -CONFIG_HNS_MDIO=y -CONFIG_HNS=y -CONFIG_HNS_DSAF=y -CONFIG_HNS_ENET=y -CONFIG_HNS3=y -CONFIG_HNS3_HCLGE=y -# CONFIG_HNS3_HCLGEVF is not set -CONFIG_HNS3_ENET=y -CONFIG_NET_VENDOR_HP=y -# CONFIG_HP100 is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_HINIC is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HISILICON is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set # CONFIG_JME is not set -CONFIG_NET_VENDOR_MARVELL=y -CONFIG_MVMDIO=y -# CONFIG_SKGE is not set -CONFIG_SKY2=y -# CONFIG_SKY2_DEBUG is not set -# CONFIG_OCTEONTX2_AF is not set -CONFIG_NET_VENDOR_MELLANOX=y -CONFIG_MLX4_EN=y -CONFIG_MLX4_CORE=y -CONFIG_MLX4_DEBUG=y -CONFIG_MLX4_CORE_GEN2=y -CONFIG_MLX5_CORE=y -# CONFIG_MLX5_FPGA is not set -CONFIG_MLX5_CORE_EN=y -CONFIG_MLX5_EN_ARFS=y -CONFIG_MLX5_EN_RXNFC=y -CONFIG_MLX5_MPFS=y -# CONFIG_MLX5_CORE_IPOIB is not set -# CONFIG_MLXSW_CORE is not set -CONFIG_MLXFW=y -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -# CONFIG_KSZ884X_PCI is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_MYRI=y -# CONFIG_MYRI10GE is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set # CONFIG_FEALNX is not set -CONFIG_NET_VENDOR_NATSEMI=y -# CONFIG_NATSEMI is not set -# CONFIG_NS83820 is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -CONFIG_NET_VENDOR_NETRONOME=y -# CONFIG_NFP is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_8390=y -# CONFIG_NE2K_PCI is not set -CONFIG_NET_VENDOR_NVIDIA=y -# CONFIG_FORCEDETH is not set -CONFIG_NET_VENDOR_OKI=y +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set # CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -CONFIG_NET_VENDOR_QLOGIC=y -# CONFIG_QLA3XXX is not set -# CONFIG_QLCNIC is not set -# CONFIG_NETXEN_NIC is not set -# CONFIG_QED is not set -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCA7000_UART is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RDC=y -# CONFIG_R6040 is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -# CONFIG_R8169 is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_SFC is not set -# CONFIG_SFC_FALCON is not set -CONFIG_NET_VENDOR_SILAN=y -# CONFIG_SC92031 is not set -CONFIG_NET_VENDOR_SIS=y -# CONFIG_SIS900 is not set -# CONFIG_SIS190 is not set -CONFIG_NET_VENDOR_SMSC=y -CONFIG_SMC91X=y -# CONFIG_EPIC100 is not set -CONFIG_SMSC911X=y -# CONFIG_SMSC9420 is not set -CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set # CONFIG_NET_VENDOR_STMICRO is not set -CONFIG_NET_VENDOR_SUN=y -# CONFIG_HAPPYMEAL is not set -# CONFIG_SUNGEM is not set -# CONFIG_CASSINI is not set -# CONFIG_NIU is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_TEHUTI=y -# CONFIG_TEHUTI is not set -CONFIG_NET_VENDOR_TI=y -# CONFIG_TI_CPSW_PHY_SEL is not set -# CONFIG_TLAN is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_RHINE is not set -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_NET_SB1000 is not set @@ -4823,7 +4674,6 @@ CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y # CONFIG_SECURITY_LOCKDOWN_LSM is not set CONFIG_INTEGRITY=y # CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y # CONFIG_IMA is not set # CONFIG_EVM is not set CONFIG_DEFAULT_SECURITY_DAC=y @@ -5069,7 +4919,6 @@ CONFIG_CRC7=y CONFIG_LIBCRC32C=y # CONFIG_CRC8 is not set CONFIG_XXHASH=y -CONFIG_AUDIT_GENERIC=y CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y # CONFIG_RANDOM32_SELFTEST is not set CONFIG_ZLIB_INFLATE=y From 43b18df24ad18c5b3f18317917630d7bb33c7d97 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 14:47:15 -0700 Subject: [PATCH 014/132] Final. This works with cpu! Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 3 ++- mainboards/solidrun/honeycomblx2k/boot.scr | 13 ++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile index 369ccf02..063e2cad 100644 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -46,7 +46,8 @@ usefultargets: flashinitramfs.cpio: u-root Makefile GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ + -files ~/.ssh/cpu_rsa.pub:key.pub \ + github.com/u-root/cpu/cmds/cpud \ github.com/u-root/u-root/cmds/boot/pxeboot \ core \ diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr index f3cdaa54..93082224 100644 --- a/mainboards/solidrun/honeycomblx2k/boot.scr +++ b/mainboards/solidrun/honeycomblx2k/boot.scr @@ -1,9 +1,4 @@ -mmc read 0x80d00000 0x6800 0x800 -dhcp -tftpboot ${kernel_addr_r} netbootkernel -tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb -fsl_mc apply DPL 0x80d00000 -bootefi ${kernel_addr_r} ${fdt_addr_r} - -tftpboot ${kernel_addr_r} lxSDK -tftpboot ${fdt_addr_r} honeycombDTB +mmc read 0x80d00000 0x6800 0x800; dhcp; tftpboot ${kernel_addr_r} netbootkernel; tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb; fsl_mc apply DPL 0x80d00000; bootefi ${kernel_addr_r} ${fdt_addr_r} +; +tftpboot ${kernel_addr_r} lxSDK; +tftpboot ${fdt_addr_r} honeycombDTB; From 6cd932802ca2ee3e36cd73cc0453286bcbdf2127 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 14:53:30 -0700 Subject: [PATCH 015/132] Add a README.md for honeycomb and a .dtb for it Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/README.md | 52 ++++++++++++++++++ .../honeycomblx2k/fsl-lx2160a-cex7.dtb | Bin 0 -> 28471 bytes 2 files changed, 52 insertions(+) create mode 100644 mainboards/solidrun/honeycomblx2k/README.md create mode 100644 mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb diff --git a/mainboards/solidrun/honeycomblx2k/README.md b/mainboards/solidrun/honeycomblx2k/README.md new file mode 100644 index 00000000..38904998 --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/README.md @@ -0,0 +1,52 @@ +Using this mainboard with the solidrun. + +This assumes you are running a reasonably new LSDK, if not, build one and put it on an SD. + +You MUST have go1.17. + +``` +make fetch +make +``` + +Put the netbootkernel and the .dtb somewhere for ftp. + +On the honeycomb: +``` +setenv netboot 'mmc read 0x80d00000 0x6800 0x800; dhcp; tftpboot ${kernel_addr_r} netbootkernel; tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb; fsl_mc apply DPL 0x80d00000; bootefi ${kernel_addr_r} ${fdt_addr_r}' +saveenv +``` + +Let the honeycomb boot to the +``` +Hit any key to stop autoboot: +``` + +and hit any key. + +run netboot + +The kernel will boot. You will need to get an IP address: +``` +dhclient -vv & +``` + +This takes a few minutes for some reason. + +Then: +``` +cpud -init & +``` +And you can cpu to the board! + +Note: you will need an ssh public key, I used ~/.ssh/cpu_rsa.pub + +You can make getting to the board more convenient, e.g, in my .ssh/config I have this: +``` +Host honeycomb + HostName honeycomb + Port 23 + User root + IdentityFile ~/.ssh/cpu_rsa +``` + diff --git a/mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb b/mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb new file mode 100644 index 0000000000000000000000000000000000000000..fa5504232aa08b7db1f2821c8d672c9887886d19 GIT binary patch literal 28471 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 Date: Tue, 19 Oct 2021 14:53:57 -0700 Subject: [PATCH 016/132] Remove commands from boot.scr we no longe use Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/boot.scr | 2 -- 1 file changed, 2 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr index 93082224..3373337f 100644 --- a/mainboards/solidrun/honeycomblx2k/boot.scr +++ b/mainboards/solidrun/honeycomblx2k/boot.scr @@ -1,4 +1,2 @@ mmc read 0x80d00000 0x6800 0x800; dhcp; tftpboot ${kernel_addr_r} netbootkernel; tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb; fsl_mc apply DPL 0x80d00000; bootefi ${kernel_addr_r} ${fdt_addr_r} ; -tftpboot ${kernel_addr_r} lxSDK; -tftpboot ${fdt_addr_r} honeycombDTB; From 1c45dd6a1d06fecc8c9bdfa6dde0ba28557cf6fd Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 27 Oct 2021 08:51:18 -0700 Subject: [PATCH 017/132] README.md: add quotes for run netboot command Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainboards/solidrun/honeycomblx2k/README.md b/mainboards/solidrun/honeycomblx2k/README.md index 38904998..475630c1 100644 --- a/mainboards/solidrun/honeycomblx2k/README.md +++ b/mainboards/solidrun/honeycomblx2k/README.md @@ -24,7 +24,9 @@ Hit any key to stop autoboot: and hit any key. +``` run netboot +``` The kernel will boot. You will need to get an IP address: ``` From 607315e2e6f6f4a943ed662afdd5970c21786079 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 29 Oct 2021 14:24:54 -0700 Subject: [PATCH 018/132] Clean up cubie port, including config files Signed-off-by: Ronald G. Minnich --- mainboards/cubie/board/.gitignore | 1 + mainboards/cubie/board/config-5.4.0 | 752 ++++++++++++++++-------- mainboards/cubie/board/cpu.config-5.4.0 | 241 +++++--- 3 files changed, 662 insertions(+), 332 deletions(-) create mode 100644 mainboards/cubie/board/.gitignore diff --git a/mainboards/cubie/board/.gitignore b/mainboards/cubie/board/.gitignore new file mode 100644 index 00000000..e1097b41 --- /dev/null +++ b/mainboards/cubie/board/.gitignore @@ -0,0 +1 @@ +/linux diff --git a/mainboards/cubie/board/config-5.4.0 b/mainboards/cubie/board/config-5.4.0 index 2cae19f8..63655833 100644 --- a/mainboards/cubie/board/config-5.4.0 +++ b/mainboards/cubie/board/config-5.4.0 @@ -1,26 +1,26 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm 5.4.0-rc1 Kernel Configuration -# - -# -# Compiler: arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.4.0-1ubuntu1~18.04.1) 7.4.0 +# Linux/arm 5.12.0-rc2 Kernel Configuration # +CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 +CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_CC_HAS_ASM_INLINE=y CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_BUILDTIME_TABLE_SORT=y # # General setup # CONFIG_INIT_ENV_ARG_LIMIT=32 # CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_BUILD_SALT="" @@ -34,10 +34,12 @@ CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_XZ is not set # CONFIG_KERNEL_LZO is not set # CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_INIT="" CONFIG_DEFAULT_HOSTNAME="(none)" CONFIG_SWAP=y # CONFIG_SYSVIPC is not set # CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set CONFIG_CROSS_MEMORY_ATTACH=y # CONFIG_USELIB is not set # CONFIG_AUDIT is not set @@ -55,6 +57,8 @@ CONFIG_HARDIRQS_SW_RESEND=y CONFIG_GENERIC_IRQ_CHIP=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_GENERIC_IRQ_IPI=y CONFIG_HANDLE_DOMAIN_IRQ=y CONFIG_IRQ_FORCED_THREADING=y CONFIG_SPARSE_IRQ=y @@ -62,7 +66,6 @@ CONFIG_SPARSE_IRQ=y # end of IRQ subsystem CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_ARCH_HAS_TICK_BROADCAST=y @@ -90,6 +93,7 @@ CONFIG_PREEMPT_NONE=y CONFIG_TICK_CPU_ACCOUNTING=y # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set # CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_SCHED_THERMAL_PRESSURE=y # CONFIG_BSD_PROCESS_ACCT is not set # CONFIG_TASKSTATS is not set # CONFIG_PSI is not set @@ -148,8 +152,11 @@ CONFIG_RD_LZMA=y CONFIG_RD_XZ=y CONFIG_RD_LZO=y CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +# CONFIG_BOOT_CONFIG is not set CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y CONFIG_SYSCTL=y CONFIG_HAVE_UID16=y CONFIG_BPF=y @@ -180,6 +187,7 @@ CONFIG_KALLSYMS_BASE_RELATIVE=y # CONFIG_BPF_SYSCALL is not set # CONFIG_USERFAULTFD is not set CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y CONFIG_RSEQ=y # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y @@ -226,7 +234,6 @@ CONFIG_MMU=y CONFIG_ARCH_MMAP_RND_BITS_MIN=8 CONFIG_ARCH_MMAP_RND_BITS_MAX=16 CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EBSA110 is not set # CONFIG_ARCH_EP93XX is not set # CONFIG_ARCH_FOOTBRIDGE is not set # CONFIG_ARCH_IOP32X is not set @@ -268,6 +275,7 @@ CONFIG_ARCH_MULTI_V6_V7=y # CONFIG_ARCH_MESON is not set # CONFIG_ARCH_MILBEAUT is not set # CONFIG_ARCH_MMP is not set +# CONFIG_ARCH_MSTARV7 is not set # CONFIG_ARCH_MVEBU is not set # CONFIG_ARCH_NPCM is not set @@ -282,9 +290,9 @@ CONFIG_ARCH_MULTI_V6_V7=y # CONFIG_SOC_DRA7XX is not set # end of TI OMAP/AM/DM/DRA Family -# CONFIG_ARCH_SIRF is not set # CONFIG_ARCH_QCOM is not set # CONFIG_ARCH_RDA is not set +# CONFIG_ARCH_REALTEK is not set # CONFIG_ARCH_REALVIEW is not set # CONFIG_ARCH_ROCKCHIP is not set # CONFIG_ARCH_S5PV210 is not set @@ -301,13 +309,11 @@ CONFIG_MACH_SUN7I=y CONFIG_MACH_SUN8I=y CONFIG_MACH_SUN9I=y CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TANGO is not set # CONFIG_ARCH_TEGRA is not set # CONFIG_ARCH_UNIPHIER is not set # CONFIG_ARCH_U8500 is not set # CONFIG_ARCH_VEXPRESS is not set # CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZX is not set # CONFIG_ARCH_ZYNQ is not set # @@ -416,7 +422,9 @@ CONFIG_SCHED_HRTICK=y CONFIG_ARM_PATCH_IDIV=y CONFIG_AEABI=y # CONFIG_OABI_COMPAT is not set -CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_HIGHMEM=y CONFIG_HIGHPTE=y CONFIG_CPU_SW_DOMAIN_PAN=y @@ -426,7 +434,6 @@ CONFIG_ARM_MODULE_PLTS=y CONFIG_FORCE_MAX_ZONEORDER=11 CONFIG_ALIGNMENT_TRAP=y # CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_SECCOMP is not set # CONFIG_PARAVIRT is not set # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set # CONFIG_XEN is not set @@ -479,8 +486,6 @@ CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPUFREQ_DT=y CONFIG_CPUFREQ_DT_PLATDEV=y # CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set -# CONFIG_QORIQ_CPUFREQ is not set # end of CPU Frequency scaling # @@ -530,9 +535,11 @@ CONFIG_ARCH_HIBERNATION_POSSIBLE=y # # CONFIG_FW_CFG_SYSFS is not set # CONFIG_TRUSTED_FOUNDATIONS is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_ARM_PSCI_FW=y # CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_ARM_PSCI_FW=y +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_ARM_SMCCC_SOC_ID=y # # Tegra firmware driver @@ -541,12 +548,12 @@ CONFIG_ARM_PSCI_FW=y # end of Firmware Drivers # CONFIG_ARM_CRYPTO is not set -# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_VFP_VMRS_FPINST=y # # General architecture-dependent options # -CONFIG_HAVE_OPROFILE=y +CONFIG_SET_FS=y # CONFIG_KPROBES is not set # CONFIG_JUMP_LABEL is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y @@ -566,17 +573,19 @@ CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y CONFIG_ARCH_32BIT_OFF_T=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_LTO_NONE=y CONFIG_HAVE_CONTEXT_TRACKING=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y @@ -590,7 +599,6 @@ CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y CONFIG_CLONE_BACKWARDS=y CONFIG_OLD_SIGSUSPEND3=y CONFIG_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y CONFIG_COMPAT_32BIT_TIME=y CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y @@ -599,8 +607,9 @@ CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_STRICT_MODULE_RWX=y CONFIG_ARCH_HAS_PHYS_TO_DMA=y -CONFIG_REFCOUNT_FULL=y # CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_HAVE_ARCH_PFN_VALID=y # # GCOV-based kernel profiling @@ -609,7 +618,6 @@ CONFIG_REFCOUNT_FULL=y CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y # end of GCOV-based kernel profiling -CONFIG_PLUGIN_HOSTCC="" CONFIG_HAVE_GCC_PLUGINS=y # end of General architecture-dependent options @@ -624,8 +632,6 @@ CONFIG_MODULE_UNLOAD=y # CONFIG_MODULE_SIG is not set # CONFIG_MODULE_COMPRESS is not set # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLK_SCSI_REQUEST=y @@ -637,6 +643,7 @@ CONFIG_BLK_DEV_BSG=y # CONFIG_BLK_WBT is not set CONFIG_BLK_DEBUG_FS=y # CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set # # Partition Types @@ -665,6 +672,7 @@ CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_RWSEM_SPIN_ON_OWNER=y CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y CONFIG_FREEZER=y # @@ -685,12 +693,16 @@ CONFIG_COREDUMP=y # # Memory Management options # +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_SPARSEMEM_MANUAL is not set CONFIG_FLATMEM=y CONFIG_FLAT_NODE_MEM_MAP=y CONFIG_ARCH_KEEP_MEMBLOCK=y CONFIG_MEMORY_ISOLATION=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set CONFIG_MIGRATION=y CONFIG_CONTIG_ALLOC=y CONFIG_BOUNCE=y @@ -707,7 +719,8 @@ CONFIG_CMA_AREAS=7 CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_IDLE_PAGE_TRACKING is not set # CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set +# CONFIG_GUP_TEST is not set +CONFIG_KMAP_LOCAL=y # end of Memory Management options CONFIG_NET=y @@ -744,6 +757,7 @@ CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IPV6 is not set +# CONFIG_MPTCP is not set # CONFIG_NETWORK_SECMARK is not set CONFIG_NET_PTP_CLASSIFY=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set @@ -778,9 +792,11 @@ CONFIG_DNS_RESOLVER=y # CONFIG_HSR is not set # CONFIG_NET_SWITCHDEV is not set # CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set CONFIG_RPS=y CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y CONFIG_XPS=y # CONFIG_CGROUP_NET_PRIO is not set # CONFIG_CGROUP_NET_CLASSID is not set @@ -802,6 +818,7 @@ CONFIG_CAN_RAW=y CONFIG_CAN_BCM=y CONFIG_CAN_GW=y # CONFIG_CAN_J1939 is not set +# CONFIG_CAN_ISOTP is not set # # CAN Device Drivers @@ -829,6 +846,7 @@ CONFIG_CAN_SUN4I=y # # CONFIG_CAN_HI311X is not set # CONFIG_CAN_MCP251X is not set +# CONFIG_CAN_MCP251XFD is not set # end of CAN SPI interfaces # @@ -851,9 +869,9 @@ CONFIG_CAN_SUN4I=y # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set # CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set # CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_DEBUG is not set # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set @@ -862,6 +880,7 @@ CONFIG_CAN_SUN4I=y # CONFIG_LWTUNNEL is not set CONFIG_PAGE_POOL=y # CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y CONFIG_HAVE_EBPF_JIT=y # @@ -887,11 +906,13 @@ CONFIG_FW_LOADER=y CONFIG_EXTRA_FIRMWARE="" # CONFIG_FW_LOADER_USER_HELPER is not set # CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y # end of Firmware loader CONFIG_ALLOW_DEV_COREDUMP=y # CONFIG_TEST_ASYNC_DRIVER_PROBE is not set CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_SOC_BUS=y CONFIG_REGMAP=y CONFIG_REGMAP_I2C=y CONFIG_REGMAP_SPI=y @@ -914,6 +935,7 @@ CONFIG_ARM_CCI400_PORT_CTRL=y # CONFIG_SUN50I_DE2_BUS is not set CONFIG_SUNXI_RSB=y # CONFIG_VEXPRESS_CONFIG is not set +# CONFIG_MHI_BUS is not set # end of Bus devices # CONFIG_CONNECTOR is not set @@ -928,7 +950,6 @@ CONFIG_OF_KOBJ=y CONFIG_OF_ADDRESS=y CONFIG_OF_IRQ=y CONFIG_OF_NET=y -CONFIG_OF_MDIO=y CONFIG_OF_RESERVED_MEM=y # CONFIG_OF_OVERLAY is not set CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y @@ -992,45 +1013,6 @@ CONFIG_BLK_DEV=y # CONFIG_SENSORS_LIS3_SPI is not set # CONFIG_SENSORS_LIS3_I2C is not set # CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# - -# -# SCIF Bus Driver -# - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - # CONFIG_ECHO is not set # CONFIG_MISC_RTSX_USB is not set # end of Misc devices @@ -1076,7 +1058,9 @@ CONFIG_SCSI_LOWLEVEL=y # end of SCSI device support CONFIG_ATA=y +CONFIG_SATA_HOST=y CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y CONFIG_SATA_PMP=y # @@ -1116,12 +1100,14 @@ CONFIG_MII=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set # CONFIG_EQUALIZER is not set # CONFIG_NET_TEAM is not set # CONFIG_MACVLAN is not set # CONFIG_IPVLAN is not set # CONFIG_VXLAN is not set # CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set # CONFIG_NETCONSOLE is not set @@ -1130,13 +1116,10 @@ CONFIG_NET_CORE=y # CONFIG_VETH is not set # CONFIG_NLMON is not set -# -# CAIF transport drivers -# - # # Distributed Switch Architecture drivers # +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set # end of Distributed Switch Architecture drivers CONFIG_ETHERNET=y @@ -1147,8 +1130,6 @@ CONFIG_SUN4I_EMAC=y CONFIG_NET_VENDOR_AMAZON=y CONFIG_NET_VENDOR_AQUANTIA=y # CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set # CONFIG_NET_VENDOR_BROADCOM is not set CONFIG_NET_VENDOR_CADENCE=y # CONFIG_MACB is not set @@ -1166,7 +1147,6 @@ CONFIG_NET_VENDOR_HISILICON=y # CONFIG_HIX5HD2_GMAC is not set # CONFIG_HISI_FEMAC is not set # CONFIG_HIP04_ETH is not set -# CONFIG_HNS is not set # CONFIG_HNS_DSAF is not set # CONFIG_HNS_ENET is not set CONFIG_NET_VENDOR_HUAWEI=y @@ -1203,52 +1183,41 @@ CONFIG_STMMAC_PLATFORM=y CONFIG_DWMAC_GENERIC=y CONFIG_DWMAC_SUNXI=y CONFIG_DWMAC_SUN8I=y +# CONFIG_DWMAC_INTEL_PLAT is not set CONFIG_NET_VENDOR_SYNOPSYS=y # CONFIG_DWC_XLGMAC is not set # CONFIG_NET_VENDOR_VIA is not set # CONFIG_NET_VENDOR_WIZNET is not set CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_EMACLITE is not set # CONFIG_XILINX_AXI_EMAC is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -CONFIG_MDIO_SUN4I=y +# CONFIG_XILINX_LL_TEMAC is not set CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y # CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y +# CONFIG_SFP is not set # # MII PHY device drivers # -# CONFIG_SFP is not set -# CONFIG_ADIN_PHY is not set # CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set # CONFIG_AQUANTIA_PHY is not set # CONFIG_AX88796B_PHY is not set -# CONFIG_AT803X_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set # CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set # CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set # CONFIG_CICADA_PHY is not set # CONFIG_CORTINA_PHY is not set # CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -CONFIG_FIXED_PHY=y # CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set # CONFIG_INTEL_XWAY_PHY is not set # CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set # CONFIG_MARVELL_PHY is not set # CONFIG_MARVELL_10G_PHY is not set # CONFIG_MICREL_PHY is not set @@ -1257,6 +1226,7 @@ CONFIG_FIXED_PHY=y # CONFIG_MICROSEMI_PHY is not set # CONFIG_NATIONAL_PHY is not set # CONFIG_NXP_TJA11XX_PHY is not set +# CONFIG_AT803X_PHY is not set # CONFIG_QSEMI_PHY is not set # CONFIG_REALTEK_PHY is not set # CONFIG_RENESAS_PHY is not set @@ -1264,9 +1234,41 @@ CONFIG_FIXED_PHY=y # CONFIG_SMSC_PHY is not set # CONFIG_STE10XP is not set # CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set # CONFIG_VITESSE_PHY is not set # CONFIG_XILINX_GMII2RGMII is not set # CONFIG_MICREL_KS8995MA is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_SUN4I=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=y +# end of PCS device drivers + # CONFIG_PPP is not set # CONFIG_SLIP is not set CONFIG_USB_NET_DRIVERS=y @@ -1279,10 +1281,6 @@ CONFIG_USB_NET_DRIVERS=y # CONFIG_USB_USBNET is not set # CONFIG_USB_IPHETH is not set # CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# # CONFIG_WAN is not set # CONFIG_NETDEVSIM is not set # CONFIG_NET_FAILOVER is not set @@ -1295,7 +1293,6 @@ CONFIG_USB_NET_DRIVERS=y CONFIG_INPUT=y CONFIG_INPUT_LEDS=y CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set @@ -1356,6 +1353,7 @@ CONFIG_TOUCHSCREEN_PROPERTIES=y # CONFIG_TOUCHSCREEN_BU21013 is not set # CONFIG_TOUCHSCREEN_BU21029 is not set # CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set # CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set # CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set @@ -1409,14 +1407,13 @@ CONFIG_TOUCHSCREEN_SUN4I=y # CONFIG_TOUCHSCREEN_ZFORCE is not set # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set # CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set CONFIG_INPUT_MISC=y # CONFIG_INPUT_AD714X is not set # CONFIG_INPUT_ATMEL_CAPTOUCH is not set # CONFIG_INPUT_BMA150 is not set # CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set # CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GP2A is not set # CONFIG_INPUT_GPIO_BEEPER is not set # CONFIG_INPUT_GPIO_DECODER is not set # CONFIG_INPUT_GPIO_VIBRA is not set @@ -1433,8 +1430,10 @@ CONFIG_INPUT_AXP20X_PEK=y # CONFIG_INPUT_PWM_BEEPER is not set # CONFIG_INPUT_PWM_VIBRA is not set # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set # CONFIG_INPUT_ADXL34X is not set # CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set # CONFIG_INPUT_CMA3000 is not set # CONFIG_INPUT_DRV260X_HAPTICS is not set # CONFIG_INPUT_DRV2665_HAPTICS is not set @@ -1472,13 +1471,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y CONFIG_LEGACY_PTYS=y CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set # # Serial drivers @@ -1486,6 +1479,7 @@ CONFIG_DEVMEM=y CONFIG_SERIAL_EARLYCON=y CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y # CONFIG_SERIAL_8250_FINTEK is not set CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_DMA=y @@ -1515,20 +1509,27 @@ CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_BCM63XX is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set # CONFIG_SERIAL_XILINX_PS_UART is not set # CONFIG_SERIAL_ARC is not set # CONFIG_SERIAL_FSL_LPUART is not set # CONFIG_SERIAL_FSL_LINFLEXUART is not set # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set # CONFIG_SERIAL_ST_ASC is not set +# CONFIG_SERIAL_SPRD is not set # end of Serial drivers CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set # CONFIG_HVC_DCC is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_VIRTIO_CONSOLE is not set # CONFIG_IPMI_HANDLER is not set # CONFIG_HW_RANDOM is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set # CONFIG_RAW_DRIVER is not set # CONFIG_TCG_TPM is not set # CONFIG_XILLYBUS is not set @@ -1543,7 +1544,23 @@ CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +# CONFIG_I2C_MUX_PCA954x is not set +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y @@ -1570,7 +1587,6 @@ CONFIG_I2C_SUN6I_P2WI=y # External I2C/SMBus adapter drivers # # CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_ROBOTFUZZ_OSIF is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set @@ -1599,6 +1615,7 @@ CONFIG_SPI_MASTER=y # CONFIG_SPI_AXI_SPI_ENGINE is not set # CONFIG_SPI_BITBANG is not set # CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set # CONFIG_SPI_DESIGNWARE is not set # CONFIG_SPI_NXP_FLEXSPI is not set # CONFIG_SPI_GPIO is not set @@ -1613,6 +1630,12 @@ CONFIG_SPI_SUN6I=y # CONFIG_SPI_XCOMM is not set # CONFIG_SPI_XILINX is not set # CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +# CONFIG_SPI_MUX is not set # # SPI Protocol Masters @@ -1645,6 +1668,8 @@ CONFIG_PTP_1588_CLOCK=y # # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. # +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set # end of PTP clock support CONFIG_PINCTRL=y @@ -1652,12 +1677,18 @@ CONFIG_PINMUX=y CONFIG_PINCONF=y CONFIG_GENERIC_PINCONF=y # CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_AMD is not set # CONFIG_PINCTRL_MCP23S08 is not set # CONFIG_PINCTRL_SINGLE is not set # CONFIG_PINCTRL_SX150X is not set # CONFIG_PINCTRL_STMFX is not set # CONFIG_PINCTRL_OCELOT is not set +# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + CONFIG_PINCTRL_SUNXI=y CONFIG_PINCTRL_SUN4I_A10=y CONFIG_PINCTRL_SUN5I=y @@ -1675,14 +1706,19 @@ CONFIG_PINCTRL_SUN9I_A80=y CONFIG_PINCTRL_SUN9I_A80_R=y # CONFIG_PINCTRL_SUN50I_A64 is not set # CONFIG_PINCTRL_SUN50I_A64_R is not set +# CONFIG_PINCTRL_SUN50I_A100 is not set +# CONFIG_PINCTRL_SUN50I_A100_R is not set # CONFIG_PINCTRL_SUN50I_H5 is not set # CONFIG_PINCTRL_SUN50I_H6 is not set # CONFIG_PINCTRL_SUN50I_H6_R is not set +# CONFIG_PINCTRL_SUN50I_H616 is not set +# CONFIG_PINCTRL_SUN50I_H616_R is not set CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y CONFIG_GPIOLIB=y CONFIG_GPIOLIB_FASTPATH_LIMIT=512 CONFIG_OF_GPIO=y -CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y # # Memory mapped GPIO drivers @@ -1695,9 +1731,11 @@ CONFIG_GPIO_SYSFS=y # CONFIG_GPIO_GENERIC_PLATFORM is not set # CONFIG_GPIO_GRGPIO is not set # CONFIG_GPIO_HLWD is not set +# CONFIG_GPIO_LOGICVC is not set # CONFIG_GPIO_MB86S7X is not set # CONFIG_GPIO_MPC8XXX is not set # CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SIFIVE is not set # CONFIG_GPIO_SYSCON is not set # CONFIG_GPIO_XILINX is not set # CONFIG_GPIO_ZEVIO is not set @@ -1713,6 +1751,7 @@ CONFIG_GPIO_SYSFS=y # CONFIG_GPIO_MAX7300 is not set # CONFIG_GPIO_MAX732X is not set # CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set # CONFIG_GPIO_PCF857X is not set # CONFIG_GPIO_TPIC2810 is not set # end of I2C GPIO expanders @@ -1739,9 +1778,14 @@ CONFIG_GPIO_SYSFS=y # # end of USB GPIO expanders +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set # CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + # CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set # CONFIG_POWER_RESET is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set @@ -1750,12 +1794,13 @@ CONFIG_POWER_SUPPLY_HWMON=y # CONFIG_GENERIC_ADC_BATTERY is not set # CONFIG_TEST_POWER is not set # CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set # CONFIG_BATTERY_DS2780 is not set # CONFIG_BATTERY_DS2781 is not set # CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_LEGO_EV3 is not set # CONFIG_BATTERY_SBS is not set # CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set # CONFIG_BATTERY_BQ27XXX is not set CONFIG_CHARGER_AXP20X=y CONFIG_BATTERY_AXP20X=y @@ -1769,16 +1814,21 @@ CONFIG_AXP20X_POWER=y # CONFIG_CHARGER_GPIO is not set # CONFIG_CHARGER_MANAGER is not set # CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set # CONFIG_CHARGER_DETECTOR_MAX14656 is not set # CONFIG_CHARGER_BQ2415X is not set # CONFIG_CHARGER_BQ24190 is not set # CONFIG_CHARGER_BQ24257 is not set # CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set # CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set # CONFIG_CHARGER_SMB347 is not set # CONFIG_BATTERY_GAUGE_LTC2941 is not set # CONFIG_CHARGER_RT9455 is not set # CONFIG_CHARGER_UCS1002 is not set +# CONFIG_CHARGER_BD99954 is not set CONFIG_HWMON=y # CONFIG_HWMON_DEBUG_CHIP is not set @@ -1793,6 +1843,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ADM1026 is not set # CONFIG_SENSORS_ADM1029 is not set # CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set # CONFIG_SENSORS_ADM9240 is not set # CONFIG_SENSORS_ADT7310 is not set # CONFIG_SENSORS_ADT7410 is not set @@ -1800,10 +1851,15 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set # CONFIG_SENSORS_AS370 is not set # CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set # CONFIG_SENSORS_ASPEED is not set # CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DRIVETEMP is not set # CONFIG_SENSORS_DS620 is not set # CONFIG_SENSORS_DS1621 is not set # CONFIG_SENSORS_F71805F is not set @@ -1822,7 +1878,10 @@ CONFIG_HWMON=y # CONFIG_SENSORS_POWR1220 is not set # CONFIG_SENSORS_LINEAGE is not set # CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2947_SPI is not set # CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set # CONFIG_SENSORS_LTC4151 is not set # CONFIG_SENSORS_LTC4215 is not set # CONFIG_SENSORS_LTC4222 is not set @@ -1830,11 +1889,13 @@ CONFIG_HWMON=y # CONFIG_SENSORS_LTC4260 is not set # CONFIG_SENSORS_LTC4261 is not set # CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX127 is not set # CONFIG_SENSORS_MAX16065 is not set # CONFIG_SENSORS_MAX1619 is not set # CONFIG_SENSORS_MAX1668 is not set # CONFIG_SENSORS_MAX197 is not set # CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX31730 is not set # CONFIG_SENSORS_MAX6621 is not set # CONFIG_SENSORS_MAX6639 is not set # CONFIG_SENSORS_MAX6642 is not set @@ -1843,6 +1904,8 @@ CONFIG_HWMON=y # CONFIG_SENSORS_MAX31790 is not set # CONFIG_SENSORS_MCP3021 is not set # CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set # CONFIG_SENSORS_ADCXX is not set # CONFIG_SENSORS_LM63 is not set # CONFIG_SENSORS_LM70 is not set @@ -1872,6 +1935,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_PCF8591 is not set # CONFIG_PMBUS is not set # CONFIG_SENSORS_PWM_FAN is not set +# CONFIG_SENSORS_SBTSI is not set # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SHT21 is not set # CONFIG_SENSORS_SHT3x is not set @@ -1901,6 +1965,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_TMP108 is not set # CONFIG_SENSORS_TMP401 is not set # CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set # CONFIG_SENSORS_VT1211 is not set # CONFIG_SENSORS_W83773G is not set # CONFIG_SENSORS_W83781D is not set @@ -1913,6 +1978,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set # CONFIG_THERMAL_STATISTICS is not set CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 CONFIG_THERMAL_HWMON=y @@ -1921,17 +1987,15 @@ CONFIG_THERMAL_OF=y CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set # CONFIG_THERMAL_GOV_FAIR_SHARE is not set CONFIG_THERMAL_GOV_STEP_WISE=y # CONFIG_THERMAL_GOV_BANG_BANG is not set # CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set CONFIG_CPU_THERMAL=y -# CONFIG_CLOCK_THERMAL is not set +CONFIG_CPU_FREQ_THERMAL=y # CONFIG_THERMAL_EMULATION is not set # CONFIG_THERMAL_MMIO is not set -# CONFIG_QORIQ_THERMAL is not set +# CONFIG_SUN8I_THERMAL is not set # CONFIG_GENERIC_ADC_THERMAL is not set CONFIG_WATCHDOG=y CONFIG_WATCHDOG_CORE=y @@ -1957,6 +2021,7 @@ CONFIG_WATCHDOG_OPEN_TIMEOUT=0 # CONFIG_DW_WATCHDOG is not set CONFIG_SUNXI_WATCHDOG=y # CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ARM_SMC_WATCHDOG is not set # CONFIG_MEN_A21_WDT is not set # @@ -1995,11 +2060,14 @@ CONFIG_MFD_AXP20X_RSB=y # CONFIG_MFD_DA9063 is not set # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_GATEWORKS_GSC is not set # CONFIG_MFD_MC13XXX_SPI is not set # CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set # CONFIG_MFD_HI6421_PMIC is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_IQS62X is not set # CONFIG_MFD_KEMPLD is not set # CONFIG_MFD_88PM800 is not set # CONFIG_MFD_88PM805 is not set @@ -2014,6 +2082,7 @@ CONFIG_MFD_AXP20X_RSB=y # CONFIG_MFD_MAX8925 is not set # CONFIG_MFD_MAX8997 is not set # CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_MENF21BMC is not set # CONFIG_EZX_PCAP is not set @@ -2030,7 +2099,6 @@ CONFIG_MFD_AXP20X_RSB=y # CONFIG_MFD_SI476X_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set # CONFIG_ABX500_CORE is not set # CONFIG_MFD_STMPE is not set CONFIG_MFD_SUN6I_PRCM=y @@ -2073,8 +2141,10 @@ CONFIG_MFD_SYSCON=y # CONFIG_MFD_WM8994 is not set # CONFIG_MFD_ROHM_BD718XX is not set # CONFIG_MFD_ROHM_BD70528 is not set +# CONFIG_MFD_ROHM_BD71828 is not set # CONFIG_MFD_STPMIC1 is not set # CONFIG_MFD_STMFX is not set +# CONFIG_MFD_INTEL_M10_BMC is not set # end of Multifunction device drivers CONFIG_REGULATOR=y @@ -2085,11 +2155,12 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y # CONFIG_REGULATOR_88PG86X is not set # CONFIG_REGULATOR_ACT8865 is not set # CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_ANATOP is not set CONFIG_REGULATOR_AXP20X=y +# CONFIG_REGULATOR_DA9121 is not set # CONFIG_REGULATOR_DA9210 is not set # CONFIG_REGULATOR_DA9211 is not set # CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_FAN53880 is not set CONFIG_REGULATOR_GPIO=y # CONFIG_REGULATOR_ISL9305 is not set # CONFIG_REGULATOR_ISL6271A is not set @@ -2104,16 +2175,26 @@ CONFIG_REGULATOR_GPIO=y # CONFIG_REGULATOR_MAX8660 is not set # CONFIG_REGULATOR_MAX8952 is not set # CONFIG_REGULATOR_MAX8973 is not set +# CONFIG_REGULATOR_MAX77826 is not set # CONFIG_REGULATOR_MCP16502 is not set +# CONFIG_REGULATOR_MP5416 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MP886X is not set +# CONFIG_REGULATOR_MPQ7920 is not set # CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PF8X00 is not set # CONFIG_REGULATOR_PFUZE100 is not set # CONFIG_REGULATOR_PV88060 is not set # CONFIG_REGULATOR_PV88080 is not set # CONFIG_REGULATOR_PV88090 is not set # CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RTMV20 is not set # CONFIG_REGULATOR_SLG51000 is not set # CONFIG_REGULATOR_SY8106A is not set # CONFIG_REGULATOR_SY8824X is not set +# CONFIG_REGULATOR_SY8827N is not set # CONFIG_REGULATOR_TPS51632 is not set # CONFIG_REGULATOR_TPS62360 is not set # CONFIG_REGULATOR_TPS65023 is not set @@ -2142,47 +2223,45 @@ CONFIG_IR_SUNXI=y # CONFIG_IR_SERIAL is not set # CONFIG_IR_SIR is not set # CONFIG_RC_XBOX_DVD is not set +# CONFIG_IR_TOY is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set CONFIG_MEDIA_SUPPORT=y +CONFIG_MEDIA_SUPPORT_FILTER=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y # -# Multimedia core support +# Media device types # # CONFIG_MEDIA_CAMERA_SUPPORT is not set # CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set # CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set # CONFIG_MEDIA_RADIO_SUPPORT is not set # CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_VIDEO_ADV_DEBUG is not set -# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +# CONFIG_MEDIA_PLATFORM_SUPPORT is not set +# CONFIG_MEDIA_TEST_SUPPORT is not set +# end of Media device types # # Media drivers # -# CONFIG_MEDIA_USB_SUPPORT is not set # -# Supported MMC/SDIO adapters +# Drivers filtered as selected at 'Filter media drivers' # -# CONFIG_CYPRESS_FIRMWARE is not set +# CONFIG_MEDIA_USB_SUPPORT is not set +# end of Media drivers + +CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV=y # -# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) +# Media ancillary drivers # # # Media SPI Adapters # # end of Media SPI Adapters - -# -# Customise DVB Frontends -# - -# -# Tools to develop new frontends -# -# end of Customise DVB Frontends +# end of Media ancillary drivers # # Graphics support @@ -2218,11 +2297,6 @@ CONFIG_DRM_KMS_CMA_HELPER=y # CONFIG_DRM_KOMEDA is not set # end of ARM devices -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - # CONFIG_DRM_VGEM is not set # CONFIG_DRM_VKMS is not set # CONFIG_DRM_EXYNOS is not set @@ -2240,6 +2314,7 @@ CONFIG_DRM_SUN8I_MIXER=y CONFIG_DRM_SUN8I_TCON_TOP=y # CONFIG_DRM_OMAP is not set # CONFIG_DRM_TILCDC is not set +# CONFIG_DRM_VIRTIO_GPU is not set # CONFIG_DRM_FSL_DCU is not set # CONFIG_DRM_STM is not set CONFIG_DRM_PANEL=y @@ -2247,6 +2322,7 @@ CONFIG_DRM_PANEL=y # # Display Panels # +# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set # CONFIG_DRM_PANEL_ARM_VERSATILE is not set # CONFIG_DRM_PANEL_ILITEK_IL9322 is not set # CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set @@ -2255,10 +2331,12 @@ CONFIG_DRM_PANEL=y # CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set # CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set # CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set # CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set # CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set # CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set +# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set # end of Display Panels CONFIG_DRM_BRIDGE=y @@ -2267,22 +2345,35 @@ CONFIG_DRM_PANEL_BRIDGE=y # # Display Interface Bridges # -# CONFIG_DRM_ANALOGIX_ANX78XX is not set # CONFIG_DRM_CDNS_DSI is not set -CONFIG_DRM_DUMB_VGA_DAC=y -# CONFIG_DRM_LVDS_ENCODER is not set +# CONFIG_DRM_CHRONTEL_CH7033 is not set +# CONFIG_DRM_DISPLAY_CONNECTOR is not set +# CONFIG_DRM_LONTIUM_LT9611 is not set +# CONFIG_DRM_LONTIUM_LT9611UXC is not set +# CONFIG_DRM_LVDS_CODEC is not set # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +# CONFIG_DRM_NWL_MIPI_DSI is not set # CONFIG_DRM_NXP_PTN3460 is not set # CONFIG_DRM_PARADE_PS8622 is not set +# CONFIG_DRM_PARADE_PS8640 is not set # CONFIG_DRM_SIL_SII8620 is not set # CONFIG_DRM_SII902X is not set # CONFIG_DRM_SII9234 is not set +# CONFIG_DRM_SIMPLE_BRIDGE is not set # CONFIG_DRM_THINE_THC63LVD1024 is not set +# CONFIG_DRM_TOSHIBA_TC358762 is not set # CONFIG_DRM_TOSHIBA_TC358764 is not set # CONFIG_DRM_TOSHIBA_TC358767 is not set +# CONFIG_DRM_TOSHIBA_TC358768 is not set +# CONFIG_DRM_TOSHIBA_TC358775 is not set # CONFIG_DRM_TI_TFP410 is not set # CONFIG_DRM_TI_SN65DSI86 is not set +# CONFIG_DRM_TI_TPD12S015 is not set +# CONFIG_DRM_ANALOGIX_ANX6345 is not set +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_ANALOGIX_ANX7625 is not set # CONFIG_DRM_I2C_ADV7511 is not set +# CONFIG_DRM_CDNS_MHDP8546 is not set # end of Display Interface Bridges # CONFIG_DRM_STI is not set @@ -2293,6 +2384,7 @@ CONFIG_DRM_DUMB_VGA_DAC=y # CONFIG_TINYDRM_HX8357D is not set # CONFIG_TINYDRM_ILI9225 is not set # CONFIG_TINYDRM_ILI9341 is not set +# CONFIG_TINYDRM_ILI9486 is not set # CONFIG_TINYDRM_MI0283QT is not set # CONFIG_TINYDRM_REPAPER is not set # CONFIG_TINYDRM_ST7586 is not set @@ -2302,6 +2394,7 @@ CONFIG_DRM_DUMB_VGA_DAC=y # CONFIG_DRM_LIMA is not set # CONFIG_DRM_PANFROST is not set # CONFIG_DRM_MCDE is not set +# CONFIG_DRM_TIDSS is not set # CONFIG_DRM_LEGACY is not set CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y @@ -2406,8 +2499,10 @@ CONFIG_SND_USB=y # CONFIG_SND_USB_VARIAX is not set CONFIG_SND_SOC=y CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +# CONFIG_SND_SOC_ADI is not set # CONFIG_SND_SOC_AMD_ACP is not set # CONFIG_SND_ATMEL_SOC is not set +# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set # CONFIG_SND_DESIGNWARE_I2S is not set # @@ -2424,6 +2519,7 @@ CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y # CONFIG_SND_SOC_FSL_SPDIF is not set # CONFIG_SND_SOC_FSL_ESAI is not set # CONFIG_SND_SOC_FSL_MICFIL is not set +# CONFIG_SND_SOC_FSL_XCVR is not set # CONFIG_SND_SOC_IMX_AUDMUX is not set # end of SoC Audio for Freescale CPUs @@ -2451,17 +2547,20 @@ CONFIG_SND_SUN4I_CODEC=y # CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set # CONFIG_SND_SOC_XILINX_SPDIF is not set # CONFIG_SND_SOC_XTFPGA_I2S is not set -# CONFIG_ZX_TDM is not set CONFIG_SND_SOC_I2C_AND_SPI=y # # CODEC drivers # # CONFIG_SND_SOC_AC97_CODEC is not set +# CONFIG_SND_SOC_ADAU1372_I2C is not set +# CONFIG_SND_SOC_ADAU1372_SPI is not set # CONFIG_SND_SOC_ADAU1701 is not set # CONFIG_SND_SOC_ADAU1761_I2C is not set # CONFIG_SND_SOC_ADAU1761_SPI is not set # CONFIG_SND_SOC_ADAU7002 is not set +# CONFIG_SND_SOC_ADAU7118_HW is not set +# CONFIG_SND_SOC_ADAU7118_I2C is not set # CONFIG_SND_SOC_AK4104 is not set # CONFIG_SND_SOC_AK4118 is not set # CONFIG_SND_SOC_AK4458 is not set @@ -2483,6 +2582,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_CS42L52 is not set # CONFIG_SND_SOC_CS42L56 is not set # CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4234 is not set # CONFIG_SND_SOC_CS4265 is not set # CONFIG_SND_SOC_CS4270 is not set # CONFIG_SND_SOC_CS4271_I2C is not set @@ -2493,6 +2593,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_CS4349 is not set # CONFIG_SND_SOC_CS53L30 is not set # CONFIG_SND_SOC_CX2072X is not set +# CONFIG_SND_SOC_DA7213 is not set # CONFIG_SND_SOC_DMIC is not set # CONFIG_SND_SOC_ES7134 is not set # CONFIG_SND_SOC_ES7241 is not set @@ -2506,7 +2607,8 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_MAX98504 is not set # CONFIG_SND_SOC_MAX9867 is not set # CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373 is not set +# CONFIG_SND_SOC_MAX98373_I2C is not set +# CONFIG_SND_SOC_MAX98390 is not set # CONFIG_SND_SOC_MAX9860 is not set # CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set # CONFIG_SND_SOC_PCM1681 is not set @@ -2519,13 +2621,16 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_PCM3060_SPI is not set # CONFIG_SND_SOC_PCM3168A_I2C is not set # CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM5102A is not set # CONFIG_SND_SOC_PCM512x_I2C is not set # CONFIG_SND_SOC_PCM512x_SPI is not set # CONFIG_SND_SOC_RK3328 is not set # CONFIG_SND_SOC_RT5616 is not set # CONFIG_SND_SOC_RT5631 is not set +# CONFIG_SND_SOC_RT5659 is not set # CONFIG_SND_SOC_SGTL5000 is not set # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set +# CONFIG_SND_SOC_SIMPLE_MUX is not set # CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set # CONFIG_SND_SOC_SPDIF is not set # CONFIG_SND_SOC_SSM2305 is not set @@ -2536,6 +2641,9 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_STA350 is not set # CONFIG_SND_SOC_STI_SAS is not set # CONFIG_SND_SOC_TAS2552 is not set +# CONFIG_SND_SOC_TAS2562 is not set +# CONFIG_SND_SOC_TAS2764 is not set +# CONFIG_SND_SOC_TAS2770 is not set # CONFIG_SND_SOC_TAS5086 is not set # CONFIG_SND_SOC_TAS571X is not set # CONFIG_SND_SOC_TAS5720 is not set @@ -2548,6 +2656,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set # CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set # CONFIG_SND_SOC_TLV320AIC3X is not set +# CONFIG_SND_SOC_TLV320ADCX140 is not set # CONFIG_SND_SOC_TS3A227E is not set # CONFIG_SND_SOC_TSCS42XX is not set # CONFIG_SND_SOC_TSCS454 is not set @@ -2575,15 +2684,22 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_WM8974 is not set # CONFIG_SND_SOC_WM8978 is not set # CONFIG_SND_SOC_WM8985 is not set +# CONFIG_SND_SOC_ZL38060 is not set # CONFIG_SND_SOC_ZX_AUD96P22 is not set # CONFIG_SND_SOC_MAX9759 is not set # CONFIG_SND_SOC_MT6351 is not set # CONFIG_SND_SOC_MT6358 is not set +# CONFIG_SND_SOC_MT6660 is not set +# CONFIG_SND_SOC_NAU8315 is not set # CONFIG_SND_SOC_NAU8540 is not set # CONFIG_SND_SOC_NAU8810 is not set # CONFIG_SND_SOC_NAU8822 is not set # CONFIG_SND_SOC_NAU8824 is not set # CONFIG_SND_SOC_TPA6130A2 is not set +# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set +# CONFIG_SND_SOC_LPASS_VA_MACRO is not set +# CONFIG_SND_SOC_LPASS_RX_MACRO is not set +# CONFIG_SND_SOC_LPASS_TX_MACRO is not set # end of CODEC drivers # CONFIG_SND_SIMPLE_CARD is not set @@ -2628,7 +2744,9 @@ CONFIG_HID_CYPRESS=y CONFIG_HID_EZKEY=y # CONFIG_HID_GEMBIRD is not set # CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set # CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set # CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set @@ -2665,6 +2783,7 @@ CONFIG_HID_MONTEREY=y # CONFIG_HID_PETALYNX is not set # CONFIG_HID_PICOLCD is not set # CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set # CONFIG_HID_PRIMAX is not set # CONFIG_HID_RETRODE is not set # CONFIG_HID_ROCCAT is not set @@ -2690,6 +2809,7 @@ CONFIG_HID_MONTEREY=y # CONFIG_HID_ZYDACRON is not set # CONFIG_HID_SENSOR_HUB is not set # CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set # end of Special HID drivers # @@ -2703,7 +2823,8 @@ CONFIG_USB_HID=y # # I2C HID support # -# CONFIG_I2C_HID is not set +# CONFIG_I2C_HID_OF is not set +# CONFIG_I2C_HID_OF_GOODIX is not set # end of I2C HID support # end of HID support @@ -2721,9 +2842,10 @@ CONFIG_USB=y # Miscellaneous USB options # CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set CONFIG_USB_AUTOSUSPEND_DELAY=2 # CONFIG_USB_MON is not set @@ -2771,7 +2893,7 @@ CONFIG_USB_OHCI_HCD_PLATFORM=y # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_CDNS_SUPPORT is not set CONFIG_USB_MUSB_HDRC=y # CONFIG_USB_MUSB_HOST is not set # CONFIG_USB_MUSB_GADGET is not set @@ -2803,7 +2925,6 @@ CONFIG_USB_MUSB_SUNXI=y # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set # CONFIG_USB_SEVSEG is not set -# CONFIG_USB_RIO500 is not set # CONFIG_USB_LEGOTOWER is not set # CONFIG_USB_LCD is not set # CONFIG_USB_CYPRESS_CY7C63 is not set @@ -2811,6 +2932,7 @@ CONFIG_USB_MUSB_SUNXI=y # CONFIG_USB_IDMOUSE is not set # CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set # CONFIG_USB_SISUSBVGA is not set # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set @@ -2857,10 +2979,33 @@ CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 # CONFIG_USB_BDC_UDC is not set # CONFIG_USB_NET2272 is not set # CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_MAX3420_UDC is not set # CONFIG_USB_DUMMY_HCD is not set # end of USB Peripheral Controller # CONFIG_USB_CONFIGFS is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_AUDIO is not set +# CONFIG_USB_ETH is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_G_SERIAL is not set +# CONFIG_USB_MIDI_GADGET is not set +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_RAW_GADGET is not set +# end of USB Gadget precomposed configurations + # CONFIG_TYPEC is not set # CONFIG_USB_ROLE_SWITCH is not set CONFIG_MMC=y @@ -2883,20 +3028,24 @@ CONFIG_MMC_BLOCK_MINORS=8 # CONFIG_MMC_USDHI6ROL0 is not set CONFIG_MMC_SUNXI=y # CONFIG_MMC_CQHCI is not set +# CONFIG_MMC_HSQ is not set # CONFIG_MMC_MTK is not set # CONFIG_MEMSTICK is not set CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y # CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set # CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set # # LED drivers # # CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW2013 is not set # CONFIG_LEDS_BCM6328 is not set # CONFIG_LEDS_BCM6358 is not set # CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set # CONFIG_LEDS_LM3530 is not set # CONFIG_LEDS_LM3532 is not set # CONFIG_LEDS_LM3642 is not set @@ -2905,10 +3054,8 @@ CONFIG_LEDS_CLASS=y CONFIG_LEDS_GPIO=y # CONFIG_LEDS_LP3944 is not set # CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP50XX is not set +# CONFIG_LEDS_LP55XX_COMMON is not set # CONFIG_LEDS_LP8860 is not set # CONFIG_LEDS_PCA955X is not set # CONFIG_LEDS_PCA963X is not set @@ -2933,6 +3080,10 @@ CONFIG_LEDS_GPIO=y # CONFIG_LEDS_SPI_BYTE is not set # CONFIG_LEDS_TI_LMU_COMMON is not set +# +# Flash and Torch LED drivers +# + # # LED Triggers # @@ -2956,6 +3107,12 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=y # CONFIG_LEDS_TRIGGER_NETDEV is not set # CONFIG_LEDS_TRIGGER_PATTERN is not set # CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set + +# +# LED Blink +# +# CONFIG_LEDS_BLINK is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC_ATOMIC_SCRUB=y @@ -3009,6 +3166,7 @@ CONFIG_RTC_DRV_AC100=y # CONFIG_RTC_DRV_RX8025 is not set # CONFIG_RTC_DRV_EM3027 is not set # CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set # CONFIG_RTC_DRV_RV8803 is not set # CONFIG_RTC_DRV_SD3078 is not set @@ -3025,7 +3183,6 @@ CONFIG_RTC_DRV_AC100=y # CONFIG_RTC_DRV_MAX6916 is not set # CONFIG_RTC_DRV_R9701 is not set # CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set # CONFIG_RTC_DRV_RS5C348 is not set # CONFIG_RTC_DRV_MAX6902 is not set # CONFIG_RTC_DRV_PCF2123 is not set @@ -3038,6 +3195,7 @@ CONFIG_RTC_I2C_AND_SPI=y # CONFIG_RTC_DRV_DS3232 is not set # CONFIG_RTC_DRV_PCF2127 is not set # CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set # # Platform RTC drivers @@ -3066,12 +3224,12 @@ CONFIG_RTC_DRV_SUN6I=y CONFIG_RTC_DRV_SUNXI=y # CONFIG_RTC_DRV_CADENCE is not set # CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_SNVS is not set # CONFIG_RTC_DRV_R7301 is not set # # HID Sensor RTC drivers # +# CONFIG_RTC_DRV_GOLDFISH is not set CONFIG_DMADEVICES=y # CONFIG_DMADEVICES_DEBUG is not set @@ -3089,9 +3247,11 @@ CONFIG_DMA_SUN6I=y # CONFIG_FSL_QDMA is not set # CONFIG_INTEL_IDMA64 is not set # CONFIG_NBPFAXI_DMA is not set +# CONFIG_XILINX_ZYNQMP_DPDMA is not set # CONFIG_QCOM_HIDMA_MGMT is not set # CONFIG_QCOM_HIDMA is not set # CONFIG_DW_DMAC is not set +# CONFIG_SF_PDMA is not set # # DMA Clients @@ -3105,7 +3265,10 @@ CONFIG_DMA_SUN6I=y CONFIG_SYNC_FILE=y # CONFIG_SW_SYNC is not set # CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set # CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set # end of DMABUF options # CONFIG_AUXDISPLAY is not set @@ -3113,6 +3276,10 @@ CONFIG_SYNC_FILE=y # CONFIG_VIRT_DRIVERS is not set CONFIG_VIRTIO_MENU=y # CONFIG_VIRTIO_MMIO is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set # # Microsoft Hyper-V guest support @@ -3122,17 +3289,12 @@ CONFIG_VIRTIO_MENU=y # CONFIG_GREYBUS is not set # CONFIG_STAGING is not set # CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_CLK_HSDK is not set # CONFIG_COMMON_CLK_MAX9485 is not set # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set @@ -3142,7 +3304,7 @@ CONFIG_COMMON_CLK=y # CONFIG_COMMON_CLK_CDCE706 is not set # CONFIG_COMMON_CLK_CDCE925 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set +# CONFIG_COMMON_CLK_AXI_CLKGEN is not set # CONFIG_COMMON_CLK_PWM is not set # CONFIG_COMMON_CLK_VC5 is not set # CONFIG_COMMON_CLK_FIXED_MMIO is not set @@ -3164,8 +3326,7 @@ CONFIG_SUN8I_DE2_CCU=y CONFIG_SUN8I_R40_CCU=y CONFIG_SUN9I_A80_CCU=y CONFIG_SUN8I_R_CCU=y -# end of Common Clock Framework - +# CONFIG_XILINX_VCU is not set # CONFIG_HWSPINLOCK is not set # @@ -3178,6 +3339,7 @@ CONFIG_SUN4I_TIMER=y CONFIG_SUN5I_HSTIMER=y CONFIG_ARM_ARCH_TIMER=y CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +# CONFIG_MICROCHIP_PIT64B is not set # end of Clock Source drivers # CONFIG_MAILBOX is not set @@ -3206,11 +3368,6 @@ CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y # # end of Amlogic SoC drivers -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - # # Broadcom SoC drivers # @@ -3220,6 +3377,8 @@ CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y # # NXP/Freescale QorIQ SoC drivers # +# CONFIG_QUICC_ENGINE is not set +# CONFIG_FSL_RCPM is not set # end of NXP/Freescale QorIQ SoC drivers # @@ -3227,18 +3386,24 @@ CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y # # end of i.MX SoC drivers +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + # # Qualcomm SoC drivers # # end of Qualcomm SoC drivers +CONFIG_SUNXI_MBUS=y CONFIG_SUNXI_SRAM=y # CONFIG_SOC_TI is not set # # Xilinx SoC drivers # -# CONFIG_XILINX_VCU is not set # end of Xilinx SoC drivers # end of SOC (System On Chip) specific Drivers @@ -3256,6 +3421,7 @@ CONFIG_EXTCON=y # CONFIG_EXTCON_RT8973A is not set # CONFIG_EXTCON_SM5502 is not set # CONFIG_EXTCON_USB_GPIO is not set +# CONFIG_EXTCON_USBC_TUSB320 is not set # CONFIG_MEMORY is not set CONFIG_IIO=y # CONFIG_IIO_BUFFER is not set @@ -3263,6 +3429,7 @@ CONFIG_IIO=y # CONFIG_IIO_TRIGGER is not set # CONFIG_IIO_SW_DEVICE is not set # CONFIG_IIO_SW_TRIGGER is not set +# CONFIG_IIO_TRIGGERED_EVENT is not set # # Accelerometers @@ -3275,6 +3442,7 @@ CONFIG_IIO=y # CONFIG_ADXL372_I2C is not set # CONFIG_BMA180 is not set # CONFIG_BMA220 is not set +# CONFIG_BMA400 is not set # CONFIG_BMC150_ACCEL is not set # CONFIG_DA280 is not set # CONFIG_DA311 is not set @@ -3301,9 +3469,12 @@ CONFIG_IIO=y # # Analog to digital converters # +# CONFIG_AD7091R5 is not set # CONFIG_AD7124 is not set +# CONFIG_AD7192 is not set # CONFIG_AD7266 is not set # CONFIG_AD7291 is not set +# CONFIG_AD7292 is not set # CONFIG_AD7298 is not set # CONFIG_AD7476 is not set # CONFIG_AD7606_IFACE_PARALLEL is not set @@ -3317,6 +3488,8 @@ CONFIG_IIO=y # CONFIG_AD7923 is not set # CONFIG_AD7949 is not set # CONFIG_AD799X is not set +# CONFIG_AD9467 is not set +# CONFIG_ADI_AXI_ADC is not set CONFIG_AXP20X_ADC=y # CONFIG_AXP288_ADC is not set # CONFIG_CC10001_ADC is not set @@ -3326,10 +3499,12 @@ CONFIG_AXP20X_ADC=y # CONFIG_INA2XX_ADC is not set # CONFIG_LTC2471 is not set # CONFIG_LTC2485 is not set +# CONFIG_LTC2496 is not set # CONFIG_LTC2497 is not set # CONFIG_MAX1027 is not set # CONFIG_MAX11100 is not set # CONFIG_MAX1118 is not set +# CONFIG_MAX1241 is not set # CONFIG_MAX1363 is not set # CONFIG_MAX9611 is not set # CONFIG_MCP320X is not set @@ -3365,15 +3540,18 @@ CONFIG_AXP20X_ADC=y # Amplifiers # # CONFIG_AD8366 is not set +# CONFIG_HMC425 is not set # end of Amplifiers # # Chemical Sensors # # CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_ATLAS_EZO_SENSOR is not set # CONFIG_BME680 is not set # CONFIG_CCS811 is not set # CONFIG_IAQCORE is not set +# CONFIG_SCD30_CORE is not set # CONFIG_SENSIRION_SGP30 is not set # CONFIG_SPS30 is not set # CONFIG_VZ89X is not set @@ -3403,19 +3581,21 @@ CONFIG_AXP20X_ADC=y # CONFIG_AD5593R is not set # CONFIG_AD5504 is not set # CONFIG_AD5624R_SPI is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set # CONFIG_AD5686_SPI is not set # CONFIG_AD5696_I2C is not set # CONFIG_AD5755 is not set # CONFIG_AD5758 is not set # CONFIG_AD5761 is not set # CONFIG_AD5764 is not set +# CONFIG_AD5766 is not set +# CONFIG_AD5770R is not set # CONFIG_AD5791 is not set # CONFIG_AD7303 is not set # CONFIG_AD8801 is not set # CONFIG_DPOT_DAC is not set # CONFIG_DS4424 is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set # CONFIG_M62332 is not set # CONFIG_MAX517 is not set # CONFIG_MAX5821 is not set @@ -3458,6 +3638,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_ADIS16130 is not set # CONFIG_ADIS16136 is not set # CONFIG_ADIS16260 is not set +# CONFIG_ADXRS290 is not set # CONFIG_ADXRS450 is not set # CONFIG_BMG160 is not set # CONFIG_FXAS21002C is not set @@ -3486,6 +3667,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_AM2315 is not set # CONFIG_DHT11 is not set # CONFIG_HDC100X is not set +# CONFIG_HDC2010 is not set # CONFIG_HTS221 is not set # CONFIG_HTU21 is not set # CONFIG_SI7005 is not set @@ -3497,10 +3679,16 @@ CONFIG_AXP20X_ADC=y # # CONFIG_ADIS16400 is not set # CONFIG_ADIS16460 is not set +# CONFIG_ADIS16475 is not set # CONFIG_ADIS16480 is not set # CONFIG_BMI160_I2C is not set # CONFIG_BMI160_SPI is not set +# CONFIG_FXOS8700_I2C is not set +# CONFIG_FXOS8700_SPI is not set # CONFIG_KMX61 is not set +# CONFIG_INV_ICM42600_I2C is not set +# CONFIG_INV_ICM42600_SPI is not set +# CONFIG_INV_MPU6050_I2C is not set # CONFIG_INV_MPU6050_SPI is not set # CONFIG_IIO_ST_LSM6DSX is not set # end of Inertial measurement units @@ -3509,9 +3697,12 @@ CONFIG_AXP20X_ADC=y # Light sensors # # CONFIG_ADJD_S311 is not set +# CONFIG_ADUX1020 is not set +# CONFIG_AL3010 is not set # CONFIG_AL3320A is not set # CONFIG_APDS9300 is not set # CONFIG_APDS9960 is not set +# CONFIG_AS73211 is not set # CONFIG_BH1750 is not set # CONFIG_BH1780 is not set # CONFIG_CM32181 is not set @@ -3519,6 +3710,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_CM3323 is not set # CONFIG_CM3605 is not set # CONFIG_CM36651 is not set +# CONFIG_GP2AP002 is not set # CONFIG_GP2AP020A00F is not set # CONFIG_SENSORS_ISL29018 is not set # CONFIG_SENSORS_ISL29028 is not set @@ -3545,6 +3737,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_US5182D is not set # CONFIG_VCNL4000 is not set # CONFIG_VCNL4035 is not set +# CONFIG_VEML6030 is not set # CONFIG_VEML6070 is not set # CONFIG_VL6180 is not set # CONFIG_ZOPT2201 is not set @@ -3565,6 +3758,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_SENSORS_HMC5843_SPI is not set # CONFIG_SENSORS_RM3100_I2C is not set # CONFIG_SENSORS_RM3100_SPI is not set +# CONFIG_YAMAHA_YAS530 is not set # end of Magnetometer sensors # @@ -3578,6 +3772,11 @@ CONFIG_AXP20X_ADC=y # # end of Inclinometer sensors +# +# Linear and angular position sensors +# +# end of Linear and angular position sensors + # # Digital potentiometers # @@ -3604,8 +3803,10 @@ CONFIG_AXP20X_ADC=y # # CONFIG_ABP060MG is not set # CONFIG_BMP280 is not set +# CONFIG_DLHL60D is not set # CONFIG_DPS310 is not set # CONFIG_HP03 is not set +# CONFIG_ICP10100 is not set # CONFIG_MPL115_I2C is not set # CONFIG_MPL115_SPI is not set # CONFIG_MPL3115 is not set @@ -3629,10 +3830,13 @@ CONFIG_AXP20X_ADC=y # CONFIG_ISL29501 is not set # CONFIG_LIDAR_LITE_V2 is not set # CONFIG_MB1232 is not set +# CONFIG_PING is not set # CONFIG_RFD77402 is not set # CONFIG_SRF04 is not set +# CONFIG_SX9310 is not set # CONFIG_SX9500 is not set # CONFIG_SRF08 is not set +# CONFIG_VCNL3020 is not set # CONFIG_VL53L0X_I2C is not set # end of Proximity and distance sensors @@ -3646,6 +3850,7 @@ CONFIG_AXP20X_ADC=y # # Temperature sensors # +# CONFIG_LTC2983 is not set # CONFIG_MAXIM_THERMOCOUPLE is not set # CONFIG_MLX90614 is not set # CONFIG_MLX90632 is not set @@ -3658,6 +3863,7 @@ CONFIG_AXP20X_ADC=y CONFIG_PWM=y CONFIG_PWM_SYSFS=y +# CONFIG_PWM_ATMEL_TCB is not set # CONFIG_PWM_FSL_FTM is not set # CONFIG_PWM_PCA9685 is not set CONFIG_PWM_SUN4I=y @@ -3674,6 +3880,8 @@ CONFIG_ARM_GIC_MAX_NR=1 # CONFIG_IPACK_BUS is not set CONFIG_ARCH_HAS_RESET_CONTROLLER=y CONFIG_RESET_CONTROLLER=y +# CONFIG_RESET_BRCMSTB_RESCAL is not set +# CONFIG_RESET_INTEL_GW is not set CONFIG_RESET_SIMPLE=y CONFIG_RESET_SUNXI=y # CONFIG_RESET_TI_SYSCON is not set @@ -3686,10 +3894,12 @@ CONFIG_GENERIC_PHY_MIPI_DPHY=y CONFIG_PHY_SUN4I_USB=y CONFIG_PHY_SUN6I_MIPI_DPHY=y CONFIG_PHY_SUN9I_USB=y +# CONFIG_PHY_SUN50I_USB3 is not set # CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set +# CONFIG_PHY_CADENCE_TORRENT is not set # CONFIG_PHY_CADENCE_DPHY is not set # CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set # CONFIG_PHY_FSL_IMX8MQ_USB is not set # CONFIG_PHY_MIXEL_MIPI_DPHY is not set # CONFIG_PHY_PXA_28NM_HSIC is not set @@ -3722,6 +3932,7 @@ CONFIG_ARM_PMU=y CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y CONFIG_NVMEM_SUNXI_SID=y +# CONFIG_NVMEM_RMEM is not set # # HW tracing support @@ -3763,7 +3974,6 @@ CONFIG_FS_MBCACHE=y # CONFIG_BTRFS_FS is not set # CONFIG_NILFS2_FS is not set # CONFIG_F2FS_FS is not set -CONFIG_FS_POSIX_ACL=y CONFIG_EXPORTFS=y # CONFIG_EXPORTFS_BLOCK_OPS is not set CONFIG_FILE_LOCKING=y @@ -3794,7 +4004,7 @@ CONFIG_INOTIFY_USER=y # end of CD-ROM/DVD Filesystems # -# DOS/FAT/NT Filesystems +# DOS/FAT/EXFAT/NT Filesystems # CONFIG_FAT_FS=y # CONFIG_MSDOS_FS is not set @@ -3802,8 +4012,9 @@ CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" # CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set # CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems +# end of DOS/FAT/EXFAT/NT Filesystems # # Pseudo filesystems @@ -3845,29 +4056,15 @@ CONFIG_MISC_FILESYSTEMS=y # CONFIG_UFS_FS is not set # CONFIG_EROFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -CONFIG_NFS_V3_ACL=y -CONFIG_NFS_V4=y -# CONFIG_NFS_SWAP is not set -# CONFIG_NFS_V4_1 is not set -CONFIG_ROOT_NFS=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_FS is not set # CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_ACL_SUPPORT=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -CONFIG_SUNRPC_GSS=y -# CONFIG_SUNRPC_DEBUG is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y @@ -3920,6 +4117,7 @@ CONFIG_NLS_ISO8859_1=y # CONFIG_NLS_MAC_TURKISH is not set # CONFIG_NLS_UTF8 is not set # CONFIG_UNICODE is not set +CONFIG_IO_WQ=y # end of File systems # @@ -3928,7 +4126,6 @@ CONFIG_NLS_ISO8859_1=y CONFIG_KEYS=y # CONFIG_KEYS_REQUEST_CACHE is not set # CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set # CONFIG_ENCRYPTED_KEYS is not set # CONFIG_KEY_DH_OPERATIONS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set @@ -3962,13 +4159,14 @@ CONFIG_CRYPTO=y # CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG2=y # CONFIG_CRYPTO_MANAGER is not set # CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y # CONFIG_CRYPTO_NULL is not set # CONFIG_CRYPTO_PCRYPT is not set # CONFIG_CRYPTO_CRYPTD is not set @@ -3982,6 +4180,8 @@ CONFIG_CRYPTO_RNG2=y # CONFIG_CRYPTO_DH is not set # CONFIG_CRYPTO_ECDH is not set # CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set # # Authenticated Encryption with Associated Data @@ -4023,47 +4223,37 @@ CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_CRC32 is not set # CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set # CONFIG_CRYPTO_CRCT10DIF is not set # CONFIG_CRYPTO_GHASH is not set # CONFIG_CRYPTO_POLY1305 is not set # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y # CONFIG_CRYPTO_SHA256 is not set # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_SM3 is not set # CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # # Ciphers # -CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_CAMELLIA is not set # CONFIG_CRYPTO_CAST5 is not set # CONFIG_CRYPTO_CAST6 is not set -CONFIG_CRYPTO_LIB_DES=y # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set # @@ -4086,13 +4276,30 @@ CONFIG_CRYPTO_LIB_DES=y # CONFIG_CRYPTO_USER_API_SKCIPHER is not set # CONFIG_CRYPTO_USER_API_RNG is not set # CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_ALLWINNER=y CONFIG_CRYPTO_DEV_SUN4I_SS=y # CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +# CONFIG_CRYPTO_DEV_SUN8I_CE is not set +# CONFIG_CRYPTO_DEV_SUN8I_SS is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set # CONFIG_CRYPTO_DEV_SAFEXCEL is not set # CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set # CONFIG_ASYMMETRIC_KEY_TYPE is not set # @@ -4104,6 +4311,7 @@ CONFIG_CRYPTO_DEV_SUN4I_SS=y # # Library routines # +CONFIG_LINEAR_RANGES=y # CONFIG_PACKING is not set CONFIG_BITREVERSE=y CONFIG_HAVE_ARCH_BITREVERSE=y @@ -4111,6 +4319,7 @@ CONFIG_GENERIC_STRNCPY_FROM_USER=y CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y # CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y @@ -4129,10 +4338,12 @@ CONFIG_CRC32_SLICEBY8=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set # CONFIG_CRC8 is not set +CONFIG_XXHASH=y # CONFIG_RANDOM32_SELFTEST is not set CONFIG_ZLIB_INFLATE=y CONFIG_LZO_DECOMPRESS=y CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y CONFIG_XZ_DEC=y CONFIG_XZ_DEC_X86=y CONFIG_XZ_DEC_POWERPC=y @@ -4148,17 +4359,21 @@ CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_XZ=y CONFIG_DECOMPRESS_LZO=y CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y CONFIG_NEED_DMA_MAP_STATE=y CONFIG_DMA_DECLARE_COHERENT=y CONFIG_ARCH_HAS_SETUP_DMA_OPS=y CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_DMA_NONCOHERENT_MMAP=y CONFIG_DMA_REMAP=y CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set # # Default contiguous memory area size: @@ -4170,6 +4385,7 @@ CONFIG_CMA_SIZE_SEL_MBYTES=y # CONFIG_CMA_SIZE_SEL_MAX is not set CONFIG_CMA_ALIGNMENT=8 # CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set CONFIG_CPU_RMAP=y CONFIG_DQL=y CONFIG_GLOB=y @@ -4177,7 +4393,9 @@ CONFIG_GLOB=y CONFIG_NLATTR=y # CONFIG_IRQ_POLL is not set CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_32=y CONFIG_FONT_SUPPORT=y # CONFIG_FONTS is not set CONFIG_FONT_8x8=y @@ -4187,6 +4405,8 @@ CONFIG_SBITMAP=y # CONFIG_STRING_SELFTEST is not set # end of Library routines +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + # # Kernel hacking # @@ -4200,22 +4420,33 @@ CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_CONSOLE_LOGLEVEL_QUIET=4 CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 # CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y # end of printk and dmesg options # # Compile-time checks and compiler options # -CONFIG_ENABLE_MUST_CHECK=y CONFIG_FRAME_WARN=1024 # CONFIG_STRIP_ASM_SYMS is not set -CONFIG_DEBUG_FS=y # CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y # CONFIG_DEBUG_SECTION_MISMATCH is not set CONFIG_SECTION_MISMATCH_WARN_ONLY=y # end of Compile-time checks and compiler options +# +# Generic Kernel Debugging Instruments +# # CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + # CONFIG_DEBUG_KERNEL is not set # @@ -4224,27 +4455,32 @@ CONFIG_SECTION_MISMATCH_WARN_ONLY=y # CONFIG_PAGE_EXTENSION is not set # CONFIG_PAGE_POISONING is not set # CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_WX is not set # CONFIG_SLUB_DEBUG_ON is not set # CONFIG_SLUB_STATS is not set CONFIG_HAVE_DEBUG_KMEMLEAK=y CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_HAVE_ARCH_KASAN=y CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set # end of Memory Debugging -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set - # -# Debug Lockups and Hangs +# Debug Oops, Lockups and Hangs # -# end of Debug Lockups and Hangs - # CONFIG_PANIC_ON_OOPS is not set CONFIG_PANIC_ON_OOPS_VALUE=0 CONFIG_PANIC_TIMEOUT=0 +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# end of Scheduler Debugging + # CONFIG_DEBUG_TIMEKEEPING is not set # @@ -4254,9 +4490,15 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # CONFIG_WW_MUTEX_SELFTEST is not set # end of Lock Debugging (spinlocks, mutexes, etc...) +# CONFIG_DEBUG_IRQFLAGS is not set # CONFIG_STACKTRACE is not set # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -CONFIG_DEBUG_BUGVERBOSE=y + +# +# Debug kernel data structures +# +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures # # RCU Debugging @@ -4273,9 +4515,33 @@ CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_C_RECORDMCOUNT=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set +# CONFIG_SAMPLES is not set +# CONFIG_STRICT_DEVMEM is not set + +# +# arm Debugging +# +# CONFIG_UNWINDER_FRAME_POINTER is not set +CONFIG_UNWINDER_ARM=y +CONFIG_ARM_UNWIND=y +# CONFIG_DEBUG_USER is not set +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" +# CONFIG_PID_IN_CONTEXTIDR is not set +# CONFIG_CORESIGHT is not set +# end of arm Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_LKDTM is not set # CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set # CONFIG_TEST_SORT is not set # CONFIG_REED_SOLOMON_TEST is not set # CONFIG_ATOMIC64_SELFTEST is not set @@ -4285,7 +4551,6 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_KSTRTOX is not set # CONFIG_TEST_PRINTF is not set # CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set # CONFIG_TEST_UUID is not set # CONFIG_TEST_XARRAY is not set # CONFIG_TEST_OVERFLOW is not set @@ -4293,6 +4558,7 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_HASH is not set # CONFIG_TEST_IDA is not set # CONFIG_TEST_LKM is not set +# CONFIG_TEST_BITOPS is not set # CONFIG_TEST_VMALLOC is not set # CONFIG_TEST_USER_COPY is not set # CONFIG_TEST_BPF is not set @@ -4306,21 +4572,7 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_MEMCAT_P is not set # CONFIG_TEST_STACKINIT is not set # CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set # CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_CORESIGHT is not set +# end of Kernel Testing and Coverage # end of Kernel hacking diff --git a/mainboards/cubie/board/cpu.config-5.4.0 b/mainboards/cubie/board/cpu.config-5.4.0 index 6a3a5fc2..63655833 100644 --- a/mainboards/cubie/board/cpu.config-5.4.0 +++ b/mainboards/cubie/board/cpu.config-5.4.0 @@ -1,12 +1,14 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm 5.9.0-rc7 Kernel Configuration +# Linux/arm 5.12.0-rc2 Kernel Configuration # -CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0" +CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 +CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_CAN_LINK_STATIC=y CONFIG_CC_HAS_ASM_GOTO=y @@ -55,6 +57,8 @@ CONFIG_HARDIRQS_SW_RESEND=y CONFIG_GENERIC_IRQ_CHIP=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_GENERIC_IRQ_IPI=y CONFIG_HANDLE_DOMAIN_IRQ=y CONFIG_IRQ_FORCED_THREADING=y CONFIG_SPARSE_IRQ=y @@ -152,6 +156,7 @@ CONFIG_RD_ZSTD=y # CONFIG_BOOT_CONFIG is not set CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y CONFIG_SYSCTL=y CONFIG_HAVE_UID16=y CONFIG_BPF=y @@ -182,6 +187,7 @@ CONFIG_KALLSYMS_BASE_RELATIVE=y # CONFIG_BPF_SYSCALL is not set # CONFIG_USERFAULTFD is not set CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y CONFIG_RSEQ=y # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y @@ -228,7 +234,6 @@ CONFIG_MMU=y CONFIG_ARCH_MMAP_RND_BITS_MIN=8 CONFIG_ARCH_MMAP_RND_BITS_MAX=16 CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EBSA110 is not set # CONFIG_ARCH_EP93XX is not set # CONFIG_ARCH_FOOTBRIDGE is not set # CONFIG_ARCH_IOP32X is not set @@ -285,7 +290,6 @@ CONFIG_ARCH_MULTI_V6_V7=y # CONFIG_SOC_DRA7XX is not set # end of TI OMAP/AM/DM/DRA Family -# CONFIG_ARCH_SIRF is not set # CONFIG_ARCH_QCOM is not set # CONFIG_ARCH_RDA is not set # CONFIG_ARCH_REALTEK is not set @@ -305,13 +309,11 @@ CONFIG_MACH_SUN7I=y CONFIG_MACH_SUN8I=y CONFIG_MACH_SUN9I=y CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TANGO is not set # CONFIG_ARCH_TEGRA is not set # CONFIG_ARCH_UNIPHIER is not set # CONFIG_ARCH_U8500 is not set # CONFIG_ARCH_VEXPRESS is not set # CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZX is not set # CONFIG_ARCH_ZYNQ is not set # @@ -423,7 +425,6 @@ CONFIG_AEABI=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y CONFIG_HIGHMEM=y CONFIG_HIGHPTE=y CONFIG_CPU_SW_DOMAIN_PAN=y @@ -433,7 +434,6 @@ CONFIG_ARM_MODULE_PLTS=y CONFIG_FORCE_MAX_ZONEORDER=11 CONFIG_ALIGNMENT_TRAP=y # CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_SECCOMP is not set # CONFIG_PARAVIRT is not set # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set # CONFIG_XEN is not set @@ -553,7 +553,7 @@ CONFIG_AS_VFP_VMRS_FPINST=y # # General architecture-dependent options # -CONFIG_HAVE_OPROFILE=y +CONFIG_SET_FS=y # CONFIG_KPROBES is not set # CONFIG_JUMP_LABEL is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y @@ -577,11 +577,15 @@ CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set CONFIG_HAVE_STACKPROTECTOR=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_LTO_NONE=y CONFIG_HAVE_CONTEXT_TRACKING=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y @@ -604,6 +608,8 @@ CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_STRICT_MODULE_RWX=y CONFIG_ARCH_HAS_PHYS_TO_DMA=y # CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_HAVE_ARCH_PFN_VALID=y # # GCOV-based kernel profiling @@ -626,8 +632,6 @@ CONFIG_MODULE_UNLOAD=y # CONFIG_MODULE_SIG is not set # CONFIG_MODULE_COMPRESS is not set # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLK_SCSI_REQUEST=y @@ -715,7 +719,8 @@ CONFIG_CMA_AREAS=7 CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_IDLE_PAGE_TRACKING is not set # CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set +# CONFIG_GUP_TEST is not set +CONFIG_KMAP_LOCAL=y # end of Memory Management options CONFIG_NET=y @@ -791,6 +796,7 @@ CONFIG_DNS_RESOLVER=y # CONFIG_NET_NCSI is not set CONFIG_RPS=y CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y CONFIG_XPS=y # CONFIG_CGROUP_NET_PRIO is not set # CONFIG_CGROUP_NET_CLASSID is not set @@ -812,6 +818,7 @@ CONFIG_CAN_RAW=y CONFIG_CAN_BCM=y CONFIG_CAN_GW=y # CONFIG_CAN_J1939 is not set +# CONFIG_CAN_ISOTP is not set # # CAN Device Drivers @@ -839,6 +846,7 @@ CONFIG_CAN_SUN4I=y # # CONFIG_CAN_HI311X is not set # CONFIG_CAN_MCP251X is not set +# CONFIG_CAN_MCP251XFD is not set # end of CAN SPI interfaces # @@ -861,7 +869,6 @@ CONFIG_CAN_SUN4I=y # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set # CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y # CONFIG_NET_9P_DEBUG is not set @@ -943,7 +950,6 @@ CONFIG_OF_KOBJ=y CONFIG_OF_ADDRESS=y CONFIG_OF_IRQ=y CONFIG_OF_NET=y -CONFIG_OF_MDIO=y CONFIG_OF_RESERVED_MEM=y # CONFIG_OF_OVERLAY is not set CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y @@ -1007,13 +1013,6 @@ CONFIG_BLK_DEV=y # CONFIG_SENSORS_LIS3_SPI is not set # CONFIG_SENSORS_LIS3_I2C is not set # CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - # CONFIG_ECHO is not set # CONFIG_MISC_RTSX_USB is not set # end of Misc devices @@ -1120,6 +1119,7 @@ CONFIG_NET_CORE=y # # Distributed Switch Architecture drivers # +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set # end of Distributed Switch Architecture drivers CONFIG_ETHERNET=y @@ -1130,8 +1130,6 @@ CONFIG_SUN4I_EMAC=y CONFIG_NET_VENDOR_AMAZON=y CONFIG_NET_VENDOR_AQUANTIA=y # CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set # CONFIG_NET_VENDOR_BROADCOM is not set CONFIG_NET_VENDOR_CADENCE=y # CONFIG_MACB is not set @@ -1185,60 +1183,41 @@ CONFIG_STMMAC_PLATFORM=y CONFIG_DWMAC_GENERIC=y CONFIG_DWMAC_SUNXI=y CONFIG_DWMAC_SUN8I=y +# CONFIG_DWMAC_INTEL_PLAT is not set CONFIG_NET_VENDOR_SYNOPSYS=y # CONFIG_DWC_XLGMAC is not set # CONFIG_NET_VENDOR_VIA is not set # CONFIG_NET_VENDOR_WIZNET is not set CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_EMACLITE is not set # CONFIG_XILINX_AXI_EMAC is not set # CONFIG_XILINX_LL_TEMAC is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_SUN4I=y -CONFIG_MDIO_XPCS=y CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y # CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y +# CONFIG_SFP is not set # # MII PHY device drivers # -# CONFIG_SFP is not set -# CONFIG_ADIN_PHY is not set # CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set # CONFIG_AQUANTIA_PHY is not set # CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set # CONFIG_BROADCOM_PHY is not set # CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set # CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set # CONFIG_CICADA_PHY is not set # CONFIG_CORTINA_PHY is not set # CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -CONFIG_FIXED_PHY=y # CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set # CONFIG_INTEL_XWAY_PHY is not set # CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set # CONFIG_MARVELL_PHY is not set # CONFIG_MARVELL_10G_PHY is not set # CONFIG_MICREL_PHY is not set @@ -1255,9 +1234,41 @@ CONFIG_FIXED_PHY=y # CONFIG_SMSC_PHY is not set # CONFIG_STE10XP is not set # CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set # CONFIG_VITESSE_PHY is not set # CONFIG_XILINX_GMII2RGMII is not set # CONFIG_MICREL_KS8995MA is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_SUN4I=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=y +# end of PCS device drivers + # CONFIG_PPP is not set # CONFIG_SLIP is not set CONFIG_USB_NET_DRIVERS=y @@ -1270,10 +1281,6 @@ CONFIG_USB_NET_DRIVERS=y # CONFIG_USB_USBNET is not set # CONFIG_USB_IPHETH is not set # CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# # CONFIG_WAN is not set # CONFIG_NETDEVSIM is not set # CONFIG_NET_FAILOVER is not set @@ -1286,7 +1293,6 @@ CONFIG_USB_NET_DRIVERS=y CONFIG_INPUT=y CONFIG_INPUT_LEDS=y CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set @@ -1401,6 +1407,7 @@ CONFIG_TOUCHSCREEN_SUN4I=y # CONFIG_TOUCHSCREEN_ZFORCE is not set # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set # CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set CONFIG_INPUT_MISC=y # CONFIG_INPUT_AD714X is not set # CONFIG_INPUT_ATMEL_CAPTOUCH is not set @@ -1423,6 +1430,7 @@ CONFIG_INPUT_AXP20X_PEK=y # CONFIG_INPUT_PWM_BEEPER is not set # CONFIG_INPUT_PWM_VIBRA is not set # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set # CONFIG_INPUT_ADXL34X is not set # CONFIG_INPUT_IMS_PCU is not set # CONFIG_INPUT_IQS269A is not set @@ -1501,7 +1509,6 @@ CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_BCM63XX is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set # CONFIG_SERIAL_XILINX_PS_UART is not set # CONFIG_SERIAL_ARC is not set # CONFIG_SERIAL_FSL_LPUART is not set @@ -1518,6 +1525,7 @@ CONFIG_SERIAL_MCTRL_GPIO=y # CONFIG_TRACE_SINK is not set # CONFIG_HVC_DCC is not set # CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_VIRTIO_CONSOLE is not set # CONFIG_IPMI_HANDLER is not set # CONFIG_HW_RANDOM is not set CONFIG_DEVMEM=y @@ -1674,6 +1682,7 @@ CONFIG_GENERIC_PINCONF=y # CONFIG_PINCTRL_SX150X is not set # CONFIG_PINCTRL_STMFX is not set # CONFIG_PINCTRL_OCELOT is not set +# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set # # Renesas pinctrl drivers @@ -1702,11 +1711,14 @@ CONFIG_PINCTRL_SUN9I_A80_R=y # CONFIG_PINCTRL_SUN50I_H5 is not set # CONFIG_PINCTRL_SUN50I_H6 is not set # CONFIG_PINCTRL_SUN50I_H6_R is not set +# CONFIG_PINCTRL_SUN50I_H616 is not set +# CONFIG_PINCTRL_SUN50I_H616_R is not set CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y CONFIG_GPIOLIB=y CONFIG_GPIOLIB_FASTPATH_LIMIT=512 CONFIG_OF_GPIO=y -CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y # # Memory mapped GPIO drivers @@ -1766,10 +1778,14 @@ CONFIG_GPIO_SYSFS=y # # end of USB GPIO expanders +# +# Virtual GPIO drivers +# # CONFIG_GPIO_AGGREGATOR is not set # CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + # CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set # CONFIG_POWER_RESET is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set @@ -1782,7 +1798,6 @@ CONFIG_POWER_SUPPLY_HWMON=y # CONFIG_BATTERY_DS2780 is not set # CONFIG_BATTERY_DS2781 is not set # CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_LEGO_EV3 is not set # CONFIG_BATTERY_SBS is not set # CONFIG_CHARGER_SBS is not set # CONFIG_MANAGER_SBS is not set @@ -1799,6 +1814,7 @@ CONFIG_AXP20X_POWER=y # CONFIG_CHARGER_GPIO is not set # CONFIG_CHARGER_MANAGER is not set # CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set # CONFIG_CHARGER_DETECTOR_MAX14656 is not set # CONFIG_CHARGER_BQ2415X is not set # CONFIG_CHARGER_BQ24190 is not set @@ -1806,6 +1822,8 @@ CONFIG_AXP20X_POWER=y # CONFIG_CHARGER_BQ24735 is not set # CONFIG_CHARGER_BQ2515X is not set # CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set # CONFIG_CHARGER_SMB347 is not set # CONFIG_BATTERY_GAUGE_LTC2941 is not set # CONFIG_CHARGER_RT9455 is not set @@ -1833,12 +1851,14 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set # CONFIG_SENSORS_AS370 is not set # CONFIG_SENSORS_ASC7621 is not set # CONFIG_SENSORS_AXI_FAN_CONTROL is not set # CONFIG_SENSORS_ASPEED is not set # CONFIG_SENSORS_ATXP1 is not set # CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set # CONFIG_SENSORS_DRIVETEMP is not set # CONFIG_SENSORS_DS620 is not set # CONFIG_SENSORS_DS1621 is not set @@ -1861,6 +1881,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_LTC2947_I2C is not set # CONFIG_SENSORS_LTC2947_SPI is not set # CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set # CONFIG_SENSORS_LTC4151 is not set # CONFIG_SENSORS_LTC4215 is not set # CONFIG_SENSORS_LTC4222 is not set @@ -1868,6 +1889,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_LTC4260 is not set # CONFIG_SENSORS_LTC4261 is not set # CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX127 is not set # CONFIG_SENSORS_MAX16065 is not set # CONFIG_SENSORS_MAX1619 is not set # CONFIG_SENSORS_MAX1668 is not set @@ -1882,6 +1904,8 @@ CONFIG_HWMON=y # CONFIG_SENSORS_MAX31790 is not set # CONFIG_SENSORS_MCP3021 is not set # CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set # CONFIG_SENSORS_ADCXX is not set # CONFIG_SENSORS_LM63 is not set # CONFIG_SENSORS_LM70 is not set @@ -1911,6 +1935,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_PCF8591 is not set # CONFIG_PMBUS is not set # CONFIG_SENSORS_PWM_FAN is not set +# CONFIG_SENSORS_SBTSI is not set # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SHT21 is not set # CONFIG_SENSORS_SHT3x is not set @@ -2119,6 +2144,7 @@ CONFIG_MFD_SYSCON=y # CONFIG_MFD_ROHM_BD71828 is not set # CONFIG_MFD_STPMIC1 is not set # CONFIG_MFD_STMFX is not set +# CONFIG_MFD_INTEL_M10_BMC is not set # end of Multifunction device drivers CONFIG_REGULATOR=y @@ -2130,6 +2156,7 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y # CONFIG_REGULATOR_ACT8865 is not set # CONFIG_REGULATOR_AD5398 is not set CONFIG_REGULATOR_AXP20X=y +# CONFIG_REGULATOR_DA9121 is not set # CONFIG_REGULATOR_DA9210 is not set # CONFIG_REGULATOR_DA9211 is not set # CONFIG_REGULATOR_FAN53555 is not set @@ -2156,11 +2183,14 @@ CONFIG_REGULATOR_GPIO=y # CONFIG_REGULATOR_MPQ7920 is not set # CONFIG_REGULATOR_MT6311 is not set # CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PF8X00 is not set # CONFIG_REGULATOR_PFUZE100 is not set # CONFIG_REGULATOR_PV88060 is not set # CONFIG_REGULATOR_PV88080 is not set # CONFIG_REGULATOR_PV88090 is not set # CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RTMV20 is not set # CONFIG_REGULATOR_SLG51000 is not set # CONFIG_REGULATOR_SY8106A is not set # CONFIG_REGULATOR_SY8824X is not set @@ -2284,6 +2314,7 @@ CONFIG_DRM_SUN8I_MIXER=y CONFIG_DRM_SUN8I_TCON_TOP=y # CONFIG_DRM_OMAP is not set # CONFIG_DRM_TILCDC is not set +# CONFIG_DRM_VIRTIO_GPU is not set # CONFIG_DRM_FSL_DCU is not set # CONFIG_DRM_STM is not set CONFIG_DRM_PANEL=y @@ -2291,6 +2322,7 @@ CONFIG_DRM_PANEL=y # # Display Panels # +# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set # CONFIG_DRM_PANEL_ARM_VERSATILE is not set # CONFIG_DRM_PANEL_ILITEK_IL9322 is not set # CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set @@ -2317,6 +2349,7 @@ CONFIG_DRM_PANEL_BRIDGE=y # CONFIG_DRM_CHRONTEL_CH7033 is not set # CONFIG_DRM_DISPLAY_CONNECTOR is not set # CONFIG_DRM_LONTIUM_LT9611 is not set +# CONFIG_DRM_LONTIUM_LT9611UXC is not set # CONFIG_DRM_LVDS_CODEC is not set # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set # CONFIG_DRM_NWL_MIPI_DSI is not set @@ -2338,7 +2371,9 @@ CONFIG_DRM_PANEL_BRIDGE=y # CONFIG_DRM_TI_TPD12S015 is not set # CONFIG_DRM_ANALOGIX_ANX6345 is not set # CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_ANALOGIX_ANX7625 is not set # CONFIG_DRM_I2C_ADV7511 is not set +# CONFIG_DRM_CDNS_MHDP8546 is not set # end of Display Interface Bridges # CONFIG_DRM_STI is not set @@ -2464,6 +2499,7 @@ CONFIG_SND_USB=y # CONFIG_SND_USB_VARIAX is not set CONFIG_SND_SOC=y CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +# CONFIG_SND_SOC_ADI is not set # CONFIG_SND_SOC_AMD_ACP is not set # CONFIG_SND_ATMEL_SOC is not set # CONFIG_SND_BCM63XX_I2S_WHISTLER is not set @@ -2483,6 +2519,7 @@ CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y # CONFIG_SND_SOC_FSL_SPDIF is not set # CONFIG_SND_SOC_FSL_ESAI is not set # CONFIG_SND_SOC_FSL_MICFIL is not set +# CONFIG_SND_SOC_FSL_XCVR is not set # CONFIG_SND_SOC_IMX_AUDMUX is not set # end of SoC Audio for Freescale CPUs @@ -2510,13 +2547,14 @@ CONFIG_SND_SUN4I_CODEC=y # CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set # CONFIG_SND_SOC_XILINX_SPDIF is not set # CONFIG_SND_SOC_XTFPGA_I2S is not set -# CONFIG_ZX_TDM is not set CONFIG_SND_SOC_I2C_AND_SPI=y # # CODEC drivers # # CONFIG_SND_SOC_AC97_CODEC is not set +# CONFIG_SND_SOC_ADAU1372_I2C is not set +# CONFIG_SND_SOC_ADAU1372_SPI is not set # CONFIG_SND_SOC_ADAU1701 is not set # CONFIG_SND_SOC_ADAU1761_I2C is not set # CONFIG_SND_SOC_ADAU1761_SPI is not set @@ -2544,6 +2582,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_CS42L52 is not set # CONFIG_SND_SOC_CS42L56 is not set # CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4234 is not set # CONFIG_SND_SOC_CS4265 is not set # CONFIG_SND_SOC_CS4270 is not set # CONFIG_SND_SOC_CS4271_I2C is not set @@ -2582,13 +2621,16 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_PCM3060_SPI is not set # CONFIG_SND_SOC_PCM3168A_I2C is not set # CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM5102A is not set # CONFIG_SND_SOC_PCM512x_I2C is not set # CONFIG_SND_SOC_PCM512x_SPI is not set # CONFIG_SND_SOC_RK3328 is not set # CONFIG_SND_SOC_RT5616 is not set # CONFIG_SND_SOC_RT5631 is not set +# CONFIG_SND_SOC_RT5659 is not set # CONFIG_SND_SOC_SGTL5000 is not set # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set +# CONFIG_SND_SOC_SIMPLE_MUX is not set # CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set # CONFIG_SND_SOC_SPDIF is not set # CONFIG_SND_SOC_SSM2305 is not set @@ -2600,6 +2642,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_STI_SAS is not set # CONFIG_SND_SOC_TAS2552 is not set # CONFIG_SND_SOC_TAS2562 is not set +# CONFIG_SND_SOC_TAS2764 is not set # CONFIG_SND_SOC_TAS2770 is not set # CONFIG_SND_SOC_TAS5086 is not set # CONFIG_SND_SOC_TAS571X is not set @@ -2647,11 +2690,16 @@ CONFIG_SND_SOC_I2C_AND_SPI=y # CONFIG_SND_SOC_MT6351 is not set # CONFIG_SND_SOC_MT6358 is not set # CONFIG_SND_SOC_MT6660 is not set +# CONFIG_SND_SOC_NAU8315 is not set # CONFIG_SND_SOC_NAU8540 is not set # CONFIG_SND_SOC_NAU8810 is not set # CONFIG_SND_SOC_NAU8822 is not set # CONFIG_SND_SOC_NAU8824 is not set # CONFIG_SND_SOC_TPA6130A2 is not set +# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set +# CONFIG_SND_SOC_LPASS_VA_MACRO is not set +# CONFIG_SND_SOC_LPASS_RX_MACRO is not set +# CONFIG_SND_SOC_LPASS_TX_MACRO is not set # end of CODEC drivers # CONFIG_SND_SIMPLE_CARD is not set @@ -2698,6 +2746,7 @@ CONFIG_HID_EZKEY=y # CONFIG_HID_GFRM is not set # CONFIG_HID_GLORIOUS is not set # CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set # CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set @@ -2734,6 +2783,7 @@ CONFIG_HID_MONTEREY=y # CONFIG_HID_PETALYNX is not set # CONFIG_HID_PICOLCD is not set # CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set # CONFIG_HID_PRIMAX is not set # CONFIG_HID_RETRODE is not set # CONFIG_HID_ROCCAT is not set @@ -2773,7 +2823,8 @@ CONFIG_USB_HID=y # # I2C HID support # -# CONFIG_I2C_HID is not set +# CONFIG_I2C_HID_OF is not set +# CONFIG_I2C_HID_OF_GOODIX is not set # end of I2C HID support # end of HID support @@ -2791,6 +2842,7 @@ CONFIG_USB=y # Miscellaneous USB options # CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_OTG is not set # CONFIG_USB_OTG_PRODUCTLIST is not set @@ -2841,7 +2893,7 @@ CONFIG_USB_OHCI_HCD_PLATFORM=y # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_CDNS_SUPPORT is not set CONFIG_USB_MUSB_HDRC=y # CONFIG_USB_MUSB_HOST is not set # CONFIG_USB_MUSB_GADGET is not set @@ -3002,6 +3054,7 @@ CONFIG_LEDS_CLASS=y CONFIG_LEDS_GPIO=y # CONFIG_LEDS_LP3944 is not set # CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP50XX is not set # CONFIG_LEDS_LP55XX_COMMON is not set # CONFIG_LEDS_LP8860 is not set # CONFIG_LEDS_PCA955X is not set @@ -3027,6 +3080,10 @@ CONFIG_LEDS_GPIO=y # CONFIG_LEDS_SPI_BYTE is not set # CONFIG_LEDS_TI_LMU_COMMON is not set +# +# Flash and Torch LED drivers +# + # # LED Triggers # @@ -3050,6 +3107,12 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=y # CONFIG_LEDS_TRIGGER_NETDEV is not set # CONFIG_LEDS_TRIGGER_PATTERN is not set # CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set + +# +# LED Blink +# +# CONFIG_LEDS_BLINK is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC_ATOMIC_SCRUB=y @@ -3103,6 +3166,7 @@ CONFIG_RTC_DRV_AC100=y # CONFIG_RTC_DRV_RX8025 is not set # CONFIG_RTC_DRV_EM3027 is not set # CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set # CONFIG_RTC_DRV_RV8803 is not set # CONFIG_RTC_DRV_SD3078 is not set @@ -3119,7 +3183,6 @@ CONFIG_RTC_DRV_AC100=y # CONFIG_RTC_DRV_MAX6916 is not set # CONFIG_RTC_DRV_R9701 is not set # CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set # CONFIG_RTC_DRV_RS5C348 is not set # CONFIG_RTC_DRV_MAX6902 is not set # CONFIG_RTC_DRV_PCF2123 is not set @@ -3132,6 +3195,7 @@ CONFIG_RTC_I2C_AND_SPI=y # CONFIG_RTC_DRV_DS3232 is not set # CONFIG_RTC_DRV_PCF2127 is not set # CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set # # Platform RTC drivers @@ -3165,6 +3229,7 @@ CONFIG_RTC_DRV_SUNXI=y # # HID Sensor RTC drivers # +# CONFIG_RTC_DRV_GOLDFISH is not set CONFIG_DMADEVICES=y # CONFIG_DMADEVICES_DEBUG is not set @@ -3201,6 +3266,7 @@ CONFIG_SYNC_FILE=y # CONFIG_SW_SYNC is not set # CONFIG_UDMABUF is not set # CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set # CONFIG_DMABUF_SELFTESTS is not set # CONFIG_DMABUF_HEAPS is not set # end of DMABUF options @@ -3223,14 +3289,12 @@ CONFIG_VHOST_MENU=y # CONFIG_GREYBUS is not set # CONFIG_STAGING is not set # CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set CONFIG_HAVE_CLK=y CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y -# CONFIG_CLK_HSDK is not set # CONFIG_COMMON_CLK_MAX9485 is not set # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set @@ -3240,7 +3304,7 @@ CONFIG_COMMON_CLK=y # CONFIG_COMMON_CLK_CDCE706 is not set # CONFIG_COMMON_CLK_CDCE925 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set +# CONFIG_COMMON_CLK_AXI_CLKGEN is not set # CONFIG_COMMON_CLK_PWM is not set # CONFIG_COMMON_CLK_VC5 is not set # CONFIG_COMMON_CLK_FIXED_MMIO is not set @@ -3262,6 +3326,7 @@ CONFIG_SUN8I_DE2_CCU=y CONFIG_SUN8I_R40_CCU=y CONFIG_SUN9I_A80_CCU=y CONFIG_SUN8I_R_CCU=y +# CONFIG_XILINX_VCU is not set # CONFIG_HWSPINLOCK is not set # @@ -3303,11 +3368,6 @@ CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y # # end of Amlogic SoC drivers -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - # # Broadcom SoC drivers # @@ -3326,18 +3386,24 @@ CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y # # end of i.MX SoC drivers +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + # # Qualcomm SoC drivers # # end of Qualcomm SoC drivers +CONFIG_SUNXI_MBUS=y CONFIG_SUNXI_SRAM=y # CONFIG_SOC_TI is not set # # Xilinx SoC drivers # -# CONFIG_XILINX_VCU is not set # end of Xilinx SoC drivers # end of SOC (System On Chip) specific Drivers @@ -3355,6 +3421,7 @@ CONFIG_EXTCON=y # CONFIG_EXTCON_RT8973A is not set # CONFIG_EXTCON_SM5502 is not set # CONFIG_EXTCON_USB_GPIO is not set +# CONFIG_EXTCON_USBC_TUSB320 is not set # CONFIG_MEMORY is not set CONFIG_IIO=y # CONFIG_IIO_BUFFER is not set @@ -3362,6 +3429,7 @@ CONFIG_IIO=y # CONFIG_IIO_TRIGGER is not set # CONFIG_IIO_SW_DEVICE is not set # CONFIG_IIO_SW_TRIGGER is not set +# CONFIG_IIO_TRIGGERED_EVENT is not set # # Accelerometers @@ -3519,6 +3587,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_AD5758 is not set # CONFIG_AD5761 is not set # CONFIG_AD5764 is not set +# CONFIG_AD5766 is not set # CONFIG_AD5770R is not set # CONFIG_AD5791 is not set # CONFIG_AD7303 is not set @@ -3569,6 +3638,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_ADIS16130 is not set # CONFIG_ADIS16136 is not set # CONFIG_ADIS16260 is not set +# CONFIG_ADXRS290 is not set # CONFIG_ADXRS450 is not set # CONFIG_BMG160 is not set # CONFIG_FXAS21002C is not set @@ -3597,6 +3667,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_AM2315 is not set # CONFIG_DHT11 is not set # CONFIG_HDC100X is not set +# CONFIG_HDC2010 is not set # CONFIG_HTS221 is not set # CONFIG_HTU21 is not set # CONFIG_SI7005 is not set @@ -3631,6 +3702,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_AL3320A is not set # CONFIG_APDS9300 is not set # CONFIG_APDS9960 is not set +# CONFIG_AS73211 is not set # CONFIG_BH1750 is not set # CONFIG_BH1780 is not set # CONFIG_CM32181 is not set @@ -3686,6 +3758,7 @@ CONFIG_AXP20X_ADC=y # CONFIG_SENSORS_HMC5843_SPI is not set # CONFIG_SENSORS_RM3100_I2C is not set # CONFIG_SENSORS_RM3100_SPI is not set +# CONFIG_YAMAHA_YAS530 is not set # end of Magnetometer sensors # @@ -3790,6 +3863,7 @@ CONFIG_AXP20X_ADC=y CONFIG_PWM=y CONFIG_PWM_SYSFS=y +# CONFIG_PWM_ATMEL_TCB is not set # CONFIG_PWM_FSL_FTM is not set # CONFIG_PWM_PCA9685 is not set CONFIG_PWM_SUN4I=y @@ -3858,6 +3932,7 @@ CONFIG_ARM_PMU=y CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y CONFIG_NVMEM_SUNXI_SID=y +# CONFIG_NVMEM_RMEM is not set # # HW tracing support @@ -4156,17 +4231,13 @@ CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y # CONFIG_CRYPTO_SHA256 is not set # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_SM3 is not set # CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # @@ -4180,7 +4251,6 @@ CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_CAST6 is not set # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_SM4 is not set @@ -4222,6 +4292,7 @@ CONFIG_CRYPTO_HW=y CONFIG_CRYPTO_DEV_ALLWINNER=y CONFIG_CRYPTO_DEV_SUN4I_SS=y # CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set # CONFIG_CRYPTO_DEV_SUN8I_CE is not set # CONFIG_CRYPTO_DEV_SUN8I_SS is not set # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set @@ -4302,6 +4373,7 @@ CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y CONFIG_DMA_NONCOHERENT_MMAP=y CONFIG_DMA_REMAP=y CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set # # Default contiguous memory area size: @@ -4313,6 +4385,7 @@ CONFIG_CMA_SIZE_SEL_MBYTES=y # CONFIG_CMA_SIZE_SEL_MAX is not set CONFIG_CMA_ALIGNMENT=8 # CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set CONFIG_CPU_RMAP=y CONFIG_DQL=y CONFIG_GLOB=y @@ -4332,6 +4405,8 @@ CONFIG_SBITMAP=y # CONFIG_STRING_SELFTEST is not set # end of Library routines +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + # # Kernel hacking # @@ -4353,7 +4428,6 @@ CONFIG_DEBUG_BUGVERBOSE=y # # Compile-time checks and compiler options # -CONFIG_ENABLE_MUST_CHECK=y CONFIG_FRAME_WARN=1024 # CONFIG_STRIP_ASM_SYMS is not set # CONFIG_HEADERS_INSTALL is not set @@ -4387,7 +4461,10 @@ CONFIG_HAVE_ARCH_KGDB=y CONFIG_HAVE_DEBUG_KMEMLEAK=y CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_HAVE_ARCH_KASAN=y CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set # end of Memory Debugging # @@ -4413,6 +4490,7 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # CONFIG_WW_MUTEX_SELFTEST is not set # end of Lock Debugging (spinlocks, mutexes, etc...) +# CONFIG_DEBUG_IRQFLAGS is not set # CONFIG_STACKTRACE is not set # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set @@ -4438,7 +4516,6 @@ CONFIG_HAVE_C_RECORDMCOUNT=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y # CONFIG_STRICT_DEVMEM is not set # @@ -4474,7 +4551,6 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_KSTRTOX is not set # CONFIG_TEST_PRINTF is not set # CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set # CONFIG_TEST_UUID is not set # CONFIG_TEST_XARRAY is not set # CONFIG_TEST_OVERFLOW is not set @@ -4496,6 +4572,7 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_MEMCAT_P is not set # CONFIG_TEST_STACKINIT is not set # CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set # CONFIG_MEMTEST is not set # end of Kernel Testing and Coverage # end of Kernel hacking From b1790c8317b030eb8df52a282d78f9e396f4c51b Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Sat, 30 Oct 2021 18:55:04 +0000 Subject: [PATCH 019/132] UTK: Include Linux.ffs, Initrd.ffs, and linuxboot.ffs in DXE_FILES Signed-off-by: Devon Bautista --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 488bd400..add5a063 100644 --- a/Makefile +++ b/Makefile @@ -139,6 +139,9 @@ dxe/%.ffs: ifndef USE_UTK $(BUILD)/linuxboot.rom: $(FVS) else +DXE_FFS += dxe/linuxboot.ffs +DXE_FFS += $(BUILD)/Linux.ffs +DXE_FFS += $(BUILD)/Initrd.ffs $(BUILD)/linuxboot.rom: bin/utk $(DXE_FFS) $< \ $(ROM) \ From d0ba22ce203c9a485556cd0e74139d03e7389665 Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Sat, 30 Oct 2021 18:56:30 +0000 Subject: [PATCH 020/132] QEMU: Update GUIDs in image-files.txt Signed-off-by: Devon Bautista --- boards/qemu/image-files.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/boards/qemu/image-files.txt b/boards/qemu/image-files.txt index 0a699842..18dbe559 100644 --- a/boards/qemu/image-files.txt +++ b/boards/qemu/image-files.txt @@ -1,15 +1,15 @@ fc510ee7-ffdc-11d4-bd41-0080c73c8881 DXE Apriori -# d6a2cb7f-6a18-4e2f-b43b-9920a733700a DxeCore +d6a2cb7f-6a18-4e2f-b43b-9920a733700a DxeCore d93ce3d8-a7eb-4730-8c8e-cc466a9ecc3c ReportStatusCodeRouterRuntimeDxe 6c2004ef-4e0e-4be4-b14c-340eb4aa5891 StatusCodeHandlerRuntimeDxe 80cf7257-87ab-47f9-a3fe-d50b76d89541 PcdDxe b601f8c4-43b7-4784-95b1-f4226cb40cee RuntimeDxe f80697e9-7fd6-4665-8646-88e33ef71dfc SecurityStubDxe 13ac6dd0-73d0-11d4-b06b-00aa00bd6de7 EbcDxe -79ca4208-bba1-4a9a-8456-e1e66a81484e Legacy8259 +245CB4DA-8E15-4A1B-87E3-9878FFA07520 Legacy8259 a19b1fe7-c1bc-49f8-875f-54a5d542443f CpuIo2Dxe 1a1e4886-9517-440e-9fde-3be44cee2136 CpuDxe -f2765dec-6b41-11d5-8e71-00902707b35e Timer +C190FE35-44AA-41A1-8AEA-4947BC60E09D Timer f6697ac4-a776-4ee1-b643-1feff2b615bb IncompatiblePciDeviceSupportDxe 11a6edf6-a9be-426d-a6cc-b22fe51d9224 PciHotPlugInitDxe 128fb770-5e79-4176-9e51-9bb268a17dd1 PciHostBridgeDxe @@ -29,6 +29,7 @@ f9d88642-0737-49bc-81b5-6889cd57d9ea SmbiosDxe 49970331-e3fa-4637-9abc-3b7868676970 AcpiPlatform 7e374e25-8e01-4fee-87f2-390c23c606cd ACPI data bdce85bb-fbaa-4f4e-9264-501a2c249581 S3SaveStateDxe +7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 Shell d9dcc5df-4007-435e-9098-8970935504b2 PlatformDxe 2ec9da37-ee35-4de9-86c5-6d9a81dc38a7 AmdSevDxe 8657015b-ea43-440d-949a-af3be365c0fc IoMmuDxe From e49ecfd51f6833cc622793421d4377569976cd5e Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Sat, 30 Oct 2021 01:53:34 +0000 Subject: [PATCH 021/132] Clean dxe/ in normal clean target Signed-off-by: Devon Bautista --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index add5a063..82a72ab1 100644 --- a/Makefile +++ b/Makefile @@ -152,5 +152,6 @@ $(BUILD)/linuxboot.rom: bin/utk $(DXE_FFS) endif clean: + $(MAKE) -C dxe clean $(RM) $(BUILD)/{*.ffs,*.rom,*.vol,*.tmp} $(RM) ./bin/utk From d07e8befc84be18e5d20ba0f07397ea47ccad25c Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Sat, 30 Oct 2021 01:59:53 +0000 Subject: [PATCH 022/132] Ignore UTK binary Signed-off-by: Devon Bautista --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 51876a4c..0facfb00 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,7 @@ clean *.bin *.bad blobs/*/volume* +bin/utk edk2 bzImage boards/*/volume-* From c6f510b429e6ae324d529b401134d7827f9c3b5b Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Sat, 30 Oct 2021 19:51:19 +0000 Subject: [PATCH 023/132] Ensure DxeCore isn't included twice in non-UTK builds Signed-off-by: Devon Bautista --- Makefile | 8 +++++++- boards/qemu/image-files.txt | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 82a72ab1..fd738dcf 100644 --- a/Makefile +++ b/Makefile @@ -142,10 +142,16 @@ else DXE_FFS += dxe/linuxboot.ffs DXE_FFS += $(BUILD)/Linux.ffs DXE_FFS += $(BUILD)/Initrd.ffs + +# The Perl way of building replaces DxeCore with a custom version but +# UTK needs the original DxeCore, so uncomment DxeCore in image-files.txt +# on-the-fly before passing it to UTK. $(BUILD)/linuxboot.rom: bin/utk $(DXE_FFS) $< \ $(ROM) \ - remove_dxes_except boards/$(BOARD)/image-files.txt \ + remove_dxes_except \ + <(sed 's|^#[[:space:]]\+\(d6a2cb7f-6a18-4e2f-b43b-9920a733700a\)[[:space:]]\+\(DxeCore\)|\1 \2|' \ + boards/$(BOARD)/image-files.txt) \ $(foreach ffs,$(DXE_FFS), insert_dxe $(ffs)) \ $(UTK_EXTRA_OPS) \ save $@ diff --git a/boards/qemu/image-files.txt b/boards/qemu/image-files.txt index 18dbe559..5ae8d58b 100644 --- a/boards/qemu/image-files.txt +++ b/boards/qemu/image-files.txt @@ -1,5 +1,5 @@ fc510ee7-ffdc-11d4-bd41-0080c73c8881 DXE Apriori -d6a2cb7f-6a18-4e2f-b43b-9920a733700a DxeCore +# d6a2cb7f-6a18-4e2f-b43b-9920a733700a DxeCore d93ce3d8-a7eb-4730-8c8e-cc466a9ecc3c ReportStatusCodeRouterRuntimeDxe 6c2004ef-4e0e-4be4-b14c-340eb4aa5891 StatusCodeHandlerRuntimeDxe 80cf7257-87ab-47f9-a3fe-d50b76d89541 PcdDxe From 323eb0a152b17a20e54e67f1a524cecceafe4db3 Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Mon, 15 Nov 2021 19:10:26 +0000 Subject: [PATCH 024/132] Use fiano create-ffs when USE_UTK is specified Signed-off-by: Devon Bautista --- .gitignore | 1 + Makefile | 6 +++--- Makefile.utk | 3 +++ dxe/Makefile | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0facfb00..39af2f57 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,7 @@ clean *.bin *.bad blobs/*/volume* +bin/create-ffs.utk bin/utk edk2 bzImage diff --git a/Makefile b/Makefile index fd738dcf..572bd594 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ $(BUILD)/%.vol: $(filter-out $(BUILD)/$(BOARD).txt,$^) create-ffs = \ - ./bin/create-ffs \ + ./bin/create-ffs$(if $(USE_UTK),.utk,) \ -o $@ \ --name $(basename $(notdir $@)) \ --version 1.0 \ @@ -146,7 +146,7 @@ DXE_FFS += $(BUILD)/Initrd.ffs # The Perl way of building replaces DxeCore with a custom version but # UTK needs the original DxeCore, so uncomment DxeCore in image-files.txt # on-the-fly before passing it to UTK. -$(BUILD)/linuxboot.rom: bin/utk $(DXE_FFS) +$(BUILD)/linuxboot.rom: bin/utk bin/create-ffs.utk $(DXE_FFS) $< \ $(ROM) \ remove_dxes_except \ @@ -160,4 +160,4 @@ endif clean: $(MAKE) -C dxe clean $(RM) $(BUILD)/{*.ffs,*.rom,*.vol,*.tmp} - $(RM) ./bin/utk + $(RM) ./bin/utk ./bin/create-ffs.utk diff --git a/Makefile.utk b/Makefile.utk index 1c31abf3..87e5532a 100644 --- a/Makefile.utk +++ b/Makefile.utk @@ -26,3 +26,6 @@ bin/utk: go get github.com/linuxboot/fiano/cmds/utk cp $(GOPATH)/bin/utk $@ +bin/create-ffs.utk: + go get github.com/linuxboot/fiano/cmds/create-ffs + cp $(GOPATH)/bin/create-ffs $@ diff --git a/dxe/Makefile b/dxe/Makefile index 0aabbec0..38987aae 100644 --- a/dxe/Makefile +++ b/dxe/Makefile @@ -39,7 +39,7 @@ FORCE: /usr/bin/printf '\x2E\x00' | dd of=$@ conv=notrunc bs=1 seek=150 status=none %.ffs: %.efi - ../bin/create-ffs \ + ../bin/create-ffs$(if $(USE_UTK),.utk,) \ -o $@ \ --type DRIVER \ --version 1.0 \ From b58a2e50debb534187d0438f0ba202601c8a4ce8 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Sun, 5 Dec 2021 22:47:11 -0800 Subject: [PATCH 025/132] Add kexec test configs for solidrun/honeycomb the images are called kexectestimage-5.10 and kexectestimage-5.4 They include two kernels, kernel-5.4 and kernel-5.10 Build the images, netboot them, and once they boot, you can test kexec: kexec kernel-5.4 kexec kernel-5.10 Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 34 + mainboards/solidrun/honeycomblx2k/config-5.10 | 5312 +++++++++++++++++ .../solidrun/honeycomblx2k/config-5.4.47 | 3 +- .../solidrun/honeycomblx2k/kexecconfig-5.10 | 5312 +++++++++++++++++ .../solidrun/honeycomblx2k/kexecconfig-5.4 | 5187 ++++++++++++++++ 5 files changed, 15847 insertions(+), 1 deletion(-) create mode 100644 mainboards/solidrun/honeycomblx2k/config-5.10 create mode 100644 mainboards/solidrun/honeycomblx2k/kexecconfig-5.10 create mode 100644 mainboards/solidrun/honeycomblx2k/kexecconfig-5.4 diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile index 063e2cad..3f255160 100644 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -44,6 +44,31 @@ u-root: usefultargets: echo fetch, uroot, netbootkernel +# the kexectestimage has standard u-root commands, kexec-tools version of kexec, and two +# test kernels, a 5.10 and a 5.4 +kexectestimage-5.10: kexecconfig-5.10 kexecinitramfs.cpio + cp $< linux-5.10/.config + (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux-5.10/arch/arm64/boot/Image $@ + +kexectestimage-5.4: kexecconfig-5.4 kexecinitramfs.cpio + cp $< linux/.config + (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux/arch/arm64/boot/Image $@ + +kernel-5.4: config-5.4.47 flashinitramfs.cpio + cp $< linux/.config + (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux/arch/arm64/boot/Image $@ + +kexecinitramfs.cpio: u-root Makefile kernel-5.4 kernel-5.10 + GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ + -files ~/.ssh/cpu_rsa.pub:key.pub \ + -files kernel-5.4 -files kernel-5.10 \ + github.com/u-root/cpu/cmds/cpud \ + github.com/u-root/u-root/cmds/boot/pxeboot \ + core \ + flashinitramfs.cpio: u-root Makefile GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ -files ~/.ssh/cpu_rsa.pub:key.pub \ @@ -56,6 +81,11 @@ netbootkernel: config-5.4.47 flashinitramfs.cpio (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) cp linux/arch/arm64/boot/Image $@ +kernel-5.10: config-5.10 flashinitramfs.cpio + cp $< linux/.config + (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux-5.10/arch/arm64/boot/Image $@ + # These stanzas fetch code. fetch: getkernel geturoot @@ -63,6 +93,10 @@ getkernel: rm -rf linux git clone --depth=1 -b solidrun-honeycomb --single-branch https://github.com/linuxboot/linux +getkernel-5.10: + rm -rf linux-5.10 + git clone --depth=1 -b v5.10 --single-branch https://github.com/torvalds/linux linux-5.10 + geturoot: GO111MODULE=off go get -u github.com/u-root/u-root GO111MODULE=off go get -u github.com/u-root/cpu/... diff --git a/mainboards/solidrun/honeycomblx2k/config-5.10 b/mainboards/solidrun/honeycomblx2k/config-5.10 new file mode 100644 index 00000000..01f59f89 --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/config-5.10 @@ -0,0 +1,5312 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm64 5.10.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 +CONFIG_CLANG_VERSION=0 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_SCHED_AVG_IRQ=y +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +# CONFIG_CFS_BANDWIDTH is not set +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_DEBUG is not set +# CONFIG_NAMESPACES is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_RD_ZSTD=y +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_PROFILING=y +# end of General setup + +CONFIG_ARM64=y +CONFIG_64BIT=y +CONFIG_MMU=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_SMP=y +CONFIG_KERNEL_MODE_NEON=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_PROC_KCORE_TEXT=y + +# +# Platform selection +# +# CONFIG_ARCH_ACTIONS is not set +# CONFIG_ARCH_AGILEX is not set +# CONFIG_ARCH_SUNXI is not set +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_BCM2835 is not set +# CONFIG_ARCH_BCM_IPROC is not set +# CONFIG_ARCH_BERLIN is not set +# CONFIG_ARCH_BITMAIN is not set +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_SPARX5 is not set +# CONFIG_ARCH_K3 is not set +CONFIG_ARCH_LAYERSCAPE=y +# CONFIG_ARCH_LG1K is not set +# CONFIG_ARCH_HISI is not set +# CONFIG_ARCH_KEEMBAY is not set +# CONFIG_ARCH_MEDIATEK is not set +# CONFIG_ARCH_MESON is not set +# CONFIG_ARCH_MVEBU is not set +# CONFIG_ARCH_MXC is not set +# CONFIG_ARCH_QCOM is not set +# CONFIG_ARCH_REALTEK is not set +# CONFIG_ARCH_RENESAS is not set +# CONFIG_ARCH_ROCKCHIP is not set +# CONFIG_ARCH_S32 is not set +# CONFIG_ARCH_SEATTLE is not set +# CONFIG_ARCH_STRATIX10 is not set +# CONFIG_ARCH_SYNQUACER is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_SPRD is not set +# CONFIG_ARCH_THUNDER is not set +# CONFIG_ARCH_THUNDER2 is not set +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARCH_VEXPRESS is not set +# CONFIG_ARCH_VISCONTI is not set +# CONFIG_ARCH_XGENE is not set +# CONFIG_ARCH_ZX is not set +# CONFIG_ARCH_ZYNQMP is not set +# end of Platform selection + +# +# Kernel Features +# + +# +# ARM errata workarounds via the alternatives framework +# +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARM64_ERRATUM_1165522=y +# CONFIG_ARM64_ERRATUM_1319367 is not set +# CONFIG_ARM64_ERRATUM_1530923 is not set +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +# CONFIG_ARM64_ERRATUM_1508412 is not set +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +# end of ARM errata workarounds via the alternatives framework + +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_16K_PAGES is not set +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PA_BITS=48 +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_SCHED_MC=y +# CONFIG_SCHED_SMT is not set +CONFIG_NR_CPUS=16 +CONFIG_HOTPLUG_CPU=y +# CONFIG_NUMA is not set +CONFIG_HOLES_IN_ZONE=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_PARAVIRT is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +# CONFIG_XEN is not set +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +# CONFIG_COMPAT is not set + +# +# ARMv8.1 architectural features +# +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +CONFIG_ARM64_VHE=y +# end of ARMv8.1 architectural features + +# +# ARMv8.2 architectural features +# +CONFIG_ARM64_UAO=y +# CONFIG_ARM64_PMEM is not set +CONFIG_ARM64_RAS_EXTN=y +CONFIG_ARM64_CNP=y +# end of ARMv8.2 architectural features + +# +# ARMv8.3 architectural features +# +CONFIG_ARM64_PTR_AUTH=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y +CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_AS_HAS_PAC=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +# end of ARMv8.3 architectural features + +# +# ARMv8.4 architectural features +# +# CONFIG_ARM64_AMU_EXTN is not set +CONFIG_AS_HAS_ARMV8_4=y +# CONFIG_ARM64_TLB_RANGE is not set +# end of ARMv8.4 architectural features + +# +# ARMv8.5 architectural features +# +# CONFIG_ARM64_BTI is not set +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y +# CONFIG_ARM64_E0PD is not set +# CONFIG_ARCH_RANDOM is not set +CONFIG_ARM64_AS_HAS_MTE=y +CONFIG_ARM64_MTE=y +# end of ARMv8.5 architectural features + +# CONFIG_ARM64_SVE is not set +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_STACKPROTECTOR_PER_TASK=y +# end of Kernel Features + +# +# Boot options +# +# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set +CONFIG_CMDLINE="" +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +CONFIG_PM_TEST_SUSPEND=y +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +CONFIG_DT_IDLE_STATES=y + +# +# ARM CPU Idle Drivers +# +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y +# end of ARM CPU Idle Drivers +# end of CPU Idle + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ACPI_CPPC_CPUFREQ=y +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_QORIQ_CPUFREQ=y +# end of CPU Frequency scaling +# end of CPU Power Management + +# +# Firmware Drivers +# +# CONFIG_ARM_SCMI_PROTOCOL is not set +CONFIG_ARM_SCPI_PROTOCOL=y +CONFIG_ARM_SCPI_POWER_DOMAIN=y +# CONFIG_ARM_SDE_INTERFACE is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +CONFIG_EFI_CAPSULE_LOADER=y +# CONFIG_EFI_TEST is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +# CONFIG_ARM_SMCCC_SOC_ID is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_CCA_REQUIRED=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_IPMI is not set +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_EINJ=y +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_IORT=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_PPTT=y +# CONFIG_PMIC_OPREGION is not set +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_KVM_ARM_PMU=y +CONFIG_ARM64_CRYPTO=y +CONFIG_CRYPTO_SHA256_ARM64=y +CONFIG_CRYPTO_SHA512_ARM64=y +CONFIG_CRYPTO_SHA1_ARM64_CE=y +CONFIG_CRYPTO_SHA2_ARM64_CE=y +CONFIG_CRYPTO_SHA512_ARM64_CE=y +CONFIG_CRYPTO_SHA3_ARM64=y +CONFIG_CRYPTO_SM3_ARM64_CE=y +# CONFIG_CRYPTO_SM4_ARM64_CE is not set +CONFIG_CRYPTO_GHASH_ARM64_CE=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64=y +CONFIG_CRYPTO_AES_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_AES_ARM64_CE_BLK=y +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y +CONFIG_CRYPTO_CHACHA20_NEON=y +# CONFIG_CRYPTO_POLY1305_NEON is not set +# CONFIG_CRYPTO_NHPOLY1305_NEON is not set +CONFIG_CRYPTO_AES_ARM64_BS=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_SET_FS=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_CLONE_BACKWARDS=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_DEV_THROTTLING is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_CGROUP_IOLATENCY is not set +# CONFIG_BLK_CGROUP_IOCOST is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ELFCORE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_AREAS=7 +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_UNIX_DIAG=y +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +CONFIG_NET_KEY=y +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_IP_MROUTE is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_NETLABEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +CONFIG_VLAN_8021Q=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_VLAN_8021Q_MVRP is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +# CONFIG_CFG80211 is not set +CONFIG_LIB80211=y +CONFIG_LIB80211_CRYPT_WEP=y +CONFIG_LIB80211_CRYPT_CCMP=y +CONFIG_LIB80211_CRYPT_TKIP=y +# CONFIG_LIB80211_DEBUG is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_VIRTIO=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_DEVLINK=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_ECAM=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +# CONFIG_PCIE_HISI_ERR is not set + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_HISI=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_AL is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +CONFIG_PCIE_MOBIVEIL=y +CONFIG_PCIE_MOBIVEIL_HOST=y +CONFIG_PCIE_LAYERSCAPE_GEN4=y +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_BRCMSTB_GISB_ARB=y +# CONFIG_MOXTET is not set +CONFIG_SIMPLE_PM_BUS=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_FSL_MC_BUS=y +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +CONFIG_MTD=y + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_SWAP is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=y +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=y +CONFIG_MTD_CFI_ADV_OPTIONS=y +CONFIG_MTD_CFI_NOSWAP=y +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_GEOMETRY is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_OTP is not set +CONFIG_MTD_CFI_INTELEXT=y +CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_CFI_STAA=y +CONFIG_MTD_CFI_UTIL=y +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +CONFIG_MTD_PHYSMAP=y +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_OF=y +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +CONFIG_MTD_SST25L=y +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=y +# CONFIG_MTD_ONENAND is not set +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_RAW_NAND=y +# CONFIG_MTD_NAND_ECC_SW_BCH is not set + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=y +# CONFIG_MTD_NAND_DENALI_PCI is not set +CONFIG_MTD_NAND_DENALI_DT=y +# CONFIG_MTD_NAND_CAFE is not set +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_FSL_IFC=y +# CONFIG_MTD_NAND_MXIC is not set +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_PLATFORM is not set +# CONFIG_MTD_NAND_CADENCE is not set +# CONFIG_MTD_NAND_ARASAN is not set + +# +# Misc +# +# CONFIG_MTD_NAND_NANDSIM is not set +# CONFIG_MTD_NAND_RICOH is not set +# CONFIG_MTD_NAND_DISKONCHIP is not set +# CONFIG_MTD_SPI_NAND is not set + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=y +# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set +CONFIG_MTD_UBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +# CONFIG_MTD_UBI_BLOCK is not set +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_HISI_HIKEY_USB is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +CONFIG_EEPROM_AT25=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_UACCE is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_SCSI_SAS_HOST_SMP=y +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +CONFIG_MACVLAN=y +CONFIG_MACVTAP=y +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +CONFIG_TUN=y +CONFIG_TAP=y +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_FREESCALE=y +# CONFIG_FSL_FMAN is not set +# CONFIG_FSL_PQ_MDIO is not set +CONFIG_FSL_XGMAC_MDIO=y +# CONFIG_GIANFAR is not set +CONFIG_FSL_DPAA2_ETH=y +CONFIG_FSL_DPAA2_PTP_CLOCK=y +CONFIG_FSL_ENETC=y +CONFIG_FSL_ENETC_VF=y +CONFIG_FSL_ENETC_MDIO=y +CONFIG_FSL_ENETC_PTP_CLOCK=y +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HISILICON is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLINK=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_FIXED_PHY=y +# CONFIG_SFP is not set + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +CONFIG_AQUANTIA_PHY=y +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +# CONFIG_MICROCHIP_T1_PHY is not set +CONFIG_MICROSEMI_PHY=y +# CONFIG_NATIONAL_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +# CONFIG_MDIO_BCM_UNIMAC is not set +CONFIG_MDIO_CAVIUM=y +# CONFIG_MDIO_GPIO is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y +CONFIG_MDIO_BUS_MUX_MMIOREG=y + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +CONFIG_PCS_LYNX=y +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +CONFIG_USB_PEGASUS=y +CONFIG_USB_RTL8150=y +CONFIG_USB_RTL8152=y +CONFIG_USB_LAN78XX=y +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +CONFIG_USB_NET_DM9601=y +# CONFIG_USB_NET_SR9700 is not set +CONFIG_USB_NET_SR9800=y +CONFIG_USB_NET_SMSC75XX=y +CONFIG_USB_NET_SMSC95XX=y +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +CONFIG_USB_NET_PLUSB=y +CONFIG_USB_NET_MCS7830=y +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +CONFIG_USB_NET_ZAURUS=y +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=y +# CONFIG_HOSTAP_FIRMWARE is not set +# CONFIG_HOSTAP_PLX is not set +# CONFIG_HOSTAP_PCI is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +CONFIG_NET_FAILOVER=y +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +CONFIG_INPUT_POLLDEV=y +# CONFIG_INPUT_SPARSEKMAP is not set +CONFIG_INPUT_MATRIXKMAP=y + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ADC is not set +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=y +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_AXP20X_PEK is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_RK805_PWRKEY is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +# CONFIG_SERIO_SERPORT is not set +CONFIG_SERIO_AMBAKMI=y +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=16 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +# CONFIG_SERIAL_8250_MANY_PORTS is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_XILINX_PS_UART=y +CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +CONFIG_SERIAL_FSL_LPUART=y +CONFIG_SERIAL_FSL_LPUART_CONSOLE=y +CONFIG_SERIAL_FSL_LINFLEXUART=y +CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +CONFIG_HVC_DRIVER=y +# CONFIG_HVC_DCC is not set +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +# CONFIG_TTY_PRINTK is not set +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=y +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=y +CONFIG_IPMI_SI=y +# CONFIG_IPMI_SSIF is not set +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_BA431 is not set +# CONFIG_HW_RANDOM_VIRTIO is not set +CONFIG_HW_RANDOM_HISI_V2=y +CONFIG_HW_RANDOM_CAVIUM=y +# CONFIG_HW_RANDOM_CCTRNG is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +CONFIG_DEVMEM=y +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +# CONFIG_TCG_TIS is not set +# CONFIG_TCG_TIS_SPI is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +CONFIG_TCG_TIS_I2C_INFINEON=y +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_ATMEL is not set +# CONFIG_TCG_INFINEON is not set +# CONFIG_TCG_CRB is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +CONFIG_I2C_MUX_PCA954x=y +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CADENCE is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=y +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_IMX=y +# CONFIG_I2C_NOMADIK is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +CONFIG_I2C_RK3X=y +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_THUNDERX is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BITBANG=y +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +# CONFIG_SPI_DESIGNWARE is not set +CONFIG_SPI_FSL_QUADSPI=y +# CONFIG_SPI_HISI_SFC_V3XX is not set +CONFIG_SPI_NXP_FLEXSPI=y +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_FSL_SPI is not set +CONFIG_SPI_FSL_DSPI=y +# CONFIG_SPI_OC_TINY is not set +CONFIG_SPI_PL022=y +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=y +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_THUNDERX is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +# CONFIG_SPI_MUX is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_TLE62X0 is not set +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_TIME=y +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y +CONFIG_SPI_DYNAMIC=y +CONFIG_SPMI=y +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_QORIQ=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AXP209 is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_MAX77620=y +# CONFIG_PINCTRL_RK805 is not set +# CONFIG_PINCTRL_OCELOT is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_CADENCE is not set +CONFIG_GPIO_DWAPB=y +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +# CONFIG_GPIO_LOGICVC is not set +CONFIG_GPIO_MB86S7X=y +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_PL061=y +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SIFIVE is not set +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_XGENE=y +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +CONFIG_GPIO_MAX732X=y +# CONFIG_GPIO_MAX732X_IRQ is not set +CONFIG_GPIO_PCA953X=y +CONFIG_GPIO_PCA953X_IRQ=y +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# CONFIG_GPIO_BD9571MWV is not set +CONFIG_GPIO_MAX77620=y +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_BRCMSTB=y +CONFIG_POWER_RESET_GPIO=y +# CONFIG_POWER_RESET_GPIO_RESTART is not set +# CONFIG_POWER_RESET_LTC2952 is not set +# CONFIG_POWER_RESET_RESTART is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y +CONFIG_POWER_RESET_SYSCON=y +# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set +CONFIG_REBOOT_MODE=y +CONFIG_SYSCON_REBOOT_MODE=y +# CONFIG_NVMEM_REBOOT_MODE is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +CONFIG_BATTERY_SBS=y +# CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set +CONFIG_BATTERY_BQ27XXX=y +CONFIG_BATTERY_BQ27XXX_I2C=y +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +# CONFIG_AXP20X_POWER is not set +# CONFIG_AXP288_FUEL_GAUGE is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_UCS1002 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +CONFIG_SENSORS_ARM_SCPI=y +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IBMAEM is not set +# CONFIG_SENSORS_IBMPEX is not set +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2947_SPI is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +CONFIG_SENSORS_LM90=y +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +CONFIG_PMBUS=y +CONFIG_SENSORS_PMBUS=y +# CONFIG_SENSORS_ADM1266 is not set +# CONFIG_SENSORS_ADM1275 is not set +# CONFIG_SENSORS_BEL_PFE is not set +# CONFIG_SENSORS_IBM_CFFPS is not set +# CONFIG_SENSORS_INSPUR_IPSPS is not set +# CONFIG_SENSORS_IR35221 is not set +# CONFIG_SENSORS_IR38064 is not set +# CONFIG_SENSORS_IRPS5401 is not set +# CONFIG_SENSORS_ISL68137 is not set +# CONFIG_SENSORS_LM25066 is not set +CONFIG_SENSORS_LTC2978=y +CONFIG_SENSORS_LTC2978_REGULATOR=y +# CONFIG_SENSORS_LTC3815 is not set +# CONFIG_SENSORS_MAX16064 is not set +# CONFIG_SENSORS_MAX16601 is not set +# CONFIG_SENSORS_MAX20730 is not set +# CONFIG_SENSORS_MAX20751 is not set +# CONFIG_SENSORS_MAX31785 is not set +# CONFIG_SENSORS_MAX34440 is not set +# CONFIG_SENSORS_MAX8688 is not set +# CONFIG_SENSORS_MP2975 is not set +# CONFIG_SENSORS_PXE1610 is not set +# CONFIG_SENSORS_TPS40422 is not set +# CONFIG_SENSORS_TPS53679 is not set +# CONFIG_SENSORS_UCD9000 is not set +# CONFIG_SENSORS_UCD9200 is not set +# CONFIG_SENSORS_XDPE122 is not set +# CONFIG_SENSORS_ZL6100 is not set +CONFIG_SENSORS_PWM_FAN=y +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +CONFIG_SENSORS_AMC6821=y +# CONFIG_SENSORS_INA209 is not set +CONFIG_SENSORS_INA2XX=y +CONFIG_SENSORS_INA3221=y +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +CONFIG_CPU_THERMAL=y +CONFIG_CPU_FREQ_THERMAL=y +# CONFIG_DEVFREQ_THERMAL is not set +CONFIG_THERMAL_EMULATION=y +# CONFIG_THERMAL_MMIO is not set +# CONFIG_MAX77620_THERMAL is not set +CONFIG_QORIQ_THERMAL=y +# CONFIG_GENERIC_ADC_THERMAL is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=y +CONFIG_ARM_SBSA_WATCHDOG=y +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_DW_WATCHDOG=y +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAX77620_WATCHDOG is not set +CONFIG_IMX2_WDT=y +# CONFIG_ARM_SMC_WATCHDOG is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +CONFIG_MFD_BD9571MWV=y +CONFIG_MFD_AXP20X=y +CONFIG_MFD_AXP20X_I2C=y +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_GATEWORKS_GSC is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +CONFIG_MFD_HI6421_PMIC=y +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +CONFIG_MFD_MAX77620=y +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=y +# CONFIG_MFD_RN5T618 is not set +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SL28CPLD is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_ROHM_BD718XX=y +# CONFIG_MFD_ROHM_BD70528 is not set +# CONFIG_MFD_ROHM_BD71828 is not set +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_RAVE_SP_CORE is not set +# CONFIG_MFD_INTEL_M10_BMC is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +CONFIG_REGULATOR_AXP20X=y +CONFIG_REGULATOR_BD718XX=y +CONFIG_REGULATOR_BD9571MWV=y +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=y +# CONFIG_REGULATOR_FAN53880 is not set +CONFIG_REGULATOR_GPIO=y +# CONFIG_REGULATOR_HI6421 is not set +CONFIG_REGULATOR_HI6421V530=y +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +CONFIG_REGULATOR_MAX77620=y +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +CONFIG_REGULATOR_MAX8973=y +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MCP16502 is not set +# CONFIG_REGULATOR_MP5416 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MP886X is not set +# CONFIG_REGULATOR_MPQ7920 is not set +# CONFIG_REGULATOR_MT6311 is not set +CONFIG_REGULATOR_PCA9450=y +CONFIG_REGULATOR_PFUZE100=y +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_PWM=y +CONFIG_REGULATOR_QCOM_SPMI=y +# CONFIG_REGULATOR_QCOM_USB_VBUS is not set +CONFIG_REGULATOR_RK808=y +CONFIG_REGULATOR_ROHM=y +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_S2MPA01 is not set +CONFIG_REGULATOR_S2MPS11=y +# CONFIG_REGULATOR_S5M8767 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_SY8106A is not set +# CONFIG_REGULATOR_SY8824X is not set +# CONFIG_REGULATOR_SY8827N is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_REGULATOR_VCTRL=y +# CONFIG_REGULATOR_VEXPRESS is not set +# CONFIG_REGULATOR_QCOM_LABIBB is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_VGA_ARB is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# end of Console display driver support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID=y +# end of I2C HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_OTG=y +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_OTG_FSM is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=y +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +CONFIG_USB_CDNS3=y +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_CDNS3_PCI_WRAP=y +CONFIG_USB_MUSB_HDRC=y +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_DWC3=y +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=y +CONFIG_USB_DWC3_HAPS=y +CONFIG_USB_DWC3_OF_SIMPLE=y +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=y +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=y +CONFIG_USB_CHIPIDEA_MSM=y +CONFIG_USB_CHIPIDEA_IMX=y +CONFIG_USB_CHIPIDEA_GENERIC=y +CONFIG_USB_CHIPIDEA_TEGRA=y +CONFIG_USB_ISP1760=y +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=y +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +CONFIG_USB_TEST=y +CONFIG_USB_EHSET_TEST_FIXTURE=y +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=y +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=y +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +CONFIG_USB_SNP_CORE=y +CONFIG_USB_SNP_UDC_PLAT=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=y + +# +# Platform Support +# +CONFIG_USB_BDC_PCI=y +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_NET2280 is not set +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_MAX3420_UDC is not set +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=y +CONFIG_USB_F_ACM=y +CONFIG_USB_F_SS_LB=y +CONFIG_USB_U_SERIAL=y +CONFIG_USB_U_ETHER=y +CONFIG_USB_F_SERIAL=y +CONFIG_USB_F_OBEX=y +CONFIG_USB_F_NCM=y +CONFIG_USB_F_ECM=y +CONFIG_USB_F_EEM=y +CONFIG_USB_F_SUBSET=y +CONFIG_USB_F_RNDIS=y +CONFIG_USB_F_MASS_STORAGE=y +CONFIG_USB_F_FS=y +CONFIG_USB_F_HID=y +CONFIG_USB_CONFIGFS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +# CONFIG_USB_CONFIGFS_F_PRINTER is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_ETH is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +# CONFIG_USB_MASS_STORAGE is not set +CONFIG_USB_G_SERIAL=y +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_RAW_GADGET is not set +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=y +CONFIG_TYPEC_TCPM=y +CONFIG_TYPEC_TCPCI=y +# CONFIG_TYPEC_RT1711H is not set +# CONFIG_TYPEC_TCPCI_MAXIM is not set +# CONFIG_TYPEC_FUSB302 is not set +# CONFIG_TYPEC_UCSI is not set +# CONFIG_TYPEC_HD3SS3220 is not set +# CONFIG_TYPEC_TPS6598X is not set +# CONFIG_TYPEC_STUSB160X is not set + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +# CONFIG_TYPEC_MUX_PI3USB30532 is not set +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +# CONFIG_TYPEC_DP_ALTMODE is not set +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=32 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +# CONFIG_MMC_SDHCI_PCI is not set +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHCI_OF_ARASAN=y +# CONFIG_MMC_SDHCI_OF_ASPEED is not set +# CONFIG_MMC_SDHCI_OF_AT91 is not set +CONFIG_MMC_SDHCI_OF_ESDHC=y +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +CONFIG_MMC_SDHCI_CADENCE=y +CONFIG_MMC_SDHCI_F_SDH30=y +# CONFIG_MMC_SDHCI_MILBEAUT is not set +# CONFIG_MMC_TIFM_SD is not set +CONFIG_MMC_SPI=y +# CONFIG_MMC_CB710 is not set +# CONFIG_MMC_VIA_SDMMC is not set +CONFIG_MMC_DW=y +CONFIG_MMC_DW_PLTFM=y +# CONFIG_MMC_DW_BLUEFIELD is not set +CONFIG_MMC_DW_EXYNOS=y +CONFIG_MMC_DW_HI3798CV200=y +CONFIG_MMC_DW_K3=y +# CONFIG_MMC_DW_PCI is not set +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_HSQ is not set +# CONFIG_MMC_TOSHIBA_PCI is not set +# CONFIG_MMC_MTK is not set +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MMC_SDHCI_OMAP is not set +# CONFIG_MMC_SDHCI_AM654 is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW2013 is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=y +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP50XX is not set +# CONFIG_LEDS_LP55XX_COMMON is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +CONFIG_LEDS_PWM=y +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +CONFIG_LEDS_SYSCON=y +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +# CONFIG_LEDS_TRIGGERS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_GHES=y +# CONFIG_EDAC_LAYERSCAPE is not set +# CONFIG_EDAC_THUNDERX is not set +# CONFIG_EDAC_XGENE is not set +# CONFIG_EDAC_DMC520 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_RK808=y +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +CONFIG_RTC_DRV_PCF85363=y +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +CONFIG_RTC_DRV_RX8581=y +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +CONFIG_RTC_DRV_S5M=y +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=y +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=y +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_FSL_FTM_ALARM=y +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_DW_AXI_DMAC is not set +CONFIG_FSL_EDMA=y +# CONFIG_FSL_QDMA is not set +# CONFIG_HISI_DMA is not set +# CONFIG_INTEL_IDMA64 is not set +CONFIG_MV_XOR_V2=y +CONFIG_PL330_DMA=y +# CONFIG_PLX_DMA is not set +# CONFIG_XILINX_DMA is not set +# CONFIG_XILINX_ZYNQMP_DMA is not set +# CONFIG_XILINX_ZYNQMP_DPDMA is not set +CONFIG_QCOM_HIDMA_MGMT=y +CONFIG_QCOM_HIDMA=y +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_FSL_DPAA2_QDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_DMATEST=y +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=y +CONFIG_UIO_CIF=y +CONFIG_UIO_PDRV_GENIRQ=y +CONFIG_UIO_DMEM_GENIRQ=y +CONFIG_UIO_AEC=y +CONFIG_UIO_SERCOS3=y +CONFIG_UIO_PCI_GENERIC=y +CONFIG_UIO_NETX=y +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VFIO=y +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +# CONFIG_VFIO_PLATFORM is not set +# CONFIG_VFIO_MDEV is not set +CONFIG_VFIO_FSL_MC=y +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_RTS5208 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +CONFIG_STAGING_MEDIA=y + +# +# Android +# +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +CONFIG_FSL_DPAA2=y +# CONFIG_KS7010 is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_KPC2000 is not set +# CONFIG_QLGE is not set +# CONFIG_SPMI_HISI3670 is not set +# CONFIG_MFD_HI6421_SPMI is not set +# CONFIG_GOLDFISH is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_MAX77686 is not set +# CONFIG_COMMON_CLK_MAX9485 is not set +CONFIG_COMMON_CLK_RK808=y +CONFIG_COMMON_CLK_SCPI=y +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +CONFIG_COMMON_CLK_CS2000_CP=y +# CONFIG_COMMON_CLK_FSL_SAI is not set +CONFIG_COMMON_CLK_S2MPS11=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_LS1028A_PLLDIG=y +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_PWM=y +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_HWSPINLOCK=y + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_PROBE=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_FSL_ERRATUM_A008585=y +# CONFIG_HISILICON_ERRATUM_161010101 is not set +# CONFIG_ARM64_ERRATUM_858921 is not set +# CONFIG_MICROCHIP_PIT64B is not set +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_ARM_MHU=y +CONFIG_PLATFORM_MHU=y +# CONFIG_PL320_MBOX is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX_TEST is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_DMA=y +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +CONFIG_ARM_SMMU_V3=y +# CONFIG_ARM_SMMU_V3_SVA is not set +# CONFIG_VIRTIO_IOMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=y +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_QCOM_GLINK=y +CONFIG_RPMSG_QCOM_GLINK_RPM=y +CONFIG_RPMSG_VIRTIO=y +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# CONFIG_SOC_BRCMSTB is not set +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_FSL_DPAA is not set +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_GUTS=y +CONFIG_FSL_MC_DPIO=y +CONFIG_DPAA2_CONSOLE=y +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +# CONFIG_EXTCON_FSA9480 is not set +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +# CONFIG_EXTCON_PTN5150 is not set +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=y +CONFIG_MEMORY=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_FSL_IFC=y +CONFIG_IIO=y +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +# CONFIG_IIO_BUFFER_DMA is not set +# CONFIG_IIO_BUFFER_DMAENGINE is not set +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=y +# CONFIG_IIO_TRIGGERED_BUFFER is not set +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set +# CONFIG_IIO_TRIGGERED_EVENT is not set + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +# CONFIG_BMA400 is not set +# CONFIG_BMC150_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +# CONFIG_IIO_ST_ACCEL_3AXIS is not set +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +# CONFIG_MMA8452 is not set +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7091R5 is not set +# CONFIG_AD7124 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7292 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_AD9467 is not set +# CONFIG_ADI_AXI_ADC is not set +# CONFIG_AXP20X_ADC is not set +# CONFIG_AXP288_ADC is not set +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_LTC2471 is not set +# CONFIG_LTC2485 is not set +# CONFIG_LTC2496 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1241 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_NAU7802 is not set +# CONFIG_QCOM_SPMI_IADC is not set +# CONFIG_QCOM_SPMI_VADC is not set +# CONFIG_QCOM_SPMI_ADC5 is not set +# CONFIG_SD_ADC_MODULATOR is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_TLC4541 is not set +# CONFIG_VF610_ADC is not set +# CONFIG_XILINX_XADC is not set +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# CONFIG_HMC425 is not set +# end of Amplifiers + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_ATLAS_EZO_SENSOR is not set +# CONFIG_BME680 is not set +# CONFIG_CCS811 is not set +# CONFIG_IAQCORE is not set +# CONFIG_PMS7003 is not set +# CONFIG_SCD30_CORE is not set +# CONFIG_SENSIRION_SGP30 is not set +# CONFIG_SPS30 is not set +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +# +# Hid Sensor IIO Common +# +# end of Hid Sensor IIO Common + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +# CONFIG_AD5446 is not set +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5770R is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +# CONFIG_ADF4371 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS290 is not set +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HDC2010 is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16475 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_FXOS8700_I2C is not set +# CONFIG_FXOS8700_SPI is not set +# CONFIG_KMX61 is not set +# CONFIG_INV_ICM42600_I2C is not set +# CONFIG_INV_ICM42600_SPI is not set +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# end of Inertial measurement units + +# +# Light sensors +# +# CONFIG_ACPI_ALS is not set +# CONFIG_ADJD_S311 is not set +# CONFIG_ADUX1020 is not set +# CONFIG_AL3010 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_AS73211 is not set +# CONFIG_BH1750 is not set +# CONFIG_BH1780 is not set +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP002 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6030 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +# CONFIG_DLHL60D is not set +# CONFIG_DPS310 is not set +# CONFIG_HP03 is not set +# CONFIG_ICP10100 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_PING is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9310 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VCNL3020 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_LTC2983 is not set +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +# CONFIG_AL_FIC is not set +CONFIG_LS_EXTIRQ=y +CONFIG_LS_SCFG_MSI=y +CONFIG_PARTITION_PERCPU=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_RESET_CONTROLLER=y +# CONFIG_RESET_BRCMSTB_RESCAL is not set +# CONFIG_RESET_INTEL_GW is not set +# CONFIG_RESET_TI_SYSCON is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_XGENE=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_CADENCE_TORRENT is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set +CONFIG_PHY_FSL_IMX8MQ_USB=y +CONFIG_PHY_MIXEL_MIPI_DPHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +CONFIG_PHY_QCOM_USB_HS=y +# CONFIG_PHY_QCOM_USB_HSIC is not set +CONFIG_PHY_SAMSUNG_USB2=y +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +# CONFIG_ARM_CMN is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_SMMU_V3_PMU is not set +# CONFIG_ARM_DSU_PMU is not set +# CONFIG_ARM_SPE_PMU is not set +# CONFIG_HISI_PMU is not set +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_SPMI_SDAM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_TEE is not set +CONFIG_MULTIPLEXER=y + +# +# Multiplexer drivers +# +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +CONFIG_MUX_MMIO=y +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +CONFIG_CUSE=y +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +# CONFIG_UBIFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +# CONFIG_SQUASHFS_ZLIB is not set +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_DEFLATE_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_PSTORE_BLK is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +# CONFIG_SECURITY_NETWORK is not set +# CONFIG_SECURITY_PATH is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +# CONFIG_SECURITY_LOADPIN is not set +# CONFIG_SECURITY_YAMA is not set +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +# CONFIG_IMA is not set +# CONFIG_EVM is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_CRYPTD=y +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +# CONFIG_CRYPTO_GCM is not set +CONFIG_CRYPTO_CHACHA20POLY1305=y +# CONFIG_CRYPTO_AEGIS128 is not set +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=y +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +CONFIG_CRYPTO_XTS=y +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_GHASH is not set +CONFIG_CRYPTO_POLY1305=y +CONFIG_CRYPTO_MD4=y +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=y +CONFIG_CRYPTO_RMD128=y +CONFIG_CRYPTO_RMD160=y +CONFIG_CRYPTO_RMD256=y +CONFIG_CRYPTO_RMD320=y +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=y +CONFIG_CRYPTO_SM3=y +# CONFIG_CRYPTO_STREEBOG is not set +CONFIG_CRYPTO_TGR192=y +CONFIG_CRYPTO_WP512=y + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=y +CONFIG_CRYPTO_BLOWFISH_COMMON=y +CONFIG_CRYPTO_CAMELLIA=y +CONFIG_CRYPTO_CAST_COMMON=y +CONFIG_CRYPTO_CAST5=y +CONFIG_CRYPTO_CAST6=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +CONFIG_CRYPTO_CHACHA20=y +# CONFIG_CRYPTO_SEED is not set +CONFIG_CRYPTO_SERPENT=y +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +CONFIG_CRYPTO_TWOFISH=y +CONFIG_CRYPTO_TWOFISH_COMMON=y + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_ZSTD=y + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y +CONFIG_CRYPTO_USER_API_RNG=y +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=y +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=y +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set +CONFIG_CRYPTO_DEV_VIRTIO=y +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_HISI_SEC is not set +# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set +# CONFIG_CRYPTO_DEV_HISI_ZIP is not set +# CONFIG_CRYPTO_DEV_HISI_HPRE is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +# CONFIG_ASYMMETRIC_KEY_TYPE is not set + +# +# Certificates for signature checking +# +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_INDIRECT_PIO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +CONFIG_CRC7=y +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_SWIOTLB=y +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=320 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +# CONFIG_SYMBOLIC_ERRNAME is not set +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_HAVE_DEBUG_BUGVERBOSE=y + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set + +# +# arm64 Debugging +# +CONFIG_PID_IN_CONTEXTIDR=y +# CONFIG_DEBUG_EFI is not set +# CONFIG_CORESIGHT is not set +# end of arm64 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +CONFIG_MEMTEST=y +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 index 62ac60e6..0d70767e 100644 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ b/mainboards/solidrun/honeycomblx2k/config-5.4.47 @@ -362,7 +362,8 @@ CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y # CONFIG_PARAVIRT is not set # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set CONFIG_KEXEC=y -# CONFIG_KEXEC_FILE is not set +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_SIG is not set # CONFIG_CRASH_DUMP is not set # CONFIG_XEN is not set CONFIG_FORCE_MAX_ZONEORDER=11 diff --git a/mainboards/solidrun/honeycomblx2k/kexecconfig-5.10 b/mainboards/solidrun/honeycomblx2k/kexecconfig-5.10 new file mode 100644 index 00000000..58bd397a --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/kexecconfig-5.10 @@ -0,0 +1,5312 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm64 5.10.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 +CONFIG_CLANG_VERSION=0 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_SCHED_AVG_IRQ=y +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +# CONFIG_CFS_BANDWIDTH is not set +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_DEBUG is not set +# CONFIG_NAMESPACES is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../kexecinitramfs.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_RD_ZSTD=y +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_PROFILING=y +# end of General setup + +CONFIG_ARM64=y +CONFIG_64BIT=y +CONFIG_MMU=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_SMP=y +CONFIG_KERNEL_MODE_NEON=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_PROC_KCORE_TEXT=y + +# +# Platform selection +# +# CONFIG_ARCH_ACTIONS is not set +# CONFIG_ARCH_AGILEX is not set +# CONFIG_ARCH_SUNXI is not set +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_BCM2835 is not set +# CONFIG_ARCH_BCM_IPROC is not set +# CONFIG_ARCH_BERLIN is not set +# CONFIG_ARCH_BITMAIN is not set +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_SPARX5 is not set +# CONFIG_ARCH_K3 is not set +CONFIG_ARCH_LAYERSCAPE=y +# CONFIG_ARCH_LG1K is not set +# CONFIG_ARCH_HISI is not set +# CONFIG_ARCH_KEEMBAY is not set +# CONFIG_ARCH_MEDIATEK is not set +# CONFIG_ARCH_MESON is not set +# CONFIG_ARCH_MVEBU is not set +# CONFIG_ARCH_MXC is not set +# CONFIG_ARCH_QCOM is not set +# CONFIG_ARCH_REALTEK is not set +# CONFIG_ARCH_RENESAS is not set +# CONFIG_ARCH_ROCKCHIP is not set +# CONFIG_ARCH_S32 is not set +# CONFIG_ARCH_SEATTLE is not set +# CONFIG_ARCH_STRATIX10 is not set +# CONFIG_ARCH_SYNQUACER is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_SPRD is not set +# CONFIG_ARCH_THUNDER is not set +# CONFIG_ARCH_THUNDER2 is not set +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARCH_VEXPRESS is not set +# CONFIG_ARCH_VISCONTI is not set +# CONFIG_ARCH_XGENE is not set +# CONFIG_ARCH_ZX is not set +# CONFIG_ARCH_ZYNQMP is not set +# end of Platform selection + +# +# Kernel Features +# + +# +# ARM errata workarounds via the alternatives framework +# +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARM64_ERRATUM_1165522=y +# CONFIG_ARM64_ERRATUM_1319367 is not set +# CONFIG_ARM64_ERRATUM_1530923 is not set +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +# CONFIG_ARM64_ERRATUM_1508412 is not set +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +# end of ARM errata workarounds via the alternatives framework + +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_16K_PAGES is not set +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PA_BITS=48 +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_SCHED_MC=y +# CONFIG_SCHED_SMT is not set +CONFIG_NR_CPUS=16 +CONFIG_HOTPLUG_CPU=y +# CONFIG_NUMA is not set +CONFIG_HOLES_IN_ZONE=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_PARAVIRT is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +# CONFIG_XEN is not set +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +# CONFIG_COMPAT is not set + +# +# ARMv8.1 architectural features +# +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +CONFIG_ARM64_VHE=y +# end of ARMv8.1 architectural features + +# +# ARMv8.2 architectural features +# +CONFIG_ARM64_UAO=y +# CONFIG_ARM64_PMEM is not set +CONFIG_ARM64_RAS_EXTN=y +CONFIG_ARM64_CNP=y +# end of ARMv8.2 architectural features + +# +# ARMv8.3 architectural features +# +CONFIG_ARM64_PTR_AUTH=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y +CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_AS_HAS_PAC=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +# end of ARMv8.3 architectural features + +# +# ARMv8.4 architectural features +# +# CONFIG_ARM64_AMU_EXTN is not set +CONFIG_AS_HAS_ARMV8_4=y +# CONFIG_ARM64_TLB_RANGE is not set +# end of ARMv8.4 architectural features + +# +# ARMv8.5 architectural features +# +# CONFIG_ARM64_BTI is not set +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y +# CONFIG_ARM64_E0PD is not set +# CONFIG_ARCH_RANDOM is not set +CONFIG_ARM64_AS_HAS_MTE=y +CONFIG_ARM64_MTE=y +# end of ARMv8.5 architectural features + +# CONFIG_ARM64_SVE is not set +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_STACKPROTECTOR_PER_TASK=y +# end of Kernel Features + +# +# Boot options +# +# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set +CONFIG_CMDLINE="" +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +CONFIG_PM_TEST_SUSPEND=y +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +CONFIG_DT_IDLE_STATES=y + +# +# ARM CPU Idle Drivers +# +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y +# end of ARM CPU Idle Drivers +# end of CPU Idle + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ACPI_CPPC_CPUFREQ=y +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_QORIQ_CPUFREQ=y +# end of CPU Frequency scaling +# end of CPU Power Management + +# +# Firmware Drivers +# +# CONFIG_ARM_SCMI_PROTOCOL is not set +CONFIG_ARM_SCPI_PROTOCOL=y +CONFIG_ARM_SCPI_POWER_DOMAIN=y +# CONFIG_ARM_SDE_INTERFACE is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +CONFIG_EFI_CAPSULE_LOADER=y +# CONFIG_EFI_TEST is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +# CONFIG_ARM_SMCCC_SOC_ID is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_CCA_REQUIRED=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_IPMI is not set +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_EINJ=y +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_IORT=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_PPTT=y +# CONFIG_PMIC_OPREGION is not set +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_KVM_ARM_PMU=y +CONFIG_ARM64_CRYPTO=y +CONFIG_CRYPTO_SHA256_ARM64=y +CONFIG_CRYPTO_SHA512_ARM64=y +CONFIG_CRYPTO_SHA1_ARM64_CE=y +CONFIG_CRYPTO_SHA2_ARM64_CE=y +CONFIG_CRYPTO_SHA512_ARM64_CE=y +CONFIG_CRYPTO_SHA3_ARM64=y +CONFIG_CRYPTO_SM3_ARM64_CE=y +# CONFIG_CRYPTO_SM4_ARM64_CE is not set +CONFIG_CRYPTO_GHASH_ARM64_CE=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64=y +CONFIG_CRYPTO_AES_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_AES_ARM64_CE_BLK=y +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y +CONFIG_CRYPTO_CHACHA20_NEON=y +# CONFIG_CRYPTO_POLY1305_NEON is not set +# CONFIG_CRYPTO_NHPOLY1305_NEON is not set +CONFIG_CRYPTO_AES_ARM64_BS=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_SET_FS=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_CLONE_BACKWARDS=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_DEV_THROTTLING is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_CGROUP_IOLATENCY is not set +# CONFIG_BLK_CGROUP_IOCOST is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ELFCORE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_AREAS=7 +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_UNIX_DIAG=y +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +CONFIG_NET_KEY=y +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_IP_MROUTE is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_NETLABEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +CONFIG_VLAN_8021Q=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_VLAN_8021Q_MVRP is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +# CONFIG_CFG80211 is not set +CONFIG_LIB80211=y +CONFIG_LIB80211_CRYPT_WEP=y +CONFIG_LIB80211_CRYPT_CCMP=y +CONFIG_LIB80211_CRYPT_TKIP=y +# CONFIG_LIB80211_DEBUG is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_VIRTIO=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_DEVLINK=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_ECAM=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +# CONFIG_PCIE_HISI_ERR is not set + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_HISI=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_AL is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +CONFIG_PCIE_MOBIVEIL=y +CONFIG_PCIE_MOBIVEIL_HOST=y +CONFIG_PCIE_LAYERSCAPE_GEN4=y +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_BRCMSTB_GISB_ARB=y +# CONFIG_MOXTET is not set +CONFIG_SIMPLE_PM_BUS=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_FSL_MC_BUS=y +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +CONFIG_MTD=y + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_SWAP is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=y +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=y +CONFIG_MTD_CFI_ADV_OPTIONS=y +CONFIG_MTD_CFI_NOSWAP=y +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_GEOMETRY is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_OTP is not set +CONFIG_MTD_CFI_INTELEXT=y +CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_CFI_STAA=y +CONFIG_MTD_CFI_UTIL=y +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +CONFIG_MTD_PHYSMAP=y +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_OF=y +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +CONFIG_MTD_SST25L=y +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=y +# CONFIG_MTD_ONENAND is not set +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_RAW_NAND=y +# CONFIG_MTD_NAND_ECC_SW_BCH is not set + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=y +# CONFIG_MTD_NAND_DENALI_PCI is not set +CONFIG_MTD_NAND_DENALI_DT=y +# CONFIG_MTD_NAND_CAFE is not set +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_FSL_IFC=y +# CONFIG_MTD_NAND_MXIC is not set +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_PLATFORM is not set +# CONFIG_MTD_NAND_CADENCE is not set +# CONFIG_MTD_NAND_ARASAN is not set + +# +# Misc +# +# CONFIG_MTD_NAND_NANDSIM is not set +# CONFIG_MTD_NAND_RICOH is not set +# CONFIG_MTD_NAND_DISKONCHIP is not set +# CONFIG_MTD_SPI_NAND is not set + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=y +# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set +CONFIG_MTD_UBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +# CONFIG_MTD_UBI_BLOCK is not set +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_HISI_HIKEY_USB is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +CONFIG_EEPROM_AT25=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_UACCE is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_SCSI_SAS_HOST_SMP=y +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +CONFIG_MACVLAN=y +CONFIG_MACVTAP=y +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +CONFIG_TUN=y +CONFIG_TAP=y +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_FREESCALE=y +# CONFIG_FSL_FMAN is not set +# CONFIG_FSL_PQ_MDIO is not set +CONFIG_FSL_XGMAC_MDIO=y +# CONFIG_GIANFAR is not set +CONFIG_FSL_DPAA2_ETH=y +CONFIG_FSL_DPAA2_PTP_CLOCK=y +CONFIG_FSL_ENETC=y +CONFIG_FSL_ENETC_VF=y +CONFIG_FSL_ENETC_MDIO=y +CONFIG_FSL_ENETC_PTP_CLOCK=y +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HISILICON is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLINK=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_FIXED_PHY=y +# CONFIG_SFP is not set + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +CONFIG_AQUANTIA_PHY=y +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +# CONFIG_MICROCHIP_T1_PHY is not set +CONFIG_MICROSEMI_PHY=y +# CONFIG_NATIONAL_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +# CONFIG_MDIO_BCM_UNIMAC is not set +CONFIG_MDIO_CAVIUM=y +# CONFIG_MDIO_GPIO is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y +CONFIG_MDIO_BUS_MUX_MMIOREG=y + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +CONFIG_PCS_LYNX=y +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +CONFIG_USB_PEGASUS=y +CONFIG_USB_RTL8150=y +CONFIG_USB_RTL8152=y +CONFIG_USB_LAN78XX=y +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +CONFIG_USB_NET_DM9601=y +# CONFIG_USB_NET_SR9700 is not set +CONFIG_USB_NET_SR9800=y +CONFIG_USB_NET_SMSC75XX=y +CONFIG_USB_NET_SMSC95XX=y +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +CONFIG_USB_NET_PLUSB=y +CONFIG_USB_NET_MCS7830=y +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +CONFIG_USB_NET_ZAURUS=y +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=y +# CONFIG_HOSTAP_FIRMWARE is not set +# CONFIG_HOSTAP_PLX is not set +# CONFIG_HOSTAP_PCI is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +CONFIG_NET_FAILOVER=y +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +CONFIG_INPUT_POLLDEV=y +# CONFIG_INPUT_SPARSEKMAP is not set +CONFIG_INPUT_MATRIXKMAP=y + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ADC is not set +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=y +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_AXP20X_PEK is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_RK805_PWRKEY is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +# CONFIG_SERIO_SERPORT is not set +CONFIG_SERIO_AMBAKMI=y +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=16 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +# CONFIG_SERIAL_8250_MANY_PORTS is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_XILINX_PS_UART=y +CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +CONFIG_SERIAL_FSL_LPUART=y +CONFIG_SERIAL_FSL_LPUART_CONSOLE=y +CONFIG_SERIAL_FSL_LINFLEXUART=y +CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +CONFIG_HVC_DRIVER=y +# CONFIG_HVC_DCC is not set +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +# CONFIG_TTY_PRINTK is not set +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=y +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=y +CONFIG_IPMI_SI=y +# CONFIG_IPMI_SSIF is not set +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_BA431 is not set +# CONFIG_HW_RANDOM_VIRTIO is not set +CONFIG_HW_RANDOM_HISI_V2=y +CONFIG_HW_RANDOM_CAVIUM=y +# CONFIG_HW_RANDOM_CCTRNG is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +CONFIG_DEVMEM=y +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +# CONFIG_TCG_TIS is not set +# CONFIG_TCG_TIS_SPI is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +CONFIG_TCG_TIS_I2C_INFINEON=y +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_ATMEL is not set +# CONFIG_TCG_INFINEON is not set +# CONFIG_TCG_CRB is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +CONFIG_I2C_MUX_PCA954x=y +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CADENCE is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=y +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_IMX=y +# CONFIG_I2C_NOMADIK is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +CONFIG_I2C_RK3X=y +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_THUNDERX is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BITBANG=y +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +# CONFIG_SPI_DESIGNWARE is not set +CONFIG_SPI_FSL_QUADSPI=y +# CONFIG_SPI_HISI_SFC_V3XX is not set +CONFIG_SPI_NXP_FLEXSPI=y +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_FSL_SPI is not set +CONFIG_SPI_FSL_DSPI=y +# CONFIG_SPI_OC_TINY is not set +CONFIG_SPI_PL022=y +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=y +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_THUNDERX is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +# CONFIG_SPI_MUX is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_TLE62X0 is not set +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_TIME=y +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y +CONFIG_SPI_DYNAMIC=y +CONFIG_SPMI=y +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_QORIQ=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AXP209 is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_MAX77620=y +# CONFIG_PINCTRL_RK805 is not set +# CONFIG_PINCTRL_OCELOT is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_CADENCE is not set +CONFIG_GPIO_DWAPB=y +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +# CONFIG_GPIO_LOGICVC is not set +CONFIG_GPIO_MB86S7X=y +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_PL061=y +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SIFIVE is not set +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_XGENE=y +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +CONFIG_GPIO_MAX732X=y +# CONFIG_GPIO_MAX732X_IRQ is not set +CONFIG_GPIO_PCA953X=y +CONFIG_GPIO_PCA953X_IRQ=y +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# CONFIG_GPIO_BD9571MWV is not set +CONFIG_GPIO_MAX77620=y +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_BRCMSTB=y +CONFIG_POWER_RESET_GPIO=y +# CONFIG_POWER_RESET_GPIO_RESTART is not set +# CONFIG_POWER_RESET_LTC2952 is not set +# CONFIG_POWER_RESET_RESTART is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y +CONFIG_POWER_RESET_SYSCON=y +# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set +CONFIG_REBOOT_MODE=y +CONFIG_SYSCON_REBOOT_MODE=y +# CONFIG_NVMEM_REBOOT_MODE is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +CONFIG_BATTERY_SBS=y +# CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set +CONFIG_BATTERY_BQ27XXX=y +CONFIG_BATTERY_BQ27XXX_I2C=y +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +# CONFIG_AXP20X_POWER is not set +# CONFIG_AXP288_FUEL_GAUGE is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_UCS1002 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +CONFIG_SENSORS_ARM_SCPI=y +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IBMAEM is not set +# CONFIG_SENSORS_IBMPEX is not set +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2947_SPI is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +CONFIG_SENSORS_LM90=y +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +CONFIG_PMBUS=y +CONFIG_SENSORS_PMBUS=y +# CONFIG_SENSORS_ADM1266 is not set +# CONFIG_SENSORS_ADM1275 is not set +# CONFIG_SENSORS_BEL_PFE is not set +# CONFIG_SENSORS_IBM_CFFPS is not set +# CONFIG_SENSORS_INSPUR_IPSPS is not set +# CONFIG_SENSORS_IR35221 is not set +# CONFIG_SENSORS_IR38064 is not set +# CONFIG_SENSORS_IRPS5401 is not set +# CONFIG_SENSORS_ISL68137 is not set +# CONFIG_SENSORS_LM25066 is not set +CONFIG_SENSORS_LTC2978=y +CONFIG_SENSORS_LTC2978_REGULATOR=y +# CONFIG_SENSORS_LTC3815 is not set +# CONFIG_SENSORS_MAX16064 is not set +# CONFIG_SENSORS_MAX16601 is not set +# CONFIG_SENSORS_MAX20730 is not set +# CONFIG_SENSORS_MAX20751 is not set +# CONFIG_SENSORS_MAX31785 is not set +# CONFIG_SENSORS_MAX34440 is not set +# CONFIG_SENSORS_MAX8688 is not set +# CONFIG_SENSORS_MP2975 is not set +# CONFIG_SENSORS_PXE1610 is not set +# CONFIG_SENSORS_TPS40422 is not set +# CONFIG_SENSORS_TPS53679 is not set +# CONFIG_SENSORS_UCD9000 is not set +# CONFIG_SENSORS_UCD9200 is not set +# CONFIG_SENSORS_XDPE122 is not set +# CONFIG_SENSORS_ZL6100 is not set +CONFIG_SENSORS_PWM_FAN=y +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +CONFIG_SENSORS_AMC6821=y +# CONFIG_SENSORS_INA209 is not set +CONFIG_SENSORS_INA2XX=y +CONFIG_SENSORS_INA3221=y +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +CONFIG_CPU_THERMAL=y +CONFIG_CPU_FREQ_THERMAL=y +# CONFIG_DEVFREQ_THERMAL is not set +CONFIG_THERMAL_EMULATION=y +# CONFIG_THERMAL_MMIO is not set +# CONFIG_MAX77620_THERMAL is not set +CONFIG_QORIQ_THERMAL=y +# CONFIG_GENERIC_ADC_THERMAL is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=y +CONFIG_ARM_SBSA_WATCHDOG=y +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_DW_WATCHDOG=y +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAX77620_WATCHDOG is not set +CONFIG_IMX2_WDT=y +# CONFIG_ARM_SMC_WATCHDOG is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +CONFIG_MFD_BD9571MWV=y +CONFIG_MFD_AXP20X=y +CONFIG_MFD_AXP20X_I2C=y +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_GATEWORKS_GSC is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +CONFIG_MFD_HI6421_PMIC=y +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +CONFIG_MFD_MAX77620=y +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=y +# CONFIG_MFD_RN5T618 is not set +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SL28CPLD is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_ROHM_BD718XX=y +# CONFIG_MFD_ROHM_BD70528 is not set +# CONFIG_MFD_ROHM_BD71828 is not set +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_RAVE_SP_CORE is not set +# CONFIG_MFD_INTEL_M10_BMC is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +CONFIG_REGULATOR_AXP20X=y +CONFIG_REGULATOR_BD718XX=y +CONFIG_REGULATOR_BD9571MWV=y +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=y +# CONFIG_REGULATOR_FAN53880 is not set +CONFIG_REGULATOR_GPIO=y +# CONFIG_REGULATOR_HI6421 is not set +CONFIG_REGULATOR_HI6421V530=y +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +CONFIG_REGULATOR_MAX77620=y +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +CONFIG_REGULATOR_MAX8973=y +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MCP16502 is not set +# CONFIG_REGULATOR_MP5416 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MP886X is not set +# CONFIG_REGULATOR_MPQ7920 is not set +# CONFIG_REGULATOR_MT6311 is not set +CONFIG_REGULATOR_PCA9450=y +CONFIG_REGULATOR_PFUZE100=y +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_PWM=y +CONFIG_REGULATOR_QCOM_SPMI=y +# CONFIG_REGULATOR_QCOM_USB_VBUS is not set +CONFIG_REGULATOR_RK808=y +CONFIG_REGULATOR_ROHM=y +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_S2MPA01 is not set +CONFIG_REGULATOR_S2MPS11=y +# CONFIG_REGULATOR_S5M8767 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_SY8106A is not set +# CONFIG_REGULATOR_SY8824X is not set +# CONFIG_REGULATOR_SY8827N is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_REGULATOR_VCTRL=y +# CONFIG_REGULATOR_VEXPRESS is not set +# CONFIG_REGULATOR_QCOM_LABIBB is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_VGA_ARB is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# end of Console display driver support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID=y +# end of I2C HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_OTG=y +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_OTG_FSM is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=y +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +CONFIG_USB_CDNS3=y +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_CDNS3_PCI_WRAP=y +CONFIG_USB_MUSB_HDRC=y +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_DWC3=y +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=y +CONFIG_USB_DWC3_HAPS=y +CONFIG_USB_DWC3_OF_SIMPLE=y +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=y +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=y +CONFIG_USB_CHIPIDEA_MSM=y +CONFIG_USB_CHIPIDEA_IMX=y +CONFIG_USB_CHIPIDEA_GENERIC=y +CONFIG_USB_CHIPIDEA_TEGRA=y +CONFIG_USB_ISP1760=y +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=y +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +CONFIG_USB_TEST=y +CONFIG_USB_EHSET_TEST_FIXTURE=y +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=y +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=y +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +CONFIG_USB_SNP_CORE=y +CONFIG_USB_SNP_UDC_PLAT=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=y + +# +# Platform Support +# +CONFIG_USB_BDC_PCI=y +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_NET2280 is not set +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_MAX3420_UDC is not set +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=y +CONFIG_USB_F_ACM=y +CONFIG_USB_F_SS_LB=y +CONFIG_USB_U_SERIAL=y +CONFIG_USB_U_ETHER=y +CONFIG_USB_F_SERIAL=y +CONFIG_USB_F_OBEX=y +CONFIG_USB_F_NCM=y +CONFIG_USB_F_ECM=y +CONFIG_USB_F_EEM=y +CONFIG_USB_F_SUBSET=y +CONFIG_USB_F_RNDIS=y +CONFIG_USB_F_MASS_STORAGE=y +CONFIG_USB_F_FS=y +CONFIG_USB_F_HID=y +CONFIG_USB_CONFIGFS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +# CONFIG_USB_CONFIGFS_F_PRINTER is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_ETH is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +# CONFIG_USB_MASS_STORAGE is not set +CONFIG_USB_G_SERIAL=y +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_RAW_GADGET is not set +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=y +CONFIG_TYPEC_TCPM=y +CONFIG_TYPEC_TCPCI=y +# CONFIG_TYPEC_RT1711H is not set +# CONFIG_TYPEC_TCPCI_MAXIM is not set +# CONFIG_TYPEC_FUSB302 is not set +# CONFIG_TYPEC_UCSI is not set +# CONFIG_TYPEC_HD3SS3220 is not set +# CONFIG_TYPEC_TPS6598X is not set +# CONFIG_TYPEC_STUSB160X is not set + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +# CONFIG_TYPEC_MUX_PI3USB30532 is not set +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +# CONFIG_TYPEC_DP_ALTMODE is not set +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=32 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +# CONFIG_MMC_SDHCI_PCI is not set +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHCI_OF_ARASAN=y +# CONFIG_MMC_SDHCI_OF_ASPEED is not set +# CONFIG_MMC_SDHCI_OF_AT91 is not set +CONFIG_MMC_SDHCI_OF_ESDHC=y +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +CONFIG_MMC_SDHCI_CADENCE=y +CONFIG_MMC_SDHCI_F_SDH30=y +# CONFIG_MMC_SDHCI_MILBEAUT is not set +# CONFIG_MMC_TIFM_SD is not set +CONFIG_MMC_SPI=y +# CONFIG_MMC_CB710 is not set +# CONFIG_MMC_VIA_SDMMC is not set +CONFIG_MMC_DW=y +CONFIG_MMC_DW_PLTFM=y +# CONFIG_MMC_DW_BLUEFIELD is not set +CONFIG_MMC_DW_EXYNOS=y +CONFIG_MMC_DW_HI3798CV200=y +CONFIG_MMC_DW_K3=y +# CONFIG_MMC_DW_PCI is not set +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_HSQ is not set +# CONFIG_MMC_TOSHIBA_PCI is not set +# CONFIG_MMC_MTK is not set +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MMC_SDHCI_OMAP is not set +# CONFIG_MMC_SDHCI_AM654 is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW2013 is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=y +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP50XX is not set +# CONFIG_LEDS_LP55XX_COMMON is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +CONFIG_LEDS_PWM=y +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +CONFIG_LEDS_SYSCON=y +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +# CONFIG_LEDS_TRIGGERS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_GHES=y +# CONFIG_EDAC_LAYERSCAPE is not set +# CONFIG_EDAC_THUNDERX is not set +# CONFIG_EDAC_XGENE is not set +# CONFIG_EDAC_DMC520 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_RK808=y +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +CONFIG_RTC_DRV_PCF85363=y +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +CONFIG_RTC_DRV_RX8581=y +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +CONFIG_RTC_DRV_S5M=y +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=y +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=y +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_FSL_FTM_ALARM=y +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_DW_AXI_DMAC is not set +CONFIG_FSL_EDMA=y +# CONFIG_FSL_QDMA is not set +# CONFIG_HISI_DMA is not set +# CONFIG_INTEL_IDMA64 is not set +CONFIG_MV_XOR_V2=y +CONFIG_PL330_DMA=y +# CONFIG_PLX_DMA is not set +# CONFIG_XILINX_DMA is not set +# CONFIG_XILINX_ZYNQMP_DMA is not set +# CONFIG_XILINX_ZYNQMP_DPDMA is not set +CONFIG_QCOM_HIDMA_MGMT=y +CONFIG_QCOM_HIDMA=y +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_FSL_DPAA2_QDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_DMATEST=y +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=y +CONFIG_UIO_CIF=y +CONFIG_UIO_PDRV_GENIRQ=y +CONFIG_UIO_DMEM_GENIRQ=y +CONFIG_UIO_AEC=y +CONFIG_UIO_SERCOS3=y +CONFIG_UIO_PCI_GENERIC=y +CONFIG_UIO_NETX=y +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VFIO=y +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +# CONFIG_VFIO_PLATFORM is not set +# CONFIG_VFIO_MDEV is not set +CONFIG_VFIO_FSL_MC=y +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_RTS5208 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +CONFIG_STAGING_MEDIA=y + +# +# Android +# +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +CONFIG_FSL_DPAA2=y +# CONFIG_KS7010 is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_KPC2000 is not set +# CONFIG_QLGE is not set +# CONFIG_SPMI_HISI3670 is not set +# CONFIG_MFD_HI6421_SPMI is not set +# CONFIG_GOLDFISH is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_MAX77686 is not set +# CONFIG_COMMON_CLK_MAX9485 is not set +CONFIG_COMMON_CLK_RK808=y +CONFIG_COMMON_CLK_SCPI=y +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +CONFIG_COMMON_CLK_CS2000_CP=y +# CONFIG_COMMON_CLK_FSL_SAI is not set +CONFIG_COMMON_CLK_S2MPS11=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_LS1028A_PLLDIG=y +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_PWM=y +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_HWSPINLOCK=y + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_PROBE=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_FSL_ERRATUM_A008585=y +# CONFIG_HISILICON_ERRATUM_161010101 is not set +# CONFIG_ARM64_ERRATUM_858921 is not set +# CONFIG_MICROCHIP_PIT64B is not set +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_ARM_MHU=y +CONFIG_PLATFORM_MHU=y +# CONFIG_PL320_MBOX is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX_TEST is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_DMA=y +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +CONFIG_ARM_SMMU_V3=y +# CONFIG_ARM_SMMU_V3_SVA is not set +# CONFIG_VIRTIO_IOMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=y +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_QCOM_GLINK=y +CONFIG_RPMSG_QCOM_GLINK_RPM=y +CONFIG_RPMSG_VIRTIO=y +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# CONFIG_SOC_BRCMSTB is not set +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_FSL_DPAA is not set +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_GUTS=y +CONFIG_FSL_MC_DPIO=y +CONFIG_DPAA2_CONSOLE=y +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +# CONFIG_EXTCON_FSA9480 is not set +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +# CONFIG_EXTCON_PTN5150 is not set +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=y +CONFIG_MEMORY=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_FSL_IFC=y +CONFIG_IIO=y +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +# CONFIG_IIO_BUFFER_DMA is not set +# CONFIG_IIO_BUFFER_DMAENGINE is not set +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=y +# CONFIG_IIO_TRIGGERED_BUFFER is not set +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set +# CONFIG_IIO_TRIGGERED_EVENT is not set + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +# CONFIG_BMA400 is not set +# CONFIG_BMC150_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +# CONFIG_IIO_ST_ACCEL_3AXIS is not set +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +# CONFIG_MMA8452 is not set +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7091R5 is not set +# CONFIG_AD7124 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7292 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_AD9467 is not set +# CONFIG_ADI_AXI_ADC is not set +# CONFIG_AXP20X_ADC is not set +# CONFIG_AXP288_ADC is not set +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_LTC2471 is not set +# CONFIG_LTC2485 is not set +# CONFIG_LTC2496 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1241 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_NAU7802 is not set +# CONFIG_QCOM_SPMI_IADC is not set +# CONFIG_QCOM_SPMI_VADC is not set +# CONFIG_QCOM_SPMI_ADC5 is not set +# CONFIG_SD_ADC_MODULATOR is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_TLC4541 is not set +# CONFIG_VF610_ADC is not set +# CONFIG_XILINX_XADC is not set +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# CONFIG_HMC425 is not set +# end of Amplifiers + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_ATLAS_EZO_SENSOR is not set +# CONFIG_BME680 is not set +# CONFIG_CCS811 is not set +# CONFIG_IAQCORE is not set +# CONFIG_PMS7003 is not set +# CONFIG_SCD30_CORE is not set +# CONFIG_SENSIRION_SGP30 is not set +# CONFIG_SPS30 is not set +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +# +# Hid Sensor IIO Common +# +# end of Hid Sensor IIO Common + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +# CONFIG_AD5446 is not set +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5770R is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +# CONFIG_ADF4371 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS290 is not set +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HDC2010 is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16475 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_FXOS8700_I2C is not set +# CONFIG_FXOS8700_SPI is not set +# CONFIG_KMX61 is not set +# CONFIG_INV_ICM42600_I2C is not set +# CONFIG_INV_ICM42600_SPI is not set +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# end of Inertial measurement units + +# +# Light sensors +# +# CONFIG_ACPI_ALS is not set +# CONFIG_ADJD_S311 is not set +# CONFIG_ADUX1020 is not set +# CONFIG_AL3010 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_AS73211 is not set +# CONFIG_BH1750 is not set +# CONFIG_BH1780 is not set +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP002 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6030 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +# CONFIG_DLHL60D is not set +# CONFIG_DPS310 is not set +# CONFIG_HP03 is not set +# CONFIG_ICP10100 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_PING is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9310 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VCNL3020 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_LTC2983 is not set +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +# CONFIG_AL_FIC is not set +CONFIG_LS_EXTIRQ=y +CONFIG_LS_SCFG_MSI=y +CONFIG_PARTITION_PERCPU=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_RESET_CONTROLLER=y +# CONFIG_RESET_BRCMSTB_RESCAL is not set +# CONFIG_RESET_INTEL_GW is not set +# CONFIG_RESET_TI_SYSCON is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_XGENE=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_CADENCE_TORRENT is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set +CONFIG_PHY_FSL_IMX8MQ_USB=y +CONFIG_PHY_MIXEL_MIPI_DPHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +CONFIG_PHY_QCOM_USB_HS=y +# CONFIG_PHY_QCOM_USB_HSIC is not set +CONFIG_PHY_SAMSUNG_USB2=y +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +# CONFIG_ARM_CMN is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_SMMU_V3_PMU is not set +# CONFIG_ARM_DSU_PMU is not set +# CONFIG_ARM_SPE_PMU is not set +# CONFIG_HISI_PMU is not set +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_SPMI_SDAM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_TEE is not set +CONFIG_MULTIPLEXER=y + +# +# Multiplexer drivers +# +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +CONFIG_MUX_MMIO=y +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +CONFIG_CUSE=y +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +# CONFIG_UBIFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +# CONFIG_SQUASHFS_ZLIB is not set +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_DEFLATE_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_PSTORE_BLK is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +# CONFIG_SECURITY_NETWORK is not set +# CONFIG_SECURITY_PATH is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +# CONFIG_SECURITY_LOADPIN is not set +# CONFIG_SECURITY_YAMA is not set +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +# CONFIG_IMA is not set +# CONFIG_EVM is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_CRYPTD=y +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +# CONFIG_CRYPTO_GCM is not set +CONFIG_CRYPTO_CHACHA20POLY1305=y +# CONFIG_CRYPTO_AEGIS128 is not set +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=y +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +CONFIG_CRYPTO_XTS=y +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_GHASH is not set +CONFIG_CRYPTO_POLY1305=y +CONFIG_CRYPTO_MD4=y +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=y +CONFIG_CRYPTO_RMD128=y +CONFIG_CRYPTO_RMD160=y +CONFIG_CRYPTO_RMD256=y +CONFIG_CRYPTO_RMD320=y +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=y +CONFIG_CRYPTO_SM3=y +# CONFIG_CRYPTO_STREEBOG is not set +CONFIG_CRYPTO_TGR192=y +CONFIG_CRYPTO_WP512=y + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=y +CONFIG_CRYPTO_BLOWFISH_COMMON=y +CONFIG_CRYPTO_CAMELLIA=y +CONFIG_CRYPTO_CAST_COMMON=y +CONFIG_CRYPTO_CAST5=y +CONFIG_CRYPTO_CAST6=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +CONFIG_CRYPTO_CHACHA20=y +# CONFIG_CRYPTO_SEED is not set +CONFIG_CRYPTO_SERPENT=y +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +CONFIG_CRYPTO_TWOFISH=y +CONFIG_CRYPTO_TWOFISH_COMMON=y + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_ZSTD=y + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y +CONFIG_CRYPTO_USER_API_RNG=y +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=y +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=y +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set +CONFIG_CRYPTO_DEV_VIRTIO=y +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_HISI_SEC is not set +# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set +# CONFIG_CRYPTO_DEV_HISI_ZIP is not set +# CONFIG_CRYPTO_DEV_HISI_HPRE is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +# CONFIG_ASYMMETRIC_KEY_TYPE is not set + +# +# Certificates for signature checking +# +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_INDIRECT_PIO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +CONFIG_CRC7=y +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_SWIOTLB=y +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=320 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +# CONFIG_SYMBOLIC_ERRNAME is not set +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_HAVE_DEBUG_BUGVERBOSE=y + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set + +# +# arm64 Debugging +# +CONFIG_PID_IN_CONTEXTIDR=y +# CONFIG_DEBUG_EFI is not set +# CONFIG_CORESIGHT is not set +# end of arm64 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +CONFIG_MEMTEST=y +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/solidrun/honeycomblx2k/kexecconfig-5.4 b/mainboards/solidrun/honeycomblx2k/kexecconfig-5.4 new file mode 100644 index 00000000..6e4f4af4 --- /dev/null +++ b/mainboards/solidrun/honeycomblx2k/kexecconfig-5.4 @@ -0,0 +1,5187 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm64 5.4.47 Kernel Configuration +# + +# +# Compiler: aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_SCHED_AVG_IRQ=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_SWAP_ENABLED=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +# CONFIG_CFS_BANDWIDTH is not set +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_DEBUG is not set +# CONFIG_NAMESPACES is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../kexecinitramfs.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".xz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_PROFILING=y +# end of General setup + +CONFIG_ARM64=y +CONFIG_64BIT=y +CONFIG_MMU=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_CONT_SHIFT=4 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_SMP=y +CONFIG_KERNEL_MODE_NEON=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_PROC_KCORE_TEXT=y + +# +# Platform selection +# +# CONFIG_ARCH_ACTIONS is not set +# CONFIG_ARCH_AGILEX is not set +# CONFIG_ARCH_SUNXI is not set +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_BCM2835 is not set +# CONFIG_ARCH_BCM_IPROC is not set +# CONFIG_ARCH_BERLIN is not set +# CONFIG_ARCH_BITMAIN is not set +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_K3 is not set +CONFIG_ARCH_LAYERSCAPE=y +# CONFIG_ARCH_LG1K is not set +# CONFIG_ARCH_HISI is not set +# CONFIG_ARCH_MEDIATEK is not set +# CONFIG_ARCH_MESON is not set +# CONFIG_ARCH_MVEBU is not set +# CONFIG_ARCH_MXC is not set +# CONFIG_HAVE_IMX_BUSFREQ is not set +# CONFIG_ARCH_QCOM is not set +# CONFIG_ARCH_REALTEK is not set +# CONFIG_ARCH_RENESAS is not set +# CONFIG_ARCH_ROCKCHIP is not set +# CONFIG_ARCH_S32 is not set +# CONFIG_ARCH_SEATTLE is not set +# CONFIG_ARCH_STRATIX10 is not set +# CONFIG_ARCH_SYNQUACER is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_SPRD is not set +# CONFIG_ARCH_THUNDER is not set +# CONFIG_ARCH_THUNDER2 is not set +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARCH_VEXPRESS is not set +# CONFIG_ARCH_XGENE is not set +# CONFIG_ARCH_ZX is not set +# CONFIG_ARCH_ZYNQMP is not set +# end of Platform selection + +# +# Kernel Features +# + +# +# ARM errata workarounds via the alternatives framework +# +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_FUJITSU_ERRATUM_010001=y +# end of ARM errata workarounds via the alternatives framework + +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_16K_PAGES is not set +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PA_BITS=48 +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_SCHED_MC=y +# CONFIG_SCHED_SMT is not set +CONFIG_NR_CPUS=16 +CONFIG_HOTPLUG_CPU=y +# CONFIG_NUMA is not set +CONFIG_HOLES_IN_ZONE=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_SECCOMP is not set +# CONFIG_PARAVIRT is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +# CONFIG_XEN is not set +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_HARDEN_EL2_VECTORS=y +CONFIG_ARM64_SSBD=y +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +# CONFIG_COMPAT is not set + +# +# ARMv8.1 architectural features +# +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_VHE=y +# end of ARMv8.1 architectural features + +# +# ARMv8.2 architectural features +# +CONFIG_ARM64_UAO=y +# CONFIG_ARM64_PMEM is not set +CONFIG_ARM64_RAS_EXTN=y +CONFIG_ARM64_CNP=y +# end of ARMv8.2 architectural features + +# +# ARMv8.3 architectural features +# +CONFIG_ARM64_PTR_AUTH=y +# end of ARMv8.3 architectural features + +# CONFIG_ARM64_SVE is not set +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_STACKPROTECTOR_PER_TASK=y +# end of Kernel Features + +# +# Boot options +# +# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set +CONFIG_CMDLINE="" +# CONFIG_CMDLINE_FORCE is not set +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +CONFIG_PM_TEST_SUSPEND=y +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +CONFIG_DT_IDLE_STATES=y + +# +# ARM CPU Idle Drivers +# +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE=y +# end of ARM CPU Idle Drivers +# end of CPU Idle + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ACPI_CPPC_CPUFREQ=y +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_QORIQ_CPUFREQ=y +# end of CPU Frequency scaling +# end of CPU Power Management + +# +# Firmware Drivers +# +# CONFIG_ARM_SCMI_PROTOCOL is not set +CONFIG_ARM_SCPI_PROTOCOL=y +CONFIG_ARM_SCPI_POWER_DOMAIN=y +# CONFIG_ARM_SDE_INTERFACE is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PSCI_CHECKER is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_ARMSTUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_CAPSULE_LOADER=y +# CONFIG_EFI_TEST is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_CCA_REQUIRED=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_IPMI is not set +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_EINJ=y +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_IORT=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_PPTT=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=y +CONFIG_KVM_ARM_HOST=y +CONFIG_KVM_ARM_PMU=y +CONFIG_KVM_INDIRECT_VECTORS=y +CONFIG_VHOST_NET=y +CONFIG_VHOST=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_ARM64_CRYPTO=y +CONFIG_CRYPTO_SHA256_ARM64=y +CONFIG_CRYPTO_SHA512_ARM64=y +CONFIG_CRYPTO_SHA1_ARM64_CE=y +CONFIG_CRYPTO_SHA2_ARM64_CE=y +CONFIG_CRYPTO_SHA512_ARM64_CE=y +CONFIG_CRYPTO_SHA3_ARM64=y +CONFIG_CRYPTO_SM3_ARM64_CE=y +# CONFIG_CRYPTO_SM4_ARM64_CE is not set +CONFIG_CRYPTO_GHASH_ARM64_CE=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64=y +CONFIG_CRYPTO_AES_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_AES_ARM64_CE_BLK=y +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y +CONFIG_CRYPTO_CHACHA20_NEON=y +# CONFIG_CRYPTO_NHPOLY1305_NEON is not set +CONFIG_CRYPTO_AES_ARM64_BS=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_64BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_REFCOUNT_FULL=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_RELR=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_DEV_THROTTLING is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_CGROUP_IOLATENCY is not set +# CONFIG_BLK_CGROUP_IOCOST is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_AREAS=7 +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_UNIX_DIAG=y +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +CONFIG_NET_KEY=y +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_IP_MROUTE is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +CONFIG_VLAN_8021Q=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_VLAN_8021Q_MVRP is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_TSN is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +# CONFIG_CFG80211 is not set +CONFIG_LIB80211=y +CONFIG_LIB80211_CRYPT_WEP=y +CONFIG_LIB80211_CRYPT_CCMP=y +CONFIG_LIB80211_CRYPT_TKIP=y +# CONFIG_LIB80211_DEBUG is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_VIRTIO=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_FAILOVER=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_ECAM=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# CONFIG_PCIE_CADENCE_HOST is not set +# end of Cadence PCIe controllers support + +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HOST_THUNDER_ECAM=y + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_HISI=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_AL is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +CONFIG_PCIE_MOBIVEIL=y +CONFIG_PCIE_MOBIVEIL_HOST=y +CONFIG_PCIE_LAYERSCAPE_GEN4=y +# end of Mobiveil PCIe Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_BRCMSTB_GISB_ARB=y +# CONFIG_MOXTET is not set +CONFIG_SIMPLE_PM_BUS=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_FSL_MC_BUS=y +CONFIG_FSL_MC_UAPI_SUPPORT=y +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +CONFIG_MTD=y + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_SWAP is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=y +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=y +CONFIG_MTD_CFI_ADV_OPTIONS=y +CONFIG_MTD_CFI_NOSWAP=y +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_GEOMETRY is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_OTP is not set +CONFIG_MTD_CFI_INTELEXT=y +CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_CFI_STAA=y +CONFIG_MTD_CFI_UTIL=y +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +CONFIG_MTD_PHYSMAP=y +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_OF=y +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +CONFIG_MTD_SST25L=y +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +CONFIG_MTD_NAND_CORE=y +# CONFIG_MTD_ONENAND is not set +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_RAW_NAND=y +# CONFIG_MTD_NAND_ECC_SW_BCH is not set + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=y +# CONFIG_MTD_NAND_DENALI_PCI is not set +CONFIG_MTD_NAND_DENALI_DT=y +# CONFIG_MTD_NAND_CAFE is not set +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_FSL_IFC=y +# CONFIG_MTD_NAND_MXIC is not set +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_PLATFORM is not set + +# +# Misc +# +# CONFIG_MTD_NAND_NANDSIM is not set +# CONFIG_MTD_NAND_RICOH is not set +# CONFIG_MTD_NAND_DISKONCHIP is not set +# CONFIG_MTD_SPI_NAND is not set + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=y +# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +# CONFIG_SPI_MTK_QUADSPI is not set +CONFIG_MTD_UBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +# CONFIG_MTD_UBI_BLOCK is not set +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_MDIO=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +CONFIG_SENSORS_FXOS8700=y +CONFIG_SENSORS_FXAS2100X=y +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +# CONFIG_VEXPRESS_SYSCFG is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +CONFIG_EEPROM_AT25=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# + +# +# SCIF Bus Driver +# + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_SCSI_SAS_HOST_SMP=y +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +CONFIG_MACVLAN=y +CONFIG_MACVTAP=y +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +CONFIG_TUN=y +CONFIG_TAP=y +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_FREESCALE=y +# CONFIG_FSL_FMAN is not set +# CONFIG_FSL_PQ_MDIO is not set +CONFIG_FSL_XGMAC_MDIO=y +# CONFIG_GIANFAR is not set + +# +# Frame Manager support +# +CONFIG_FSL_SDK_FMAN=y +# CONFIG_FSL_SDK_FMAN_TEST is not set + +# +# FMAN Processor support +# +CONFIG_FMAN_ARM=y +# CONFIG_FMAN_P3040_P4080_P5020 is not set +# CONFIG_FMAN_P1023 is not set +# CONFIG_FMAN_V3H is not set +# CONFIG_FMAN_V3L is not set +# end of FMAN Processor support + +# CONFIG_FSL_SDK_FMAN_RTC_API is not set +# CONFIG_FMAN_MIB_CNT_OVF_IRQ_EN is not set +CONFIG_FSL_FM_MAX_FRAME_SIZE=1522 +CONFIG_FSL_FM_RX_EXTRA_HEADROOM=64 +# CONFIG_FMAN_PFC is not set +# end of Frame Manager support + +CONFIG_FSL_SDK_DPAA_ETH=y +# CONFIG_FSL_DPAA_HOOKS is not set +CONFIG_FSL_DPAA_OFFLINE_PORTS=y +CONFIG_FSL_DPAA_ADVANCED_DRIVERS=y +# CONFIG_FSL_DPAA_ETH_JUMBO_FRAME is not set +# CONFIG_FSL_DPAA_TS is not set +# CONFIG_FSL_DPAA_1588 is not set +CONFIG_FSL_DPAA_ETH_MAX_BUF_COUNT=128 +CONFIG_FSL_DPAA_ETH_REFILL_THRESHOLD=80 +CONFIG_FSL_DPAA_CS_THRESHOLD_1G=0x06000000 +CONFIG_FSL_DPAA_CS_THRESHOLD_10G=0x10000000 +CONFIG_FSL_DPAA_INGRESS_CS_THRESHOLD=0x10000000 +CONFIG_FSL_DPAA_ETH_DEBUGFS=y +# CONFIG_FSL_DPAA_ETH_DEBUG is not set +# CONFIG_FSL_DPAA_DBG_LOOP is not set +CONFIG_FSL_DPAA2_ETH=y +# CONFIG_FSL_DPAA2_ETH_USE_ERR_QUEUE is not set +CONFIG_FSL_DPAA2_PTP_CLOCK=y +CONFIG_FSL_ENETC=y +CONFIG_FSL_ENETC_VF=y +CONFIG_FSL_ENETC_MDIO=y +CONFIG_FSL_ENETC_PTP_CLOCK=y +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HISILICON is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +CONFIG_MDIO_BUS_MUX_MMIOREG=y +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y +CONFIG_MDIO_CAVIUM=y +# CONFIG_MDIO_GPIO is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +# CONFIG_AMD_PHY is not set +CONFIG_AQUANTIA_PHY=y +# CONFIG_AX88796B_PHY is not set +CONFIG_AT803X_PHY=y +# CONFIG_AT803X_PHY_SMART_EEE is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +CONFIG_FIXED_PHY=y +# CONFIG_ICPLUS_PHY is not set +CONFIG_INPHI_PHY=y +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_LXT_PHY is not set +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +# CONFIG_MICROCHIP_T1_PHY is not set +CONFIG_MICROSEMI_PHY=y +# CONFIG_NATIONAL_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +CONFIG_ROCKCHIP_PHY=y +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +CONFIG_VITESSE_PHY=y +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +CONFIG_USB_PEGASUS=y +CONFIG_USB_RTL8150=y +CONFIG_USB_RTL8152=y +CONFIG_USB_LAN78XX=y +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +CONFIG_USB_NET_DM9601=y +# CONFIG_USB_NET_SR9700 is not set +CONFIG_USB_NET_SR9800=y +CONFIG_USB_NET_SMSC75XX=y +CONFIG_USB_NET_SMSC95XX=y +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +CONFIG_USB_NET_PLUSB=y +CONFIG_USB_NET_MCS7830=y +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +CONFIG_USB_NET_ZAURUS=y +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=y +# CONFIG_HOSTAP_FIRMWARE is not set +# CONFIG_HOSTAP_PLX is not set +# CONFIG_HOSTAP_PCI is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +CONFIG_NET_FAILOVER=y +# CONFIG_IVSHMEM_NET is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +CONFIG_INPUT_POLLDEV=y +# CONFIG_INPUT_SPARSEKMAP is not set +CONFIG_INPUT_MATRIXKMAP=y + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +CONFIG_TOUCHSCREEN_CT36X_WLD=y +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ADC is not set +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=y +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_ELAN_TS is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_TOUCHSCREEN_SYNAPTICS_DSX=y +CONFIG_TOUCHSCREEN_SYNAPTICS_DSX_I2C=y +# CONFIG_TOUCHSCREEN_FTS is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_AXP20X_PEK is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_RK805_PWRKEY is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +CONFIG_INPUT_MPL3115=y +# CONFIG_SENSOR_FXLS8471 is not set +CONFIG_INPUT_ISL29023=y +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +# CONFIG_SERIO_SERPORT is not set +CONFIG_SERIO_AMBAKMI=y +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=16 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +# CONFIG_SERIAL_8250_MANY_PORTS is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_XILINX_PS_UART=y +CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +CONFIG_SERIAL_FSL_LPUART=y +CONFIG_SERIAL_FSL_LPUART_CONSOLE=y +CONFIG_SERIAL_FSL_LINFLEXUART=y +CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +# CONFIG_HVC_DCC is not set +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=y +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=y +CONFIG_IPMI_SI=y +# CONFIG_IPMI_SSIF is not set +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_VIRTIO is not set +CONFIG_HW_RANDOM_CAVIUM=y +# CONFIG_APPLICOM is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +# CONFIG_TCG_TIS is not set +# CONFIG_TCG_TIS_SPI is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +CONFIG_TCG_TIS_I2C_INFINEON=y +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_ATMEL is not set +# CONFIG_TCG_INFINEON is not set +# CONFIG_TCG_CRB is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +CONFIG_I2C_MUX_PCA954x=y +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CADENCE is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=y +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=y +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_IMX=y +# CONFIG_I2C_NOMADIK is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +CONFIG_I2C_RK3X=y +CONFIG_I2C_RPBUS=y +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_THUNDERX is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BITBANG=y +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +CONFIG_SPI_FSL_QUADSPI=y +CONFIG_SPI_NXP_FLEXSPI=y +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_FSL_SPI is not set +CONFIG_SPI_FSL_DSPI=y +# CONFIG_SPI_OC_TINY is not set +CONFIG_SPI_PL022=y +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=y +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_THUNDERX is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_TLE62X0 is not set +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_TIME=y +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y +CONFIG_SPMI=y +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_QORIQ=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AXP209 is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_MAX77620=y +# CONFIG_PINCTRL_RK805 is not set +# CONFIG_PINCTRL_OCELOT is not set +CONFIG_PINCTRL_S32V_CORE=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_CADENCE is not set +CONFIG_GPIO_DWAPB=y +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +CONFIG_GPIO_MB86S7X=y +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_PL061=y +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_XGENE=y +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +CONFIG_GPIO_MAX732X=y +# CONFIG_GPIO_MAX732X_IRQ is not set +CONFIG_GPIO_PCA953X=y +CONFIG_GPIO_PCA953X_IRQ=y +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# CONFIG_GPIO_BD9571MWV is not set +CONFIG_GPIO_MAX77620=y +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_BRCMSTB=y +CONFIG_POWER_RESET_GPIO=y +# CONFIG_POWER_RESET_GPIO_RESTART is not set +# CONFIG_POWER_RESET_LTC2952 is not set +# CONFIG_POWER_RESET_RESTART is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y +CONFIG_POWER_RESET_SYSCON=y +# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set +CONFIG_REBOOT_MODE=y +CONFIG_SYSCON_REBOOT_MODE=y +# CONFIG_NVMEM_REBOOT_MODE is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_LEGO_EV3 is not set +CONFIG_BATTERY_SBS=y +# CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set +CONFIG_BATTERY_BQ27XXX=y +CONFIG_BATTERY_BQ27XXX_I2C=y +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +# CONFIG_AXP20X_POWER is not set +# CONFIG_AXP288_FUEL_GAUGE is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_UCS1002 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +CONFIG_SENSORS_ARM_SCPI=y +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IBMAEM is not set +# CONFIG_SENSORS_IBMPEX is not set +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX17135 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +CONFIG_SENSORS_LM90=y +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +CONFIG_PMBUS=y +CONFIG_SENSORS_PMBUS=y +# CONFIG_SENSORS_ADM1275 is not set +# CONFIG_SENSORS_IBM_CFFPS is not set +# CONFIG_SENSORS_INSPUR_IPSPS is not set +# CONFIG_SENSORS_IR35221 is not set +# CONFIG_SENSORS_IR38064 is not set +# CONFIG_SENSORS_IRPS5401 is not set +# CONFIG_SENSORS_ISL68137 is not set +# CONFIG_SENSORS_LM25066 is not set +CONFIG_SENSORS_LTC2978=y +CONFIG_SENSORS_LTC2978_REGULATOR=y +# CONFIG_SENSORS_LTC3815 is not set +# CONFIG_SENSORS_MAX16064 is not set +# CONFIG_SENSORS_MAX20751 is not set +# CONFIG_SENSORS_MAX31785 is not set +# CONFIG_SENSORS_MAX34440 is not set +# CONFIG_SENSORS_MAX8688 is not set +# CONFIG_SENSORS_PXE1610 is not set +# CONFIG_SENSORS_TPS40422 is not set +# CONFIG_SENSORS_TPS53679 is not set +# CONFIG_SENSORS_UCD9000 is not set +# CONFIG_SENSORS_UCD9200 is not set +# CONFIG_SENSORS_ZL6100 is not set +CONFIG_SENSORS_PWM_FAN=y +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +CONFIG_SENSORS_AMC6821=y +# CONFIG_SENSORS_INA209 is not set +CONFIG_SENSORS_INA2XX=y +CONFIG_SENSORS_INA3221=y +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_MAG3110 is not set +CONFIG_MXC_MMA8451=y +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_CPU_THERMAL=y +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +CONFIG_THERMAL_EMULATION=y +# CONFIG_THERMAL_MMIO is not set +CONFIG_DEVICE_THERMAL=y +# CONFIG_MAX77620_THERMAL is not set +CONFIG_QORIQ_THERMAL=y +# CONFIG_GENERIC_ADC_THERMAL is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=y +CONFIG_ARM_SBSA_WATCHDOG=y +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_DW_WATCHDOG=y +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAX77620_WATCHDOG is not set +CONFIG_IMX2_WDT=y +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +CONFIG_MFD_BD9571MWV=y +CONFIG_MFD_AXP20X=y +CONFIG_MFD_AXP20X_I2C=y +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MXC_HDMI is not set +CONFIG_MFD_HI6421_PMIC=y +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX17135 is not set +CONFIG_MFD_MAX77620=y +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=y +# CONFIG_MFD_RN5T618 is not set +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_ROHM_BD718XX=y +# CONFIG_MFD_ROHM_BD70528 is not set +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +CONFIG_MFD_PCA9450=y +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_RAVE_SP_CORE is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_ANATOP is not set +CONFIG_REGULATOR_AXP20X=y +CONFIG_REGULATOR_BD718XX=y +CONFIG_REGULATOR_BD9571MWV=y +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=y +CONFIG_REGULATOR_GPIO=y +# CONFIG_REGULATOR_HI6421 is not set +CONFIG_REGULATOR_HI6421V530=y +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +CONFIG_REGULATOR_MAX77620=y +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +CONFIG_REGULATOR_MAX8973=y +# CONFIG_REGULATOR_MCP16502 is not set +# CONFIG_REGULATOR_MT6311 is not set +CONFIG_REGULATOR_PCA9450=y +# CONFIG_REGULATOR_PF1550_RPMSG is not set +CONFIG_REGULATOR_PFUZE100=y +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_PWM=y +CONFIG_REGULATOR_QCOM_SPMI=y +CONFIG_REGULATOR_RK808=y +# CONFIG_REGULATOR_S2MPA01 is not set +CONFIG_REGULATOR_S2MPS11=y +# CONFIG_REGULATOR_S5M8767 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_SY8106A is not set +# CONFIG_REGULATOR_SY8824X is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_REGULATOR_VCTRL=y +# CONFIG_REGULATOR_VEXPRESS is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_VGA_ARB is not set +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +CONFIG_DRM_RCAR_WRITEBACK=y +# CONFIG_DRM_IMX_DCSS is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_FB_MXC_DISP_FRAMEWORK is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# end of Console display driver support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID=y +# end of I2C HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_OTG=y +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG_FSM is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=y +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +CONFIG_USB_CDNS3=y +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_MUSB_HDRC=y +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_DWC3=y +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=y +CONFIG_USB_DWC3_HAPS=y +CONFIG_USB_DWC3_OF_SIMPLE=y +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=y +CONFIG_USB_CHIPIDEA_OF=y +CONFIG_USB_CHIPIDEA_PCI=y +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_ISP1760=y +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=y +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +CONFIG_USB_TEST=y +CONFIG_USB_EHSET_TEST_FIXTURE=y +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=y +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=y +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +CONFIG_USB_SNP_CORE=y +CONFIG_USB_SNP_UDC_PLAT=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=y + +# +# Platform Support +# +CONFIG_USB_BDC_PCI=y +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_NET2280 is not set +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=y +CONFIG_USB_F_ACM=y +CONFIG_USB_F_SS_LB=y +CONFIG_USB_U_SERIAL=y +CONFIG_USB_U_ETHER=y +CONFIG_USB_F_SERIAL=y +CONFIG_USB_F_OBEX=y +CONFIG_USB_F_NCM=y +CONFIG_USB_F_ECM=y +CONFIG_USB_F_EEM=y +CONFIG_USB_F_SUBSET=y +CONFIG_USB_F_RNDIS=y +CONFIG_USB_F_MASS_STORAGE=y +CONFIG_USB_F_FS=y +CONFIG_USB_F_HID=y +CONFIG_USB_CONFIGFS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +# CONFIG_USB_CONFIGFS_F_PRINTER is not set +# CONFIG_USB_ZERO is not set +# CONFIG_USB_ETH is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +# CONFIG_USB_MASS_STORAGE is not set +CONFIG_USB_G_SERIAL=y +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +CONFIG_TYPEC=y +CONFIG_TYPEC_TCPM=y +CONFIG_TYPEC_TCPCI=y +# CONFIG_TYPEC_RT1711H is not set +# CONFIG_TYPEC_FUSB302 is not set +# CONFIG_TYPEC_UCSI is not set +# CONFIG_TYPEC_TPS6598X is not set + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +# CONFIG_TYPEC_MUX_PI3USB30532 is not set +CONFIG_TYPEC_SWITCH_GPIO=y +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +# CONFIG_TYPEC_DP_ALTMODE is not set +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=32 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +# CONFIG_MMC_SDHCI_PCI is not set +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHCI_OF_ARASAN=y +# CONFIG_MMC_SDHCI_OF_ASPEED is not set +# CONFIG_MMC_SDHCI_OF_AT91 is not set +CONFIG_MMC_SDHCI_OF_ESDHC=y +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +CONFIG_MMC_SDHCI_CADENCE=y +CONFIG_MMC_SDHCI_F_SDH30=y +# CONFIG_MMC_TIFM_SD is not set +CONFIG_MMC_SPI=y +# CONFIG_MMC_CB710 is not set +# CONFIG_MMC_VIA_SDMMC is not set +CONFIG_MMC_DW=y +CONFIG_MMC_DW_PLTFM=y +# CONFIG_MMC_DW_BLUEFIELD is not set +CONFIG_MMC_DW_EXYNOS=y +CONFIG_MMC_DW_HI3798CV200=y +CONFIG_MMC_DW_K3=y +# CONFIG_MMC_DW_PCI is not set +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_TOSHIBA_PCI is not set +# CONFIG_MMC_MTK is not set +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MMC_SDHCI_OMAP is not set +# CONFIG_MMC_SDHCI_AM654 is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=y +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +CONFIG_LEDS_PWM=y +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +CONFIG_LEDS_SYSCON=y +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +# CONFIG_LEDS_TRIGGERS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_GHES=y +# CONFIG_EDAC_LAYERSCAPE is not set +# CONFIG_EDAC_THUNDERX is not set +# CONFIG_EDAC_XGENE is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_RK808=y +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +CONFIG_RTC_DRV_PCF85363=y +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +CONFIG_RTC_DRV_RX8581=y +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +CONFIG_RTC_DRV_S5M=y +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=y +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=y +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_FSL_FTM_ALARM=y +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +CONFIG_RTC_DRV_SNVS=y +# CONFIG_RTC_DRV_IMX_RPMSG is not set +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set +# CONFIG_DW_AXI_DMAC is not set +CONFIG_FSL_EDMA=y +# CONFIG_FSL_QDMA is not set +CONFIG_FSL_EDMA_V3=y +# CONFIG_INTEL_IDMA64 is not set +CONFIG_MV_XOR_V2=y +CONFIG_PL330_DMA=y +# CONFIG_XILINX_DMA is not set +# CONFIG_XILINX_ZYNQMP_DMA is not set +CONFIG_QCOM_HIDMA_MGMT=y +CONFIG_QCOM_HIDMA=y +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_FSL_DPAA2_QDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_DMATEST=y +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_SELFTESTS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=y +CONFIG_UIO_CIF=y +CONFIG_UIO_PDRV_GENIRQ=y +CONFIG_UIO_DMEM_GENIRQ=y +CONFIG_UIO_AEC=y +CONFIG_UIO_SERCOS3=y +CONFIG_UIO_PCI_GENERIC=y +CONFIG_UIO_NETX=y +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VFIO=y +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +# CONFIG_VFIO_PLATFORM is not set +# CONFIG_VFIO_MDEV is not set +CONFIG_VFIO_FSL_MC=y +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_R8712U is not set +# CONFIG_RTS5208 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +CONFIG_STAGING_MEDIA=y + +# +# Android +# +CONFIG_ION=y +CONFIG_ION_SYSTEM_HEAP=y +CONFIG_ION_CMA_HEAP=y +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +CONFIG_FSL_DPAA2=y +CONFIG_FSL_DPAA2_MAC=y +# CONFIG_FSL_DPAA2_MAC_NETDEVS is not set +CONFIG_FSL_DPAA2_EVB=y +# CONFIG_MOST is not set +# CONFIG_KS7010 is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_KPC2000 is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_QLGE is not set +CONFIG_FSL_SDK_DPA=y + +# +# Freescale Datapath QMan/BMan options +# +# CONFIG_FSL_DPA_CHECKING is not set +CONFIG_FSL_DPA_CAN_WAIT=y +CONFIG_FSL_DPA_CAN_WAIT_SYNC=y +CONFIG_FSL_DPA_PIRQ_FAST=y +CONFIG_FSL_DPA_PIRQ_SLOW=y +CONFIG_FSL_DPA_PORTAL_SHARE=y +CONFIG_FSL_SDK_BMAN=y +CONFIG_FSL_BMAN_CONFIG=y +# CONFIG_FSL_BMAN_TEST is not set +CONFIG_FSL_BMAN_DEBUGFS=y +CONFIG_FSL_SDK_QMAN=y +CONFIG_FSL_QMAN_POLL_LIMIT=32 +CONFIG_FSL_QMAN_CONFIG=y +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_QMAN_DEBUGFS=y +CONFIG_FSL_QMAN_FQD_SZ=10 +CONFIG_FSL_QMAN_PFDR_SZ=13 +CONFIG_FSL_QMAN_CI_SCHED_CFG_SRCCIV=4 +CONFIG_FSL_QMAN_CI_SCHED_CFG_SRQ_W=3 +CONFIG_FSL_QMAN_CI_SCHED_CFG_RW_W=2 +CONFIG_FSL_QMAN_CI_SCHED_CFG_BMAN_W=2 +CONFIG_FSL_QMAN_PIRQ_DQRR_ITHRESH=12 +CONFIG_FSL_QMAN_PIRQ_MR_ITHRESH=4 +CONFIG_FSL_QMAN_PIRQ_IPERIOD=100 +CONFIG_FSL_QMAN_FQ_LOOKUP=y +CONFIG_QMAN_CEETM_UPDATE_PERIOD=1000 +CONFIG_FSL_QMAN_INIT_TIMEOUT=10 +CONFIG_FSL_USDPAA=y +# end of Freescale Datapath QMan/BMan options + +CONFIG_FSL_PPFE=y +CONFIG_FSL_PPFE_UTIL_DISABLED=y +# CONFIG_GOLDFISH is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +CONFIG_COMMON_CLK_VERSATILE=y +CONFIG_CLK_SP810=y +CONFIG_CLK_VEXPRESS_OSC=y +# CONFIG_CLK_HSDK is not set +# CONFIG_COMMON_CLK_MAX77686 is not set +# CONFIG_COMMON_CLK_MAX9485 is not set +CONFIG_COMMON_CLK_RK808=y +CONFIG_COMMON_CLK_SCPI=y +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +CONFIG_COMMON_CLK_CS2000_CP=y +CONFIG_COMMON_CLK_S2MPS11=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_LS1028A_PLLDIG=y +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_PWM=y +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_ARCH_S32_CLK=y +# end of Common Clock Framework + +CONFIG_HWSPINLOCK=y + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_PROBE=y +CONFIG_CLKSRC_MMIO=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_FSL_ERRATUM_A008585=y +# CONFIG_HISILICON_ERRATUM_161010101 is not set +# CONFIG_ARM64_ERRATUM_858921 is not set +CONFIG_CLKSRC_VERSATILE=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_ARM_MHU=y +CONFIG_PLATFORM_MHU=y +# CONFIG_PL320_MBOX is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX_TEST is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_DMA=y +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +CONFIG_ARM_SMMU_V3=y +# CONFIG_VIRTIO_IOMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=y +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_QCOM_GLINK_NATIVE=y +CONFIG_RPMSG_QCOM_GLINK_RPM=y +CONFIG_RPMSG_VIRTIO=y +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# CONFIG_SOC_BRCMSTB is not set +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_FSL_DPAA is not set +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_GUTS=y +CONFIG_FSL_MC_DPIO=y +CONFIG_DPAA2_CONSOLE=y +CONFIG_FSL_QIXIS=y +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +# CONFIG_EXTCON_FSA9480 is not set +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +# CONFIG_EXTCON_PTN5150 is not set +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=y +CONFIG_MEMORY=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_FSL_IFC=y +CONFIG_IIO=y +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=y +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +# CONFIG_BMC150_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +# CONFIG_IIO_ST_ACCEL_3AXIS is not set +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +# CONFIG_MMA8452 is not set +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7124 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_AXP20X_ADC is not set +# CONFIG_AXP288_ADC is not set +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_LTC2471 is not set +# CONFIG_LTC2485 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_NAU7802 is not set +# CONFIG_QCOM_SPMI_IADC is not set +# CONFIG_QCOM_SPMI_VADC is not set +# CONFIG_QCOM_SPMI_ADC5 is not set +# CONFIG_SD_ADC_MODULATOR is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_TLC4541 is not set +# CONFIG_VF610_ADC is not set +# CONFIG_XILINX_XADC is not set +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# end of Amplifiers + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_BME680 is not set +# CONFIG_CCS811 is not set +# CONFIG_IAQCORE is not set +# CONFIG_PMS7003 is not set +# CONFIG_SENSIRION_SGP30 is not set +# CONFIG_SPS30 is not set +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +# +# Hid Sensor IIO Common +# +# end of Hid Sensor IIO Common + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +# CONFIG_AD5446 is not set +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +# CONFIG_ADF4371 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_KMX61 is not set +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# end of Inertial measurement units + +# +# Light sensors +# +# CONFIG_ACPI_ALS is not set +# CONFIG_ADJD_S311 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_BH1750 is not set +# CONFIG_BH1780 is not set +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Digital potentiometers +# +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +# CONFIG_DPS310 is not set +# CONFIG_HP03 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +# CONFIG_AL_FIC is not set +CONFIG_LS_SCFG_MSI=y +CONFIG_PARTITION_PERCPU=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_GPIO=y +# CONFIG_RESET_TI_SYSCON is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_XGENE=y +CONFIG_PHY_MIXEL_LVDS=y +CONFIG_PHY_MIXEL_LVDS_COMBO=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_CADENCE_DP is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +CONFIG_PHY_FSL_IMX8MQ_USB=y +CONFIG_PHY_MIXEL_MIPI_DPHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +CONFIG_PHY_QCOM_USB_HS=y +# CONFIG_PHY_QCOM_USB_HSIC is not set +CONFIG_PHY_SAMSUNG_USB2=y +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_SMMU_V3_PMU is not set +# CONFIG_ARM_DSU_PMU is not set +# CONFIG_HISI_PMU is not set +# CONFIG_ARM_SPE_PMU is not set +# end of Performance monitor support + +CONFIG_RAS=y + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_TEE is not set +CONFIG_MULTIPLEXER=y + +# +# Multiplexer drivers +# +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +CONFIG_MUX_MMIO=y +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +CONFIG_CUSE=y +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +# CONFIG_UBIFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +# CONFIG_SQUASHFS_ZLIB is not set +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_DEFLATE_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_SECURE_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +# CONFIG_SECURITY_NETWORK is not set +# CONFIG_SECURITY_PATH is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +# CONFIG_SECURITY_LOADPIN is not set +# CONFIG_SECURITY_YAMA is not set +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +# CONFIG_IMA is not set +# CONFIG_EVM is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_CRYPTD=y +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +# CONFIG_CRYPTO_GCM is not set +CONFIG_CRYPTO_CHACHA20POLY1305=y +# CONFIG_CRYPTO_AEGIS128 is not set +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=y +CONFIG_CRYPTO_TLS=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=y +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +CONFIG_CRYPTO_XTS=y +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_GHASH is not set +CONFIG_CRYPTO_POLY1305=y +CONFIG_CRYPTO_MD4=y +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=y +CONFIG_CRYPTO_RMD128=y +CONFIG_CRYPTO_RMD160=y +CONFIG_CRYPTO_RMD256=y +CONFIG_CRYPTO_RMD320=y +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=y +CONFIG_CRYPTO_SM3=y +# CONFIG_CRYPTO_STREEBOG is not set +CONFIG_CRYPTO_TGR192=y +CONFIG_CRYPTO_WP512=y + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_LIB_ARC4=y +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=y +CONFIG_CRYPTO_BLOWFISH_COMMON=y +CONFIG_CRYPTO_CAMELLIA=y +CONFIG_CRYPTO_CAST_COMMON=y +CONFIG_CRYPTO_CAST5=y +CONFIG_CRYPTO_CAST6=y +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +CONFIG_CRYPTO_CHACHA20=y +# CONFIG_CRYPTO_SEED is not set +CONFIG_CRYPTO_SERPENT=y +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +CONFIG_CRYPTO_TWOFISH=y +CONFIG_CRYPTO_TWOFISH_COMMON=y + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_ZSTD=y + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y +CONFIG_CRYPTO_USER_API_RNG=y +CONFIG_CRYPTO_USER_API_AEAD=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y +CONFIG_CRYPTO_DEV_FSL_CAAM=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_TK_API is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y +CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 +CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set +CONFIG_CRYPTO_DEV_VIRTIO=y +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_HISI_SEC is not set +# CONFIG_CRYPTO_DEV_HISI_ZIP is not set +# CONFIG_ASYMMETRIC_KEY_TYPE is not set + +# +# Certificates for signature checking +# +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_INDIRECT_PIO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +CONFIG_CRC7=y +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y +CONFIG_SWIOTLB=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=320 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_HAVE_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set +# CONFIG_ARM64_PTDUMP_DEBUGFS is not set +CONFIG_PID_IN_CONTEXTIDR=y +# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DEBUG_ALIGN_RODATA is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_CORESIGHT is not set +# end of Kernel hacking From d4fe5f2dace96ff0eba4565435b11bc3aa5714c8 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 7 Dec 2021 07:14:08 -0800 Subject: [PATCH 026/132] Add linux 5.4 support Signed-off-by: Ronald G. Minnich --- mainboards/digitalloggers/atomicpi/Makefile | 13 + .../digitalloggers/atomicpi/cpu.config-5.4 | 2635 +++++++++++++++++ 2 files changed, 2648 insertions(+) create mode 100644 mainboards/digitalloggers/atomicpi/cpu.config-5.4 diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile index 0e7ff33b..8223cce9 100644 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ b/mainboards/digitalloggers/atomicpi/Makefile @@ -164,6 +164,11 @@ cpukernel: cpu.cpio.lzma cpu.config (cd linux && make oldconfig && make -j32) cp linux/arch/x86/boot/bzImage $@ +cpukernel-5.4: cpu.cpio.lzma cpu.config-5.4 + cp cpu.config-5.4 linux-5.4/.config + (cd linux-5.4 && make oldconfig && make -j32) + cp linux-5.4/arch/x86/boot/bzImage $@ + cpuflashkernel: cpu.cpio.lzma cpuflash.config cp cpuflash.config linux/.config (cd linux && make oldconfig && make -j32) @@ -242,6 +247,14 @@ getkernel: rm -rf linux git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux +getlinux-5.4: + rm -rf linux-5.4 + git clone --depth=1 -b v5.4 --single-branch https://github.com/torvalds/linux linux-5.4 + +getlinux-5.10: + rm -rf linux-5.10 + git clone --depth=1 -b v5.10 --single-branch https://github.com/torvalds/linux linux-5.10 + getfiano: go get -u github.com/linuxboot/fiano/cmds/utk go install github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/digitalloggers/atomicpi/cpu.config-5.4 b/mainboards/digitalloggers/atomicpi/cpu.config-5.4 new file mode 100644 index 00000000..255263e0 --- /dev/null +++ b/mainboards/digitalloggers/atomicpi/cpu.config-5.4 @@ -0,0 +1,2635 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_HEADER_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ_FULL is not set +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +# CONFIG_TICK_CPU_ACCOUNTING is not set +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL is not set +# CONFIG_FHANDLE is not set +# CONFIG_POSIX_TIMERS is not set +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_IO_URING is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_KALLSYMS is not set +# CONFIG_BPF_SYSCALL is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +# CONFIG_ZONE_DMA is not set +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=64 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_MTRR is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_HIBERNATION is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_SPCR_TABLE is not set +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_ISCSI_IBFT is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y +CONFIG_EFI_ESRT=y +# CONFIG_EFI_RUNTIME_MAP is not set +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_64BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +# CONFIG_VMAP_STACK is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_UNUSED_SYMBOLS=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_LOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +CONFIG_TIFM_CORE=y +CONFIG_TIFM_7XX1=y +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# end of EEPROM support + +CONFIG_CB710_CORE=y +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# +# Altera FPGA firmware download module (requires I2C) +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +# CONFIG_ISCSI_TCP is not set +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +# CONFIG_NETCONSOLE_DYNAMIC is not set +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +# CONFIG_AMD_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_AT803X_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +# CONFIG_LDISC_AUTOLOAD is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_NVRAM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_DEVPORT is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +CONFIG_USB_UAS=y + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=y +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +# CONFIG_MMC_SDHCI_F_SDH30 is not set +CONFIG_MMC_TIFM_SD=y +CONFIG_MMC_CB710=y +CONFIG_MMC_VIA_SDMMC=y +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +CONFIG_MMC_USDHI6ROL0=y +CONFIG_MMC_CQHCI=y +CONFIG_MMC_TOSHIBA_PCI=y +CONFIG_MMC_MTK=y +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_QCOM_USB_HS is not set +# CONFIG_PHY_QCOM_USB_HSIC is not set +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +CONFIG_EXT2_FS=y +# CONFIG_EXT2_FS_XATTR is not set +CONFIG_EXT3_FS=y +# CONFIG_EXT3_FS_POSIX_ACL is not set +# CONFIG_EXT3_FS_SECURITY is not set +CONFIG_EXT4_FS=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +CONFIG_FSCACHE=y +# CONFIG_FSCACHE_STATS is not set +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +# CONFIG_CACHEFILES is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +# CONFIG_XZ_DEC is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_FRAME_WARN=0 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +# CONFIG_IO_DELAY_0X80 is not set +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_DELAY_NONE=y +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking From 169fc457822c2c98e9fdbf44d1bfddbeba9e6749 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 7 Dec 2021 07:21:21 -0800 Subject: [PATCH 027/132] Add linux 5.10 config for kexec testing Signed-off-by: Ronald G. Minnich --- .../digitalloggers/atomicpi/cpu.config-5.10 | 2710 +++++++++++++++++ 1 file changed, 2710 insertions(+) create mode 100644 mainboards/digitalloggers/atomicpi/cpu.config-5.10 diff --git a/mainboards/digitalloggers/atomicpi/cpu.config-5.10 b/mainboards/digitalloggers/atomicpi/cpu.config-5.10 new file mode 100644 index 00000000..2dee19aa --- /dev/null +++ b/mainboards/digitalloggers/atomicpi/cpu.config-5.10 @@ -0,0 +1,2710 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.10.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 +CONFIG_CLANG_VERSION=0 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ_FULL is not set +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +# CONFIG_TICK_CPU_ACCOUNTING is not set +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_FHANDLE is not set +# CONFIG_POSIX_TIMERS is not set +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_IO_URING is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_KALLSYMS is not set +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +# CONFIG_ZONE_DMA is not set +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=64 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_MTRR is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_UMIP=y +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_HIBERNATION is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_SPCR_TABLE is not set +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_DPTF is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_ISCSI_IBFT is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y +CONFIG_EFI_ESRT=y +# CONFIG_EFI_RUNTIME_MAP is not set +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y +# CONFIG_EFI_CUSTOM_SSDT_OVERLAYS is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +# CONFIG_VMAP_STACK is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_UNUSED_SYMBOLS=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_COMPACTION is not set +# CONFIG_PAGE_REPORTING is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_LOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +CONFIG_TIFM_CORE=y +CONFIG_TIFM_7XX1=y +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# end of EEPROM support + +CONFIG_CB710_CORE=y +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# +# Altera FPGA firmware download module (requires I2C) +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +# CONFIG_ISCSI_TCP is not set +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +# CONFIG_NETCONSOLE_DYNAMIC is not set +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +# CONFIG_FIXED_PHY is not set + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_AT803X_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_DEVRES=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_LDISC_AUTOLOAD is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set +# CONFIG_NVRAM is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_DEVPORT is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ULPI_BUS=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +CONFIG_USB_UAS=y + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=y +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=y +CONFIG_MMC_SDHCI_PLTFM=y +# CONFIG_MMC_SDHCI_F_SDH30 is not set +CONFIG_MMC_TIFM_SD=y +CONFIG_MMC_CB710=y +CONFIG_MMC_VIA_SDMMC=y +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +CONFIG_MMC_USDHI6ROL0=y +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_TOSHIBA_PCI=y +CONFIG_MMC_MTK=y +CONFIG_MMC_SDHCI_XENON=y +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_QCOM_USB_HS is not set +# CONFIG_PHY_QCOM_USB_HSIC is not set +# CONFIG_PHY_TUSB1210 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +CONFIG_EXT2_FS=y +# CONFIG_EXT2_FS_XATTR is not set +CONFIG_EXT3_FS=y +# CONFIG_EXT3_FS_POSIX_ACL is not set +# CONFIG_EXT3_FS_SECURITY is not set +CONFIG_EXT4_FS=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +CONFIG_FSCACHE=y +# CONFIG_FSCACHE_STATS is not set +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +# CONFIG_CACHEFILES is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +# CONFIG_XZ_DEC is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_FRAME_WARN=0 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +# CONFIG_IO_DELAY_0X80 is not set +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_DELAY_NONE=y +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking From 3ae0ee506c633c2475e45c2a02a88a272a328fa6 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 7 Dec 2021 07:25:04 -0800 Subject: [PATCH 028/132] digitalloggers/atomicpi: add makefile stanza for 5.10 Signed-off-by: Ronald G. Minnich --- mainboards/digitalloggers/atomicpi/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile index 8223cce9..44b8f8b0 100644 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ b/mainboards/digitalloggers/atomicpi/Makefile @@ -169,6 +169,11 @@ cpukernel-5.4: cpu.cpio.lzma cpu.config-5.4 (cd linux-5.4 && make oldconfig && make -j32) cp linux-5.4/arch/x86/boot/bzImage $@ +cpukernel-5.10: cpu.cpio.lzma cpu.config-5.10 + cp cpu.config-5.10 linux-5.10/.config + (cd linux-5.10 && make oldconfig && make -j32) + cp linux-5.10/arch/x86/boot/bzImage $@ + cpuflashkernel: cpu.cpio.lzma cpuflash.config cp cpuflash.config linux/.config (cd linux && make oldconfig && make -j32) From f42ae39678cafc00f792b8cea72636fe121a946c Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 7 Dec 2021 07:26:03 -0800 Subject: [PATCH 029/132] digitalloggers/atomicpi: ignore new kernel images and directories Signed-off-by: Ronald G. Minnich --- mainboards/digitalloggers/atomicpi/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mainboards/digitalloggers/atomicpi/.gitignore b/mainboards/digitalloggers/atomicpi/.gitignore index f64b3b28..64430c1b 100644 --- a/mainboards/digitalloggers/atomicpi/.gitignore +++ b/mainboards/digitalloggers/atomicpi/.gitignore @@ -2,3 +2,7 @@ /*.lzma /linux /*kernel +cpukernel-5.10 +cpukernel-5.4 +linux-5.10 +linux-5.4 From 885161b9540a378f36d19faa991c413232c5748c Mon Sep 17 00:00:00 2001 From: Ryan O'Leary Date: Thu, 9 Dec 2021 22:14:21 -0800 Subject: [PATCH 030/132] Re-enabled github actions Signed-off-by: Ryan O'Leary --- {mainboards/.github => .github}/workflows/ci.yml | 5 +++-- .gitignore | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) rename {mainboards/.github => .github}/workflows/ci.yml (97%) diff --git a/mainboards/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 97% rename from mainboards/.github/workflows/ci.yml rename to .github/workflows/ci.yml index ba4af477..93205158 100644 --- a/mainboards/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,9 @@ on: # Triggers the workflow on push or pull request events but only for the # master branch. push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] # Triggers the workflow every day at 23:00. schedule: @@ -79,6 +79,7 @@ jobs: # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | + cd mainboards PATH=$PATH:$GOPATH/bin cd $(echo ${{ matrix.mainboard }} | tr '-' '/') make fetch diff --git a/.gitignore b/.gitignore index 39af2f57..c5266998 100644 --- a/.gitignore +++ b/.gitignore @@ -91,4 +91,3 @@ boards/*/volume-* *.pad *.hop *.efi -.* From 717f3336c6a9ff693fece556a0c9ba70ce5cebae Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 17 Dec 2021 14:51:34 -0800 Subject: [PATCH 031/132] add upxtreme/i11 Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/.gitignore | 6 + mainboards/aeeon/i11/Makefile | 271 ++ mainboards/aeeon/i11/cpu.config | 2978 +++++++++++++++++++++ mainboards/aeeon/i11/cpuflash.config | 2163 +++++++++++++++ mainboards/aeeon/i11/flash.config | 2080 ++++++++++++++ mainboards/aeeon/i11/sshd.config | 2718 +++++++++++++++++++ mainboards/aeeon/upxtreme/Makefile | 5 +- mainboards/aeeon/upxtreme/cpuflash.config | 2163 +++++++++++++++ 8 files changed, 12381 insertions(+), 3 deletions(-) create mode 100644 mainboards/aeeon/i11/.gitignore create mode 100644 mainboards/aeeon/i11/Makefile create mode 100644 mainboards/aeeon/i11/cpu.config create mode 100644 mainboards/aeeon/i11/cpuflash.config create mode 100644 mainboards/aeeon/i11/flash.config create mode 100644 mainboards/aeeon/i11/sshd.config create mode 100644 mainboards/aeeon/upxtreme/cpuflash.config diff --git a/mainboards/aeeon/i11/.gitignore b/mainboards/aeeon/i11/.gitignore new file mode 100644 index 00000000..06162ec4 --- /dev/null +++ b/mainboards/aeeon/i11/.gitignore @@ -0,0 +1,6 @@ +*.cpio +linux +*.gz +*kernel +pxelinux.cfg + diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile new file mode 100644 index 00000000..07c1b7c1 --- /dev/null +++ b/mainboards/aeeon/i11/Makefile @@ -0,0 +1,271 @@ +# This is the makefile for a flash image, a netbootable sshd image, +# and a netbootable cpu image. +# +# sshdkernel produces a kernel with a built-in initramfs for netboot +# It provides (and starts) an sshd, and also has flashrom. +# Hence you can ssh to a node, flashrom -r on it, scp the +# image back, process it, scp the new image to the node, and +# write with flashrom. +# e.g. +# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal +# scp -i class_key -P 2022 board:/image.bin image.bin +# make flashpxeboot.bin +# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin +# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal +# +# The cpu image uses a cpud as its init, and you +# can cpu to it to run commands, including flashrom -p internal +# to flash the flash image. +# e.g. +# cpu board flashrom -r image.bin -p internal +# Note this writes image image.bin to the host directoy; no scp needed +# make flashpxeboot.bin +# cpu board flashrom -w flashpxeboot.bin -p internal +# cpu is way more convenient than ssh/scp if you can learn it. +# you can also just +# cpu board +# and once you are in: +# flashrom -r image.bin -p internal +# make flashpxeboot.bin +# flashrom -w flashpxeboot.bin -p internal +# NOTE: those commands are running on the board, and they all work +# +# flashpxeboot.bin produces a flash image which will pxeboot. +# cpu.bin produces a flash image that starts a cpu daemon. +# +# You can test the flash image kernel with qemu +# make flashtest + +default: sshdkernel flash cpukernel + +flash: flashpxeboot.bin + +flashtest: testflashkernel + +usefultargets: + echo fetch, uroot, kernel, or image.bin + +flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma + utk \ + -xzPath /usr/bin/xz \ + $< \ + replace_pe32 Shell flashkernel \ + save $@ + dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc + +cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma + utk \ + -xzPath /usr/bin/xz \ + $< \ + replace_pe32 Shell cpuflashkernel \ + save $@ + +edk2.bin: dxeremove.bin + echo Note, this inserts the edk2 bds and shell + echo Only flash this image if you have an sf100. + echo It will not be able to boot anything. + utk \ + -xzPath /usr/bin/xz \ + $< \ + insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ + save $@ + +dxeremove.bin: image.bin + echo note, we remove DXE to the point the image is not viable + echo until you put a kernel in it in place of the shell. + utk $< \ + comment FlashDriver_do_not_remove_efi_panics \ + comment S3Save_do_not_remove_gets_error \ + comment testremove \ + comment FlashDriver_do_not_remove_efi_panics \ + comment S3Save_do_not_remove_gets_error \ + comment testremove \ + remove Ahci.* \ + remove AMITSE \ + remove AMITSE.* \ + remove Arp.* \ + remove Ata.* \ + remove Bds \ + remove Button.* \ + remove CryptoD.* \ + remove .*Dhcp.* \ + remove Dhcp6Dxe \ + remove Disk.* \ + remove EbcDxe \ + remove Fat.* \ + remove .*ftp.* \ + remove .*harging.* \ + remove I2c.* \ + remove IntelGopV.* \ + remove IntelIsh.* \ + remove Ip4.* \ + remove Ip6Dxe \ + remove Iscsi.* \ + remove Ish.* \ + remove .*Keyboard.* \ + remove Logo.* \ + remove Maxim.* \ + remove Mmc.* \ + remove MnpDxe \ + remove Mouse.* \ + remove Mtftp4Dxe \ + remove Mtftp6Dxe \ + remove NetworkStackSetupScreen \ + remove Partition.* \ + remove .*PxeDxe.* \ + remove RandomNumberGen \ + remove ReFlash \ + remove Sata.* \ + remove Scsi.* \ + remove SnpDxe \ + remove SoftKbd \ + remove Tcp.* \ + remove TcpDxe \ + remove TimestampDxe \ + remove Udp.* \ + remove Udp4.* \ + remove Udp6Dxe \ + remove UefiPxe.* \ + remove Uhcd \ + remove Usb.* \ + remove Whea.* \ + remove Xpower.* \ + comment S3Save_do_not_remove_gets_error \ + comment below_still_unknown \ + comment TcgMor \ + comment AmiTcgNvflagSample \ + comment AmiTcgPlatformDxe \ + comment TcgDxeplatform \ + comment Tpm20PlatformDxe \ + comment CrbTpm20Acpi \ + comment TcgSmm \ + comment TcgDxe \ + comment Tcg2Dxe \ + comment TcgPlatformSetupPolicy \ + save $@ + chmod a-w $@ + +hap.bin: tighten.bin + cp $< $@ + me_cleaner.py -s $@ + chmod a-w $@ + +tighten.bin: image.bin + utk $< tighten_me save $@ + +sshdkernel: sshd.cpio.lzma sshd.config + cp sshd.config linux/.config + (cd linux && make oldconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + +cpukernel: cpu.cpio.lzma cpu.config + cp cpu.config linux/.config + (cd linux && make oldconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + +cpuflashkernel: cpu.cpio.lzma cpuflash.config + cp cpuflash.config linux/.config + (cd linux && make oldconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + +readrom: + echo You need to get a ROM image from *somewhere* + echo Once you do, put it in ROM.bin + +writerom: image.bin + echo Here is where you would do the flashrom, e.g. + echo sudo flashrom -p dediprog -w image.bin + +flashinitramfs.cpio.lzma: flashinitramfs.cpio + lzma -f -k $< + +flashinitramfs.cpio: Makefile + u-root -o $@ -build=bb \ + -uinitcmd=/bbin/pxeboot \ + github.com/u-root/u-root/cmds/boot/pxeboot \ + github.com/u-root/u-root/cmds/core/cat \ + github.com/u-root/u-root/cmds/core/elvish \ + github.com/u-root/u-root/cmds/core/init \ + github.com/u-root/u-root/cmds/core/ip \ + github.com/u-root/u-root/cmds/core/ls \ + github.com/u-root/u-root/cmds/core/kexec \ + github.com/u-root/u-root/cmds/core/pci \ + github.com/u-root/u-root/cmds/core/wget \ + +# this target builds an initramfs with only one program, the cpu server. +# It depends on the kernel setting the IP address. +# You need ip=dhcp OR ip=fixed.ip.address.here in the command line +cpu.cpio.lzma: Makefile + u-root -build=bb -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + -defaultsh="" \ + github.com/u-root/cpu/cmds/cpud + lzma -f -k cpu.cpio + +# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc +# the intent is to demonstrate the capability of http loading. +# It depends on the kernel setting the IP address. +# You need ip=dhcp OR ip=fixed.ip.address.here in the command line +sshd.cpio.lzma: Makefile + u-root -o sshd.cpio -build=bb \ + -uinitcmd=/bbin/sshd \ + -files class_key.pub:authorized_keys \ + -files classhostkey:id_rsa \ + -files /usr/bin/vi \ + -files /usr/share/vim \ + -files /usr/share/terminfo \ + -files /bin/bash \ + -files /usr/sbin/flashrom \ + -files /usr/bin/xz \ + all + lzma -f -k sshd.cpio + ls -l sshd.cpio.* + +flashkernel: flash.config flashinitramfs.cpio.lzma Makefile + cp $< linux/.config + echo CONFIG_CMDLINE_BOOL=y >> linux/.config + echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config + stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config + (cd linux && make oldconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + +testflashkernel: flashkernel + qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma + +testcpukernel: cpukernel + qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty + +# These stanzas fetch code. +fetch: getkernel geturoot getfiano getrom + +getkernel: + rm -rf linux + git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + +getfiano: + go get -u github.com/linuxboot/fiano/cmds/utk + go install github.com/linuxboot/fiano/cmds/utk + go install github.com/linuxboot/fiano/cmds/guid2english +getrom: + echo you can put a wget here + echo and unxip it + echo and cp it to image.bin +geturoot: + go get -u github.com/u-root/u-root + go get -u github.com/u-root/cpu/... + +# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom +sshd-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) + +# Serve the combined cpu-kernel and cpu-initramfs image. +cpu-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) + +ssh: + ssh -i class_key -p 2022 root@up diff --git a/mainboards/aeeon/i11/cpu.config b/mainboards/aeeon/i11/cpu.config new file mode 100644 index 00000000..cf830d38 --- /dev/null +++ b/mainboards/aeeon/i11/cpu.config @@ -0,0 +1,2978 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.7.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70500 +CONFIG_LD_VERSION=230000000 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_SCHED_THERMAL_PRESSURE is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_NOCB_CPU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_FHANDLE is not set +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_PROFILING=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_UMIP=y +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PAGE_REPORTING=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# +# CONFIG_INTEL_MIC_BUS is not set +# CONFIG_SCIF_BUS is not set +# CONFIG_VOP_BUS is not set +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +CONFIG_TIGON3=y +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +# CONFIG_NET_VENDOR_BROCADE is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_GOOGLE=y +# CONFIG_GVE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_THUNDER is not set +# CONFIG_MDIO_XPCS is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM84881_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y +CONFIG_NVRAM=y +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set +# end of I2C Algorithms + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_VGA16=y +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +CONFIG_VGASTATE=y + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +# CONFIG_USB_ULPI_BUS is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PLATFORM is not set +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +CONFIG_USB_UAS=y + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +# CONFIG_MMC_SDHCI is not set +# CONFIG_MMC_TIFM_SD is not set +# CONFIG_MMC_CB710 is not set +# CONFIG_MMC_VIA_SDMMC is not set +# CONFIG_MMC_VUB300 is not set +# CONFIG_MMC_USHC is not set +# CONFIG_MMC_USDHI6ROL0 is not set +# CONFIG_MMC_CQHCI is not set +# CONFIG_MMC_HSQ is not set +# CONFIG_MMC_TOSHIBA_PCI is not set +# CONFIG_MMC_MTK is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_DPN=y +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +# CONFIG_INTEL_IOMMU is not set +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +CONFIG_SYMBOLIC_ERRNAME=y +# CONFIG_DEBUG_BUGVERBOSE is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config new file mode 100644 index 00000000..bd979c52 --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash.config @@ -0,0 +1,2163 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.15.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +# CONFIG_BPF_SYSCALL is not set +# end of BPF subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_RD_ZSTD=y +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_FHANDLE is not set +# CONFIG_POSIX_TIMERS is not set +CONFIG_PRINTK=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_IO_URING is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_KALLSYMS is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +# CONFIG_SLUB is not set +CONFIG_SLOB=y +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +CONFIG_NR_CPUS_RANGE_BEGIN=1 +CONFIG_NR_CPUS_RANGE_END=1 +CONFIG_NR_CPUS_DEFAULT=1 +CONFIG_NR_CPUS=1 +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_X86_IOPL_IOPERM is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +# CONFIG_MTRR is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_UMIP is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +# CONFIG_EFI is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +# CONFIG_RANDOMIZE_MEMORY is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_SPCR_TABLE is not set +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_DEBUG=y +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_DPTF is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +# CONFIG_CPU_IDLE is not set +# end of CPU Idle +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_GENERIC_ENTRY=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_BINFMT_SCRIPT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +# CONFIG_PAGE_REPORTING is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +# CONFIG_PERCPU_STATS is not set + +# +# GUP_TEST needs to have DEBUG_FS enabled +# +CONFIG_ARCH_HAS_PTE_SPECIAL=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +# CONFIG_UNIX is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_NET_SELFTESTS=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +# CONFIG_DEVTMPFS is not set +# CONFIG_STANDALONE is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +# CONFIG_E1000E is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_I40E is not set +# CONFIG_IGC is not set +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +# CONFIG_INPUT is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_LDISC_AUTOLOAD is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_DEVMEM is not set +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_SURFACE_PLATFORMS=y +# CONFIG_SURFACE_3_POWER_OPREGION is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +# CONFIG_PROC_SYSCTL is not set +# CONFIG_PROC_PAGE_MONITOR is not set +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +# end of Pseudo filesystems + +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZSTD_DECOMPRESS=y +# CONFIG_XZ_DEC is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +# CONFIG_SYMBOLIC_ERRNAME is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_FS is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_DEBUG_OBJECTS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_HAVE_ARCH_KFENCE=y +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +# CONFIG_UNWINDER_FRAME_POINTER is not set +CONFIG_UNWINDER_GUESS=y +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/flash.config b/mainboards/aeeon/i11/flash.config new file mode 100644 index 00000000..a0e1476a --- /dev/null +++ b/mainboards/aeeon/i11/flash.config @@ -0,0 +1,2080 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.7.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70500 +CONFIG_LD_VERSION=230000000 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_FHANDLE is not set +# CONFIG_POSIX_TIMERS is not set +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_IO_URING is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_KALLSYMS is not set +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +# CONFIG_SLUB is not set +CONFIG_SLOB=y +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +# CONFIG_ZONE_DMA is not set +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +CONFIG_NR_CPUS_RANGE_BEGIN=1 +CONFIG_NR_CPUS_RANGE_END=1 +CONFIG_NR_CPUS_DEFAULT=1 +CONFIG_NR_CPUS=1 +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_X86_IOPL_IOPERM is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_MTRR is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_UMIP is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_EFI is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +# CONFIG_RANDOMIZE_MEMORY is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_SPCR_TABLE is not set +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_DEBUG=y +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +# CONFIG_CPU_IDLE is not set +# end of CPU Idle +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_BINFMT_SCRIPT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_COMPACTION is not set +# CONFIG_PAGE_REPORTING is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +# CONFIG_UNIX is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +# CONFIG_DEVTMPFS is not set +# CONFIG_STANDALONE is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# +# CONFIG_INTEL_MIC_BUS is not set +# CONFIG_SCIF_BUS is not set +# CONFIG_VOP_BUS is not set +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +# CONFIG_E1000E is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_I40E is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +# CONFIG_MDIO_XPCS is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +# CONFIG_AMD_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +# CONFIG_INPUT is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_LDISC_AUTOLOAD is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_DEVMEM is not set +# CONFIG_DEVKMEM is not set +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_DPN=y +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +# CONFIG_PROC_SYSCTL is not set +# CONFIG_PROC_PAGE_MONITOR is not set +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +# end of Pseudo filesystems + +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +# CONFIG_XZ_DEC is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_SYMBOLIC_ERRNAME is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_STACK_VALIDATION is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_FS is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_DEBUG_OBJECTS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +# CONFIG_UNWINDER_FRAME_POINTER is not set +CONFIG_UNWINDER_GUESS=y +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/sshd.config b/mainboards/aeeon/i11/sshd.config new file mode 100644 index 00000000..6f0aa188 --- /dev/null +++ b/mainboards/aeeon/i11/sshd.config @@ -0,0 +1,2718 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.7.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70500 +CONFIG_LD_VERSION=230000000 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_SCHED_THERMAL_PRESSURE is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_NOCB_CPU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../sshd.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_FHANDLE is not set +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_PROFILING=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_UMIP=y +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PAGE_REPORTING=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# +# CONFIG_INTEL_MIC_BUS is not set +# CONFIG_SCIF_BUS is not set +# CONFIG_VOP_BUS is not set +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +CONFIG_TIGON3=y +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +# CONFIG_NET_VENDOR_BROCADE is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_GOOGLE=y +# CONFIG_GVE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +# CONFIG_MDIO_XPCS is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM84881_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y +CONFIG_NVRAM=y +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set +# end of I2C Algorithms + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_DPN=y +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +# CONFIG_INTEL_IOMMU is not set +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +CONFIG_SYMBOLIC_ERRNAME=y +# CONFIG_DEBUG_BUGVERBOSE is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/Makefile b/mainboards/aeeon/upxtreme/Makefile index 192af4f9..07c1b7c1 100644 --- a/mainboards/aeeon/upxtreme/Makefile +++ b/mainboards/aeeon/upxtreme/Makefile @@ -53,13 +53,12 @@ flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma save $@ dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc -cpu.bin: edk2.bin cpuflashkernel cpu.cpio.lzma +cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma utk \ -xzPath /usr/bin/xz \ $< \ replace_pe32 Shell cpuflashkernel \ save $@ - NOT GOING dd if=cpu.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc edk2.bin: dxeremove.bin echo Note, this inserts the edk2 bds and shell @@ -197,7 +196,7 @@ flashinitramfs.cpio: Makefile # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + u-root -build=bb -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ -defaultsh="" \ github.com/u-root/cpu/cmds/cpud lzma -f -k cpu.cpio diff --git a/mainboards/aeeon/upxtreme/cpuflash.config b/mainboards/aeeon/upxtreme/cpuflash.config new file mode 100644 index 00000000..bd979c52 --- /dev/null +++ b/mainboards/aeeon/upxtreme/cpuflash.config @@ -0,0 +1,2163 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.15.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +# CONFIG_BPF_SYSCALL is not set +# end of BPF subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_RD_ZSTD=y +CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_FHANDLE is not set +# CONFIG_POSIX_TIMERS is not set +CONFIG_PRINTK=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_IO_URING is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_KALLSYMS is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +# CONFIG_SLUB is not set +CONFIG_SLOB=y +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +CONFIG_NR_CPUS_RANGE_BEGIN=1 +CONFIG_NR_CPUS_RANGE_END=1 +CONFIG_NR_CPUS_DEFAULT=1 +CONFIG_NR_CPUS=1 +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_X86_IOPL_IOPERM is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +# CONFIG_MTRR is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_UMIP is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +# CONFIG_EFI is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +# CONFIG_RANDOMIZE_MEMORY is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_SPCR_TABLE is not set +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_TINY_POWER_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_DEBUG=y +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_DPTF is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +# CONFIG_CPU_IDLE is not set +# end of CPU Idle +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_GENERIC_ENTRY=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_BINFMT_SCRIPT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +# CONFIG_PAGE_REPORTING is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +# CONFIG_PERCPU_STATS is not set + +# +# GUP_TEST needs to have DEBUG_FS enabled +# +CONFIG_ARCH_HAS_PTE_SPECIAL=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +# CONFIG_UNIX is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_NET_SELFTESTS=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +# CONFIG_DEVTMPFS is not set +# CONFIG_STANDALONE is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +# CONFIG_E1000E is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_I40E is not set +# CONFIG_IGC is not set +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +# CONFIG_INPUT is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_LDISC_AUTOLOAD is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_DEVMEM is not set +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_SURFACE_PLATFORMS=y +# CONFIG_SURFACE_3_POWER_OPREGION is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +# CONFIG_PROC_SYSCTL is not set +# CONFIG_PROC_PAGE_MONITOR is not set +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +# end of Pseudo filesystems + +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZSTD_DECOMPRESS=y +# CONFIG_XZ_DEC is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +# CONFIG_SYMBOLIC_ERRNAME is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_FS is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_DEBUG_OBJECTS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_HAVE_ARCH_KFENCE=y +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +# CONFIG_UNWINDER_FRAME_POINTER is not set +CONFIG_UNWINDER_GUESS=y +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking From b39b8ee9ed9d129f02aa2e7c0582291233b95dfc Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 4 Jan 2022 11:42:20 -0800 Subject: [PATCH 032/132] Trying to get this POS UP Xtreme i11 to boot It's bad. Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 13 +- mainboards/aeeon/i11/cpuflash.config | 326 ++++++++++++++++++++++++--- 2 files changed, 300 insertions(+), 39 deletions(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 07c1b7c1..8a663507 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -53,12 +53,15 @@ flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma save $@ dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc -cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma +# cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma +cpu.bin: dxeremove.bin cpuflashkernel utk \ -xzPath /usr/bin/xz \ $< \ - replace_pe32 Shell cpuflashkernel \ + replace_pe32 Shell cpuflashkernel \ save $@ + echo NO replace_pe32 Shell cpuflashkernel \ + echo NO save $@ edk2.bin: dxeremove.bin echo Note, this inserts the edk2 bds and shell @@ -95,6 +98,7 @@ dxeremove.bin: image.bin remove Fat.* \ remove .*ftp.* \ remove .*harging.* \ + remove Http.* \ remove I2c.* \ remove IntelGopV.* \ remove IntelIsh.* \ @@ -130,6 +134,9 @@ dxeremove.bin: image.bin remove Usb.* \ remove Whea.* \ remove Xpower.* \ + remove IntelGig.* \ + remove FmpDxe.* \ + remove FlashUcAcmDxe \ comment S3Save_do_not_remove_gets_error \ comment below_still_unknown \ comment TcgMor \ @@ -143,7 +150,7 @@ dxeremove.bin: image.bin comment Tcg2Dxe \ comment TcgPlatformSetupPolicy \ save $@ - chmod a-w $@ + echo NOT DOING chmod a-w $@ hap.bin: tighten.bin cp $< $@ diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index bd979c52..9015c325 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -140,20 +140,7 @@ CONFIG_ARCH_SUPPORTS_INT128=y # CONFIG_SCHED_AUTOGROUP is not set # CONFIG_SYSFS_DEPRECATED is not set # CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_RD_ZSTD=y -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BLK_DEV_INITRD is not set # CONFIG_BOOT_CONFIG is not set # CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set CONFIG_CC_OPTIMIZE_FOR_SIZE=y @@ -242,7 +229,7 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # CONFIG_SMP is not set CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y +# CONFIG_X86_MPPARSE is not set # CONFIG_GOLDFISH is not set # CONFIG_RETPOLINE is not set # CONFIG_X86_CPU_RESCTRL is not set @@ -318,7 +305,9 @@ CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_INTEL_TSX_MODE_ON is not set # CONFIG_X86_INTEL_TSX_MODE_AUTO is not set # CONFIG_X86_SGX is not set -# CONFIG_EFI is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set # CONFIG_HZ_100 is not set CONFIG_HZ_250=y # CONFIG_HZ_300 is not set @@ -366,18 +355,18 @@ CONFIG_ACPI_LPIT=y # CONFIG_ACPI_EC_DEBUGFS is not set # CONFIG_ACPI_AC is not set # CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set +CONFIG_ACPI_BUTTON=y # CONFIG_ACPI_DOCK is not set # CONFIG_ACPI_PROCESSOR is not set CONFIG_ACPI_CUSTOM_DSDT_FILE="" CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_DEBUG=y # CONFIG_ACPI_PCI_SLOT is not set # CONFIG_ACPI_CONTAINER is not set CONFIG_ACPI_HOTPLUG_IOAPIC=y # CONFIG_ACPI_SBS is not set # CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y @@ -386,6 +375,7 @@ CONFIG_HAVE_ACPI_APEI_NMI=y # CONFIG_ACPI_CONFIGFS is not set # CONFIG_PMIC_OPREGION is not set # CONFIG_X86_PM_TIMER is not set +CONFIG_ACPI_PRMT=y # # CPU Frequency scaling @@ -508,6 +498,7 @@ CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y CONFIG_ARCH_HAS_MEM_ENCRYPT=y CONFIG_HAVE_STATIC_CALL=y CONFIG_HAVE_STATIC_CALL_INLINE=y @@ -808,6 +799,27 @@ CONFIG_SYSFB=y # CONFIG_SYSFB_SIMPLEFB is not set # CONFIG_GOOGLE_FIRMWARE is not set +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y +# CONFIG_EFI_CUSTOM_SSDT_OVERLAYS is not set + # # Tegra firmware driver # @@ -837,6 +849,7 @@ CONFIG_PNPACPI=y # # CONFIG_AD525X_DPOT is not set # CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set # CONFIG_PHANTOM is not set # CONFIG_TIFM_CORE is not set # CONFIG_ICS932S401 is not set @@ -874,6 +887,7 @@ CONFIG_PNPACPI=y # # end of Texas Instruments shared transport line discipline +# CONFIG_SENSORS_LIS3_I2C is not set # CONFIG_ALTERA_STAPL is not set # CONFIG_INTEL_MEI is not set # CONFIG_INTEL_MEI_ME is not set @@ -963,9 +977,9 @@ CONFIG_IGB=y # CONFIG_IXGBE is not set # CONFIG_I40E is not set # CONFIG_IGC is not set -CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_NET_VENDOR_MICROSOFT is not set # CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_LITEX is not set # CONFIG_NET_VENDOR_MARVELL is not set # CONFIG_NET_VENDOR_MELLANOX is not set # CONFIG_NET_VENDOR_MICREL is not set @@ -985,10 +999,7 @@ CONFIG_NET_VENDOR_LITEX=y # CONFIG_NET_VENDOR_QLOGIC is not set # CONFIG_NET_VENDOR_QUALCOMM is not set # CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y +# CONFIG_NET_VENDOR_REALTEK is not set # CONFIG_NET_VENDOR_RENESAS is not set # CONFIG_NET_VENDOR_ROCKER is not set # CONFIG_NET_VENDOR_SAMSUNG is not set @@ -1101,13 +1112,83 @@ CONFIG_MDIO_DEVRES=y # # Input device support # -# CONFIG_INPUT is not set +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set # # Hardware I/O ports # -# CONFIG_SERIO is not set +CONFIG_SERIO=y CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set # CONFIG_GAMEPORT is not set # end of Hardware I/O ports # end of Input device support @@ -1116,7 +1197,11 @@ CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y # Character devices # CONFIG_TTY=y -# CONFIG_VT is not set +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set # CONFIG_LDISC_AUTOLOAD is not set @@ -1361,6 +1446,7 @@ CONFIG_BCMA_POSSIBLE=y # end of Multifunction device drivers # CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set # CONFIG_MEDIA_CEC_SUPPORT is not set # CONFIG_MEDIA_SUPPORT is not set @@ -1380,7 +1466,59 @@ CONFIG_BCMA_POSSIBLE=y # # Frame buffer Devices # -# CONFIG_FB is not set +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_VGA16=y +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set # end of Frame buffer Devices # @@ -1389,9 +1527,124 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_LCD_CLASS_DEVICE is not set # CONFIG_BACKLIGHT_CLASS_DEVICE is not set # end of Backlight & LCD device support + +CONFIG_VGASTATE=y + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_FRAMEBUFFER_CONSOLE is not set +# end of Console display driver support + +CONFIG_LOGO=y +CONFIG_LOGO_LINUX_MONO=y +CONFIG_LOGO_LINUX_VGA16=y +CONFIG_LOGO_LINUX_CLUT224=y # end of Graphics support # CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# I2C HID support +# +# CONFIG_I2C_HID_ACPI is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support +# end of HID support + CONFIG_USB_OHCI_LITTLE_ENDIAN=y # CONFIG_USB_SUPPORT is not set # CONFIG_MMC is not set @@ -1419,8 +1672,7 @@ CONFIG_RTC_MC146818_LIB=y # CONFIG_VIRT_DRIVERS is not set # CONFIG_VIRTIO_MENU is not set # CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +# CONFIG_VHOST_MENU is not set # # Microsoft Hyper-V guest support @@ -1434,8 +1686,7 @@ CONFIG_VHOST_MENU=y CONFIG_PMC_ATOM=y # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set -CONFIG_SURFACE_PLATFORMS=y -# CONFIG_SURFACE_3_POWER_OPREGION is not set +# CONFIG_SURFACE_PLATFORMS is not set CONFIG_HAVE_CLK=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y @@ -1623,6 +1874,7 @@ CONFIG_SYSFS=y # CONFIG_HUGETLBFS is not set CONFIG_ARCH_HAS_GIGANTIC_PAGE=y # CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y # end of Pseudo filesystems # CONFIG_MISC_FILESYSTEMS is not set @@ -1694,6 +1946,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_PAGE_TABLE_ISOLATION=y # CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" @@ -1924,12 +2177,8 @@ CONFIG_CRC32_SLICEBY8=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set # CONFIG_CRC8 is not set -CONFIG_XXHASH=y # CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZSTD_DECOMPRESS=y # CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_ZSTD=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y @@ -1941,9 +2190,13 @@ CONFIG_SWIOTLB=y CONFIG_DQL=y CONFIG_NLATTR=y # CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y CONFIG_ARCH_HAS_COPY_MC=y @@ -2130,6 +2383,7 @@ CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set # CONFIG_DEBUG_TLBFLUSH is not set CONFIG_HAVE_MMIOTRACE_SUPPORT=y # CONFIG_X86_DECODER_SELFTEST is not set From cedfaff2b594941b52a0088a5aeb9903bf58f69b Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 4 Jan 2022 16:20:16 -0800 Subject: [PATCH 033/132] working to get this POS UPXtreme i11 working Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 24 +- mainboards/aeeon/i11/cpuflash-4.9.config | 8168 ++++++++++++++++++++++ mainboards/aeeon/i11/cpuflash.config | 2970 ++++++-- 3 files changed, 10503 insertions(+), 659 deletions(-) create mode 100644 mainboards/aeeon/i11/cpuflash-4.9.config diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 8a663507..44d7f184 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -170,10 +170,10 @@ cpukernel: cpu.cpio.lzma cpu.config (cd linux && make oldconfig && make -j32) cp linux/arch/x86/boot/bzImage $@ -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ +cpuflashkernel: cpu.cpio cpuflash.config + cp cpuflash.config ubuntu-bionic-up/.config + (cd ubuntu-bionic-up && make oldconfig && make -j32) + cp ubuntu-bionic-up/arch/x86/boot/bzImage $@ readrom: echo You need to get a ROM image from *somewhere* @@ -202,12 +202,17 @@ flashinitramfs.cpio: Makefile # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -build=bb -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud +cpu.cpio.lzma: cpu.cpio lzma -f -k cpu.cpio +cpu.cpio: Makefile + u-root -build=bb -o cpu.cpio \ + -uinitcmd=/bbin/cpud \ + -files ~/.ssh/cpu_rsa.pub:key.pub \ + github.com/u-root/cpu/cmds/cpud \ + github.com/u-root/u-root/cmds/exp/console \ + core + # this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc # the intent is to demonstrate the capability of http loading. # It depends on the kernel setting the IP address. @@ -246,7 +251,8 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux + echo UP SUCKS git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/aeeon/i11/cpuflash-4.9.config b/mainboards/aeeon/i11/cpuflash-4.9.config new file mode 100644 index 00000000..aca3dabd --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-4.9.config @@ -0,0 +1,8168 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.9.45 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_DEBUG_RODATA=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_FHANDLE=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_RCU_EXPEDITE_BOOT is not set +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_NMI_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +# CONFIG_MEMCG_SWAP_ENABLED is not set +CONFIG_BLK_CGROUP=y +# CONFIG_DEBUG_BLK_CGROUP is not set +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_BPF_SYSCALL=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_USERFAULTFD=y +CONFIG_PCI_QUIRKS=y +CONFIG_MEMBARRIER=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +CONFIG_KEXEC_CORE=y +CONFIG_OPROFILE=m +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_OPTPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +CONFIG_UPROBES=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +CONFIG_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR_NONE is not set +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +CONFIG_CC_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +CONFIG_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +CONFIG_MODULE_SIG=y +# CONFIG_MODULE_SIG_FORCE is not set +# CONFIG_MODULE_SIG_ALL is not set +# CONFIG_MODULE_SIG_SHA1 is not set +# CONFIG_MODULE_SIG_SHA224 is not set +CONFIG_MODULE_SIG_SHA256=y +# CONFIG_MODULE_SIG_SHA384 is not set +# CONFIG_MODULE_SIG_SHA512 is not set +CONFIG_MODULE_SIG_HASH="sha256" +# CONFIG_MODULE_COMPRESS is not set +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_CMDLINE_PARSER is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +CONFIG_ACORN_PARTITION=y +# CONFIG_ACORN_PARTITION_CUMANA is not set +# CONFIG_ACORN_PARTITION_EESOX is not set +CONFIG_ACORN_PARTITION_ICS=y +# CONFIG_ACORN_PARTITION_ADFS is not set +# CONFIG_ACORN_PARTITION_POWERTEC is not set +CONFIG_ACORN_PARTITION_RISCIX=y +# CONFIG_AIX_PARTITION is not set +CONFIG_OSF_PARTITION=y +CONFIG_AMIGA_PARTITION=y +CONFIG_ATARI_PARTITION=y +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_LDM_PARTITION=y +# CONFIG_LDM_DEBUG is not set +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_BLOCK_COMPAT=y +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +CONFIG_CFQ_GROUP_IOSCHED=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_FAST_FEATURE_TESTS=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_QUEUED_LOCK_STAT is not set +CONFIG_XEN=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_512GB=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +# CONFIG_KVM_DEBUG_FS is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=m +CONFIG_PERF_EVENTS_INTEL_RAPL=m +CONFIG_PERF_EVENTS_INTEL_CSTATE=m +CONFIG_PERF_EVENTS_AMD_POWER=m +# CONFIG_VM86 is not set +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_I8K=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_X86_MSR=m +CONFIG_X86_CPUID=m +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +CONFIG_NUMA_EMU=y +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +# CONFIG_MOVABLE_NODE is not set +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +CONFIG_HWPOISON_INJECT=m +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +CONFIG_FRONTSWAP=y +# CONFIG_CMA is not set +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZSWAP=y +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +CONFIG_ZSMALLOC=m +# CONFIG_PGTABLE_MAPPING is not set +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ZONE_DEVICE=y +CONFIG_FRAME_VECTOR=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PMEM_LEGACY=m +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_KEXEC_VERIFY_SIG=y +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y +CONFIG_CRASH_DUMP=y +# CONFIG_KEXEC_JUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +CONFIG_LIVEPATCH=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_FAN=m +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_THERMAL=m +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ACPI_NFIT=m +# CONFIG_ACPI_NFIT_DEBUG is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_DPTF_POWER=m +CONFIG_ACPI_EXTLOG=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_SFI=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_STAT_DETAILS is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=m +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +# CONFIG_CPUFREQ_DT is not set +CONFIG_X86_INTEL_PSTATE=y +CONFIG_X86_PCC_CPUFREQ=m +CONFIG_X86_ACPI_CPUFREQ=m +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_POWERNOW_K8=m +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_SPEEDSTEP_CENTRINO=m +CONFIG_X86_P4_CLOCKMOD=m + +# +# shared options +# +CONFIG_X86_SPEEDSTEP_LIB=m + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_INTEL_IDLE=y + +# +# Memory power savings +# +CONFIG_I7300_IDLE_IOAT_CHANNEL=y +CONFIG_I7300_IDLE=m + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEAER_INJECT=m +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_HT_IRQ=y +CONFIG_PCI_ATS=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +CONFIG_PCI_HYPERV=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_SHPC=m + +# +# PCI host controller drivers +# +# CONFIG_PCIE_DW_PLAT is not set +CONFIG_VMD=m +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_PCCARD_NONSTATIC=y +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +CONFIG_IA32_EMULATION=y +CONFIG_IA32_AOUT=y +CONFIG_X86_X32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_KEYS_COMPAT=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_PMC_ATOM=y +CONFIG_NET=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_DIAG=m +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_USER=m +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +CONFIG_NET_KEY_MIGRATE=y +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +# CONFIG_IP_PNP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=y +CONFIG_IPV6_ILA=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_IPV6_VTI=m +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_COMMON=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=m +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CT_PROTO_UDPLITE=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PROTO_DCCP=m +CONFIG_NF_NAT_PROTO_UDPLITE=m +CONFIG_NF_NAT_PROTO_SCTP=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=m +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=m +CONFIG_NF_TABLES_NETDEV=m +CONFIG_NFT_EXTHDR=m +CONFIG_NFT_META=m +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_CT=m +CONFIG_NFT_SET_RBTREE=m +CONFIG_NFT_SET_HASH=m +CONFIG_NFT_COUNTER=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NETFILTER_XTABLES=m + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_SCTP=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_PE_SIP=m + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_TABLES_IPV4=m +CONFIG_NFT_CHAIN_ROUTE_IPV4=m +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NF_TABLES_ARP=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_IPV4=m +CONFIG_NFT_CHAIN_NAT_IPV4=m +CONFIG_NF_NAT_MASQUERADE_IPV4=m +CONFIG_NFT_MASQ_IPV4=m +CONFIG_NFT_REDIR_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_CONNTRACK_IPV6=m +CONFIG_NF_TABLES_IPV6=m +CONFIG_NFT_CHAIN_ROUTE_IPV6=m +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_NF_NAT_IPV6=m +CONFIG_NFT_CHAIN_NAT_IPV6=m +CONFIG_NF_NAT_MASQUERADE_IPV6=m +CONFIG_NFT_MASQ_IPV6=m +CONFIG_NFT_REDIR_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m + +# +# DECnet: Netfilter Configuration +# +CONFIG_DECNET_NF_GRABULATOR=m +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NF_LOG_BRIDGE=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_NET_DCCPPROBE=m +CONFIG_IP_SCTP=m +CONFIG_NET_SCTPPROBE=m +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_HAVE_NET_DSA=y +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_DECNET=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_IPX=m +# CONFIG_IPX_INTERN is not set +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +# CONFIG_X25 is not set +CONFIG_LAPB=m +CONFIG_PHONET=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set +# CONFIG_6LOWPAN_GHC_UDP is not set +# CONFIG_6LOWPAN_GHC_ICMPV6 is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set +CONFIG_IEEE802154=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_MAC802154=m +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +CONFIG_CLS_U32_PERF=y +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +# CONFIG_NET_ACT_SKBMOD is not set +CONFIG_NET_ACT_IFE=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=m +CONFIG_NET_IFE_SKBTCINDEX=m +CONFIG_NET_CLS_IND=y +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +CONFIG_DNS_RESOLVER=m +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +CONFIG_BATMAN_ADV_NC=y +CONFIG_BATMAN_ADV_MCAST=y +CONFIG_BATMAN_ADV_DEBUGFS=y +# CONFIG_BATMAN_ADV_DEBUG is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_VSOCKETS=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_NETLINK_DIAG=m +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=y +CONFIG_MPLS_ROUTING=m +CONFIG_MPLS_IPTUNNEL=m +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_L3_MASTER_DEV=y +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_BPF_JIT=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +# CONFIG_NET_TCPPROBE is not set +CONFIG_NET_DROP_MONITOR=m +CONFIG_HAMRADIO=y + +# +# Packet Radio protocols +# +CONFIG_AX25=m +# CONFIG_AX25_DAMA_SLAVE is not set +CONFIG_NETROM=m +CONFIG_ROSE=m + +# +# AX.25 network device drivers +# +CONFIG_MKISS=m +CONFIG_6PACK=m +CONFIG_BPQETHER=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BAYCOM_PAR=m +CONFIG_YAM=m +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m + +# +# CAN Device Drivers +# +CONFIG_CAN_VCAN=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +# CONFIG_CAN_LEDS is not set +# CONFIG_CAN_GRCAN is not set +# CONFIG_CAN_C_CAN is not set +# CONFIG_CAN_CC770 is not set +# CONFIG_CAN_IFI_CANFD is not set +# CONFIG_CAN_M_CAN is not set +CONFIG_CAN_SJA1000=m +CONFIG_CAN_SJA1000_ISA=m +# CONFIG_CAN_SJA1000_PLATFORM is not set +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m + +# +# CAN SPI interfaces +# +# CONFIG_CAN_MCP251X is not set + +# +# CAN USB interfaces +# +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_8DEV_USB=m +# CONFIG_CAN_DEBUG_DEVICES is not set +CONFIG_IRDA=m + +# +# IrDA protocols +# +CONFIG_IRLAN=m +CONFIG_IRNET=m +CONFIG_IRCOMM=m +# CONFIG_IRDA_ULTRA is not set + +# +# IrDA options +# +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_FAST_RR=y +# CONFIG_IRDA_DEBUG is not set + +# +# Infrared-port device drivers +# + +# +# SIR device drivers +# +CONFIG_IRTTY_SIR=m + +# +# Dongle support +# +CONFIG_DONGLE=y +CONFIG_ESI_DONGLE=m +CONFIG_ACTISYS_DONGLE=m +CONFIG_TEKRAM_DONGLE=m +CONFIG_TOIM3232_DONGLE=m +CONFIG_LITELINK_DONGLE=m +CONFIG_MA600_DONGLE=m +CONFIG_GIRBIL_DONGLE=m +CONFIG_MCP2120_DONGLE=m +CONFIG_OLD_BELKIN_DONGLE=m +CONFIG_ACT200L_DONGLE=m +CONFIG_KINGSUN_DONGLE=m +CONFIG_KSDAZZLE_DONGLE=m +CONFIG_KS959_DONGLE=m + +# +# FIR device drivers +# +CONFIG_USB_IRDA=m +CONFIG_SIGMATEL_FIR=m +CONFIG_NSC_FIR=m +CONFIG_WINBOND_FIR=m +CONFIG_SMC_IRCC_FIR=m +CONFIG_ALI_FIR=m +CONFIG_VLSI_FIR=m +CONFIG_VIA_FIR=m +CONFIG_MCS_FIR=m +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_6LOWPAN=m +# CONFIG_BT_LEDS is not set +# CONFIG_BT_SELFTEST is not set +CONFIG_BT_DEBUGFS=y + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_QCA=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +# CONFIG_BT_HCIBTUART is not set +CONFIG_BT_HCIVHCI=m +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m +CONFIG_AF_RXRPC=m +CONFIG_AF_RXRPC_IPV6=y +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_RXKAD=y +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEBUGFS is not set +# CONFIG_CFG80211_INTERNAL_REGDB is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +# CONFIG_MAC80211_RC_MINSTREL_VHT is not set +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_LEDS=y +# CONFIG_MAC80211_DEBUGFS is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_WIMAX=m +CONFIG_WIMAX_DEBUG_LEVEL=8 +CONFIG_RFKILL=m +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +# CONFIG_RFKILL_REGULATOR is not set +# CONFIG_RFKILL_GPIO is not set +CONFIG_NET_9P=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_RDMA=m +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +# CONFIG_NFC_NCI is not set +CONFIG_NFC_HCI=m +# CONFIG_NFC_SHDLC is not set + +# +# Near Field Communication (NFC) devices +# +# CONFIG_NFC_TRF7970A is not set +CONFIG_NFC_MEI_PHY=m +CONFIG_NFC_SIM=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_MEI=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_USB=m +# CONFIG_NFC_PN533_I2C is not set +# CONFIG_NFC_MICROREAD_MEI is not set +# CONFIG_NFC_ST95HF is not set +CONFIG_LWTUNNEL=y +CONFIG_DST_CACHE=y +CONFIG_NET_DEVLINK=m +CONFIG_MAY_USE_DEVLINK=m +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_SYS_HYPERVISOR=y +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_FENCE_TRACE is not set + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +CONFIG_MTD=m +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_REDBOOT_PARTS=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_CMDLINE_PARTS is not set +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_AR7_PARTS=m + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_FTL=m +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_INFTL=m +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m +# CONFIG_SM_FTL is not set +CONFIG_MTD_OOPS=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_CFI_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m +CONFIG_MTD_ABSENT=m + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +# CONFIG_MTD_PHYSMAP_OF is not set +CONFIG_MTD_SBC_GXX=m +# CONFIG_MTD_AMD76XROM is not set +# CONFIG_MTD_ICHXROM is not set +# CONFIG_MTD_ESB2ROM is not set +# CONFIG_MTD_CK804XROM is not set +# CONFIG_MTD_SCB2_FLASH is not set +CONFIG_MTD_NETtel=m +# CONFIG_MTD_L440GX is not set +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +# CONFIG_MTD_GPIO_ADDR is not set +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_PLATRAM=m +# CONFIG_MTD_LATCH_ADDR is not set + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +CONFIG_MTD_M25P80=m +CONFIG_MTD_SST25L=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_PHRAM=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTD_BLOCK2MTD=m + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +CONFIG_MTD_NAND_ECC=m +# CONFIG_MTD_NAND_ECC_SMC is not set +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC_BCH=y +CONFIG_MTD_SM_COMMON=m +# CONFIG_MTD_NAND_DENALI_PCI is not set +# CONFIG_MTD_NAND_DENALI_DT is not set +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +# CONFIG_MTD_NAND_DOCG4 is not set +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_NANDSIM=m +# CONFIG_MTD_NAND_PLATFORM is not set +# CONFIG_MTD_NAND_HISI504 is not set +# CONFIG_MTD_NAND_MTK is not set +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +# CONFIG_MTD_ONENAND_GENERIC is not set +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_2X_PROGRAM=y + +# +# LPDDR & LPDDR2 PCM memory drivers +# +CONFIG_MTD_LPDDR=m +CONFIG_MTD_QINFO_PROBE=m +CONFIG_MTD_SPI_NOR=m +# CONFIG_MTD_MT81xx_NOR is not set +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_BLOCK=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_ADDRESS=y +CONFIG_OF_ADDRESS_PCI=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_MDIO=m +CONFIG_OF_PCI=y +CONFIG_OF_PCI_IRQ=y +# CONFIG_OF_OVERLAY is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PARPORT=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_SERIAL=m +# CONFIG_PARPORT_PC_FIFO is not set +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_GSC is not set +# CONFIG_PARPORT_AX88796 is not set +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_FD=m +# CONFIG_PARIDE is not set +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_ZRAM=m +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_CISS_SCSI_TAPE=y +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_UMEM=m +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=m +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_SKD=m +CONFIG_BLK_DEV_OSD=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +# CONFIG_BLK_DEV_RAM_DAX is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=m +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=m +# CONFIG_BLK_DEV_HD is not set +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_NVME_CORE=m +CONFIG_BLK_DEV_NVME=m +# CONFIG_BLK_DEV_NVME_SCSI is not set +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_TARGET=m +# CONFIG_NVME_TARGET_LOOP is not set +CONFIG_NVME_TARGET_RDMA=m + +# +# Misc devices +# +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +# CONFIG_DUMMY_IRQ is not set +CONFIG_IBM_ASM=m +CONFIG_PHANTOM=m +CONFIG_SGI_IOC4=m +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_ICS932S401=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_HP_ILO=m +CONFIG_APDS9802ALS=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_APDS990X=m +CONFIG_HMC6352=m +CONFIG_DS1682=m +CONFIG_TI_DAC7512=m +CONFIG_VMWARE_BALLOON=m +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_PANEL is not set +CONFIG_C2PORT=m +CONFIG_C2PORT_DURAMAR_2150=m + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +# CONFIG_EEPROM_93XX46 is not set +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +CONFIG_SENSORS_LIS3_I2C=m + +# +# Altera FPGA firmware download module +# +CONFIG_ALTERA_STAPL=m +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MEI_ME=m +# CONFIG_INTEL_MEI_TXE is not set +CONFIG_VMWARE_VMCI=m + +# +# Intel MIC Bus Driver +# +CONFIG_INTEL_MIC_BUS=m + +# +# SCIF Bus Driver +# +CONFIG_SCIF_BUS=m + +# +# VOP Bus Driver +# +CONFIG_VOP_BUS=m + +# +# Intel MIC Host Driver +# +CONFIG_INTEL_MIC_HOST=m + +# +# Intel MIC Card Driver +# +# CONFIG_INTEL_MIC_CARD is not set + +# +# SCIF Driver +# +CONFIG_SCIF=m + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# +CONFIG_MIC_COSM=m + +# +# VOP Driver +# +CONFIG_VOP=m +CONFIG_VHOST_RING=m +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=m +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +# CONFIG_SCSI_MQ_DEFAULT is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=m +CONFIG_CHR_DEV_ST=m +CONFIG_CHR_DEV_OSST=m +CONFIG_BLK_DEV_SR=m +CONFIG_BLK_DEV_SR_VENDOR=y +CONFIG_CHR_DEV_SG=m +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_ESAS2R=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +# CONFIG_SCSI_UFS_DWC_TC_PCI is not set +# CONFIG_SCSI_UFSHCD_PLATFORM is not set +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=m +# CONFIG_SCSI_FLASHPOINT is not set +CONFIG_VMWARE_PVSCSI=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_HYPERV_STORAGE=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +# CONFIG_SCSI_PPA is not set +# CONFIG_SCSI_IMM is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +# CONFIG_SCSI_IPR_TRACE is not set +# CONFIG_SCSI_IPR_DUMP is not set +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_WD719X=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_OSD_ULD=m +CONFIG_SCSI_OSD_DPRINT_SENSE=1 +# CONFIG_SCSI_OSD_DEBUG is not set +CONFIG_ATA=m +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_ZPODD=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=m +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_AHCI_CEVA is not set +# CONFIG_AHCI_QORIQ is not set +# CONFIG_SATA_INIC162X is not set +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=m +# CONFIG_SATA_DWC is not set +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +# CONFIG_PATA_CYPRESS is not set +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OLDPIIX=m +# CONFIG_PATA_OPTIDMA is not set +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +# CONFIG_PATA_RADISYS is not set +CONFIG_PATA_RDC=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=m +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NS87410=m +# CONFIG_PATA_OPTI is not set +CONFIG_PATA_PCMCIA=m +# CONFIG_PATA_PLATFORM is not set +CONFIG_PATA_RZ1000=m + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +CONFIG_ATA_GENERIC=m +# CONFIG_PATA_LEGACY is not set +CONFIG_MD=y +CONFIG_BLK_DEV_MD=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +# CONFIG_MD_CLUSTER is not set +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=m +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_CACHE_CLEANER=m +CONFIG_DM_ERA=m +CONFIG_DM_MIRROR=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_DELAY=m +CONFIG_DM_UEVENT=y +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_SWITCH=m +CONFIG_DM_LOG_WRITES=m +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +CONFIG_TCM_FC=m +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_SBP_TARGET=m +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +CONFIG_FUSION_LAN=m +# CONFIG_FUSION_LOGGING is not set + +# +# IEEE 1394 (FireWire) support +# +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=y +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_EQUALIZER=m +CONFIG_NET_FC=y +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN=m +CONFIG_VXLAN=m +CONFIG_GENEVE=m +CONFIG_GTP=m +CONFIG_MACSEC=m +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_TUN=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +CONFIG_NLMON=m +CONFIG_NET_VRF=m +CONFIG_SUNGEM_PHY=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_TCP=m +CONFIG_ATM_LANAI=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +CONFIG_ATM_NICSTAR=m +CONFIG_ATM_NICSTAR_USE_SUNI=y +CONFIG_ATM_NICSTAR_USE_IDT77105=y +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E=m +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_FORE200E_TX_RETRY=16 +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_SOLOS=m + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_AGERE=y +CONFIG_ET131X=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_ENA_ETHERNET=m +CONFIG_NET_VENDOR_AMD=y +CONFIG_AMD8111_ETH=m +CONFIG_PCNET32=m +CONFIG_PCMCIA_NMCLAN=m +# CONFIG_NET_VENDOR_ARC is not set +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_ALX=m +# CONFIG_NET_VENDOR_AURORA is not set +CONFIG_NET_CADENCE=y +# CONFIG_MACB is not set +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_B44=m +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI=y +# CONFIG_BCMGENET is not set +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=m +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +# CONFIG_SYSTEMPORT is not set +CONFIG_BNXT=m +CONFIG_BNXT_SRIOV=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_VENDOR_CAVIUM=y +# CONFIG_THUNDER_NIC_PF is not set +# CONFIG_THUNDER_NIC_VF is not set +# CONFIG_THUNDER_NIC_BGX is not set +# CONFIG_THUNDER_NIC_RGX is not set +CONFIG_LIQUIDIO=m +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_LIB=m +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_MMIO is not set +CONFIG_TULIP_NAPI=y +CONFIG_TULIP_NAPI_HW_MITIGATION=y +# CONFIG_DE4X5 is not set +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +CONFIG_NET_VENDOR_EZCHIP=y +# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_EXAR=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_NET_VENDOR_HP=y +CONFIG_HP100=m +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGB_DCA=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBEVF=m +CONFIG_I40E=m +CONFIG_I40E_DCB=y +CONFIG_I40E_FCOE=y +CONFIG_I40EVF=m +# CONFIG_FM10K is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_JME=m +CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_MVMDIO is not set +# CONFIG_MVNETA_BM is not set +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_CORE_EN_DCB=y +# CONFIG_MLXSW_CORE is not set +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +# CONFIG_KS8851 is not set +# CONFIG_KS8851_MLL is not set +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_ENC28J60 is not set +# CONFIG_ENCX24J600 is not set +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_NETRONOME=y +# CONFIG_NFP_NETVF is not set +CONFIG_NET_VENDOR_8390=y +CONFIG_PCMCIA_AXNET=m +CONFIG_NE2K_PCI=m +CONFIG_PCMCIA_PCNET=m +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_FORCEDETH=m +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_PACKET_ENGINE=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_QLGE=m +CONFIG_NETXEN_NIC=m +CONFIG_QED=m +CONFIG_QED_SRIOV=y +CONFIG_QEDE=m +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCA7000 is not set +# CONFIG_QCOM_EMAC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_ATP is not set +CONFIG_8139CP=m +CONFIG_8139TOO=m +# CONFIG_8139TOO_PIO is not set +CONFIG_8139TOO_TUNE_TWISTER=y +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=m +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +# CONFIG_NET_VENDOR_SEEQ is not set +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +CONFIG_SIS900=m +CONFIG_SIS190=m +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_PCMCIA_SMC91C92=m +CONFIG_EPIC100=m +# CONFIG_SMSC911X is not set +CONFIG_SMSC9420=m +CONFIG_NET_VENDOR_STMICRO=y +# CONFIG_STMMAC_ETH is not set +CONFIG_NET_VENDOR_SUN=y +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +CONFIG_CASSINI=m +CONFIG_NIU=m +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_SYNOPSYS_DWC_ETH_QOS is not set +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_ALE is not set +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +CONFIG_VIA_RHINE=m +# CONFIG_VIA_RHINE_MMIO is not set +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_FDDI=y +CONFIG_DEFXX=m +# CONFIG_DEFXX_MMIO is not set +CONFIG_SKFP=m +CONFIG_HIPPI=y +CONFIG_ROADRUNNER=m +# CONFIG_ROADRUNNER_LARGE_RINGS is not set +CONFIG_NET_SB1000=m +CONFIG_PHYLIB=m +CONFIG_SWPHY=y + +# +# MDIO bus device drivers +# +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_THUNDER is not set + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AT803X_PHY=m +# CONFIG_BCM7XXX_PHY is not set +CONFIG_BCM87XX_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_BROADCOM_PHY=m +CONFIG_CICADA_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_FIXED_PHY=m +CONFIG_ICPLUS_PHY=m +# CONFIG_INTEL_XWAY_PHY is not set +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +# CONFIG_MICROSEMI_PHY is not set +CONFIG_NATIONAL_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_STE10XP=m +CONFIG_TERANETICS_PHY=m +CONFIG_VITESSE_PHY=m +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +CONFIG_PLIP=m +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_SMART=y +CONFIG_SLIP_MODE_SLIP6=y + +# +# Host-side USB support is needed for USB Network Adapter support +# +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_HSO=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +CONFIG_USB_NET_CH9200=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_ADM8211=m +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH5K_PCI=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +# CONFIG_ATH9K_AHB is not set +# CONFIG_ATH9K_DEBUGFS is not set +# CONFIG_ATH9K_DYNACK is not set +# CONFIG_ATH9K_WOW is not set +CONFIG_ATH9K_RFKILL=y +# CONFIG_ATH9K_CHANNEL_CONTEXT is not set +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_HTC=m +# CONFIG_ATH9K_HTC_DEBUGFS is not set +# CONFIG_ATH9K_HWRNG is not set +CONFIG_CARL9170=m +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARL9170_HWRNG is not set +CONFIG_ATH6KL=m +CONFIG_ATH6KL_SDIO=m +CONFIG_ATH6KL_USB=m +# CONFIG_ATH6KL_DEBUG is not set +# CONFIG_ATH6KL_TRACING is not set +CONFIG_AR5523=m +CONFIG_WIL6210=m +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_ATH10K=m +CONFIG_ATH10K_PCI=m +# CONFIG_ATH10K_DEBUG is not set +# CONFIG_ATH10K_DEBUGFS is not set +# CONFIG_ATH10K_TRACING is not set +# CONFIG_WCN36XX is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_ATMEL=m +CONFIG_PCI_ATMEL=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_AT76C50X_USB=m +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_B43=m +CONFIG_B43_BCMA=y +CONFIG_B43_SSB=y +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_BCMA is not set +# CONFIG_B43_BUSES_SSB is not set +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_SDIO=y +CONFIG_B43_BCMA_PIO=y +CONFIG_B43_PIO=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_LEDS=y +CONFIG_B43_HWRNG=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_DEBUG=y +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_PIO=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_BRCMUTIL=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMFMAC_PCIE=y +# CONFIG_BRCM_TRACING is not set +# CONFIG_BRCMDBG is not set +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLEGACY=m +CONFIG_IWL4965=m +CONFIG_IWL3945=m + +# +# iwl3945 / iwl4965 Debugging Options +# +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set +# CONFIG_IWLWIFI_PCIE_RTPM is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_IWLWIFI_DEVICE_TRACING is not set +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +# CONFIG_HOSTAP_FIRMWARE_NVRAM is not set +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_HERMES=m +# CONFIG_HERMES_PRISM is not set +CONFIG_HERMES_CACHE_FW_ON_INIT=y +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_ORINOCO_USB=m +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +# CONFIG_P54_SPI is not set +CONFIG_P54_LEDS=y +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_CS=m +CONFIG_LIBERTAS_SDIO=m +# CONFIG_LIBERTAS_SPI is not set +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT61PCI=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2500USB=m +CONFIG_RT73USB=m +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +# CONFIG_RTL8XXXU_UNTESTED is not set +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_RSI_91X=m +CONFIG_RSI_DEBUGFS=y +# CONFIG_RSI_SDIO is not set +CONFIG_RSI_USB=m +CONFIG_WLAN_VENDOR_ST=y +# CONFIG_CW1200 is not set +# CONFIG_WLAN_VENDOR_TI is not set +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_USB_ZD1201=m +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_WL3501=m +CONFIG_MAC80211_HWSIM=m +CONFIG_USB_NET_RNDIS_WLAN=m + +# +# WiMAX Wireless Broadband devices +# +CONFIG_WIMAX_I2400M=m +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 +CONFIG_WAN=y +CONFIG_LANMEDIA=m +CONFIG_HDLC=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +# CONFIG_HDLC_X25 is not set +CONFIG_PCI200SYN=m +CONFIG_WANXL=m +# CONFIG_PC300TOO is not set +CONFIG_FARSYNC=m +CONFIG_DSCC4=m +CONFIG_DSCC4_PCISYNC=y +CONFIG_DSCC4_PCI_RST=y +CONFIG_DLCI=m +CONFIG_DLCI_MAX=8 +# CONFIG_SBNI is not set +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_AT86RF230=m +# CONFIG_IEEE802154_AT86RF230_DEBUGFS is not set +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_XEN_NETDEV_FRONTEND=m +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_VMXNET3=m +CONFIG_FUJITSU_ES=m +CONFIG_HYPERV_NET=m +CONFIG_ISDN=y +# CONFIG_ISDN_I4L is not set +CONFIG_ISDN_CAPI=m +CONFIG_CAPI_TRACE=y +CONFIG_ISDN_CAPI_CAPI20=m +CONFIG_ISDN_CAPI_MIDDLEWARE=y + +# +# CAPI hardware drivers +# +CONFIG_CAPI_AVM=y +CONFIG_ISDN_DRV_AVMB1_B1PCI=m +CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m +CONFIG_ISDN_DRV_AVMB1_AVM_CS=m +CONFIG_ISDN_DRV_AVMB1_T1PCI=m +CONFIG_ISDN_DRV_AVMB1_C4=m +CONFIG_CAPI_EICON=y +CONFIG_ISDN_DIVAS=m +CONFIG_ISDN_DIVAS_BRIPCI=y +CONFIG_ISDN_DIVAS_PRIPCI=y +CONFIG_ISDN_DIVAS_DIVACAPI=m +CONFIG_ISDN_DIVAS_USERIDI=m +CONFIG_ISDN_DIVAS_MAINT=m +CONFIG_ISDN_DRV_GIGASET=m +CONFIG_GIGASET_CAPI=y +# CONFIG_GIGASET_DUMMYLL is not set +CONFIG_GIGASET_BASE=m +CONFIG_GIGASET_M105=m +CONFIG_GIGASET_M101=m +# CONFIG_GIGASET_DEBUG is not set +CONFIG_HYSDN=m +CONFIG_HYSDN_CAPI=y +CONFIG_MISDN=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_L1OIP=m + +# +# mISDN hardware drivers +# +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_W6692=m +# CONFIG_MISDN_NETJET is not set +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_POLLDEV=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=m +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADC is not set +CONFIG_KEYBOARD_ADP5588=m +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_GPIO=m +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +CONFIG_KEYBOARD_LM8323=m +# CONFIG_KEYBOARD_LM8333 is not set +CONFIG_KEYBOARD_MAX7359=m +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +# CONFIG_KEYBOARD_SAMSUNG is not set +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +# CONFIG_KEYBOARD_OMAP4 is not set +CONFIG_KEYBOARD_XTKBD=m +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_PS2_VMMOUSE is not set +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +CONFIG_MOUSE_VSXXXAA=m +# CONFIG_MOUSE_GPIO is not set +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +# CONFIG_JOYSTICK_AS5011 is not set +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +# CONFIG_TABLET_USB_PEGASUS is not set +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +# CONFIG_TOUCHSCREEN_AD7879_SPI is not set +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_EETI=m +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +# CONFIG_TOUCHSCREEN_ILI210X is not set +CONFIG_TOUCHSCREEN_GUNZE=m +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +CONFIG_TOUCHSCREEN_MCS5000=m +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +CONFIG_TOUCHSCREEN_MTOUCH=m +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +CONFIG_TOUCHSCREEN_TSC2007=m +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +CONFIG_TOUCHSCREEN_SUR40=m +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +CONFIG_TOUCHSCREEN_TPS6507X=m +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_COLIBRI_VF50 is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_MPU3050 is not set +CONFIG_INPUT_APANEL=m +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_TILT_POLLED is not set +# CONFIG_INPUT_GPIO_DECODER is not set +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +# CONFIG_INPUT_KXTJ9 is not set +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +CONFIG_INPUT_UINPUT=m +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +CONFIG_HYPERV_KEYBOARD=m +# CONFIG_USERIO is not set +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_ROCKETPORT=m +CONFIG_CYCLADES=m +# CONFIG_CYZ_INTR is not set +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_GT=m +CONFIG_NOZOMI=m +CONFIG_ISI=m +CONFIG_N_HDLC=m +CONFIG_N_GSM=m +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +# CONFIG_SERIAL_8250_FSL is not set +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set +# CONFIG_SERIAL_OF_PLATFORM is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_JSM=m +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +# CONFIG_SERIAL_XILINX_PS_UART is not set +# CONFIG_SERIAL_ARC is not set +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +CONFIG_TTY_PRINTK=m +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +CONFIG_PPDEV=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +# CONFIG_IPMI_SSIF is not set +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m +CONFIG_HW_RANDOM=m +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_TPM=m +CONFIG_NVRAM=m +CONFIG_R3964=m +CONFIG_APPLICOM=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_IPWIRELESS=m +CONFIG_MWAVE=m +CONFIG_RAW_DRIVER=m +CONFIG_MAX_RAW_DEVS=256 +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_TCG_TPM=m +CONFIG_TCG_TIS_CORE=m +CONFIG_TCG_TIS=m +# CONFIG_TCG_TIS_SPI is not set +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_XEN=m +CONFIG_TCG_CRB=m +# CONFIG_TCG_VTPM_PROXY is not set +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +CONFIG_TELCLOCK=m +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m + +# +# ACPI drivers +# +CONFIG_I2C_SCMI=m + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_DESIGNWARE_PCI=m +# CONFIG_I2C_DESIGNWARE_BAYTRAIL is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_RK3X is not set +CONFIG_I2C_SIMTEC=m +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_STUB=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +# CONFIG_SPI_CADENCE is not set +CONFIG_SPI_DESIGNWARE=m +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_GPIO=m +CONFIG_SPI_LM70_LLP=m +# CONFIG_SPI_FSL_SPI is not set +# CONFIG_SPI_OC_TINY is not set +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=m +CONFIG_SPI_LOOPBACK_TEST=m +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +CONFIG_PPS=m +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=m + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PINCTRL=y + +# +# Pin controllers +# +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_SINGLE is not set +CONFIG_PINCTRL_UPBOARD=m +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_MAX730X=m + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_ICH is not set +# CONFIG_GPIO_LYNXPOINT is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_ZX is not set + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH is not set +# CONFIG_GPIO_SCH311X is not set + +# +# I2C GPIO expanders +# +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_ADNP=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_SX150X=y +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TS4900=m + +# +# MFD GPIO expanders +# +CONFIG_GPIO_KEMPLD=m + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +CONFIG_GPIO_ML_IOH=m +# CONFIG_GPIO_RDC321X is not set +# CONFIG_GPIO_SODAVILLE is not set + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set + +# +# SPI or I2C GPIO expanders +# +# CONFIG_GPIO_MCP23S08 is not set + +# +# USB GPIO expanders +# +CONFIG_GPIO_VIPERBOARD=m +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_GPIO=m + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2760=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_BQ27000=m +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2760 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +CONFIG_BATTERY_SBS=m +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_PCF8591=m +# CONFIG_PMBUS is not set +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADS1015=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m + +# +# ACPI drivers +# +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_ATK0110=m +CONFIG_THERMAL=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CPU_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_QORIQ_THERMAL is not set +CONFIG_INTEL_POWERCLAMP=m +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m + +# +# ACPI INT340X thermal drivers +# +CONFIG_INT340X_THERMAL=m +CONFIG_ACPI_THERMAL_REL=m +# CONFIG_INT3406_THERMAL is not set +CONFIG_INTEL_PCH_THERMAL=m +# CONFIG_GENERIC_ADC_THERMAL is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +# CONFIG_GPIO_WATCHDOG is not set +CONFIG_MENF21BMC_WATCHDOG=m +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_F71808E_WDT=m +CONFIG_SP5100_TCO=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_IE6XX_WDT=m +CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_HP_WATCHDOG=m +CONFIG_KEMPLD_WDT=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_SC1200_WDT=m +CONFIG_PC87413_WDT=m +CONFIG_NV_TCO=m +CONFIG_60XX_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_VIA_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +# CONFIG_INTEL_MEI_WDT is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_MEN_A21_WDT is not set +CONFIG_XEN_WDT=m + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_PCMCIAHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +# CONFIG_SSB_SILENT is not set +# CONFIG_SSB_DEBUG is not set +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +# CONFIG_SSB_DRIVER_GPIO is not set +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_PCI=y +# CONFIG_BCMA_HOST_SOC is not set +CONFIG_BCMA_DRIVER_PCI=y +# CONFIG_BCMA_DRIVER_GMAC_CMN is not set +# CONFIG_BCMA_DRIVER_GPIO is not set +# CONFIG_BCMA_DEBUG is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=m +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_EXYNOS_LPASS is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_HI6421_PMIC is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +# CONFIG_INTEL_SOC_PMIC is not set +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +# CONFIG_MFD_JANZ_CMODIO is not set +CONFIG_MFD_KEMPLD=m +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77620 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +CONFIG_MFD_MENF21BMC=m +# CONFIG_EZX_PCAP is not set +CONFIG_MFD_VIPERBOARD=m +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_UCB1400_CORE is not set +# CONFIG_MFD_RDC321X is not set +CONFIG_MFD_RTSX_PCI=m +# CONFIG_MFD_RT5033 is not set +CONFIG_MFD_RTSX_USB=m +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_RK808 is not set +# CONFIG_MFD_RN5T618 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_UPBOARD_FPGA=m +# CONFIG_MFD_INTEL_VUPORT is not set +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX8973 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_MEDIA_SUPPORT=m + +# +# Multimedia core support +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_RC_SUPPORT=y +CONFIG_MEDIA_CEC_EDID=y +CONFIG_MEDIA_CONTROLLER=y +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_VIDEO_DEV=m +# CONFIG_VIDEO_V4L2_SUBDEV_API is not set +CONFIG_VIDEO_V4L2=m +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +# CONFIG_VIDEO_PCI_SKELETON is not set +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOBUF_DVB=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_DVB_CORE=m +CONFIG_DVB_NET=y +CONFIG_TTPCI_EEPROM=m +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_DYNAMIC_MINORS=y + +# +# Media drivers +# +CONFIG_RC_CORE=m +CONFIG_RC_MAP=m +CONFIG_RC_DECODERS=y +CONFIG_LIRC=m +CONFIG_IR_LIRC_CODEC=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_XMP_DECODER=m +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +# CONFIG_IR_HIX5HD2 is not set +CONFIG_IR_IMON=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_FINTEK=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +# CONFIG_IR_GPIO_CIR is not set +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_VIDEO_USBTV=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_STK1160_AC97=y +CONFIG_VIDEO_STK1160=m +# CONFIG_VIDEO_GO7007 is not set + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_AS102=m + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m + +# +# Software defined radio USB devices +# +CONFIG_USB_AIRSPY=m +CONFIG_USB_HACKRF=m +CONFIG_USB_MSI2500=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_SOLO6X10=m +# CONFIG_VIDEO_TW5864 is not set +CONFIG_VIDEO_TW68=m +# CONFIG_VIDEO_TW686X is not set +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DT3155=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +# CONFIG_VIDEO_CX25821 is not set +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7164=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_VIA_CAMERA=m +# CONFIG_SOC_CAMERA is not set +CONFIG_V4L_MEM2MEM_DRIVERS=y +# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set +# CONFIG_VIDEO_SH_VEU is not set +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +# CONFIG_VIDEO_VIM2M is not set +# CONFIG_DVB_PLATFORM_DRIVERS is not set + +# +# Supported MMC/SDIO adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_SI470X=y +CONFIG_USB_SI470X=m +# CONFIG_I2C_SI470X is not set +# CONFIG_RADIO_SI4713 is not set +CONFIG_USB_MR800=m +CONFIG_USB_DSBR=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_USB_KEENE=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_MA901=m +# CONFIG_RADIO_TEA5764 is not set +# CONFIG_RADIO_SAA7706H is not set +# CONFIG_RADIO_TEF6862 is not set +# CONFIG_RADIO_WL1273 is not set + +# +# Texas Instruments WL128x FM driver (ST based) +# + +# +# Supported FireWire (IEEE 1394) Adapters +# +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +# CONFIG_SMS_SIANO_DEBUGFS is not set +CONFIG_VIDEO_V4L2_TPG=m + +# +# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) +# +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y +CONFIG_MEDIA_ATTACH=y +CONFIG_VIDEO_IR_I2C=m + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m + +# +# Video decoders +# +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_VPX3220=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m + +# +# Camera sensor devices +# +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_MT9V011=m + +# +# Flash devices +# + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m + +# +# Audio/Video compression chips +# +CONFIG_VIDEO_SAA6752HS=m + +# +# Miscellaneous helper chips +# +CONFIG_VIDEO_M52790=m + +# +# Sensors used on soc_camera driver +# +CONFIG_MEDIA_TUNER=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_GP8PSK_FE=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_SP2=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Tools to develop new frontends +# +# CONFIG_DVB_DUMMY_FE is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +CONFIG_DRM=m +CONFIG_DRM_MIPI_DSI=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_KMS_FB_HELPER=y +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_TTM=m + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_SIL164=m +# CONFIG_DRM_I2C_NXP_TDA998X is not set +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_AMDGPU=m +# CONFIG_DRM_AMDGPU_SI is not set +# CONFIG_DRM_AMDGPU_CIK is not set +CONFIG_DRM_AMDGPU_USERPTR=y +# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +CONFIG_DRM_NOUVEAU=m +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +CONFIG_DRM_I915=m +# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_GVT is not set + +# +# drm/i915 Debugging +# +# CONFIG_DRM_I915_WERROR is not set +# CONFIG_DRM_I915_DEBUG is not set +CONFIG_DRM_VGEM=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +CONFIG_DRM_GMA500=m +CONFIG_DRM_GMA600=y +CONFIG_DRM_GMA3600=y +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_QXL=m +CONFIG_DRM_BOCHS=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_SIMPLE is not set +# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set +# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set +CONFIG_DRM_BRIDGE=y + +# +# Display Interface Bridges +# +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_DUMB_VGA_DAC is not set +# CONFIG_DRM_NXP_PTN3460 is not set +# CONFIG_DRM_PARADE_PS8622 is not set +# CONFIG_DRM_SII902X is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set +# CONFIG_DRM_I2C_ADV7511 is not set +CONFIG_HSA_AMD=m +# CONFIG_DRM_ARCPGU is not set +CONFIG_DRM_LEGACY=y +CONFIG_DRM_TDFX=m +CONFIG_DRM_R128=m +# CONFIG_DRM_I810 is not set +CONFIG_DRM_MGA=m +CONFIG_DRM_SIS=m +CONFIG_DRM_VIA=m +CONFIG_DRM_SAVAGE=m + +# +# Frame buffer Devices +# +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB_DDC=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_HECUBA=m +CONFIG_FB_SVGALIB=m +# CONFIG_FB_MACMODES is not set +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +CONFIG_FB_CIRRUS=m +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_ARC=m +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_VGA16=m +CONFIG_FB_UVESA=m +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +CONFIG_FB_N411=m +CONFIG_FB_HGA=m +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +CONFIG_FB_LE80578=m +CONFIG_FB_CARILLO_RANCH=m +# CONFIG_FB_INTEL is not set +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +# CONFIG_FB_SAVAGE_I2C is not set +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_KYRO=m +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +CONFIG_FB_3DFX_I2C=y +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FB_TRIDENT=m +CONFIG_FB_ARK=m +CONFIG_FB_PM3=m +# CONFIG_FB_CARMINE is not set +CONFIG_FB_SMSCUFX=m +CONFIG_FB_UDL=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_VIRTUAL=m +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +CONFIG_FB_HYPERV=m +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_PWM is not set +CONFIG_BACKLIGHT_APPLE=m +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +CONFIG_VGASTATE=m +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_LOGO is not set +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_PCM_ELD=y +CONFIG_SND_HWDEP=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_HRTIMER=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_RAWMIDI_SEQ=m +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_DRIVERS=y +CONFIG_SND_DUMMY=m +CONFIG_SND_ALOOP=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_SB_COMMON=m +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +# CONFIG_SND_AW2 is not set +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m + +# +# HD-Audio +# +CONFIG_SND_HDA=m +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_BCD2000=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_DICE=m +CONFIG_SND_OXFW=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_BEBOB=m +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_PCMCIA=y +CONFIG_SND_VXPOCKET=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_TOPOLOGY=y +# CONFIG_SND_SOC_AMD_ACP is not set +# CONFIG_SND_ATMEL_SOC is not set +# CONFIG_SND_DESIGNWARE_I2S is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +# CONFIG_SND_SOC_FSL_ASRC is not set +# CONFIG_SND_SOC_FSL_SAI is not set +# CONFIG_SND_SOC_FSL_SSI is not set +# CONFIG_SND_SOC_FSL_SPDIF is not set +# CONFIG_SND_SOC_FSL_ESAI is not set +# CONFIG_SND_SOC_IMX_AUDMUX is not set +# CONFIG_SND_SOC_IMG is not set +CONFIG_SND_SST_MFLD_PLATFORM=m +CONFIG_SND_SST_IPC=m +CONFIG_SND_SST_IPC_ACPI=m +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m +CONFIG_SND_SOC_INTEL_SST_ACPI=m +CONFIG_SND_SOC_INTEL_SST_MATCH=m +CONFIG_SND_SOC_INTEL_HASWELL=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +# CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH is not set +# CONFIG_SND_SOC_INTEL_BXT_RT298_MACH is not set +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_SKYLAKE=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +# CONFIG_SND_SOC_XTFPGA_I2S is not set +CONFIG_SND_SOC_I2C_AND_SPI=m + +# +# CODEC drivers +# +# CONFIG_SND_SOC_AC97_CODEC is not set +# CONFIG_SND_SOC_ADAU1701 is not set +# CONFIG_SND_SOC_ADAU7002 is not set +# CONFIG_SND_SOC_AK4104 is not set +# CONFIG_SND_SOC_AK4554 is not set +# CONFIG_SND_SOC_AK4613 is not set +# CONFIG_SND_SOC_AK4642 is not set +# CONFIG_SND_SOC_AK5386 is not set +# CONFIG_SND_SOC_ALC5623 is not set +# CONFIG_SND_SOC_BT_SCO is not set +# CONFIG_SND_SOC_CS35L32 is not set +# CONFIG_SND_SOC_CS35L33 is not set +# CONFIG_SND_SOC_CS42L51_I2C is not set +# CONFIG_SND_SOC_CS42L52 is not set +# CONFIG_SND_SOC_CS42L56 is not set +# CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4265 is not set +# CONFIG_SND_SOC_CS4270 is not set +# CONFIG_SND_SOC_CS4271_I2C is not set +# CONFIG_SND_SOC_CS4271_SPI is not set +# CONFIG_SND_SOC_CS42XX8_I2C is not set +# CONFIG_SND_SOC_CS4349 is not set +# CONFIG_SND_SOC_CS53L30 is not set +CONFIG_SND_SOC_DMIC=m +# CONFIG_SND_SOC_ES8328 is not set +# CONFIG_SND_SOC_GTM601 is not set +CONFIG_SND_SOC_HDAC_HDMI=m +# CONFIG_SND_SOC_INNO_RK3036 is not set +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +# CONFIG_SND_SOC_MAX98504 is not set +# CONFIG_SND_SOC_MAX9860 is not set +# CONFIG_SND_SOC_PCM1681 is not set +# CONFIG_SND_SOC_PCM179X_I2C is not set +# CONFIG_SND_SOC_PCM179X_SPI is not set +# CONFIG_SND_SOC_PCM3168A_I2C is not set +# CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM512x_I2C is not set +# CONFIG_SND_SOC_PCM512x_SPI is not set +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_RT286=m +# CONFIG_SND_SOC_RT5616 is not set +# CONFIG_SND_SOC_RT5631 is not set +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +# CONFIG_SND_SOC_SGTL5000 is not set +# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set +# CONFIG_SND_SOC_SPDIF is not set +# CONFIG_SND_SOC_SSM2602_SPI is not set +# CONFIG_SND_SOC_SSM2602_I2C is not set +CONFIG_SND_SOC_SSM4567=m +# CONFIG_SND_SOC_STA32X is not set +# CONFIG_SND_SOC_STA350 is not set +# CONFIG_SND_SOC_STI_SAS is not set +# CONFIG_SND_SOC_TAS2552 is not set +# CONFIG_SND_SOC_TAS5086 is not set +# CONFIG_SND_SOC_TAS571X is not set +# CONFIG_SND_SOC_TAS5720 is not set +# CONFIG_SND_SOC_TFA9879 is not set +# CONFIG_SND_SOC_TLV320AIC23_I2C is not set +# CONFIG_SND_SOC_TLV320AIC23_SPI is not set +# CONFIG_SND_SOC_TLV320AIC31XX is not set +# CONFIG_SND_SOC_TLV320AIC3X is not set +CONFIG_SND_SOC_TS3A227E=m +# CONFIG_SND_SOC_WM8510 is not set +# CONFIG_SND_SOC_WM8523 is not set +# CONFIG_SND_SOC_WM8580 is not set +# CONFIG_SND_SOC_WM8711 is not set +# CONFIG_SND_SOC_WM8728 is not set +# CONFIG_SND_SOC_WM8731 is not set +# CONFIG_SND_SOC_WM8737 is not set +# CONFIG_SND_SOC_WM8741 is not set +# CONFIG_SND_SOC_WM8750 is not set +# CONFIG_SND_SOC_WM8753 is not set +# CONFIG_SND_SOC_WM8770 is not set +# CONFIG_SND_SOC_WM8776 is not set +# CONFIG_SND_SOC_WM8804_I2C is not set +# CONFIG_SND_SOC_WM8804_SPI is not set +# CONFIG_SND_SOC_WM8903 is not set +# CONFIG_SND_SOC_WM8960 is not set +# CONFIG_SND_SOC_WM8962 is not set +# CONFIG_SND_SOC_WM8974 is not set +# CONFIG_SND_SOC_WM8978 is not set +# CONFIG_SND_SOC_WM8985 is not set +# CONFIG_SND_SOC_NAU8810 is not set +CONFIG_SND_SOC_NAU8825=m +# CONFIG_SND_SOC_TPA6130A2 is not set +# CONFIG_SND_SIMPLE_CARD is not set +# CONFIG_SND_SIMPLE_SCU_CARD is not set +# CONFIG_SOUND_PRIME is not set +CONFIG_AC97_BUS=m +CONFIG_SUPPORT_HDMI=y + +# +# HID support +# +CONFIG_HID=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CP2112=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EZKEY=m +CONFIG_HID_GEMBIRD=m +# CONFIG_HID_GFRM is not set +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +# CONFIG_HID_GT683R is not set +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +CONFIG_HID_GYRATION=m +CONFIG_HID_ICADE=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PRIMAX=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_RMI=m +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +CONFIG_HID_WACOM=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m +# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set +CONFIG_HID_ALPS=m + +# +# USB HID support +# +CONFIG_USB_HID=m +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# USB HID Boot Protocol drivers +# +# CONFIG_USB_KBD is not set +# CONFIG_USB_MOUSE is not set + +# +# I2C HID support +# +CONFIG_I2C_HID=m + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=m +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=m +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_OTG=y +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG_FSM is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_MON=m +CONFIG_USB_WUSB=m +CONFIG_USB_WUSB_CBAF=m +# CONFIG_USB_WUSB_CBAF_DEBUG is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=m +CONFIG_USB_XHCI_PCI=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_EHCI_HCD=m +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=m +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_HCD_PCI=m +# CONFIG_USB_OHCI_HCD_SSB is not set +# CONFIG_USB_OHCI_HCD_PLATFORM is not set +CONFIG_USB_UHCI_HCD=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=m +# CONFIG_USB_SL811_HCD_ISO is not set +CONFIG_USB_SL811_CS=m +# CONFIG_USB_R8A66597_HCD is not set +CONFIG_USB_WHCI_HCD=m +CONFIG_USB_HWA_HCD=m +# CONFIG_USB_HCD_BCMA is not set +# CONFIG_USB_HCD_SSB is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USBIP_CORE=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_HOST=m +# CONFIG_USBIP_VUDC is not set +# CONFIG_USBIP_DEBUG is not set +# CONFIG_USB_MUSB_HDRC is not set +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_OF_SIMPLE=m +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_USS720=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_RIO500=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_SISUSBVGA_CON=y +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +CONFIG_USB_CHAOSKEY=m +# CONFIG_UCSI is not set +CONFIG_USB_ATM=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_CXACRU=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_XUSBATM=m + +# +# USB Physical Layer drivers +# +# CONFIG_USB_PHY is not set +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_PORTMUX=y +# CONFIG_INTEL_MUX_GPIO is not set +CONFIG_INTEL_MUX_DRCFG=m +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +# CONFIG_USB_M66592 is not set +# CONFIG_USB_BDC_UDC is not set +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +CONFIG_USB_NET2280=m +# CONFIG_USB_GOKU is not set +CONFIG_USB_EG20T=m +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_DUMMY_HCD is not set +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_TCM=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +# CONFIG_USB_CONFIGFS_F_TCM is not set +CONFIG_USB_ZERO=m +# CONFIG_USB_ZERO_HNPTEST is not set +CONFIG_USB_AUDIO=m +# CONFIG_GADGET_UAC1 is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +CONFIG_USB_G_NCM=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_MULTI=m +CONFIG_USB_G_MULTI_RNDIS=y +CONFIG_USB_G_MULTI_CDC=y +CONFIG_USB_G_HID=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +CONFIG_UWB=m +CONFIG_UWB_HWA=m +CONFIG_UWB_WHCI=m +CONFIG_UWB_I1480U=m +CONFIG_MMC=m +# CONFIG_MMC_DEBUG is not set +CONFIG_PWRSEQ_EMMC=m +CONFIG_PWRSEQ_SIMPLE=m + +# +# MMC/SD/SDIO Card Drivers +# +CONFIG_MMC_BLOCK=m +CONFIG_MMC_BLOCK_MINORS=256 +CONFIG_MMC_BLOCK_BOUNCE=y +CONFIG_SDIO_UART=m +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +# CONFIG_MMC_SDHCI_PLTFM is not set +CONFIG_MMC_WBSD=m +CONFIG_MMC_TIFM_SD=m +# CONFIG_MMC_SPI is not set +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_TOSHIBA_PCI=m +# CONFIG_MMC_MTK is not set +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m +# CONFIG_MS_BLOCK is not set + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set + +# +# LED drivers +# +CONFIG_LEDS_BCM6328=m +CONFIG_LEDS_BCM6358=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_PCA9532=m +# CONFIG_LEDS_PCA9532_GPIO is not set +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP55XX_COMMON=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_LP5562=m +CONFIG_LEDS_LP8501=m +CONFIG_LEDS_LP8860=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_PWM=m +# CONFIG_LEDS_REGULATOR is not set +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_DELL_NETBOOKS=m +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_MENF21BMC=m +CONFIG_LEDS_IS31FL319X=m +CONFIG_LEDS_IS31FL32XX=m + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_UPBOARD=m + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +# CONFIG_INFINIBAND_I40IW is not set +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_INFINIBAND=m +CONFIG_INFINIBAND_NES=m +# CONFIG_INFINIBAND_NES_DEBUG is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_RDMAVT=m +# CONFIG_RDMA_RXE is not set +# CONFIG_INFINIBAND_HFI1 is not set +# CONFIG_INFINIBAND_QEDR is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_AMD64=m +# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_SBRIDGE=m +# CONFIG_EDAC_SKX is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_DS1307=m +# CONFIG_RTC_DRV_DS1307_HWMON is not set +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +CONFIG_RTC_DRV_DS1374=m +# CONFIG_RTC_DRV_DS1374_WDT is not set +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_HYM8563=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_M41T80=m +# CONFIG_RTC_DRV_M41T80_WDT is not set +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_RV8803=m + +# +# SPI RTC drivers +# +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RX6110=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1685_FAMILY=m +CONFIG_RTC_DRV_DS1685=y +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +# CONFIG_RTC_DS1685_PROC_REGS is not set +# CONFIG_RTC_DS1685_SYSFS_REGS is not set +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_ZYNQMP=m + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_SNVS is not set + +# +# HID Sensor RTC drivers +# +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_FSL_EDMA is not set +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_MIC_X100_DMA=m +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC=m +# CONFIG_DW_DMAC_PCI is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +CONFIG_DCA=m +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=m +CONFIG_UIO_CIF=m +# CONFIG_UIO_PDRV_GENIRQ is not set +# CONFIG_UIO_DMEM_GENIRQ is not set +CONFIG_UIO_AEC=m +CONFIG_UIO_SERCOS3=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_NETX=m +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VFIO=m +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRTIO=m + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_INPUT=m +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_HYPERV=m +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_BALLOON=m + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES=y +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=m +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_TMEM=m +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_ACPI_PROCESSOR=m +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_STAGING=y +# CONFIG_SLICOSS is not set +CONFIG_PRISM2_USB=m +CONFIG_COMEDI=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_SERIAL2002=m +# CONFIG_COMEDI_ISA_DRIVERS is not set +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADV_PCI1710=m +# CONFIG_COMEDI_ADV_PCI1720 is not set +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +# CONFIG_COMEDI_ADV_PCI1760 is not set +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_RTL8192U=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTL8192E=m +CONFIG_R8712U=m +CONFIG_R8188EU=m +CONFIG_88EU_AP_MODE=y +CONFIG_RTS5208=m +# CONFIG_VT6655 is not set +CONFIG_VT6656=m + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADIS16240 is not set +# CONFIG_SCA3000 is not set + +# +# Analog to digital converters +# +# CONFIG_AD7606 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7816 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7280 is not set + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7152 is not set +# CONFIG_AD7746 is not set + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16060 is not set + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set + +# +# Light sensors +# +CONFIG_SENSORS_ISL29018=m +# CONFIG_SENSORS_ISL29028 is not set +CONFIG_TSL2583=m +# CONFIG_TSL2x7x is not set + +# +# Active energy metering IC +# +# CONFIG_ADE7753 is not set +# CONFIG_ADE7754 is not set +# CONFIG_ADE7758 is not set +# CONFIG_ADE7759 is not set +# CONFIG_ADE7854 is not set + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# CONFIG_AD2S1210 is not set + +# +# Triggers - standalone +# +# CONFIG_FB_SM750 is not set +# CONFIG_FB_XGI is not set + +# +# Speakup console speech +# +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +CONFIG_STAGING_MEDIA=y +# CONFIG_I2C_BCM2048 is not set +# CONFIG_MEDIA_CEC is not set +# CONFIG_DVB_CXD2099 is not set +CONFIG_LIRC_STAGING=y +CONFIG_LIRC_BT829=m +CONFIG_LIRC_IMON=m +# CONFIG_LIRC_PARALLEL is not set +CONFIG_LIRC_SASEM=m +CONFIG_LIRC_SERIAL=m +CONFIG_LIRC_SERIAL_TRANSMITTER=y +CONFIG_LIRC_SIR=m +CONFIG_LIRC_ZILOG=m + +# +# Android +# +# CONFIG_STAGING_BOARD is not set +# CONFIG_LTE_GDM724X is not set +# CONFIG_FIREWIRE_SERIAL is not set +# CONFIG_MTD_SPINAND_MT29F is not set +CONFIG_LNET=m +CONFIG_LNET_MAX_PAYLOAD=1048576 +# CONFIG_LNET_SELFTEST is not set +CONFIG_LUSTRE_FS=m +CONFIG_LUSTRE_OBD_MAX_IOCTL_BUFFER=8192 +# CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK is not set +# CONFIG_DGNC is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_CRYPTO_SKEIN is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1325=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TFT_WATTEROTT=m +CONFIG_FB_FLEX=m +CONFIG_FB_TFT_FBTFT_DEVICE=m +# CONFIG_WILC1000_SDIO is not set +# CONFIG_WILC1000_SPI is not set +# CONFIG_MOST is not set +# CONFIG_KS7010 is not set +# CONFIG_GREYBUS is not set +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_ACER_WMI=m +CONFIG_ACERHDF=m +CONFIG_ALIENWARE_WMI=m +CONFIG_ASUS_LAPTOP=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_SMO8800=m +CONFIG_DELL_RBTN=m +CONFIG_FUJITSU_LAPTOP=m +# CONFIG_FUJITSU_LAPTOP_DEBUG is not set +CONFIG_FUJITSU_TABLET=m +CONFIG_AMILO_RFKILL=m +CONFIG_HP_ACCEL=m +CONFIG_HP_WIRELESS=m +CONFIG_HP_WMI=m +CONFIG_MSI_LAPTOP=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_COMPAL_LAPTOP=m +CONFIG_SONY_LAPTOP=m +CONFIG_SONYPI_COMPAT=y +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set +# CONFIG_THINKPAD_ACPI_DEBUG is not set +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +CONFIG_SENSORS_HDAPS=m +# CONFIG_INTEL_MENLOW is not set +CONFIG_EEEPC_LAPTOP=m +CONFIG_ASUS_WMI=m +CONFIG_ASUS_NB_WMI=m +CONFIG_EEEPC_WMI=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ACPI_WMI=m +CONFIG_MSI_WMI=m +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +# CONFIG_TOSHIBA_WMI is not set +CONFIG_ACPI_CMPC=m +# CONFIG_INTEL_HID_EVENT is not set +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_IPS=m +# CONFIG_INTEL_PMC_CORE is not set +CONFIG_IBM_RTL=m +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_MXM_WMI=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_SAMSUNG_Q10=m +CONFIG_APPLE_GMUX=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_PVPANIC=m +CONFIG_INTEL_PMC_IPC=m +CONFIG_SURFACE_PRO3_BUTTON=m +# CONFIG_INTEL_PUNIT_IPC is not set +CONFIG_UPBOARD_LEGACY=y +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set + +# +# Hardware Spinlock drivers +# + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IOVA=y +CONFIG_OF_IOMMU=y +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=y +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_SVM=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_STE_MODEM_RPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Broadcom SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set +CONFIG_IIO_TRIGGERED_EVENT=m + +# +# Accelerometers +# +CONFIG_BMA180=m +CONFIG_BMA220=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_DMARD06=m +CONFIG_DMARD09=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_KXSD9=m +CONFIG_KXSD9_SPI=m +CONFIG_KXSD9_I2C=m +CONFIG_KXCJK1013=m +CONFIG_MC3230=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9551=m +CONFIG_MMA9553=m +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m + +# +# Analog to digital converters +# +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AD7266=m +CONFIG_AD7291=m +CONFIG_AD7298=m +CONFIG_AD7476=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD799X=m +# CONFIG_CC10001_ADC is not set +CONFIG_HI8435=m +CONFIG_INA2XX_ADC=m +CONFIG_LTC2485=m +CONFIG_MAX1027=m +CONFIG_MAX1363=m +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_NAU7802=m +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS8688=m +CONFIG_VF610_ADC=m +CONFIG_VIPERBOARD_ADC=m + +# +# Amplifiers +# +# CONFIG_AD8366 is not set + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_IAQCORE is not set +# CONFIG_VZ89X is not set + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +CONFIG_IIO_MS_SENSORS_I2C=m + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m + +# +# Digital to analog converters +# +CONFIG_AD5064=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5592R=m +CONFIG_AD5593R=m +CONFIG_AD5504=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5755=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5791=m +CONFIG_AD7303=m +CONFIG_AD8801=m +CONFIG_M62332=m +CONFIG_MAX517=m +CONFIG_MAX5821=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_VF610_DAC=m + +# +# IIO dummy driver +# + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS450 is not set +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_HID_SENSOR_GYRO_3D=m +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +CONFIG_KMX61=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_I2C=m +# CONFIG_INV_MPU6050_SPI is not set + +# +# Light sensors +# +CONFIG_ACPI_ALS=m +# CONFIG_ADJD_S311 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_BH1750 is not set +CONFIG_BH1780=m +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_ISL29125 is not set +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_JSA1212=m +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_MAX44000 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +CONFIG_SENSORS_TSL2563=m +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VEML6070 is not set + +# +# Magnetometer sensors +# +CONFIG_AK8974=m +CONFIG_AK8975=m +CONFIG_AK09911=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_MAG3110=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_MMC35240=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m + +# +# Inclinometer sensors +# +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set + +# +# Digital potentiometers +# +CONFIG_DS1803=m +CONFIG_MAX5487=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_TPL0102=m + +# +# Pressure sensors +# +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HP03=m +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_T5403=m +CONFIG_HP206C=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set + +# +# Proximity sensors +# +# CONFIG_LIDAR_LITE_V2 is not set +CONFIG_SX9500=m + +# +# Temperature sensors +# +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_MLX90614 is not set +# CONFIG_TMP006 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_FSL_FTM is not set +CONFIG_PWM_LPSS=m +CONFIG_PWM_LPSS_PCI=m +CONFIG_PWM_LPSS_PLATFORM=m +CONFIG_PWM_PCA9685=m +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +CONFIG_POWERCAP=y +CONFIG_INTEL_RAPL=m +# CONFIG_MCB is not set + +# +# Performance monitor support +# +CONFIG_RAS=y +# CONFIG_MCE_AMD_INJ is not set +CONFIG_THUNDERBOLT=m + +# +# Android +# +# CONFIG_ANDROID is not set +CONFIG_LIBNVDIMM=m +CONFIG_BLK_DEV_PMEM=m +CONFIG_ND_BLK=m +CONFIG_ND_CLAIM=y +CONFIG_ND_BTT=m +CONFIG_BTT=y +CONFIG_ND_PFN=m +CONFIG_NVDIMM_PFN=y +CONFIG_NVDIMM_DAX=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_PMEM=m +CONFIG_NR_DEV_DAX=32768 +CONFIG_NVMEM=m +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set + +# +# FPGA Configuration Support +# +# CONFIG_FPGA is not set + +# +# Firmware Drivers +# +CONFIG_EDD=m +# CONFIG_EDD_OFF is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DELL_RBU=m +CONFIG_DCDBAS=m +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_IBFT=m +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=m +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +CONFIG_UEFI_CPER=y + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=m +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_EXT4_ENCRYPTION=y +CONFIG_EXT4_FS_ENCRYPTION=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=m +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=m +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +# CONFIG_JFS_STATISTICS is not set +CONFIG_XFS_FS=m +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +CONFIG_NILFS2_FS=m +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +# CONFIG_F2FS_CHECK_FS is not set +CONFIG_F2FS_FS_ENCRYPTION=y +# CONFIG_F2FS_IO_TRACE is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +CONFIG_FS_DAX=y +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +CONFIG_FS_ENCRYPTION=m +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +CONFIG_AUTOFS4_FS=m +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_OVERLAY_FS=m + +# +# Caches +# +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# CONFIG_CACHEFILES_HISTOGRAM is not set + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=m +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="ascii" +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=m +CONFIG_EFIVAR_FS=m +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +# CONFIG_HFSPLUS_FS_POSIX_ACL is not set +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_SUMMARY=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_CMODE_NONE is not set +CONFIG_JFFS2_CMODE_PRIORITY=y +# CONFIG_JFFS2_CMODE_SIZE is not set +# CONFIG_JFFS2_CMODE_FAVOURLZO is not set +CONFIG_UBIFS_FS=m +CONFIG_UBIFS_FS_ADVANCED_COMPR=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +# CONFIG_LOGFS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=m +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +# CONFIG_HPFS_FS is not set +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +# CONFIG_ROMFS_BACKED_BY_BLOCK is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_BACKED_BY_BOTH=y +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROMFS_ON_MTD=y +CONFIG_PSTORE=y +CONFIG_PSTORE_ZLIB_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +CONFIG_PSTORE_RAM=m +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_EXOFS_FS=m +# CONFIG_EXOFS_DEBUG is not set +CONFIG_ORE=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=m +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_SWAP=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_OBJLAYOUT=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +# CONFIG_NFS_V4_1_MIGRATION is not set +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFS_FSCACHE=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DEBUG=y +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_BLOCKLAYOUT=y +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +CONFIG_NFSD_V4_SECURITY_LABEL=y +# CONFIG_NFSD_FAULT_INJECTION is not set +CONFIG_GRACE_PERIOD=m +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_SWAP=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CIFS=m +# CONFIG_CIFS_STATS is not set +CONFIG_CIFS_WEAK_PW_HASH=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_ACL=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_SMB2=y +# CONFIG_CIFS_SMB311 is not set +CONFIG_CIFS_FSCACHE=y +CONFIG_NCP_FS=m +CONFIG_NCPFS_PACKET_SIGNING=y +CONFIG_NCPFS_IOCTL_LOCKING=y +CONFIG_NCPFS_STRONG=y +CONFIG_NCPFS_NFS_NS=y +CONFIG_NCPFS_OS2_NS=y +# CONFIG_NCPFS_SMALLDOS is not set +CONFIG_NCPFS_NLS=y +CONFIG_NCPFS_EXTRAS=y +CONFIG_CODA_FS=m +CONFIG_AFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FSCACHE=y +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_DLM=m +CONFIG_DLM_DEBUG=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +# CONFIG_FRAME_POINTER is not set +# CONFIG_STACK_VALIDATION is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POISONING_NO_SANITY=y +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KMEMCHECK=y +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +CONFIG_LOCKUP_DETECTOR=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_TIMER_STATS is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +CONFIG_STACKTRACE=y +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_CPU_NOTIFIER_ERROR_INJECT=m +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENT=y +CONFIG_UPROBE_EVENT=y +CONFIG_BPF_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_MMIOTRACE_TEST is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_ENUM_MAP_FILE is not set +CONFIG_TRACING_EVENTS_GPIO=y + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_KPROBES_SANITY_TEST is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_TEST_LKM is not set +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_BPF=m +CONFIG_TEST_FIRMWARE=m +# CONFIG_TEST_UDELAY is not set +CONFIG_MEMTEST=y +CONFIG_TEST_STATIC_KEYS=m +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +CONFIG_EARLY_PRINTK_EFI=y +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_DEBUG_WX=y +CONFIG_DEBUG_SET_MODULE_RONX=y +# CONFIG_DEBUG_NX_TEST is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_TRUSTED_KEYS is not set +CONFIG_ENCRYPTED_KEYS=m +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +# CONFIG_INTEL_TXT is not set +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HAVE_ARCH_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1 +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_FIPS=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=m +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=m +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_DH=m +# CONFIG_CRYPTO_ECDH is not set +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_CRYPTD=m +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_ABLK_HELPER=m +CONFIG_CRYPTO_GLUE_HELPER_X86=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_HMAC=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=m +CONFIG_CRYPTO_CRC32C_INTEL=m +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA512_SSSE3=m +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +# CONFIG_CRYPTO_SHA3 is not set +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_X86_64=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_SALSA20=m +CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_JITTERENTROPY=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +# CONFIG_CRYPTO_USER_API_RNG is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_PADLOCK=m +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=m +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_CHELSIO is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +CONFIG_SIGNED_PE_FILE_VERIFICATION=y + +# +# Certificates for signature checking +# +CONFIG_MODULE_SIG_KEY="" +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_KVM_COMPAT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_INTEL=m +CONFIG_KVM_AMD=m +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_KVM_DEVICE_ASSIGNMENT=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VHOST=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_CRC_CCITT=m +CONFIG_CRC16=m +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_ENC8=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_BCH=m +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_INTERVAL_TREE=y +CONFIG_RADIX_TREE_MULTIORDER=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m +CONFIG_CLZ_TAB=y +CONFIG_CORDIC=m +# CONFIG_DDR is not set +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_SG_SPLIT is not set +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_MMIO_FLUSH=y +CONFIG_SBITMAP=y diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 9015c325..9f7248b9 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -1,33 +1,27 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.15.0 Kernel Configuration +# Linux/x86 5.4.65 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 # -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" CONFIG_CC_IS_GCC=y CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y # # General setup # -CONFIG_BROKEN_ON_SMP=y CONFIG_INIT_ENV_ARG_LIMIT=32 # CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION="-upboard" # CONFIG_LOCALVERSION_AUTO is not set CONFIG_BUILD_SALT="" CONFIG_HAVE_KERNEL_GZIP=y @@ -36,39 +30,46 @@ CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_XZ=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y # CONFIG_KERNEL_GZIP is not set # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set CONFIG_KERNEL_XZ=y # CONFIG_KERNEL_LZO is not set # CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set +CONFIG_VERSION_SIGNATURE="" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y # # IRQ subsystem # CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y CONFIG_GENERIC_IRQ_RESERVATION_MODE=y CONFIG_IRQ_FORCED_THREADING=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set # end of IRQ subsystem CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_ARCH_CLOCKSOURCE_INIT=y CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y CONFIG_GENERIC_TIME_VSYSCALL=y @@ -76,29 +77,21 @@ CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y # # Timers subsystem # -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set # CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set +CONFIG_HIGH_RES_TIMERS=y # end of Timers subsystem -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -# CONFIG_BPF_SYSCALL is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y # CONFIG_PREEMPT is not set # @@ -107,73 +100,130 @@ CONFIG_PREEMPT_NONE=y CONFIG_TICK_CPU_ACCOUNTING=y # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set # CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y # CONFIG_PSI is not set # end of CPU/Task time and stats accounting +CONFIG_CPU_ISOLATION=y + # # RCU Subsystem # -CONFIG_TINY_RCU=y +CONFIG_TREE_RCU=y # CONFIG_RCU_EXPERT is not set CONFIG_SRCU=y -CONFIG_TINY_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y # end of RCU Subsystem CONFIG_BUILD_BIN2C=y # CONFIG_IKCONFIG is not set # CONFIG_IKHEADERS is not set CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # # Scheduler features # +# CONFIG_UCLAMP_TASK is not set # end of Scheduler features CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y # CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -# CONFIG_BLK_DEV_INITRD is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_LD_ORPHAN_WARN=y +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_INITRAMFS_COMPRESSION=".gz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y -# CONFIG_BUG is not set +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y # CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set +CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_FUTEX_PI=y CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_USERFAULTFD is not set +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_BPF_SYSCALL=y +CONFIG_USERFAULTFD=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y # CONFIG_PC104 is not set @@ -184,14 +234,16 @@ CONFIG_PERF_EVENTS=y # CONFIG_DEBUG_PERF_USE_VMALLOC is not set # end of Kernel Performance Events And Counters -# CONFIG_VM_EVENT_COUNTERS is not set +CONFIG_VM_EVENT_COUNTERS=y # CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set +CONFIG_SLAB=y # CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y # end of General setup CONFIG_64BIT=y @@ -199,6 +251,7 @@ CONFIG_X86_64=y CONFIG_X86=y CONFIG_INSTRUCTION_DECODER=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_MMU=y @@ -207,18 +260,23 @@ CONFIG_ARCH_MMAP_RND_BITS_MAX=32 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_FILTER_PGPROT=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_FIX_EARLYCON_MEM=y CONFIG_PGTABLE_LEVELS=4 @@ -227,18 +285,45 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -# CONFIG_SMP is not set +CONFIG_ZONE_DMA=y +CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y # CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set +CONFIG_RETPOLINE=y # CONFIG_X86_CPU_RESCTRL is not set # CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_XXL=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PV=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_512GB=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_KVM_DEBUG_FS is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_JAILHOUSE_GUEST is not set +# CONFIG_ACRN_GUEST is not set # CONFIG_MK8 is not set # CONFIG_MPSC is not set # CONFIG_MCORE2 is not set @@ -251,8 +336,6 @@ CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y # CONFIG_PROCESSOR_SELECT is not set CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y @@ -260,134 +343,249 @@ CONFIG_CPU_SUP_HYGON=y CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_ZHAOXIN=y CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y # # Performance monitoring # -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y # CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y # end of Performance monitoring -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y # CONFIG_I8K is not set -# CONFIG_MICROCODE is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # CONFIG_X86_5LEVEL is not set CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set # CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +CONFIG_NUMA_EMU=y +CONFIG_NODES_SHIFT=6 CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -# CONFIG_MTRR is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_INTEL_TSX_MODE_ON is not set # CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set CONFIG_EFI=y CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y # CONFIG_HZ_100 is not set CONFIG_HZ_250=y # CONFIG_HZ_300 is not set # CONFIG_HZ_1000 is not set CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y CONFIG_KEXEC_FILE=y CONFIG_ARCH_HAS_KEXEC_PURGATORY=y # CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set +CONFIG_CRASH_DUMP=y CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y CONFIG_X86_NEED_RELOCS=y CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200keep console=ttyS0,115200 console=ttyS1,115200" CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_MODIFY_LDT_SYSCALL=y CONFIG_HAVE_LIVEPATCH=y # end of Processor type and features CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y # # Power management and ACPI options # -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set CONFIG_ARCH_SUPPORTS_ACPI=y CONFIG_ACPI=y CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y # CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_SPCR_TABLE=y CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y # CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y CONFIG_ACPI_HOTPLUG_IOAPIC=y # CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_HMAT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_ACPI_DPTF is not set -# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_DPTF_POWER is not set +CONFIG_ACPI_EXTLOG=y # CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +CONFIG_SFI=y # # CPU Frequency scaling # -# CONFIG_CPU_FREQ is not set +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# # end of CPU Frequency scaling # # CPU Idle # -# CONFIG_CPU_IDLE is not set +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set +CONFIG_HALTPOLL_CPUIDLE=y # end of CPU Idle + +CONFIG_INTEL_IDLE=y # end of Power management and ACPI options # @@ -395,35 +593,77 @@ CONFIG_ACPI_PRMT=y # CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y CONFIG_MMCONF_FAM10H=y # CONFIG_PCI_CNB20LE_QUIRK is not set # CONFIG_ISA_BUS is not set CONFIG_ISA_DMA_API=y CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # # Binary Emulations # -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set +CONFIG_IA32_EMULATION=y +CONFIG_X86_X32=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y # end of Binary Emulations +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + CONFIG_HAVE_KVM=y # CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y # # General architecture-dependent options # CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y -CONFIG_GENERIC_ENTRY=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y CONFIG_HAVE_IOREMAP_PROT=y @@ -433,7 +673,6 @@ CONFIG_HAVE_OPTPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y @@ -442,11 +681,11 @@ CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_ARCH_HAS_SET_DIRECT_MAP=y CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RSEQ=y CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y @@ -456,24 +695,23 @@ CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set +CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_ARCH_STACKLEAK=y CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y CONFIG_HAVE_MOVE_PMD=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y @@ -483,65 +721,76 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y CONFIG_HAVE_MOD_ARCH_SPECIFIC=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_EXIT_THREAD=y CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_COPY_THREAD_TLS=y CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_64BIT_TIME=y +CONFIG_COMPAT_32BIT_TIME=y CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y # # GCOV-based kernel profiling # +# CONFIG_GCOV_KERNEL is not set CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y # end of GCOV-based kernel profiling +CONFIG_PLUGIN_HOSTCC="" CONFIG_HAVE_GCC_PLUGINS=y # end of General architecture-dependent options CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 +CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_MODULES_TREE_LOOKUP=y # CONFIG_BLOCK is not set +CONFIG_ASN1=y CONFIG_INLINE_SPIN_UNLOCK_IRQ=y CONFIG_INLINE_READ_UNLOCK=y CONFIG_INLINE_READ_UNLOCK_IRQ=y CONFIG_INLINE_WRITE_UNLOCK=y CONFIG_INLINE_WRITE_UNLOCK_IRQ=y CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_QUEUED_RWLOCKS=y CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y # # Executable file formats # CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y # CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set +CONFIG_COREDUMP=y # end of Executable file formats # @@ -550,84 +799,206 @@ CONFIG_ELFCORE=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_MEMORY_ISOLATION=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMORY_HOTREMOVE=y CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y # CONFIG_CLEANCACHE is not set # CONFIG_CMA is not set -# CONFIG_ZPOOL is not set +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set # CONFIG_ZSMALLOC is not set CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set # CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set -CONFIG_ZONE_DMA32=y +CONFIG_ZONE_DEVICE=y +# CONFIG_DEVICE_PRIVATE is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y # CONFIG_PERCPU_STATS is not set - -# -# GUP_TEST needs to have DEBUG_FS enabled -# +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set CONFIG_ARCH_HAS_PTE_SPECIAL=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring # end of Memory Management options CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set # CONFIG_TLS is not set +CONFIG_XFRM=y # CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set # CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y # CONFIG_IP_PNP_BOOTP is not set # CONFIG_IP_PNP_RARP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y # CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set +CONFIG_NET_UDP_TUNNEL=y +CONFIG_NET_FOU=y +CONFIG_NET_FOU_IP_TUNNELS=y # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=y CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=y +CONFIG_TCP_CONG_HTCP=y +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +# CONFIG_TCP_CONG_BBR is not set +# CONFIG_DEFAULT_BIC is not set +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_HTCP is not set +# CONFIG_DEFAULT_WESTWOOD is not set +# CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_FOU=y +CONFIG_IPV6_FOU_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_NETDEV is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + # CONFIG_BPFILTER is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set @@ -636,6 +1007,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_ATM is not set # CONFIG_L2TP is not set # CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y # CONFIG_NET_DSA is not set # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set @@ -644,27 +1016,113 @@ CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set # CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +# CONFIG_NET_SCH_CBQ is not set +# CONFIG_NET_SCH_HTB is not set +# CONFIG_NET_SCH_HFSC is not set +# CONFIG_NET_SCH_PRIO is not set +# CONFIG_NET_SCH_MULTIQ is not set +# CONFIG_NET_SCH_RED is not set +# CONFIG_NET_SCH_SFB is not set +# CONFIG_NET_SCH_SFQ is not set +# CONFIG_NET_SCH_TEQL is not set +# CONFIG_NET_SCH_TBF is not set +# CONFIG_NET_SCH_CBS is not set +# CONFIG_NET_SCH_ETF is not set +# CONFIG_NET_SCH_TAPRIO is not set +# CONFIG_NET_SCH_GRED is not set +# CONFIG_NET_SCH_DSMARK is not set +# CONFIG_NET_SCH_NETEM is not set +# CONFIG_NET_SCH_DRR is not set +# CONFIG_NET_SCH_MQPRIO is not set +# CONFIG_NET_SCH_SKBPRIO is not set +# CONFIG_NET_SCH_CHOKE is not set +# CONFIG_NET_SCH_QFQ is not set +# CONFIG_NET_SCH_CODEL is not set +# CONFIG_NET_SCH_FQ_CODEL is not set +# CONFIG_NET_SCH_CAKE is not set +# CONFIG_NET_SCH_FQ is not set +# CONFIG_NET_SCH_HHF is not set +# CONFIG_NET_SCH_PIE is not set +# CONFIG_NET_SCH_INGRESS is not set +# CONFIG_NET_SCH_PLUG is not set +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +# CONFIG_NET_CLS_BASIC is not set +# CONFIG_NET_CLS_TCINDEX is not set +# CONFIG_NET_CLS_ROUTE4 is not set +# CONFIG_NET_CLS_FW is not set +# CONFIG_NET_CLS_U32 is not set +# CONFIG_NET_CLS_RSVP is not set +# CONFIG_NET_CLS_RSVP6 is not set +# CONFIG_NET_CLS_FLOW is not set +# CONFIG_NET_CLS_CGROUP is not set +# CONFIG_NET_CLS_BPF is not set +# CONFIG_NET_CLS_FLOWER is not set +# CONFIG_NET_CLS_MATCHALL is not set +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +# CONFIG_NET_EMATCH_CMP is not set +# CONFIG_NET_EMATCH_NBYTE is not set +# CONFIG_NET_EMATCH_U32 is not set +# CONFIG_NET_EMATCH_META is not set +# CONFIG_NET_EMATCH_TEXT is not set +CONFIG_NET_CLS_ACT=y +# CONFIG_NET_ACT_POLICE is not set +# CONFIG_NET_ACT_GACT is not set +# CONFIG_NET_ACT_MIRRED is not set +# CONFIG_NET_ACT_SAMPLE is not set +# CONFIG_NET_ACT_NAT is not set +# CONFIG_NET_ACT_PEDIT is not set +# CONFIG_NET_ACT_SIMP is not set +# CONFIG_NET_ACT_SKBEDIT is not set +# CONFIG_NET_ACT_CSUM is not set +# CONFIG_NET_ACT_MPLS is not set +# CONFIG_NET_ACT_VLAN is not set +# CONFIG_NET_ACT_BPF is not set +# CONFIG_NET_ACT_SKBMOD is not set +# CONFIG_NET_ACT_IFE is not set +# CONFIG_NET_ACT_TUNNEL_KEY is not set +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +# CONFIG_DNS_RESOLVER is not set # CONFIG_BATMAN_ADV is not set # CONFIG_OPENVSWITCH is not set # CONFIG_VSOCKETS is not set # CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=y +# CONFIG_MPLS_ROUTING is not set # CONFIG_NET_NSH is not set # CONFIG_HSR is not set # CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set +CONFIG_NET_L3_MASTER_DEV=y # CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y # # Network testing # # CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set # end of Network testing # end of Networking options @@ -673,8 +1131,9 @@ CONFIG_BQL=y # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set # CONFIG_RFKILL is not set # CONFIG_NET_9P is not set # CONFIG_CAIF is not set @@ -683,9 +1142,10 @@ CONFIG_BQL=y # CONFIG_PSAMPLE is not set # CONFIG_NET_IFE is not set # CONFIG_LWTUNNEL is not set -CONFIG_NET_SELFTESTS=y +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y # CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y # # Device Drivers @@ -695,43 +1155,60 @@ CONFIG_HAVE_EISA=y CONFIG_HAVE_PCI=y CONFIG_PCI=y CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y # CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y # CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y # CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=y +CONFIG_PCI_ATS=y CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +# CONFIG_PCI_P2PDMA is not set CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -# CONFIG_HOTPLUG_PCI is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +CONFIG_HOTPLUG_PCI_CPCI=y +# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set +# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set # # PCI controller drivers # # -# DesignWare PCI Core Support +# Cadence PCIe controllers support # -# end of DesignWare PCI Core Support +# end of Cadence PCIe controllers support -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support +# CONFIG_VMD is not set # -# Cadence PCIe controllers support +# DesignWare PCI Core Support # -# end of Cadence PCIe controllers support +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support # end of PCI controller drivers # @@ -746,7 +1223,6 @@ CONFIG_PCIE_BUS_DEFAULT=y # CONFIG_PCI_SW_SWITCHTEC is not set # end of PCI switch controller drivers -# CONFIG_CXL_BUS is not set # CONFIG_PCCARD is not set # CONFIG_RAPIDIO is not set @@ -754,23 +1230,27 @@ CONFIG_PCIE_BUS_DEFAULT=y # Generic Driver Options # # CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y # # Firmware loader # CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set # CONFIG_FW_LOADER_COMPRESS is not set # end of Firmware loader -# CONFIG_ALLOW_DEV_COREDUMP is not set +CONFIG_ALLOW_DEV_COREDUMP=y # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_SYS_HYPERVISOR=y CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y # end of Generic Driver Options @@ -778,61 +1258,16 @@ CONFIG_GENERIC_CPU_VULNERABILITIES=y # # Bus devices # -# CONFIG_MHI_BUS is not set # end of Bus devices # CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -# CONFIG_EFI_CUSTOM_SSDT_OVERLAYS is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - # CONFIG_GNSS is not set # CONFIG_MTD is not set # CONFIG_OF is not set CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y # CONFIG_PARPORT is not set CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y +# CONFIG_PNP_DEBUG_MESSAGES is not set # # Protocols @@ -864,9 +1299,9 @@ CONFIG_PNPACPI=y # CONFIG_HMC6352 is not set # CONFIG_DS1682 is not set # CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set # CONFIG_C2PORT is not set # @@ -885,6 +1320,7 @@ CONFIG_PNPACPI=y # # Texas Instruments shared transport line discipline # +# CONFIG_TI_ST is not set # end of Texas Instruments shared transport line discipline # CONFIG_SENSORS_LIS3_I2C is not set @@ -893,14 +1329,57 @@ CONFIG_PNPACPI=y # CONFIG_INTEL_MEI_ME is not set # CONFIG_INTEL_MEI_TXE is not set # CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + # CONFIG_GENWQE is not set # CONFIG_ECHO is not set # CONFIG_MISC_ALCOR_PCI is not set # CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set # CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set # end of Misc devices +CONFIG_HAVE_IDE=y + # # SCSI device support # @@ -921,24 +1400,32 @@ CONFIG_NETDEVICES=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set # CONFIG_EQUALIZER is not set +# CONFIG_IFB is not set # CONFIG_NET_TEAM is not set # CONFIG_MACVLAN is not set # CONFIG_IPVLAN is not set # CONFIG_VXLAN is not set # CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_NETCONSOLE is not set # CONFIG_TUN is not set # CONFIG_TUN_VNET_CROSS_LE is not set # CONFIG_VETH is not set # CONFIG_NLMON is not set +# CONFIG_NET_VRF is not set # CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_3COM is not set # CONFIG_NET_VENDOR_ADAPTEC is not set @@ -951,6 +1438,7 @@ CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_AQUANTIA is not set # CONFIG_NET_VENDOR_ARC is not set # CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set # CONFIG_NET_VENDOR_BROADCOM is not set # CONFIG_NET_VENDOR_BROCADE is not set # CONFIG_NET_VENDOR_CADENCE is not set @@ -965,21 +1453,27 @@ CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_EMULEX is not set # CONFIG_NET_VENDOR_EZCHIP is not set # CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HP is not set # CONFIG_NET_VENDOR_HUAWEI is not set CONFIG_NET_VENDOR_I825XX=y CONFIG_NET_VENDOR_INTEL=y # CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y CONFIG_IGB=y -# CONFIG_IGBVF is not set +# CONFIG_IGB_HWMON is not set +CONFIG_IGBVF=y # CONFIG_IXGB is not set # CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_NET_VENDOR_MICROSOFT is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40E_DCB is not set +# CONFIG_I40EVF is not set +CONFIG_ICE=y +# CONFIG_FM10K is not set +CONFIG_IGC=y # CONFIG_JME is not set -# CONFIG_NET_VENDOR_LITEX is not set # CONFIG_NET_VENDOR_MARVELL is not set # CONFIG_NET_VENDOR_MELLANOX is not set # CONFIG_NET_VENDOR_MICREL is not set @@ -1020,92 +1514,30 @@ CONFIG_IGB=y # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_MOTORCOMM_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - +# CONFIG_MDIO_DEVICE is not set +# CONFIG_PHYLIB is not set # CONFIG_PPP is not set # CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set # CONFIG_WLAN is not set -# CONFIG_WAN is not set # -# Wireless WAN +# Enable WiMAX (Networking options) to see the WiMAX drivers # -# CONFIG_WWAN is not set -# end of Wireless WAN - +# CONFIG_WAN is not set +# CONFIG_XEN_NETDEV_FRONTEND is not set +# CONFIG_XEN_NETDEV_BACKEND is not set # CONFIG_VMXNET3 is not set # CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set # CONFIG_NET_FAILOVER is not set # CONFIG_ISDN is not set @@ -1113,14 +1545,19 @@ CONFIG_MDIO_DEVRES=y # Input device support # CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y # CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set # # Userland interfaces # -# CONFIG_INPUT_MOUSEDEV is not set +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_EVDEV is not set # CONFIG_INPUT_EVBUG is not set @@ -1137,8 +1574,12 @@ CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_QT2160 is not set # CONFIG_KEYBOARD_DLINK_DIR685 is not set # CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set # CONFIG_KEYBOARD_TCA6416 is not set # CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set # CONFIG_KEYBOARD_LM8333 is not set # CONFIG_KEYBOARD_MAX7359 is not set # CONFIG_KEYBOARD_MCS is not set @@ -1148,6 +1589,7 @@ CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SAMSUNG is not set # CONFIG_KEYBOARD_STOWAWAY is not set # CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set # CONFIG_KEYBOARD_XTKBD is not set CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y @@ -1157,21 +1599,145 @@ CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y # CONFIG_MOUSE_PS2_TOUCHKIT is not set CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_PS2_VMMOUSE is not set CONFIG_MOUSE_PS2_SMBUS=y # CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set # CONFIG_MOUSE_CYAPA is not set # CONFIG_MOUSE_ELAN_I2C is not set # CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set # CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_GTCO is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set # CONFIG_RMI4_CORE is not set # @@ -1188,6 +1754,7 @@ CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_ALTERA_PS2 is not set # CONFIG_SERIO_PS2MULT is not set # CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set # CONFIG_USERIO is not set # CONFIG_GAMEPORT is not set # end of Hardware I/O ports @@ -1200,11 +1767,28 @@ CONFIG_TTY=y CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set # # Serial drivers @@ -1212,15 +1796,21 @@ CONFIG_UNIX98_PTYS=y CONFIG_SERIAL_EARLYCON=y CONFIG_SERIAL_8250=y # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y # CONFIG_SERIAL_8250_RT288X is not set # CONFIG_SERIAL_8250_LPSS is not set # CONFIG_SERIAL_8250_MID is not set @@ -1232,42 +1822,46 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=1 CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set # CONFIG_SERIAL_SCCNXP is not set # CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set # CONFIG_SERIAL_ARC is not set # CONFIG_SERIAL_RP2 is not set # CONFIG_SERIAL_FSL_LPUART is not set # CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set # end of Serial drivers -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set +CONFIG_SERIAL_MCTRL_GPIO=y # CONFIG_SERIAL_DEV_BUS is not set # CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y # CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +# CONFIG_NVRAM is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y # CONFIG_HANGCHECK_TIMER is not set # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y # CONFIG_XILLYBUS is not set -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set # end of Character devices +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + # # I2C support # @@ -1313,9 +1907,11 @@ CONFIG_I2C_ALGOBIT=y # # I2C system bus drivers (mostly embedded / system-on-chip) # +# CONFIG_I2C_CBUS_GPIO is not set # CONFIG_I2C_DESIGNWARE_PLATFORM is not set # CONFIG_I2C_DESIGNWARE_PCI is not set # CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set # CONFIG_I2C_OCORES is not set # CONFIG_I2C_PCA_PLATFORM is not set # CONFIG_I2C_SIMTEC is not set @@ -1324,16 +1920,20 @@ CONFIG_I2C_ALGOBIT=y # # External I2C/SMBus adapter drivers # +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set # CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set # # Other I2C/SMBus bus drivers # # CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set # end of I2C Hardware Bus support -# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set @@ -1348,21 +1948,375 @@ CONFIG_I2C_ALGOBIT=y # # PTP clock support # -CONFIG_PTP_1588_CLOCK_OPTIONAL=y +# CONFIG_PTP_1588_CLOCK is not set # # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. # # end of PTP clock support -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_ICH is not set +# CONFIG_GPIO_LYNXPOINT is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set # CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set # CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set +# CONFIG_XEN_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set CONFIG_SSB_POSSIBLE=y # CONFIG_SSB is not set CONFIG_BCMA_POSSIBLE=y @@ -1373,6 +2327,7 @@ CONFIG_BCMA_POSSIBLE=y # # CONFIG_MFD_AS3711 is not set # CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set # CONFIG_MFD_BCM590XX is not set # CONFIG_MFD_BD9571MWV is not set # CONFIG_MFD_AXP20X_I2C is not set @@ -1383,16 +2338,16 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_DA9062 is not set # CONFIG_MFD_DA9063 is not set # CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set # CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set # CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set # CONFIG_LPC_ICH is not set # CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set # CONFIG_MFD_INTEL_LPSS_ACPI is not set # CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set # CONFIG_MFD_JANZ_CMODIO is not set # CONFIG_MFD_KEMPLD is not set # CONFIG_MFD_88PM800 is not set @@ -1405,18 +2360,20 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_MAX8925 is not set # CONFIG_MFD_MAX8997 is not set # CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set # CONFIG_MFD_RETU is not set # CONFIG_MFD_PCF50633 is not set # CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set # CONFIG_MFD_SI476X_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set # CONFIG_MFD_SYSCON is not set # CONFIG_MFD_TI_AM335X_TSCADC is not set # CONFIG_MFD_LP3943 is not set @@ -1424,11 +2381,13 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_TI_LMU is not set # CONFIG_MFD_PALMAS is not set # CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set # CONFIG_TPS6507X is not set # CONFIG_MFD_TPS65086 is not set # CONFIG_MFD_TPS65090 is not set # CONFIG_MFD_TI_LP873X is not set # CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set # CONFIG_MFD_TPS65912_I2C is not set # CONFIG_MFD_TPS80031 is not set # CONFIG_TWL4030_CORE is not set @@ -1442,40 +2401,95 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_WM831X_I2C is not set # CONFIG_MFD_WM8350_I2C is not set # CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set +# CONFIG_MFD_UPBOARD_FPGA is not set # end of Multifunction device drivers -# CONFIG_REGULATOR is not set +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set # CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set # CONFIG_MEDIA_SUPPORT is not set # # Graphics support # -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y # CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set # # ARM devices # # end of ARM devices +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# CONFIG_DRM_XEN is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + # # Frame buffer Devices # CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers @@ -1486,9 +2500,9 @@ CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_ARC is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=y -# CONFIG_FB_VESA is not set -# CONFIG_FB_EFI is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set # CONFIG_FB_OPENCORES is not set @@ -1497,6 +2511,7 @@ CONFIG_FB_VGA16=y # CONFIG_FB_RIVA is not set # CONFIG_FB_I740 is not set # CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set # CONFIG_FB_MATROX is not set # CONFIG_FB_RADEON is not set # CONFIG_FB_ATY128 is not set @@ -1504,6 +2519,7 @@ CONFIG_FB_VGA16=y # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set @@ -1513,8 +2529,11 @@ CONFIG_FB_VGA16=y # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set # CONFIG_FB_IBM_GXT4500 is not set # CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_SIMPLE is not set @@ -1525,25 +2544,38 @@ CONFIG_FB_VGA16=y # Backlight & LCD device support # # CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set # end of Backlight & LCD device support -CONFIG_VGASTATE=y - # # Console display driver support # CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_FRAMEBUFFER_CONSOLE is not set +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set # end of Console display driver support -CONFIG_LOGO=y -CONFIG_LOGO_LINUX_MONO=y -CONFIG_LOGO_LINUX_VGA16=y -CONFIG_LOGO_LINUX_CLUT224=y +# CONFIG_LOGO is not set # end of Graphics support # CONFIG_SOUND is not set @@ -1552,8 +2584,8 @@ CONFIG_LOGO_LINUX_CLUT224=y # HID support # CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y # CONFIG_UHID is not set CONFIG_HID_GENERIC=y @@ -1561,26 +2593,37 @@ CONFIG_HID_GENERIC=y # Special HID drivers # # CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set # CONFIG_HID_ACRUX is not set # CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set # CONFIG_HID_AUREAL is not set # CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set # CONFIG_HID_CHERRY is not set # CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set # CONFIG_HID_COUGAR is not set # CONFIG_HID_MACALLY is not set # CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set # CONFIG_HID_CYPRESS is not set # CONFIG_HID_DRAGONRISE is not set # CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set # CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set # CONFIG_HID_EZKEY is not set # CONFIG_HID_GEMBIRD is not set # CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set # CONFIG_HID_WALTOP is not set # CONFIG_HID_VIEWSONIC is not set # CONFIG_HID_GYRATION is not set @@ -1590,7 +2633,9 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_TWINHAN is not set # CONFIG_HID_KENSINGTON is not set # CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set # CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set # CONFIG_HID_MAGICMOUSE is not set # CONFIG_HID_MALTRON is not set # CONFIG_HID_MAYFLASH is not set @@ -1599,16 +2644,19 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_MONTEREY is not set # CONFIG_HID_MULTITOUCH is not set # CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set # CONFIG_HID_ORTEK is not set # CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set # CONFIG_HID_PETALYNX is not set # CONFIG_HID_PICOLCD is not set # CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set # CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set # CONFIG_HID_SAITEK is not set # CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set # CONFIG_HID_SPEEDLINK is not set # CONFIG_HID_STEAM is not set # CONFIG_HID_STEELSERIES is not set @@ -1618,7 +2666,12 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_SMARTJOYPLUS is not set # CONFIG_HID_TIVO is not set # CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set # CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set # CONFIG_HID_XINMO is not set # CONFIG_HID_ZEROPLUS is not set # CONFIG_HID_ZYDACRON is not set @@ -1626,10 +2679,18 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_ALPS is not set # end of Special HID drivers +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + # # I2C HID support # -# CONFIG_I2C_HID_ACPI is not set +# CONFIG_I2C_HID is not set # end of I2C HID support # @@ -1637,74 +2698,471 @@ CONFIG_HID_GENERIC=y # # CONFIG_INTEL_ISH_HID is not set # end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set # -# AMD SFH HID Support +# Miscellaneous USB options # -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +# CONFIG_USB_XHCI_HCD is not set +# CONFIG_USB_EHCI_HCD is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_APU is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXCPLD is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y # CONFIG_INFINIBAND is not set CONFIG_EDAC_ATOMIC_SCRUB=y CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_AMD64 is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set CONFIG_RTC_LIB=y CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_AM1805 is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set # # DMABUF options # # CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set # end of DMABUF options # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set -# CONFIG_VFIO is not set # CONFIG_VIRT_DRIVERS is not set # CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set # # Microsoft Hyper-V guest support # +# CONFIG_HYPERV is not set # end of Microsoft Hyper-V guest support +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCIDEV_BACKEND=y +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +# end of Xen driver support + # CONFIG_GREYBUS is not set +CONFIG_STAGING=y # CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set +# CONFIG_FB_SM750 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +CONFIG_STAGING_MEDIA=y + +# +# Android +# +# end of Android + +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_QLGE is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DELL_UART_BACKLIGHT is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ACPI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set +# CONFIG_INTEL_PMC_IPC is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_TURBO_MAX_3 is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_ATOMISP2_PM is not set +# CONFIG_PCENGINES_APU2 is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +CONFIG_UPBOARD_LEGACY=y CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y # -# Clock driver for ARM Reference designs +# Common Clock Framework # -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - # CONFIG_COMMON_CLK_MAX9485 is not set # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set # CONFIG_COMMON_CLK_SI544 is not set # CONFIG_COMMON_CLK_CDCE706 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_XILINX_VCU is not set +# CONFIG_COMMON_CLK_PWM is not set +# end of Common Clock Framework + # CONFIG_HWSPINLOCK is not set # @@ -1714,7 +3172,9 @@ CONFIG_CLKEVT_I8253=y CONFIG_CLKBLD_I8253=y # end of Clock Source drivers -# CONFIG_MAILBOX is not set +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set # CONFIG_IOMMU_SUPPORT is not set # @@ -1726,6 +3186,7 @@ CONFIG_CLKBLD_I8253=y # # Rpmsg drivers # +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set # CONFIG_RPMSG_VIRTIO is not set # end of Rpmsg drivers @@ -1740,6 +3201,11 @@ CONFIG_CLKBLD_I8253=y # # end of Amlogic SoC drivers +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + # # Broadcom SoC drivers # @@ -1755,11 +3221,6 @@ CONFIG_CLKBLD_I8253=y # # end of i.MX SoC drivers -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - # # Qualcomm SoC drivers # @@ -1770,16 +3231,35 @@ CONFIG_CLKBLD_I8253=y # # Xilinx SoC drivers # +# CONFIG_XILINX_VCU is not set # end of Xilinx SoC drivers # end of SOC (System On Chip) specific Drivers -# CONFIG_PM_DEVFREQ is not set +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set # CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set +CONFIG_MEMORY=y # CONFIG_IIO is not set # CONFIG_NTB is not set # CONFIG_VME_BUS is not set -# CONFIG_PWM is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set # # IRQ chip support @@ -1793,14 +3273,14 @@ CONFIG_CLKBLD_I8253=y # PHY Subsystem # CONFIG_GENERIC_PHY=y -# CONFIG_PHY_CAN_TRANSCEIVER is not set # CONFIG_BCM_KONA_USB2_PHY is not set # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set # end of PHY Subsystem -# CONFIG_POWERCAP is not set +CONFIG_POWERCAP=y +# CONFIG_INTEL_RAPL is not set +# CONFIG_IDLE_INJECT is not set # CONFIG_MCB is not set # @@ -1808,8 +3288,9 @@ CONFIG_GENERIC_PHY=y # # end of Performance monitor support -# CONFIG_RAS is not set -# CONFIG_USB4 is not set +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_THUNDERBOLT is not set # # Android @@ -1818,7 +3299,8 @@ CONFIG_GENERIC_PHY=y # end of Android # CONFIG_DAX is not set -# CONFIG_NVMEM is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y # # HW tracing support @@ -1828,7 +3310,7 @@ CONFIG_GENERIC_PHY=y # end of HW tracing support # CONFIG_FPGA is not set -# CONFIG_TEE is not set +CONFIG_PM_OPP=y # CONFIG_UNISYS_VISORBUS is not set # CONFIG_SIOX is not set # CONFIG_SLIMBUS is not set @@ -1836,23 +3318,42 @@ CONFIG_GENERIC_PHY=y # CONFIG_COUNTER is not set # end of Device Drivers +# +# Ubuntu Supplied Third-Party Device Drivers +# +# CONFIG_HIO is not set +# end of Ubuntu Supplied Third-Party Device Drivers + # # File systems # CONFIG_DCACHE_WORD_ACCESS=y # CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y # CONFIG_FS_ENCRYPTION is not set # CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y # CONFIG_AUTOFS4_FS is not set # CONFIG_AUTOFS_FS is not set # CONFIG_FUSE_FS is not set # CONFIG_OVERLAY_FS is not set +# CONFIG_SHIFT_FS is not set # # Caches @@ -1864,27 +3365,54 @@ CONFIG_DCACHE_WORD_ACCESS=y # Pseudo filesystems # CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y CONFIG_PROC_PID_ARCH_STATUS=y CONFIG_KERNFS=y CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y # CONFIG_CONFIGFS_FS is not set CONFIG_EFIVAR_FS=y # end of Pseudo filesystems -# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_AUFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_DEFAULT="utf8" # CONFIG_NLS_CODEPAGE_437 is not set # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set @@ -1940,13 +3468,57 @@ CONFIG_NLS_DEFAULT="iso8859-1" # # Security options # -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set # CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" @@ -1971,27 +3543,35 @@ CONFIG_CRYPTO=y # CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y # CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set # CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set +CONFIG_CRYPTO_AUTHENC=y # # Public-key cryptography # -# CONFIG_CRYPTO_RSA is not set +CONFIG_CRYPTO_RSA=y # CONFIG_CRYPTO_DH is not set # CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set # CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set # # Authenticated Encryption with Associated Data @@ -2038,35 +3618,41 @@ CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y # CONFIG_CRYPTO_CRC32 is not set # CONFIG_CRYPTO_CRC32_PCLMUL is not set # CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set # CONFIG_CRYPTO_GHASH is not set # CONFIG_CRYPTO_POLY1305 is not set # CONFIG_CRYPTO_POLY1305_X86_64 is not set # CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set +CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y # CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA256_SSSE3 is not set # CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y CONFIG_CRYPTO_SHA256=y # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_SM3 is not set # CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set # # Ciphers # -# CONFIG_CRYPTO_AES is not set +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_TI is not set # CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_BLOWFISH_X86_64 is not set # CONFIG_CRYPTO_CAMELLIA is not set @@ -2080,15 +3666,17 @@ CONFIG_CRYPTO_SHA256=y # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_DES3_EDE_X86_64 is not set # CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set # CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set # CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set # CONFIG_CRYPTO_TWOFISH_X86_64 is not set # CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set @@ -2097,8 +3685,8 @@ CONFIG_CRYPTO_SHA256=y # # Compression # -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y # CONFIG_CRYPTO_842 is not set # CONFIG_CRYPTO_LZ4 is not set # CONFIG_CRYPTO_LZ4HC is not set @@ -2114,37 +3702,43 @@ CONFIG_CRYPTO_SHA256=y # CONFIG_CRYPTO_USER_API_SKCIPHER is not set # CONFIG_CRYPTO_USER_API_RNG is not set # CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HASH_INFO=y CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_PADLOCK is not set # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set # CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y # # Certificates for signature checking # +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set # end of Certificates for signature checking +CONFIG_BINARY_PRINTF=y + # # Library routines # @@ -2155,16 +3749,14 @@ CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y CONFIG_GENERIC_FIND_FIRST_BIT=y # CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_IOMAP=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y # CONFIG_CRC_CCITT is not set # CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set +CONFIG_CRC_T10DIF=y # CONFIG_CRC_ITU_T is not set CONFIG_CRC32=y # CONFIG_CRC32_SELFTEST is not set @@ -2177,8 +3769,31 @@ CONFIG_CRC32_SLICEBY8=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set # CONFIG_CRC8 is not set +CONFIG_XXHASH=y # CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y @@ -2187,20 +3802,29 @@ CONFIG_NEED_DMA_MAP_STATE=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y CONFIG_SWIOTLB=y # CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_IOMMU_HELPER=y +CONFIG_CPU_RMAP=y CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_HAS_UACCESS_MCSAFE=y CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set # end of Library routines # @@ -2210,102 +3834,96 @@ CONFIG_ARCH_STACKWALK=y # # printk and dmesg options # -# CONFIG_PRINTK_TIME is not set +CONFIG_PRINTK_TIME=y # CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_CONSOLE_LOGLEVEL_QUIET=4 CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y # end of printk and dmesg options # # Compile-time checks and compiler options # # CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y # CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y # CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y # CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set # end of Compile-time checks and compiler options -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set +CONFIG_DEBUG_MISC=y # # Memory Debugging # -# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_EXTENSION=y # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POISONING_NO_SANITY=y +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set # CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y # CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set CONFIG_HAVE_DEBUG_KMEMLEAK=y # CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y # CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y # CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 # end of Memory Debugging +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set # CONFIG_DEBUG_SHIRQ is not set # -# Debug Oops, Lockups and Hangs +# Debug Lockups and Hangs # -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 # CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs +# end of Debug Lockups and Hangs -# -# Scheduler Debugging -# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y # CONFIG_DEBUG_TIMEKEEPING is not set # @@ -2324,94 +3942,146 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set # CONFIG_LOCK_TORTURE_TEST is not set # CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set # end of Lock Debugging (spinlocks, mutexes, etc...) -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set +CONFIG_STACKTRACE=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set # CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y # CONFIG_DEBUG_PLIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - # CONFIG_DEBUG_CREDENTIALS is not set # # RCU Debugging # -# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set # CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 # CONFIG_RCU_TRACE is not set # CONFIG_RCU_EQS_DEBUG is not set # end of RCU Debugging # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set # CONFIG_LATENCYTOP is not set CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_PREEMPTIRQ_EVENTS is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set # CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y # CONFIG_X86_VERBOSE_BOOTUP is not set CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_EARLY_PRINTK_USB_XDBC is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set # CONFIG_EFI_PGT_DUMP is not set +CONFIG_DEBUG_WX=y +CONFIG_DOUBLEFAULT=y # CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set CONFIG_HAVE_MMIOTRACE_SUPPORT=y # CONFIG_X86_DECODER_SELFTEST is not set CONFIG_IO_DELAY_0X80=y # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set # CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # CONFIG_DEBUG_ENTRY is not set # CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set +CONFIG_X86_DEBUG_FPU=y # CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_ORC=y # CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage +# CONFIG_UNWINDER_GUESS is not set # end of Kernel hacking From 3d35eeada21f5dd203fcf08636017a3110b98ed6 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 5 Jan 2022 09:43:18 -0800 Subject: [PATCH 034/132] aeeon/i11: we now have cpu I had to use an asix usb to ethernet for now, but at least this POS is sort of working: rminnich@a300:~/linuxboot/mainboards/aeeon/i11$ cpu x date Wed Jan 5 05:47:21 PM PST 2022 rminnich@a300:~/linuxboot/mainboards/aeeon/i11$ On to fixing on-board ethernet. Would be nice if the folks at aeeon could learn not to include 30-year-old dead networks like FDDI and ATM in their kernel configs, eh? It's just Not That Hard. Next steps: prune this config more. Start testing kexec. Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 3 +- mainboards/aeeon/i11/cpuflash.config | 185 +++++++++++++++++++++++++-- 2 files changed, 174 insertions(+), 14 deletions(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 44d7f184..d0137fd9 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -207,10 +207,11 @@ cpu.cpio.lzma: cpu.cpio cpu.cpio: Makefile u-root -build=bb -o cpu.cpio \ - -uinitcmd=/bbin/cpud \ -files ~/.ssh/cpu_rsa.pub:key.pub \ + -uinitcmd=/bbin/console \ github.com/u-root/cpu/cmds/cpud \ github.com/u-root/u-root/cmds/exp/console \ + github.com/u-root/u-root/cmds/exp/ed \ core # this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 9f7248b9..e99ed163 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -449,7 +449,7 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200keep console=ttyS0,115200 console=ttyS1,115200" +CONFIG_CMDLINE="ip=dhcp console=tty0" CONFIG_CMDLINE_OVERRIDE=y CONFIG_MODIFY_LDT_SYSCALL=y CONFIG_HAVE_LIVEPATCH=y @@ -1135,7 +1135,9 @@ CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set # CONFIG_WIMAX is not set # CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_XEN is not set +# CONFIG_NET_9P_DEBUG is not set # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set @@ -1397,6 +1399,7 @@ CONFIG_SCSI_MOD=y # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y +CONFIG_MII=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set @@ -1409,7 +1412,9 @@ CONFIG_NET_CORE=y # CONFIG_GENEVE is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y # CONFIG_TUN is not set # CONFIG_TUN_VNET_CROSS_LE is not set # CONFIG_VETH is not set @@ -1462,7 +1467,7 @@ CONFIG_E1000=y CONFIG_E1000E=y CONFIG_E1000E_HWTS=y CONFIG_IGB=y -# CONFIG_IGB_HWMON is not set +CONFIG_IGB_HWMON=y CONFIG_IGBVF=y # CONFIG_IXGB is not set # CONFIG_IXGBE is not set @@ -1514,8 +1519,59 @@ CONFIG_IGC=y # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y + +# +# MII PHY device drivers +# +CONFIG_ADIN_PHY=y +CONFIG_AMD_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_FIXED_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +CONFIG_NATIONAL_PHY=y +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y # CONFIG_PPP is not set # CONFIG_SLIP is not set CONFIG_USB_NET_DRIVERS=y @@ -1525,8 +1581,42 @@ CONFIG_USB_NET_DRIVERS=y # CONFIG_USB_RTL8150 is not set # CONFIG_USB_RTL8152 is not set # CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set # CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set # CONFIG_WLAN is not set # @@ -2696,7 +2786,8 @@ CONFIG_USB_HID=y # # Intel ISH HID support # -# CONFIG_INTEL_ISH_HID is not set +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set # end of Intel ISH HID support # end of HID support @@ -2727,13 +2818,23 @@ CONFIG_USB_AUTOSUSPEND_DELAY=2 # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_XHCI_HCD is not set -# CONFIG_USB_EHCI_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_HCD_TEST_MODE is not set @@ -2763,12 +2864,66 @@ CONFIG_USB_AUTOSUSPEND_DELAY=2 # CONFIG_USB_MUSB_HDRC is not set # CONFIG_USB_DWC3 is not set # CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set # CONFIG_USB_ISP1760 is not set # # USB port drivers # -# CONFIG_USB_SERIAL is not set +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers @@ -2784,6 +2939,7 @@ CONFIG_USB_AUTOSUSPEND_DELAY=2 # CONFIG_USB_IDMOUSE is not set # CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set @@ -3411,6 +3567,9 @@ CONFIG_NETWORK_FILESYSTEMS=y # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" # CONFIG_NLS_CODEPAGE_437 is not set From 4ec0e175c8cba3c6c15ed1cd9d2e1bec78500ebe Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 5 Jan 2022 09:56:58 -0800 Subject: [PATCH 035/132] aeeon/i11: extend gitignore Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/mainboards/aeeon/i11/.gitignore b/mainboards/aeeon/i11/.gitignore index 06162ec4..352cfb52 100644 --- a/mainboards/aeeon/i11/.gitignore +++ b/mainboards/aeeon/i11/.gitignore @@ -3,4 +3,5 @@ linux *.gz *kernel pxelinux.cfg +ubuntu* From 669fb9c969a18b91fba3db4068235c8feae60b71 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 5 Jan 2022 11:50:48 -0800 Subject: [PATCH 036/132] aeeon/i11: update cpuflash stuff, trying to move to newer kernel since this crummy board doesn't yet work with upstream drivers Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 11 +- .../i11/cpuflash-ubuntu-bionic-up.config | 4212 +++++++++++++++++ mainboards/aeeon/i11/cpuflash.config | 1063 +++-- 3 files changed, 4877 insertions(+), 409 deletions(-) create mode 100644 mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index d0137fd9..d39bef7d 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -170,10 +170,12 @@ cpukernel: cpu.cpio.lzma cpu.config (cd linux && make oldconfig && make -j32) cp linux/arch/x86/boot/bzImage $@ +# KERNEL=ubuntu-bionic-up +KERNEL=linux cpuflashkernel: cpu.cpio cpuflash.config - cp cpuflash.config ubuntu-bionic-up/.config - (cd ubuntu-bionic-up && make oldconfig && make -j32) - cp ubuntu-bionic-up/arch/x86/boot/bzImage $@ + cp cpuflash.config $(KERNEL)/.config + (cd $(KERNEL) && make oldconfig && make -j32) + cp $(KERNEL)/arch/x86/boot/bzImage $@ readrom: echo You need to get a ROM image from *somewhere* @@ -252,8 +254,7 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux - echo UP SUCKS git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config b/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config new file mode 100644 index 00000000..6e74223e --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config @@ -0,0 +1,4212 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.65 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_VERSION_SIGNATURE="" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_INITRAMFS_COMPRESSION=".gz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_BPF_SYSCALL=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_XXL=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PV=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_512GB=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_KVM_DEBUG_FS is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_JAILHOUSE_GUEST is not set +# CONFIG_ACRN_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +CONFIG_NUMA_EMU=y +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +CONFIG_CRASH_DUMP=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp console=tty0" +CONFIG_CMDLINE_OVERRIDE=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_HMAT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_DPTF_POWER is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +CONFIG_SFI=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set +CONFIG_HALTPOLL_CPUIDLE=y +# end of CPU Idle + +CONFIG_INTEL_IDLE=y +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +CONFIG_IA32_EMULATION=y +CONFIG_X86_X32=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_64BIT_TIME=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ZONE_DEVICE=y +# CONFIG_DEVICE_PRIVATE is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +# CONFIG_NET_IPVTI is not set +CONFIG_NET_UDP_TUNNEL=y +CONFIG_NET_FOU=y +CONFIG_NET_FOU_IP_TUNNELS=y +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=y +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=y +CONFIG_TCP_CONG_HTCP=y +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +# CONFIG_TCP_CONG_BBR is not set +# CONFIG_DEFAULT_BIC is not set +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_HTCP is not set +# CONFIG_DEFAULT_WESTWOOD is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_FOU=y +CONFIG_IPV6_FOU_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_XEN is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=y +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_LABEL=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +CONFIG_HOTPLUG_PCI_CPCI=y +# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set +# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +CONFIG_INTEL_MEI=y +CONFIG_INTEL_MEI_ME=y +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=y +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +CONFIG_IXGB=y +CONFIG_IXGBE=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBEVF=y +CONFIG_I40E=y +CONFIG_IAVF=y +CONFIG_I40EVF=y +CONFIG_ICE=y +CONFIG_FM10K=y +CONFIG_IGC=y +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y + +# +# MII PHY device drivers +# +CONFIG_ADIN_PHY=y +CONFIG_AMD_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_FIXED_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +CONFIG_NATIONAL_PHY=y +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_XEN_NETDEV_FRONTEND is not set +# CONFIG_XEN_NETDEV_BACKEND is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +CONFIG_INPUT_SPARSEKMAP=y +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +# CONFIG_KEYBOARD_APPLESPI is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_PS2_VMMOUSE is not set +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PSXPAD_SPI is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_GTCO is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +# CONFIG_NVRAM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +CONFIG_SPI_DEBUG=y +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_NXP_FLEXSPI is not set +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_PXA2XX is not set +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +CONFIG_PINCTRL_CANNONLAKE=y +CONFIG_PINCTRL_CEDARFORK=y +CONFIG_PINCTRL_DENVERTON=y +CONFIG_PINCTRL_GEMINILAKE=y +CONFIG_PINCTRL_ICELAKE=y +CONFIG_PINCTRL_LEWISBURG=y +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +CONFIG_GPIO_ICH=y +CONFIG_GPIO_LYNXPOINT=y +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +CONFIG_GPIO_SCH=y +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_INTEL_MEI_WDT is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set +# CONFIG_XEN_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +CONFIG_LPC_ICH=y +CONFIG_LPC_SCH=y +# CONFIG_INTEL_SOC_PMIC_BXTWC is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_UPBOARD_FPGA is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# CONFIG_DRM_XEN is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_APU is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXCPLD is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_AMD64 is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_AM1805 is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV is not set +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCIDEV_BACKEND=y +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_FB_SM750 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_STAGING_MEDIA is not set + +# +# Android +# +# end of Android + +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_QLGE is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DELL_UART_BACKLIGHT is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ACPI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +CONFIG_INTEL_INT0002_VGPIO=y +CONFIG_INTEL_HID_EVENT=y +CONFIG_INTEL_VBTN=y +CONFIG_INTEL_IPS=y +CONFIG_INTEL_PMC_CORE=y +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +CONFIG_INTEL_RST=y +CONFIG_INTEL_SMARTCONNECT=y +CONFIG_INTEL_PMC_IPC=y +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_INTEL_PUNIT_IPC=y +CONFIG_INTEL_TELEMETRY=y +CONFIG_INTEL_TURBO_MAX_3=y +# CONFIG_I2C_MULTI_INSTANTIATE is not set +CONFIG_INTEL_ATOMISP2_PM=y +# CONFIG_PCENGINES_APU2 is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +CONFIG_UPBOARD_LEGACY=y +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_INTEL_RAPL is not set +# CONFIG_IDLE_INJECT is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# Ubuntu Supplied Third-Party Device Drivers +# +# CONFIG_HIO is not set +# end of Ubuntu Supplied Third-Party Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set +# CONFIG_SHIFT_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_AUFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_IOMMU_HELPER=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UACCESS_MCSAFE=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POISONING_NO_SANITY=y +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_PREEMPTIRQ_EVENTS is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_DEBUG_WX=y +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index e99ed163..793ee6be 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -1,19 +1,23 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.65 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# Linux/x86 5.15.0 Kernel Configuration # +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" CONFIG_CC_IS_GCC=y CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_BUILDTIME_TABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y # @@ -21,6 +25,7 @@ CONFIG_THREAD_INFO_IN_TASK=y # CONFIG_INIT_ENV_ARG_LIMIT=32 # CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set CONFIG_LOCALVERSION="-upboard" # CONFIG_LOCALVERSION_AUTO is not set CONFIG_BUILD_SALT="" @@ -30,18 +35,21 @@ CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_XZ=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y # CONFIG_KERNEL_GZIP is not set # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set CONFIG_KERNEL_XZ=y # CONFIG_KERNEL_LZO is not set # CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_VERSION_SIGNATURE="" CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set CONFIG_CROSS_MEMORY_ATTACH=y CONFIG_USELIB=y CONFIG_AUDIT=y @@ -56,6 +64,7 @@ CONFIG_GENERIC_IRQ_SHOW=y CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y CONFIG_GENERIC_MSI_IRQ=y @@ -63,13 +72,11 @@ CONFIG_GENERIC_MSI_IRQ_DOMAIN=y CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y CONFIG_GENERIC_IRQ_RESERVATION_MODE=y CONFIG_IRQ_FORCED_THREADING=y -# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set CONFIG_SPARSE_IRQ=y # CONFIG_GENERIC_IRQ_DEBUGFS is not set # end of IRQ subsystem CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_ARCH_CLOCKSOURCE_INIT=y CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y CONFIG_GENERIC_TIME_VSYSCALL=y @@ -77,6 +84,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y # # Timers subsystem @@ -90,9 +99,22 @@ CONFIG_NO_HZ_IDLE=y CONFIG_HIGH_RES_TIMERS=y # end of Timers subsystem +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + # CONFIG_PREEMPT_NONE is not set CONFIG_PREEMPT_VOLUNTARY=y # CONFIG_PREEMPT is not set +# CONFIG_SCHED_CORE is not set # # CPU/Task time and stats accounting @@ -118,6 +140,9 @@ CONFIG_TREE_RCU=y # CONFIG_RCU_EXPERT is not set CONFIG_SRCU=y CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y CONFIG_RCU_STALL_COMMON=y CONFIG_RCU_NEED_SEGCBLIST=y # end of RCU Subsystem @@ -128,6 +153,7 @@ CONFIG_BUILD_BIN2C=y CONFIG_LOG_BUF_SHIFT=17 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # @@ -138,6 +164,7 @@ CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y CONFIG_ARCH_SUPPORTS_INT128=y CONFIG_NUMA_BALANCING=y # CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set @@ -159,10 +186,12 @@ CONFIG_CGROUP_DEVICE=y CONFIG_CGROUP_CPUACCT=y CONFIG_CGROUP_PERF=y # CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set # CONFIG_CGROUP_DEBUG is not set CONFIG_SOCK_CGROUP_DATA=y CONFIG_NAMESPACES=y CONFIG_UTS_NS=y +CONFIG_TIME_NS=y CONFIG_IPC_NS=y CONFIG_USER_NS=y CONFIG_PID_NS=y @@ -181,24 +210,31 @@ CONFIG_RD_LZMA=y CONFIG_RD_XZ=y CONFIG_RD_LZO=y CONFIG_RD_LZ4=y -CONFIG_INITRAMFS_COMPRESSION=".gz" +CONFIG_RD_ZSTD=y +CONFIG_INITRAMFS_COMPRESSION_GZIP=y +# CONFIG_INITRAMFS_COMPRESSION_BZIP2 is not set +# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set +# CONFIG_INITRAMFS_COMPRESSION_XZ is not set +# CONFIG_INITRAMFS_COMPRESSION_LZO is not set +# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set +# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y CONFIG_SYSCTL=y CONFIG_HAVE_UID16=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y CONFIG_EXPERT=y CONFIG_UID16=y CONFIG_MULTIUSER=y CONFIG_SGETMASK_SYSCALL=y CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set CONFIG_FHANDLE=y CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y CONFIG_BUG=y CONFIG_ELF_CORE=y # CONFIG_PCSPKR_PLATFORM is not set @@ -213,14 +249,16 @@ CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_IO_URING=y CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y CONFIG_MEMBARRIER=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y CONFIG_USERFAULTFD=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y CONFIG_RSEQ=y # CONFIG_DEBUG_RSEQ is not set # CONFIG_EMBEDDED is not set @@ -241,6 +279,7 @@ CONFIG_SLAB=y # CONFIG_SLOB is not set CONFIG_SLAB_MERGE_DEFAULT=y CONFIG_SLAB_FREELIST_RANDOM=y +# CONFIG_SLAB_FREELIST_HARDENED is not set CONFIG_SHUFFLE_PAGE_ALLOCATOR=y CONFIG_PROFILING=y CONFIG_TRACEPOINTS=y @@ -251,7 +290,6 @@ CONFIG_X86_64=y CONFIG_X86=y CONFIG_INSTRUCTION_DECODER=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_MMU=y @@ -265,17 +303,15 @@ CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_FILTER_PGPROT=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_X86_64_SMP=y CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_FIX_EARLYCON_MEM=y @@ -285,7 +321,6 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_X2APIC=y @@ -308,18 +343,19 @@ CONFIG_PARAVIRT_SPINLOCKS=y CONFIG_X86_HV_CALLBACK_VECTOR=y CONFIG_XEN=y CONFIG_XEN_PV=y +CONFIG_XEN_512GB=y CONFIG_XEN_PV_SMP=y -CONFIG_XEN_DOM0=y +CONFIG_XEN_PV_DOM0=y CONFIG_XEN_PVHVM=y CONFIG_XEN_PVHVM_SMP=y -CONFIG_XEN_512GB=y +CONFIG_XEN_PVHVM_GUEST=y CONFIG_XEN_SAVE_RESTORE=y # CONFIG_XEN_DEBUG_FS is not set CONFIG_XEN_PVH=y +CONFIG_XEN_DOM0=y CONFIG_KVM_GUEST=y CONFIG_ARCH_CPUIDLE_HALTPOLL=y CONFIG_PVH=y -# CONFIG_KVM_DEBUG_FS is not set # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set CONFIG_PARAVIRT_CLOCK=y # CONFIG_JAILHOUSE_GUEST is not set @@ -336,6 +372,8 @@ CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y # CONFIG_PROCESSOR_SELECT is not set CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y @@ -346,8 +384,6 @@ CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y CONFIG_GART_IOMMU=y -CONFIG_CALGARY_IOMMU=y -CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y # CONFIG_MAXSMP is not set CONFIG_NR_CPUS_RANGE_BEGIN=2 CONFIG_NR_CPUS_RANGE_END=512 @@ -365,7 +401,6 @@ CONFIG_X86_MCE_INTEL=y CONFIG_X86_MCE_AMD=y CONFIG_X86_MCE_THRESHOLD=y # CONFIG_X86_MCE_INJECT is not set -CONFIG_X86_THERMAL_VECTOR=y # # Performance monitoring @@ -374,11 +409,13 @@ CONFIG_PERF_EVENTS_INTEL_UNCORE=y CONFIG_PERF_EVENTS_INTEL_RAPL=y CONFIG_PERF_EVENTS_INTEL_CSTATE=y # CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y # end of Performance monitoring CONFIG_X86_16BIT=y CONFIG_X86_ESPFIX64=y CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_IOPL_IOPERM=y # CONFIG_I8K is not set CONFIG_MICROCODE=y CONFIG_MICROCODE_INTEL=y @@ -393,7 +430,6 @@ CONFIG_X86_DIRECT_GBPAGES=y CONFIG_NUMA=y CONFIG_AMD_NUMA=y CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NODES_SPAN_OTHER_NODES=y CONFIG_NUMA_EMU=y CONFIG_NODES_SHIFT=6 CONFIG_ARCH_SPARSEMEM_ENABLE=y @@ -403,7 +439,6 @@ CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 @@ -412,16 +447,15 @@ CONFIG_X86_PAT=y CONFIG_ARCH_USES_PG_UNCACHED=y CONFIG_ARCH_RANDOM=y CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -CONFIG_X86_INTEL_MPX=y +CONFIG_X86_UMIP=y CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_INTEL_TSX_MODE_ON is not set # CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set CONFIG_EFI=y CONFIG_EFI_STUB=y CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y # CONFIG_HZ_100 is not set CONFIG_HZ_250=y # CONFIG_HZ_300 is not set @@ -456,12 +490,8 @@ CONFIG_HAVE_LIVEPATCH=y # end of Processor type and features CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y CONFIG_USE_PERCPU_NUMA_NODE_ID=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y # # Power management and ACPI options @@ -491,9 +521,9 @@ CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y # CONFIG_ACPI_DEBUGGER is not set CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set CONFIG_ACPI_LPIT=y CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y # CONFIG_ACPI_EC_DEBUGFS is not set CONFIG_ACPI_AC=y @@ -511,7 +541,6 @@ CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_NUMA=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_TABLE_UPGRADE=y # CONFIG_ACPI_DEBUG is not set @@ -524,6 +553,7 @@ CONFIG_ACPI_HED=y # CONFIG_ACPI_CUSTOM_METHOD is not set CONFIG_ACPI_BGRT=y # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ACPI_NUMA=y # CONFIG_ACPI_HMAT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y @@ -533,12 +563,12 @@ CONFIG_ACPI_APEI_PCIEAER=y CONFIG_ACPI_APEI_MEMORY_FAILURE=y # CONFIG_ACPI_APEI_EINJ is not set # CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_DPTF_POWER is not set +# CONFIG_ACPI_DPTF is not set CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set # CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set CONFIG_X86_PM_TIMER=y -CONFIG_SFI=y +CONFIG_ACPI_PRMT=y # # CPU Frequency scaling @@ -550,9 +580,7 @@ CONFIG_CPU_FREQ_STAT=y # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y CONFIG_CPU_FREQ_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_GOV_USERSPACE is not set @@ -599,7 +627,6 @@ CONFIG_MMCONF_FAM10H=y # CONFIG_ISA_BUS is not set CONFIG_ISA_DMA_API=y CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -613,44 +640,12 @@ CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y # end of Binary Emulations -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - CONFIG_HAVE_KVM=y # CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y # # General architecture-dependent options @@ -658,11 +653,10 @@ CONFIG_HAVE_KVM=y CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_GENERIC_ENTRY=y CONFIG_JUMP_LABEL=y # CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set CONFIG_UPROBES=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y @@ -673,6 +667,7 @@ CONFIG_HAVE_OPTPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y @@ -681,11 +676,11 @@ CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_ARCH_HAS_SET_DIRECT_MAP=y CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RSEQ=y CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y @@ -695,23 +690,31 @@ CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set CONFIG_HAVE_ARCH_STACKLEAK=y CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y CONFIG_HAVE_MOVE_PMD=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y @@ -721,6 +724,7 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y CONFIG_HAVE_MOD_ARCH_SPECIFIC=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_EXIT_THREAD=y @@ -728,24 +732,29 @@ CONFIG_ARCH_MMAP_RND_BITS=28 CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y CONFIG_HAVE_STACK_VALIDATION=y CONFIG_HAVE_RELIABLE_STACKTRACE=y CONFIG_OLD_SIGSUSPEND3=y CONFIG_COMPAT_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y CONFIG_COMPAT_32BIT_TIME=y CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_ARCH_USE_MEMREMAP_PROT=y # CONFIG_LOCK_EVENT_COUNTS is not set CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y # # GCOV-based kernel profiling @@ -754,7 +763,6 @@ CONFIG_ARCH_HAS_MEM_ENCRYPT=y CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y # end of GCOV-based kernel profiling -CONFIG_PLUGIN_HOSTCC="" CONFIG_HAVE_GCC_PLUGINS=y # end of General architecture-dependent options @@ -777,6 +785,7 @@ CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y CONFIG_QUEUED_SPINLOCKS=y CONFIG_ARCH_USE_QUEUED_RWLOCKS=y CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y CONFIG_FREEZER=y @@ -799,22 +808,27 @@ CONFIG_COREDUMP=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y -CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y CONFIG_HAVE_FAST_GUP=y +CONFIG_NUMA_KEEP_MEMINFO=y CONFIG_MEMORY_ISOLATION=y CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG_SPARSE=y # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MHP_MEMMAP_ON_MEMORY=y CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y CONFIG_CONTIG_ALLOC=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_VIRT_TO_BUS=y @@ -828,7 +842,6 @@ CONFIG_TRANSPARENT_HUGEPAGE=y # CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y # CONFIG_CLEANCACHE is not set # CONFIG_CMA is not set CONFIG_MEM_SOFT_DIRTY=y @@ -839,15 +852,26 @@ CONFIG_ZBUD=y CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set # CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y CONFIG_ZONE_DEVICE=y # CONFIG_DEVICE_PRIVATE is not set CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y CONFIG_ARCH_HAS_PKEYS=y # CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set +# CONFIG_GUP_TEST is not set # CONFIG_READ_ONLY_THP_FOR_FS is not set CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring # end of Memory Management options CONFIG_NET=y @@ -861,6 +885,7 @@ CONFIG_PACKET=y # CONFIG_PACKET_DIAG is not set CONFIG_UNIX=y CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y # CONFIG_UNIX_DIAG is not set # CONFIG_TLS is not set CONFIG_XFRM=y @@ -952,7 +977,10 @@ CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y CONFIG_IPV6_PIMSM_V2=y # CONFIG_IPV6_SEG6_LWTUNNEL is not set # CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set # CONFIG_NETLABEL is not set +# CONFIG_MPTCP is not set CONFIG_NETWORK_SECMARK=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set CONFIG_NETFILTER=y @@ -967,7 +995,7 @@ CONFIG_NETFILTER_INGRESS=y # CONFIG_NETFILTER_NETLINK_LOG is not set # CONFIG_NETFILTER_NETLINK_OSF is not set # CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_NETDEV is not set +# CONFIG_NF_LOG_SYSLOG is not set # CONFIG_NF_TABLES is not set # CONFIG_NETFILTER_XTABLES is not set # end of Core Netfilter Configuration @@ -1007,7 +1035,6 @@ CONFIG_NETFILTER_INGRESS=y # CONFIG_ATM is not set # CONFIG_L2TP is not set # CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y # CONFIG_NET_DSA is not set # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set @@ -1052,6 +1079,7 @@ CONFIG_NET_SCHED=y # CONFIG_NET_SCH_PIE is not set # CONFIG_NET_SCH_INGRESS is not set # CONFIG_NET_SCH_PLUG is not set +# CONFIG_NET_SCH_ETS is not set # CONFIG_NET_SCH_DEFAULT is not set # @@ -1093,6 +1121,7 @@ CONFIG_NET_CLS_ACT=y # CONFIG_NET_ACT_SKBMOD is not set # CONFIG_NET_ACT_IFE is not set # CONFIG_NET_ACT_TUNNEL_KEY is not set +# CONFIG_NET_ACT_GATE is not set # CONFIG_NET_TC_SKB_EXT is not set CONFIG_NET_SCH_FIFO=y CONFIG_DCB=y @@ -1108,9 +1137,12 @@ CONFIG_NET_MPLS_GSO=y # CONFIG_HSR is not set # CONFIG_NET_SWITCHDEV is not set CONFIG_NET_L3_MASTER_DEV=y +# CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y CONFIG_RPS=y CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y CONFIG_XPS=y CONFIG_CGROUP_NET_PRIO=y CONFIG_CGROUP_NET_CLASSID=y @@ -1131,9 +1163,9 @@ CONFIG_NET_FLOW_LIMIT=y # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y # CONFIG_NET_9P_XEN is not set @@ -1146,8 +1178,11 @@ CONFIG_NET_9P=y # CONFIG_LWTUNNEL is not set CONFIG_DST_CACHE=y CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y # CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y +CONFIG_ETHTOOL_NETLINK=y # # Device Drivers @@ -1170,7 +1205,7 @@ CONFIG_PCIEASPM_DEFAULT=y CONFIG_PCIE_PME=y CONFIG_PCIE_DPC=y # CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set +# CONFIG_PCIE_EDR is not set CONFIG_PCI_MSI=y CONFIG_PCI_MSI_IRQ_DOMAIN=y CONFIG_PCI_QUIRKS=y @@ -1186,6 +1221,11 @@ CONFIG_PCI_PRI=y CONFIG_PCI_PASID=y # CONFIG_PCI_P2PDMA is not set CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_ACPI=y # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set @@ -1197,12 +1237,6 @@ CONFIG_HOTPLUG_PCI_CPCI=y # # PCI controller drivers # - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - # CONFIG_VMD is not set # @@ -1211,6 +1245,16 @@ CONFIG_HOTPLUG_PCI_CPCI=y # CONFIG_PCIE_DW_PLAT_HOST is not set # CONFIG_PCI_MESON is not set # end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support # end of PCI controller drivers # @@ -1225,12 +1269,14 @@ CONFIG_HOTPLUG_PCI_CPCI=y # CONFIG_PCI_SW_SWITCHTEC is not set # end of PCI switch controller drivers +# CONFIG_CXL_BUS is not set # CONFIG_PCCARD is not set # CONFIG_RAPIDIO is not set # # Generic Driver Options # +CONFIG_AUXILIARY_BUS=y # CONFIG_UEVENT_HELPER is not set CONFIG_DEVTMPFS=y # CONFIG_DEVTMPFS_MOUNT is not set @@ -1246,6 +1292,7 @@ CONFIG_EXTRA_FIRMWARE="" CONFIG_FW_LOADER_USER_HELPER=y # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set # CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y # end of Firmware loader CONFIG_ALLOW_DEV_COREDUMP=y @@ -1260,9 +1307,61 @@ CONFIG_GENERIC_CPU_VULNERABILITIES=y # # Bus devices # +# CONFIG_MHI_BUS is not set # end of Bus devices # CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + # CONFIG_GNSS is not set # CONFIG_MTD is not set # CONFIG_OF is not set @@ -1301,9 +1400,9 @@ CONFIG_PNPACPI=y # CONFIG_HMC6352 is not set # CONFIG_DS1682 is not set # CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set # CONFIG_C2PORT is not set # @@ -1331,57 +1430,16 @@ CONFIG_PNPACPI=y # CONFIG_INTEL_MEI_ME is not set # CONFIG_INTEL_MEI_TXE is not set # CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - # CONFIG_GENWQE is not set # CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set # CONFIG_MISC_ALCOR_PCI is not set # CONFIG_MISC_RTSX_PCI is not set # CONFIG_MISC_RTSX_USB is not set # CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set # end of Misc devices -CONFIG_HAVE_IDE=y - # # SCSI device support # @@ -1403,6 +1461,7 @@ CONFIG_MII=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set # CONFIG_EQUALIZER is not set # CONFIG_IFB is not set # CONFIG_NET_TEAM is not set @@ -1410,6 +1469,7 @@ CONFIG_NET_CORE=y # CONFIG_IPVLAN is not set # CONFIG_VXLAN is not set # CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set # CONFIG_GTP is not set # CONFIG_MACSEC is not set CONFIG_NETCONSOLE=y @@ -1421,16 +1481,6 @@ CONFIG_NET_POLL_CONTROLLER=y # CONFIG_NLMON is not set # CONFIG_NET_VRF is not set # CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_3COM is not set # CONFIG_NET_VENDOR_ADAPTEC is not set @@ -1443,7 +1493,6 @@ CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_AQUANTIA is not set # CONFIG_NET_VENDOR_ARC is not set # CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set # CONFIG_NET_VENDOR_BROADCOM is not set # CONFIG_NET_VENDOR_BROCADE is not set # CONFIG_NET_VENDOR_CADENCE is not set @@ -1458,7 +1507,6 @@ CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_EMULEX is not set # CONFIG_NET_VENDOR_EZCHIP is not set # CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HP is not set # CONFIG_NET_VENDOR_HUAWEI is not set CONFIG_NET_VENDOR_I825XX=y CONFIG_NET_VENDOR_INTEL=y @@ -1478,7 +1526,9 @@ CONFIG_I40E=y CONFIG_ICE=y # CONFIG_FM10K is not set CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y # CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y # CONFIG_NET_VENDOR_MARVELL is not set # CONFIG_NET_VENDOR_MELLANOX is not set # CONFIG_NET_VENDOR_MICREL is not set @@ -1519,50 +1569,45 @@ CONFIG_IGC=y # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y CONFIG_PHYLIB=y CONFIG_SWPHY=y CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y # # MII PHY device drivers # -CONFIG_ADIN_PHY=y CONFIG_AMD_PHY=y +CONFIG_ADIN_PHY=y CONFIG_AQUANTIA_PHY=y CONFIG_AX88796B_PHY=y -CONFIG_AT803X_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set CONFIG_BCM87XX_PHY=y CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y CONFIG_CICADA_PHY=y CONFIG_CORTINA_PHY=y CONFIG_DAVICOM_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -CONFIG_FIXED_PHY=y CONFIG_ICPLUS_PHY=y +CONFIG_LXT_PHY=y CONFIG_INTEL_XWAY_PHY=y CONFIG_LSI_ET1011C_PHY=y -CONFIG_LXT_PHY=y CONFIG_MARVELL_PHY=y CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set CONFIG_MICREL_PHY=y CONFIG_MICROCHIP_PHY=y CONFIG_MICROCHIP_T1_PHY=y CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y CONFIG_QSEMI_PHY=y CONFIG_REALTEK_PHY=y CONFIG_RENESAS_PHY=y @@ -1570,8 +1615,36 @@ CONFIG_ROCKCHIP_PHY=y CONFIG_SMSC_PHY=y CONFIG_STE10XP=y CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set CONFIG_VITESSE_PHY=y CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + # CONFIG_PPP is not set # CONFIG_SLIP is not set CONFIG_USB_NET_DRIVERS=y @@ -1617,12 +1690,16 @@ CONFIG_USB_ARMLINUX=y # CONFIG_USB_VL600 is not set # CONFIG_USB_NET_CH9200 is not set # CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set # CONFIG_WLAN is not set +# CONFIG_WAN is not set # -# Enable WiMAX (Networking options) to see the WiMAX drivers +# Wireless WAN # -# CONFIG_WAN is not set +# CONFIG_WWAN is not set +# end of Wireless WAN + # CONFIG_XEN_NETDEV_FRONTEND is not set # CONFIG_XEN_NETDEV_BACKEND is not set # CONFIG_VMXNET3 is not set @@ -1637,7 +1714,6 @@ CONFIG_USB_ARMLINUX=y CONFIG_INPUT=y CONFIG_INPUT_LEDS=y # CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set @@ -1731,23 +1807,23 @@ CONFIG_INPUT_JOYSTICK=y # CONFIG_JOYSTICK_JOYDUMP is not set # CONFIG_JOYSTICK_XPAD is not set # CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set # CONFIG_JOYSTICK_FSIA6B is not set CONFIG_INPUT_TABLET=y # CONFIG_TABLET_USB_ACECAD is not set # CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set # CONFIG_TABLET_USB_HANWANG is not set # CONFIG_TABLET_USB_KBTAB is not set # CONFIG_TABLET_USB_PEGASUS is not set # CONFIG_TABLET_SERIAL_WACOM4 is not set CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y # CONFIG_TOUCHSCREEN_AD7879 is not set # CONFIG_TOUCHSCREEN_ATMEL_MXT is not set # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set # CONFIG_TOUCHSCREEN_BU21013 is not set # CONFIG_TOUCHSCREEN_BU21029 is not set # CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set # CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set # CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set @@ -1759,7 +1835,9 @@ CONFIG_TOUCHSCREEN_PROPERTIES=y # CONFIG_TOUCHSCREEN_FUJITSU is not set # CONFIG_TOUCHSCREEN_GOODIX is not set # CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set # CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set # CONFIG_TOUCHSCREEN_S6SY761 is not set # CONFIG_TOUCHSCREEN_GUNZE is not set # CONFIG_TOUCHSCREEN_EKTF2127 is not set @@ -1771,6 +1849,7 @@ CONFIG_TOUCHSCREEN_PROPERTIES=y # CONFIG_TOUCHSCREEN_MCS5000 is not set # CONFIG_TOUCHSCREEN_MMS114 is not set # CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set # CONFIG_TOUCHSCREEN_MTOUCH is not set # CONFIG_TOUCHSCREEN_INEXIO is not set # CONFIG_TOUCHSCREEN_MK712 is not set @@ -1796,14 +1875,13 @@ CONFIG_TOUCHSCREEN_PROPERTIES=y # CONFIG_TOUCHSCREEN_ZFORCE is not set # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set # CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set CONFIG_INPUT_MISC=y # CONFIG_INPUT_AD714X is not set # CONFIG_INPUT_BMA150 is not set # CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set # CONFIG_INPUT_MMA8450 is not set # CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GP2A is not set # CONFIG_INPUT_GPIO_BEEPER is not set # CONFIG_INPUT_GPIO_DECODER is not set # CONFIG_INPUT_GPIO_VIBRA is not set @@ -1820,8 +1898,11 @@ CONFIG_INPUT_MISC=y # CONFIG_INPUT_PWM_BEEPER is not set # CONFIG_INPUT_PWM_VIBRA is not set # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set # CONFIG_INPUT_ADXL34X is not set # CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set # CONFIG_INPUT_CMA3000 is not set CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y # CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set @@ -1862,23 +1943,7 @@ CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set # # Serial drivers @@ -1887,6 +1952,7 @@ CONFIG_SERIAL_EARLYCON=y CONFIG_SERIAL_8250=y # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set CONFIG_SERIAL_8250_FINTEK=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_DMA=y @@ -1912,45 +1978,60 @@ CONFIG_SERIAL_8250_DW=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set # CONFIG_SERIAL_SCCNXP is not set # CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set # CONFIG_SERIAL_ARC is not set # CONFIG_SERIAL_RP2 is not set # CONFIG_SERIAL_FSL_LPUART is not set # CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set # end of Serial drivers CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set CONFIG_HVC_DRIVER=y CONFIG_HVC_IRQ=y CONFIG_HVC_XEN=y CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set # CONFIG_IPMI_HANDLER is not set # CONFIG_IPMB_DEVICE_INTERFACE is not set CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set CONFIG_HW_RANDOM_VIA=y -# CONFIG_NVRAM is not set +# CONFIG_HW_RANDOM_XIPHERA is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HPET_MMAP_DEFAULT=y # CONFIG_HANGCHECK_TIMER is not set # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y # CONFIG_XILLYBUS is not set -# end of Character devices - +# CONFIG_XILLYUSB is not set # CONFIG_RANDOM_TRUST_CPU is not set # CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices # # I2C support @@ -2011,7 +2092,7 @@ CONFIG_I2C_ALGOBIT=y # External I2C/SMBus adapter drivers # # CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_CP2615 is not set # CONFIG_I2C_ROBOTFUZZ_OSIF is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set @@ -2020,10 +2101,12 @@ CONFIG_I2C_ALGOBIT=y # Other I2C/SMBus bus drivers # # CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set # end of I2C Hardware Bus support CONFIG_I2C_SLAVE=y # CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set @@ -2039,6 +2122,7 @@ CONFIG_I2C_SLAVE=y # PTP clock support # # CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y # # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. @@ -2055,21 +2139,36 @@ CONFIG_GENERIC_PINCONF=y # CONFIG_PINCTRL_SX150X is not set CONFIG_PINCTRL_BAYTRAIL=y CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set CONFIG_PINCTRL_BROXTON=y # CONFIG_PINCTRL_CANNONLAKE is not set # CONFIG_PINCTRL_CEDARFORK is not set # CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set # CONFIG_PINCTRL_GEMINILAKE is not set # CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set # CONFIG_PINCTRL_LEWISBURG is not set CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + CONFIG_GPIOLIB=y CONFIG_GPIOLIB_FASTPATH_LIMIT=512 CONFIG_GPIO_ACPI=y CONFIG_GPIOLIB_IRQCHIP=y # CONFIG_DEBUG_GPIO is not set CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y # # Memory mapped GPIO drivers @@ -2078,11 +2177,8 @@ CONFIG_GPIO_SYSFS=y # CONFIG_GPIO_DWAPB is not set # CONFIG_GPIO_EXAR is not set # CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_ICH is not set -# CONFIG_GPIO_LYNXPOINT is not set # CONFIG_GPIO_MB86S7X is not set # CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set # CONFIG_GPIO_AMD_FCH is not set # end of Memory mapped GPIO drivers @@ -2091,7 +2187,6 @@ CONFIG_GPIO_SYSFS=y # # CONFIG_GPIO_F7188X is not set # CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH is not set # CONFIG_GPIO_SCH311X is not set # CONFIG_GPIO_WINBOND is not set # CONFIG_GPIO_WS16C48 is not set @@ -2104,6 +2199,7 @@ CONFIG_GPIO_SYSFS=y # CONFIG_GPIO_MAX7300 is not set # CONFIG_GPIO_MAX732X is not set # CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set # CONFIG_GPIO_PCF857X is not set # CONFIG_GPIO_TPIC2810 is not set # end of I2C GPIO expanders @@ -2129,9 +2225,14 @@ CONFIG_GPIO_SYSFS=y # # end of USB GPIO expanders +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set # CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + # CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set # CONFIG_POWER_RESET is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set @@ -2139,6 +2240,7 @@ CONFIG_POWER_SUPPLY_HWMON=y # CONFIG_PDA_POWER is not set # CONFIG_TEST_POWER is not set # CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set # CONFIG_BATTERY_DS2780 is not set # CONFIG_BATTERY_DS2781 is not set # CONFIG_BATTERY_DS2782 is not set @@ -2152,13 +2254,20 @@ CONFIG_POWER_SUPPLY_HWMON=y # CONFIG_CHARGER_GPIO is not set # CONFIG_CHARGER_MANAGER is not set # CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set # CONFIG_CHARGER_BQ2415X is not set # CONFIG_CHARGER_BQ24257 is not set # CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set # CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set # CONFIG_CHARGER_SMB347 is not set # CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set # CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set CONFIG_HWMON=y # CONFIG_HWMON_DEBUG_CHIP is not set @@ -2174,14 +2283,18 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ADM1026 is not set # CONFIG_SENSORS_ADM1029 is not set # CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set # CONFIG_SENSORS_ADM9240 is not set # CONFIG_SENSORS_ADT7410 is not set # CONFIG_SENSORS_ADT7411 is not set # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set # CONFIG_SENSORS_AS370 is not set # CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set # CONFIG_SENSORS_K8TEMP is not set # CONFIG_SENSORS_K10TEMP is not set # CONFIG_SENSORS_FAM15H_POWER is not set @@ -2189,6 +2302,8 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ASB100 is not set # CONFIG_SENSORS_ASPEED is not set # CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set # CONFIG_SENSORS_DS620 is not set # CONFIG_SENSORS_DS1621 is not set # CONFIG_SENSORS_DELL_SMM is not set @@ -2210,17 +2325,21 @@ CONFIG_HWMON=y # CONFIG_SENSORS_POWR1220 is not set # CONFIG_SENSORS_LINEAGE is not set # CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set # CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set # CONFIG_SENSORS_LTC4151 is not set # CONFIG_SENSORS_LTC4215 is not set # CONFIG_SENSORS_LTC4222 is not set # CONFIG_SENSORS_LTC4245 is not set # CONFIG_SENSORS_LTC4260 is not set # CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set # CONFIG_SENSORS_MAX16065 is not set # CONFIG_SENSORS_MAX1619 is not set # CONFIG_SENSORS_MAX1668 is not set # CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set # CONFIG_SENSORS_MAX6621 is not set # CONFIG_SENSORS_MAX6639 is not set # CONFIG_SENSORS_MAX6642 is not set @@ -2229,6 +2348,8 @@ CONFIG_HWMON=y # CONFIG_SENSORS_MAX31790 is not set # CONFIG_SENSORS_MCP3021 is not set # CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set # CONFIG_SENSORS_LM63 is not set # CONFIG_SENSORS_LM73 is not set # CONFIG_SENSORS_LM75 is not set @@ -2252,11 +2373,15 @@ CONFIG_HWMON=y # CONFIG_SENSORS_NCT7802 is not set # CONFIG_SENSORS_NCT7904 is not set # CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set # CONFIG_SENSORS_PCF8591 is not set # CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set # CONFIG_SENSORS_SHT15 is not set # CONFIG_SENSORS_SHT21 is not set # CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set # CONFIG_SENSORS_SHTC1 is not set # CONFIG_SENSORS_SIS5595 is not set # CONFIG_SENSORS_DME1737 is not set @@ -2283,6 +2408,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_TMP108 is not set # CONFIG_SENSORS_TMP401 is not set # CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set # CONFIG_SENSORS_VIA_CPUTEMP is not set # CONFIG_SENSORS_VIA686A is not set # CONFIG_SENSORS_VT1211 is not set @@ -2305,6 +2431,7 @@ CONFIG_HWMON=y # CONFIG_SENSORS_ACPI_POWER is not set # CONFIG_SENSORS_ATK0110 is not set CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set # CONFIG_THERMAL_STATISTICS is not set CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 CONFIG_THERMAL_HWMON=y @@ -2312,13 +2439,10 @@ CONFIG_THERMAL_WRITABLE_TRIPS=y CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set CONFIG_THERMAL_GOV_FAIR_SHARE=y CONFIG_THERMAL_GOV_STEP_WISE=y CONFIG_THERMAL_GOV_BANG_BANG=y CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CLOCK_THERMAL is not set # CONFIG_DEVFREQ_THERMAL is not set # CONFIG_THERMAL_EMULATION is not set @@ -2326,6 +2450,7 @@ CONFIG_THERMAL_GOV_USER_SPACE=y # Intel thermal drivers # # CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y CONFIG_X86_PKG_TEMP_THERMAL=y # CONFIG_INTEL_SOC_DTS_THERMAL is not set @@ -2336,6 +2461,8 @@ CONFIG_X86_PKG_TEMP_THERMAL=y # end of ACPI INT340X thermal drivers # CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# CONFIG_INTEL_MENLOW is not set # end of Intel thermal drivers CONFIG_WATCHDOG=y @@ -2344,6 +2471,7 @@ CONFIG_WATCHDOG_CORE=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y CONFIG_WATCHDOG_OPEN_TIMEOUT=0 # CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set # # Watchdog Pretimeout Governors @@ -2430,6 +2558,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set # CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_HTC_I2CPLD is not set # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set @@ -2438,6 +2567,9 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set # CONFIG_MFD_INTEL_LPSS_ACPI is not set # CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set # CONFIG_MFD_JANZ_CMODIO is not set # CONFIG_MFD_KEMPLD is not set # CONFIG_MFD_88PM800 is not set @@ -2450,20 +2582,19 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_MAX8925 is not set # CONFIG_MFD_MAX8997 is not set # CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_MENF21BMC is not set # CONFIG_MFD_VIPERBOARD is not set # CONFIG_MFD_RETU is not set # CONFIG_MFD_PCF50633 is not set # CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set # CONFIG_MFD_SI476X_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set # CONFIG_MFD_SYSCON is not set # CONFIG_MFD_TI_AM335X_TSCADC is not set # CONFIG_MFD_LP3943 is not set @@ -2491,7 +2622,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_WM831X_I2C is not set # CONFIG_MFD_WM8350_I2C is not set # CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_UPBOARD_FPGA is not set +# CONFIG_MFD_ATC260X_I2C is not set # end of Multifunction device drivers CONFIG_REGULATOR=y @@ -2517,13 +2648,23 @@ CONFIG_REGULATOR=y # CONFIG_REGULATOR_MAX1586 is not set # CONFIG_REGULATOR_MAX8649 is not set # CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set # CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set # CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PCA9450 is not set # CONFIG_REGULATOR_PV88060 is not set # CONFIG_REGULATOR_PV88080 is not set # CONFIG_REGULATOR_PV88090 is not set # CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTQ2134 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_RTQ6752 is not set # CONFIG_REGULATOR_SLG51000 is not set # CONFIG_REGULATOR_TPS51632 is not set # CONFIG_REGULATOR_TPS62360 is not set @@ -2531,6 +2672,7 @@ CONFIG_REGULATOR=y # CONFIG_REGULATOR_TPS6507X is not set # CONFIG_REGULATOR_TPS65132 is not set # CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set # CONFIG_MEDIA_SUPPORT is not set # @@ -2546,19 +2688,12 @@ CONFIG_VGA_ARB=y CONFIG_VGA_ARB_MAX_GPUS=16 CONFIG_VGA_SWITCHEROO=y # CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set # # ARM devices # # end of ARM devices -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# CONFIG_DRM_XEN is not set CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y # @@ -2627,6 +2762,7 @@ CONFIG_XEN_FBDEV_FRONTEND=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set # CONFIG_FB_SM712 is not set # end of Frame buffer Devices @@ -2635,10 +2771,10 @@ CONFIG_XEN_FBDEV_FRONTEND=y # # CONFIG_LCD_CLASS_DEVICE is not set CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_KTD253 is not set # CONFIG_BACKLIGHT_PWM is not set # CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set # CONFIG_BACKLIGHT_SAHARA is not set # CONFIG_BACKLIGHT_ADP8860 is not set # CONFIG_BACKLIGHT_ADP8870 is not set @@ -2655,7 +2791,6 @@ CONFIG_BACKLIGHT_CLASS_DEVICE=y # Console display driver support # CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 @@ -2707,9 +2842,12 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_ELECOM is not set # CONFIG_HID_ELO is not set # CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set # CONFIG_HID_GEMBIRD is not set # CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set # CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set # CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set @@ -2741,11 +2879,13 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_PETALYNX is not set # CONFIG_HID_PICOLCD is not set # CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set # CONFIG_HID_PRIMAX is not set # CONFIG_HID_RETRODE is not set # CONFIG_HID_ROCCAT is not set # CONFIG_HID_SAITEK is not set # CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set # CONFIG_HID_SONY is not set # CONFIG_HID_SPEEDLINK is not set # CONFIG_HID_STEAM is not set @@ -2767,6 +2907,7 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_ZYDACRON is not set # CONFIG_HID_SENSOR_HUB is not set # CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set # end of Special HID drivers # @@ -2780,7 +2921,7 @@ CONFIG_USB_HID=y # # I2C HID support # -# CONFIG_I2C_HID is not set +# CONFIG_I2C_HID_ACPI is not set # end of I2C HID support # @@ -2789,6 +2930,12 @@ CONFIG_USB_HID=y CONFIG_INTEL_ISH_HID=y # CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set # end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support # end of HID support CONFIG_USB_OHCI_LITTLE_ENDIAN=y @@ -2806,10 +2953,11 @@ CONFIG_USB_PCI=y # Miscellaneous USB options # CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set CONFIG_USB_AUTOSUSPEND_DELAY=2 # CONFIG_USB_MON is not set @@ -2821,6 +2969,7 @@ CONFIG_USB_AUTOSUSPEND_DELAY=2 CONFIG_USB_XHCI_HCD=y CONFIG_USB_XHCI_DBGCAP=y CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set CONFIG_USB_XHCI_PLATFORM=y CONFIG_USB_EHCI_HCD=y # CONFIG_USB_EHCI_ROOT_HUB_TT is not set @@ -2860,7 +3009,7 @@ CONFIG_USB_UHCI_HCD=y # # CONFIG_USB_MDC800 is not set # CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_CDNS_SUPPORT is not set # CONFIG_USB_MUSB_HDRC is not set # CONFIG_USB_DWC3 is not set # CONFIG_USB_DWC2 is not set @@ -2914,7 +3063,6 @@ CONFIG_USB_SERIAL_SIMPLE=y # CONFIG_USB_SERIAL_SYMBOL is not set # CONFIG_USB_SERIAL_TI is not set # CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set # CONFIG_USB_SERIAL_OPTION is not set # CONFIG_USB_SERIAL_OMNINET is not set # CONFIG_USB_SERIAL_OPTICON is not set @@ -2923,6 +3071,7 @@ CONFIG_USB_SERIAL_SIMPLE=y # CONFIG_USB_SERIAL_SSU100 is not set # CONFIG_USB_SERIAL_QT2 is not set # CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set # CONFIG_USB_SERIAL_DEBUG is not set # @@ -2939,6 +3088,7 @@ CONFIG_USB_SERIAL_SIMPLE=y # CONFIG_USB_IDMOUSE is not set # CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set # CONFIG_USB_SISUSBVGA is not set # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set @@ -2970,6 +3120,7 @@ CONFIG_USB_SERIAL_SIMPLE=y CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y # CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set # CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set # @@ -2983,10 +3134,6 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_GPIO is not set # CONFIG_LEDS_LP3944 is not set # CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set # CONFIG_LEDS_CLEVO_MAIL is not set # CONFIG_LEDS_PCA955X is not set # CONFIG_LEDS_PCA963X is not set @@ -2994,6 +3141,7 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_REGULATOR is not set # CONFIG_LEDS_BD2802 is not set # CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_LT3593 is not set # CONFIG_LEDS_TCA6507 is not set # CONFIG_LEDS_TLC591XX is not set # CONFIG_LEDS_LM355x is not set @@ -3007,6 +3155,10 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_USER is not set # CONFIG_LEDS_NIC78BX is not set +# +# Flash and Torch LED drivers +# + # # LED Triggers # @@ -3029,8 +3181,16 @@ CONFIG_LEDS_TRIGGER_PANIC=y # CONFIG_LEDS_TRIGGER_NETDEV is not set # CONFIG_LEDS_TRIGGER_PATTERN is not set # CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set CONFIG_ACCESSIBILITY=y CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + # CONFIG_INFINIBAND is not set CONFIG_EDAC_ATOMIC_SCRUB=y CONFIG_EDAC_SUPPORT=y @@ -3055,6 +3215,7 @@ CONFIG_EDAC_DECODE_MCE=y # CONFIG_EDAC_SKX is not set # CONFIG_EDAC_I10NM is not set # CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set CONFIG_RTC_LIB=y CONFIG_RTC_MC146818_LIB=y CONFIG_RTC_CLASS=y @@ -3080,7 +3241,6 @@ CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_DRV_ABB5ZES3 is not set # CONFIG_RTC_DRV_ABEOZ9 is not set # CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_AM1805 is not set # CONFIG_RTC_DRV_DS1307 is not set # CONFIG_RTC_DRV_DS1374 is not set # CONFIG_RTC_DRV_DS1672 is not set @@ -3103,6 +3263,7 @@ CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_DRV_RX8025 is not set # CONFIG_RTC_DRV_EM3027 is not set # CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set # CONFIG_RTC_DRV_RV8803 is not set # CONFIG_RTC_DRV_SD3078 is not set @@ -3117,6 +3278,7 @@ CONFIG_RTC_I2C_AND_SPI=y # CONFIG_RTC_DRV_DS3232 is not set # CONFIG_RTC_DRV_PCF2127 is not set # CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set # # Platform RTC drivers @@ -3145,6 +3307,7 @@ CONFIG_RTC_DRV_CMOS=y # # HID Sensor RTC drivers # +# CONFIG_RTC_DRV_GOLDFISH is not set CONFIG_DMADEVICES=y # CONFIG_DMADEVICES_DEBUG is not set @@ -3155,13 +3318,18 @@ CONFIG_DMA_ENGINE=y CONFIG_DMA_ACPI=y # CONFIG_ALTERA_MSGDMA is not set # CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IDXD_COMPAT is not set # CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_AMD_PTDMA is not set # CONFIG_QCOM_HIDMA_MGMT is not set # CONFIG_QCOM_HIDMA is not set # CONFIG_DW_DMAC is not set # CONFIG_DW_DMAC_PCI is not set # CONFIG_DW_EDMA is not set # CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set # # DMA Clients @@ -3173,12 +3341,18 @@ CONFIG_ASYNC_TX_DMA=y # DMABUF options # # CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set # end of DMABUF options # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set +# CONFIG_VFIO is not set # CONFIG_VIRT_DRIVERS is not set # CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set # # Microsoft Hyper-V guest support @@ -3191,7 +3365,7 @@ CONFIG_ASYNC_TX_DMA=y # CONFIG_XEN_BALLOON=y CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 CONFIG_XEN_SCRUB_PAGES_DEFAULT=y CONFIG_XEN_DEV_EVTCHN=y CONFIG_XEN_BACKEND=y @@ -3215,19 +3389,13 @@ CONFIG_XEN_AUTO_XLATE=y CONFIG_XEN_ACPI=y CONFIG_XEN_SYMS=y CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_UNPOPULATED_ALLOC=y # end of Xen driver support # CONFIG_GREYBUS is not set -CONFIG_STAGING=y # CONFIG_COMEDI is not set +CONFIG_STAGING=y # CONFIG_FB_SM750 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - CONFIG_STAGING_MEDIA=y # @@ -3237,60 +3405,32 @@ CONFIG_STAGING_MEDIA=y # CONFIG_GS_FPGABOOT is not set # CONFIG_UNISYSSPAR is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - # CONFIG_FIELDBUS_DEV is not set -# CONFIG_USB_WUSB_CBAF is not set -# CONFIG_UWB is not set # CONFIG_QLGE is not set CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACPI_WMI is not set # CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set # CONFIG_ASUS_LAPTOP is not set -# CONFIG_DCDBAS is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DELL_UART_BACKLIGHT is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set # CONFIG_FUJITSU_LAPTOP is not set # CONFIG_FUJITSU_TABLET is not set # CONFIG_GPD_POCKET_FAN is not set # CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_WIRELESS_HOTKEY is not set # CONFIG_IBM_RTL is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_PMC_IPC is not set -# CONFIG_SURFACE_PRO3_BUTTON is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_INTEL_TURBO_MAX_3 is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_THINKPAD_ACPI is not set +CONFIG_X86_PLATFORM_DRIVERS_INTEL=y # CONFIG_INTEL_ATOMISP2_PM is not set -# CONFIG_PCENGINES_APU2 is not set +# CONFIG_INTEL_SAR_INT1092 is not set +# CONFIG_INTEL_SKL_INT3472 is not set +# CONFIG_INTEL_PMC_CORE is not set # # Intel Speed Select Technology interface support @@ -3298,18 +3438,46 @@ CONFIG_X86_PLATFORM_DEVICES=y # CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set # end of Intel Speed Select Technology interface support -CONFIG_UPBOARD_LEGACY=y +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set +# CONFIG_INTEL_TURBO_MAX_3 is not set +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y +CONFIG_SURFACE_PLATFORMS=y +# CONFIG_SURFACE_3_POWER_OPREGION is not set +# CONFIG_SURFACE_GPE is not set +# CONFIG_SURFACE_HOTPLUG is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_HAVE_CLK=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y # -# Common Clock Framework +# Clock driver for ARM Reference designs # +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + # CONFIG_COMMON_CLK_MAX9485 is not set # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set @@ -3317,8 +3485,7 @@ CONFIG_COMMON_CLK=y # CONFIG_COMMON_CLK_CDCE706 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set # CONFIG_COMMON_CLK_PWM is not set -# end of Common Clock Framework - +# CONFIG_XILINX_VCU is not set # CONFIG_HWSPINLOCK is not set # @@ -3357,11 +3524,6 @@ CONFIG_PCC=y # # end of Amlogic SoC drivers -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - # # Broadcom SoC drivers # @@ -3377,6 +3539,11 @@ CONFIG_PCC=y # # end of i.MX SoC drivers +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + # # Qualcomm SoC drivers # @@ -3387,7 +3554,6 @@ CONFIG_PCC=y # # Xilinx SoC drivers # -# CONFIG_XILINX_VCU is not set # end of Xilinx SoC drivers # end of SOC (System On Chip) specific Drivers @@ -3413,6 +3579,8 @@ CONFIG_MEMORY=y # CONFIG_VME_BUS is not set CONFIG_PWM=y CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set # CONFIG_PWM_LPSS_PCI is not set # CONFIG_PWM_LPSS_PLATFORM is not set # CONFIG_PWM_PCA9685 is not set @@ -3429,14 +3597,18 @@ CONFIG_PWM_SYSFS=y # PHY Subsystem # CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set # CONFIG_BCM_KONA_USB2_PHY is not set # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set # end of PHY Subsystem CONFIG_POWERCAP=y # CONFIG_INTEL_RAPL is not set # CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set # CONFIG_MCB is not set # @@ -3446,7 +3618,7 @@ CONFIG_POWERCAP=y CONFIG_RAS=y # CONFIG_RAS_CEC is not set -# CONFIG_THUNDERBOLT is not set +# CONFIG_USB4 is not set # # Android @@ -3457,6 +3629,7 @@ CONFIG_RAS=y # CONFIG_DAX is not set CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set # # HW tracing support @@ -3466,6 +3639,7 @@ CONFIG_NVMEM_SYSFS=y # end of HW tracing support # CONFIG_FPGA is not set +# CONFIG_TEE is not set CONFIG_PM_OPP=y # CONFIG_UNISYS_VISORBUS is not set # CONFIG_SIOX is not set @@ -3474,12 +3648,6 @@ CONFIG_PM_OPP=y # CONFIG_COUNTER is not set # end of Device Drivers -# -# Ubuntu Supplied Third-Party Device Drivers -# -# CONFIG_HIO is not set -# end of Ubuntu Supplied Third-Party Device Drivers - # # File systems # @@ -3489,7 +3657,6 @@ CONFIG_FS_POSIX_ACL=y CONFIG_EXPORTFS=y CONFIG_EXPORTFS_BLOCK_OPS=y CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y # CONFIG_FS_ENCRYPTION is not set # CONFIG_FS_VERITY is not set CONFIG_FSNOTIFY=y @@ -3504,12 +3671,10 @@ CONFIG_PRINT_QUOTA_WARNING=y # CONFIG_QFMT_V1 is not set # CONFIG_QFMT_V2 is not set CONFIG_QUOTACTL=y -CONFIG_QUOTACTL_COMPAT=y # CONFIG_AUTOFS4_FS is not set # CONFIG_AUTOFS_FS is not set # CONFIG_FUSE_FS is not set # CONFIG_OVERLAY_FS is not set -# CONFIG_SHIFT_FS is not set # # Caches @@ -3533,8 +3698,11 @@ CONFIG_SYSFS=y CONFIG_TMPFS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set CONFIG_MEMFD_CREATE=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y # CONFIG_CONFIGFS_FS is not set @@ -3546,6 +3714,7 @@ CONFIG_MISC_FILESYSTEMS=y # CONFIG_ECRYPT_FS is not set # CONFIG_CRAMFS is not set CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 CONFIG_PSTORE_DEFLATE_COMPRESS=y # CONFIG_PSTORE_LZO_COMPRESS is not set # CONFIG_PSTORE_LZ4_COMPRESS is not set @@ -3559,12 +3728,12 @@ CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" # CONFIG_PSTORE_PMSG is not set # CONFIG_PSTORE_FTRACE is not set # CONFIG_PSTORE_RAM is not set -# CONFIG_AUFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y # CONFIG_NFS_FS is not set # CONFIG_NFSD is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_9P_FS=y @@ -3622,20 +3791,18 @@ CONFIG_NLS_DEFAULT="utf8" # CONFIG_NLS_MAC_TURKISH is not set # CONFIG_NLS_UTF8 is not set # CONFIG_UNICODE is not set +CONFIG_IO_WQ=y # end of File systems # # Security options # CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y # CONFIG_KEYS_REQUEST_CACHE is not set # CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set # CONFIG_ENCRYPTED_KEYS is not set # CONFIG_KEY_DH_OPERATIONS is not set CONFIG_SECURITY_DMESG_RESTRICT=y -# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set CONFIG_SECURITY=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y @@ -3655,6 +3822,8 @@ CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 # CONFIG_SECURITY_SMACK is not set CONFIG_SECURITY_TOMOYO=y CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 @@ -3670,10 +3839,12 @@ CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y CONFIG_SECURITY_YAMA=y # CONFIG_SECURITY_SAFESETID is not set # CONFIG_SECURITY_LOCKDOWN_LSM is not set +# CONFIG_SECURITY_LANDLOCK is not set CONFIG_INTEGRITY=y # CONFIG_INTEGRITY_SIGNATURE is not set CONFIG_INTEGRITY_AUDIT=y # CONFIG_IMA is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set # CONFIG_EVM is not set # CONFIG_DEFAULT_SECURITY_SELINUX is not set # CONFIG_DEFAULT_SECURITY_TOMOYO is not set @@ -3704,8 +3875,8 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG2=y @@ -3723,6 +3894,7 @@ CONFIG_CRYPTO_NULL2=y # CONFIG_CRYPTO_PCRYPT is not set # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set # # Public-key cryptography @@ -3730,7 +3902,11 @@ CONFIG_CRYPTO_AUTHENC=y CONFIG_CRYPTO_RSA=y # CONFIG_CRYPTO_DH is not set # CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set # CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set # # Authenticated Encryption with Associated Data @@ -3777,6 +3953,9 @@ CONFIG_CRYPTO_RSA=y # CONFIG_CRYPTO_CRC32 is not set # CONFIG_CRYPTO_CRC32_PCLMUL is not set # CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set CONFIG_CRYPTO_CRCT10DIF=y # CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set # CONFIG_CRYPTO_GHASH is not set @@ -3785,33 +3964,25 @@ CONFIG_CRYPTO_CRCT10DIF=y # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y # CONFIG_CRYPTO_SHA1_SSSE3 is not set # CONFIG_CRYPTO_SHA256_SSSE3 is not set # CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y CONFIG_CRYPTO_SHA256=y # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_SM3 is not set # CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set # # Ciphers # -CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_TI is not set # CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_BLOWFISH_X86_64 is not set # CONFIG_CRYPTO_CAMELLIA is not set @@ -3825,17 +3996,15 @@ CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_DES3_EDE_X86_64 is not set # CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set # CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set # CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set # CONFIG_CRYPTO_TWOFISH is not set # CONFIG_CRYPTO_TWOFISH_X86_64 is not set # CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set @@ -3862,6 +4031,18 @@ CONFIG_CRYPTO_LZO=y # CONFIG_CRYPTO_USER_API_RNG is not set # CONFIG_CRYPTO_USER_API_AEAD is not set CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_PADLOCK is not set # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set @@ -3875,11 +4056,13 @@ CONFIG_CRYPTO_DEV_SP_PSP=y # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set # CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set # CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set CONFIG_ASYMMETRIC_KEY_TYPE=y CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y CONFIG_X509_CERTIFICATE_PARSER=y @@ -3901,6 +4084,7 @@ CONFIG_BINARY_PRINTF=y # # Library routines # +CONFIG_LINEAR_RANGES=y # CONFIG_PACKING is not set CONFIG_BITREVERSE=y CONFIG_GENERIC_STRNCPY_FROM_USER=y @@ -3908,11 +4092,13 @@ CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y CONFIG_GENERIC_FIND_FIRST_BIT=y # CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_IOMAP=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y # CONFIG_CRC_CCITT is not set # CONFIG_CRC16 is not set CONFIG_CRC_T10DIF=y @@ -3935,6 +4121,7 @@ CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y CONFIG_XZ_DEC=y CONFIG_XZ_DEC_X86=y # CONFIG_XZ_DEC_POWERPC is not set @@ -3950,17 +4137,21 @@ CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_XZ=y CONFIG_DECOMPRESS_LZO=y CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y CONFIG_GENERIC_ALLOCATOR=y +CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y CONFIG_NEED_SG_DMA_LENGTH=y CONFIG_NEED_DMA_MAP_STATE=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y CONFIG_SWIOTLB=y # CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set CONFIG_SGL_ALLOC=y CONFIG_IOMMU_HELPER=y CONFIG_CPU_RMAP=y @@ -3971,21 +4162,24 @@ CONFIG_NLATTR=y CONFIG_CLZ_TAB=y CONFIG_IRQ_POLL=y CONFIG_MPILIB=y +CONFIG_DIMLIB=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y CONFIG_FONT_SUPPORT=y # CONFIG_FONTS is not set CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_UACCESS_MCSAFE=y +CONFIG_ARCH_HAS_COPY_MC=y CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set # end of Library routines +CONFIG_PLDMFW=y + # # Kernel hacking # @@ -3995,33 +4189,51 @@ CONFIG_ARCH_STACKWALK=y # CONFIG_PRINTK_TIME=y # CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_CONSOLE_LOGLEVEL_QUIET=4 CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 CONFIG_BOOT_PRINTK_DELAY=y CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y # end of printk and dmesg options # # Compile-time checks and compiler options # # CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y CONFIG_FRAME_WARN=2048 CONFIG_STRIP_ASM_SYMS=y # CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y # CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y # CONFIG_DEBUG_SECTION_MISMATCH is not set CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set # end of Compile-time checks and compiler options +# +# Generic Kernel Debugging Instruments +# CONFIG_MAGIC_SYSRQ=y CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_MISC=y @@ -4032,34 +4244,45 @@ CONFIG_PAGE_EXTENSION=y # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_PAGE_OWNER is not set CONFIG_PAGE_POISONING=y -CONFIG_PAGE_POISONING_NO_SANITY=y -# CONFIG_PAGE_POISONING_ZERO is not set # CONFIG_DEBUG_PAGE_REF is not set # CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_SLAB is not set CONFIG_HAVE_DEBUG_KMEMLEAK=y # CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y # CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y # CONFIG_DEBUG_VIRTUAL is not set CONFIG_DEBUG_MEMORY_INIT=y # CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y # CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set # end of Memory Debugging -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set # CONFIG_DEBUG_SHIRQ is not set # -# Debug Lockups and Hangs +# Debug Oops, Lockups and Hangs # +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 CONFIG_LOCKUP_DETECTOR=y CONFIG_SOFTLOCKUP_DETECTOR=y # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set @@ -4074,15 +4297,16 @@ CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 # CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs +# end of Debug Oops, Lockups and Hangs -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 +# +# Scheduler Debugging +# CONFIG_SCHED_DEBUG=y CONFIG_SCHED_INFO=y CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y +# end of Scheduler Debugging + # CONFIG_DEBUG_TIMEKEEPING is not set # @@ -4101,23 +4325,33 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set # CONFIG_LOCK_TORTURE_TEST is not set # CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set # end of Lock Debugging (spinlocks, mutexes, etc...) +# CONFIG_DEBUG_IRQFLAGS is not set CONFIG_STACKTRACE=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set # CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y + +# +# Debug kernel data structures +# CONFIG_DEBUG_LIST=y # CONFIG_DEBUG_PLIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + # CONFIG_DEBUG_CREDENTIALS is not set # # RCU Debugging # -# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_SCALE_TEST is not set # CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set CONFIG_RCU_CPU_STALL_TIMEOUT=21 # CONFIG_RCU_TRACE is not set # CONFIG_RCU_EQS_DEBUG is not set @@ -4125,8 +4359,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=21 # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set # CONFIG_LATENCYTOP is not set CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_NOP_TRACER=y @@ -4134,9 +4366,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y CONFIG_HAVE_C_RECORDMCOUNT=y CONFIG_TRACER_MAX_TRACE=y CONFIG_TRACE_CLOCK=y @@ -4147,51 +4382,103 @@ CONFIG_TRACING=y CONFIG_GENERIC_TRACER=y CONFIG_TRACING_SUPPORT=y CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set CONFIG_FUNCTION_TRACER=y CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_PREEMPTIRQ_EVENTS is not set +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y # CONFIG_IRQSOFF_TRACER is not set # CONFIG_SCHED_TRACER is not set # CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y CONFIG_FTRACE_SYSCALLS=y CONFIG_TRACER_SNAPSHOT=y # CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set CONFIG_BRANCH_PROFILE_NONE=y # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set # CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y CONFIG_UPROBE_EVENTS=y CONFIG_BPF_EVENTS=y CONFIG_DYNAMIC_EVENTS=y CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set # CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set # CONFIG_TRACEPOINT_BENCHMARK is not set # CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set # CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set # CONFIG_BACKTRACE_SELF_TEST is not set # CONFIG_RBTREE_TEST is not set # CONFIG_REED_SOLOMON_TEST is not set # CONFIG_INTERVAL_TREE_TEST is not set # CONFIG_ATOMIC64_SELFTEST is not set # CONFIG_TEST_HEXDUMP is not set +# CONFIG_STRING_SELFTEST is not set # CONFIG_TEST_STRING_HELPERS is not set # CONFIG_TEST_STRSCPY is not set # CONFIG_TEST_KSTRTOX is not set # CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_SCANF is not set # CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set # CONFIG_TEST_UUID is not set # CONFIG_TEST_XARRAY is not set # CONFIG_TEST_OVERFLOW is not set @@ -4205,42 +4492,10 @@ CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_MEMCAT_P is not set # CONFIG_TEST_STACKINIT is not set # CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +CONFIG_ARCH_USE_MEMTEST=y CONFIG_MEMTEST=y -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -CONFIG_DEBUG_WX=y -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set +# end of Kernel Testing and Coverage # end of Kernel hacking From 2212be2ea617d05a661728d50a170471bb4222f8 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 6 Jan 2022 09:39:00 -0800 Subject: [PATCH 037/132] aeeon/i11: remove console Turns out we don't need it; serial doesn't work anyway. Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index d39bef7d..695014ad 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -210,7 +210,6 @@ cpu.cpio.lzma: cpu.cpio cpu.cpio: Makefile u-root -build=bb -o cpu.cpio \ -files ~/.ssh/cpu_rsa.pub:key.pub \ - -uinitcmd=/bbin/console \ github.com/u-root/cpu/cmds/cpud \ github.com/u-root/u-root/cmds/exp/console \ github.com/u-root/u-root/cmds/exp/ed \ From cb75a707d8b53b6b151821e40fc23dfbfec25437 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 6 Jan 2022 09:59:24 -0800 Subject: [PATCH 038/132] aeeon/i11: prune the kernel Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash.config | 220 +++++---------------------- 1 file changed, 42 insertions(+), 178 deletions(-) diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 793ee6be..b2df6463 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -50,8 +50,8 @@ CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y # CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set CONFIG_AUDIT=y CONFIG_HAVE_ARCH_AUDITSYSCALL=y CONFIG_AUDITSYSCALL=y @@ -131,7 +131,7 @@ CONFIG_TASK_IO_ACCOUNTING=y # CONFIG_PSI is not set # end of CPU/Task time and stats accounting -CONFIG_CPU_ISOLATION=y +# CONFIG_CPU_ISOLATION is not set # # RCU Subsystem @@ -166,8 +166,6 @@ CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y CONFIG_CC_HAS_INT128=y CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set CONFIG_CGROUPS=y CONFIG_PAGE_COUNTER=y CONFIG_MEMCG=y @@ -190,34 +188,28 @@ CONFIG_CGROUP_PERF=y # CONFIG_CGROUP_DEBUG is not set CONFIG_SOCK_CGROUP_DATA=y CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_TIME_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set CONFIG_PID_NS=y -CONFIG_NET_NS=y -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set # CONFIG_SYSFS_DEPRECATED is not set CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="../cpu.cpio" CONFIG_INITRAMFS_ROOT_UID=0 CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_RD_ZSTD=y -CONFIG_INITRAMFS_COMPRESSION_GZIP=y -# CONFIG_INITRAMFS_COMPRESSION_BZIP2 is not set -# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set -# CONFIG_INITRAMFS_COMPRESSION_XZ is not set -# CONFIG_INITRAMFS_COMPRESSION_LZO is not set -# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set -# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y # CONFIG_INITRAMFS_COMPRESSION_NONE is not set # CONFIG_BOOT_CONFIG is not set CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y @@ -258,9 +250,8 @@ CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y CONFIG_KALLSYMS_BASE_RELATIVE=y CONFIG_USERFAULTFD=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_KCMP=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y # CONFIG_PC104 is not set @@ -272,16 +263,16 @@ CONFIG_PERF_EVENTS=y # CONFIG_DEBUG_PERF_USE_VMALLOC is not set # end of Kernel Performance Events And Counters -CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_VM_EVENT_COUNTERS is not set # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -CONFIG_SLAB_FREELIST_RANDOM=y +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set # CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_PROFILING=y +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set CONFIG_TRACEPOINTS=y # end of General setup @@ -323,43 +314,17 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -CONFIG_X86_MPPARSE=y +# CONFIG_X86_MPPARSE is not set # CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y +# CONFIG_RETPOLINE is not set # CONFIG_X86_CPU_RESCTRL is not set # CONFIG_X86_EXTENDED_PLATFORM is not set -CONFIG_X86_INTEL_LPSS=y -CONFIG_X86_AMD_PLATFORM_DEVICE=y -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -CONFIG_PARAVIRT_XXL=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -CONFIG_X86_HV_CALLBACK_VECTOR=y -CONFIG_XEN=y -CONFIG_XEN_PV=y -CONFIG_XEN_512GB=y -CONFIG_XEN_PV_SMP=y -CONFIG_XEN_PV_DOM0=y -CONFIG_XEN_PVHVM=y -CONFIG_XEN_PVHVM_SMP=y -CONFIG_XEN_PVHVM_GUEST=y -CONFIG_XEN_SAVE_RESTORE=y -# CONFIG_XEN_DEBUG_FS is not set -CONFIG_XEN_PVH=y -CONFIG_XEN_DOM0=y -CONFIG_KVM_GUEST=y -CONFIG_ARCH_CPUIDLE_HALTPOLL=y -CONFIG_PVH=y -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -# CONFIG_JAILHOUSE_GUEST is not set -# CONFIG_ACRN_GUEST is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set # CONFIG_MK8 is not set # CONFIG_MPSC is not set # CONFIG_MCORE2 is not set @@ -382,23 +347,22 @@ CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_ZHAOXIN=y CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set # CONFIG_MAXSMP is not set CONFIG_NR_CPUS_RANGE_BEGIN=2 CONFIG_NR_CPUS_RANGE_END=512 CONFIG_NR_CPUS_DEFAULT=64 CONFIG_NR_CPUS=512 CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y +# CONFIG_SCHED_MC is not set CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set CONFIG_X86_MCE=y # CONFIG_X86_MCELOG_LEGACY is not set CONFIG_X86_MCE_INTEL=y -CONFIG_X86_MCE_AMD=y +# CONFIG_X86_MCE_AMD is not set CONFIG_X86_MCE_THRESHOLD=y # CONFIG_X86_MCE_INJECT is not set @@ -412,26 +376,20 @@ CONFIG_PERF_EVENTS_INTEL_CSTATE=y CONFIG_PERF_EVENTS_AMD_UNCORE=y # end of Performance monitoring -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_X86_VSYSCALL_EMULATION is not set CONFIG_X86_IOPL_IOPERM=y # CONFIG_I8K is not set CONFIG_MICROCODE=y CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # CONFIG_X86_5LEVEL is not set CONFIG_X86_DIRECT_GBPAGES=y # CONFIG_X86_CPA_STATISTICS is not set # CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_NUMA=y -CONFIG_AMD_NUMA=y -CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NUMA_EMU=y -CONFIG_NODES_SHIFT=6 +# CONFIG_NUMA is not set CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y @@ -466,7 +424,7 @@ CONFIG_KEXEC=y CONFIG_KEXEC_FILE=y CONFIG_ARCH_HAS_KEXEC_PURGATORY=y # CONFIG_KEXEC_SIG is not set -CONFIG_CRASH_DUMP=y +# CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y @@ -485,13 +443,12 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y CONFIG_CMDLINE_BOOL=y CONFIG_CMDLINE="ip=dhcp console=tty0" CONFIG_CMDLINE_OVERRIDE=y -CONFIG_MODIFY_LDT_SYSCALL=y +# CONFIG_MODIFY_LDT_SYSCALL is not set CONFIG_HAVE_LIVEPATCH=y # end of Processor type and features CONFIG_ARCH_HAS_ADD_PAGES=y CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y -CONFIG_USE_PERCPU_NUMA_NODE_ID=y # # Power management and ACPI options @@ -499,7 +456,6 @@ CONFIG_USE_PERCPU_NUMA_NODE_ID=y CONFIG_SUSPEND=y CONFIG_SUSPEND_FREEZER=y # CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_HIBERNATE_CALLBACKS=y CONFIG_PM_SLEEP=y CONFIG_PM_SLEEP_SMP=y # CONFIG_PM_AUTOSLEEP is not set @@ -536,7 +492,6 @@ CONFIG_ACPI_DOCK=y CONFIG_ACPI_CPU_FREQ_PSS=y CONFIG_ACPI_PROCESSOR_CSTATE=y CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set @@ -553,8 +508,6 @@ CONFIG_ACPI_HED=y # CONFIG_ACPI_CUSTOM_METHOD is not set CONFIG_ACPI_BGRT=y # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_ACPI_NUMA=y -# CONFIG_ACPI_HMAT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y CONFIG_ACPI_APEI=y @@ -609,8 +562,6 @@ CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # CONFIG_CPU_IDLE_GOV_TEO is not set -# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set -CONFIG_HALTPOLL_CPUIDLE=y # end of CPU Idle CONFIG_INTEL_IDLE=y @@ -621,7 +572,6 @@ CONFIG_INTEL_IDLE=y # CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_XEN=y CONFIG_MMCONF_FAM10H=y # CONFIG_PCI_CNB20LE_QUIRK is not set # CONFIG_ISA_BUS is not set @@ -690,8 +640,6 @@ CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_MMU_GATHER_TABLE_FREE=y -CONFIG_MMU_GATHER_RCU_TABLE_FREE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y @@ -812,7 +760,6 @@ CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_HAVE_FAST_GUP=y -CONFIG_NUMA_KEEP_MEMINFO=y CONFIG_MEMORY_ISOLATION=y CONFIG_HAVE_BOOTMEM_INFO_NODE=y CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y @@ -832,7 +779,6 @@ CONFIG_ARCH_ENABLE_THP_MIGRATION=y CONFIG_CONTIG_ALLOC=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y @@ -844,7 +790,6 @@ CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_ARCH_WANTS_THP_SWAP=y # CONFIG_CLEANCACHE is not set # CONFIG_CMA is not set -CONFIG_MEM_SOFT_DIRTY=y CONFIG_ZPOOL=y CONFIG_ZBUD=y # CONFIG_Z3FOLD is not set @@ -1168,7 +1113,6 @@ CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y -# CONFIG_NET_9P_XEN is not set # CONFIG_NET_9P_DEBUG is not set # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set @@ -1213,7 +1157,6 @@ CONFIG_PCI_QUIRKS=y CONFIG_PCI_REALLOC_ENABLE_AUTO=y # CONFIG_PCI_STUB is not set # CONFIG_PCI_PF_STUB is not set -CONFIG_XEN_PCIDEV_FRONTEND=y CONFIG_PCI_ATS=y CONFIG_PCI_LOCKLESS_CONFIG=y CONFIG_PCI_IOV=y @@ -1299,7 +1242,6 @@ CONFIG_ALLOW_DEV_COREDUMP=y # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_SYS_HYPERVISOR=y CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y # end of Generic Driver Options @@ -1323,9 +1265,6 @@ CONFIG_GENERIC_CPU_VULNERABILITIES=y # CONFIG_EDD is not set CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y # CONFIG_FW_CFG_SYSFS is not set CONFIG_SYSFB=y # CONFIG_SYSFB_SIMPLEFB is not set @@ -1700,8 +1639,6 @@ CONFIG_USB_ARMLINUX=y # CONFIG_WWAN is not set # end of Wireless WAN -# CONFIG_XEN_NETDEV_FRONTEND is not set -# CONFIG_XEN_NETDEV_BACKEND is not set # CONFIG_VMXNET3 is not set # CONFIG_FUJITSU_ES is not set # CONFIG_NETDEVSIM is not set @@ -1765,14 +1702,12 @@ CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y CONFIG_MOUSE_PS2_ELANTECH=y CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y CONFIG_MOUSE_PS2_SENTELIC=y # CONFIG_MOUSE_PS2_TOUCHKIT is not set CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set CONFIG_MOUSE_PS2_SMBUS=y # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_APPLETOUCH is not set @@ -1904,7 +1839,6 @@ CONFIG_INPUT_MISC=y # CONFIG_INPUT_IQS269A is not set # CONFIG_INPUT_IQS626A is not set # CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y # CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set # CONFIG_INPUT_DRV260X_HAPTICS is not set # CONFIG_INPUT_DRV2665_HAPTICS is not set @@ -2000,10 +1934,6 @@ CONFIG_SERIAL_NONSTANDARD=y # CONFIG_N_GSM is not set # CONFIG_NOZOMI is not set # CONFIG_NULL_TTY is not set -CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y # CONFIG_SERIAL_DEV_BUS is not set # CONFIG_TTY_PRINTK is not set # CONFIG_VIRTIO_CONSOLE is not set @@ -2274,8 +2204,6 @@ CONFIG_HWMON=y # # Native drivers # -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set # CONFIG_SENSORS_AD7414 is not set # CONFIG_SENSORS_AD7418 is not set # CONFIG_SENSORS_ADM1021 is not set @@ -2523,7 +2451,6 @@ CONFIG_WATCHDOG_OPEN_TIMEOUT=0 # CONFIG_NI903X_WDT is not set # CONFIG_NIC7018_WDT is not set # CONFIG_MEN_A21_WDT is not set -# CONFIG_XEN_WDT is not set # # PCI-based Watchdog Cards @@ -2707,12 +2634,7 @@ CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y @@ -2758,7 +2680,6 @@ CONFIG_FB_EFI=y # CONFIG_FB_UDL is not set # CONFIG_FB_IBM_GXT4500 is not set # CONFIG_FB_VIRTUAL is not set -CONFIG_XEN_FBDEV_FRONTEND=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_SIMPLE is not set @@ -3126,7 +3047,6 @@ CONFIG_LEDS_CLASS=y # # LED drivers # -# CONFIG_LEDS_APU is not set # CONFIG_LEDS_LM3530 is not set # CONFIG_LEDS_LM3532 is not set # CONFIG_LEDS_LM3642 is not set @@ -3134,13 +3054,11 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_GPIO is not set # CONFIG_LEDS_LP3944 is not set # CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set # CONFIG_LEDS_PCA955X is not set # CONFIG_LEDS_PCA963X is not set # CONFIG_LEDS_PWM is not set # CONFIG_LEDS_REGULATOR is not set # CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set # CONFIG_LEDS_LT3593 is not set # CONFIG_LEDS_TCA6507 is not set # CONFIG_LEDS_TLC591XX is not set @@ -3150,7 +3068,6 @@ CONFIG_LEDS_CLASS=y # LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) # # CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set # CONFIG_LEDS_MLXREG is not set # CONFIG_LEDS_USER is not set # CONFIG_LEDS_NIC78BX is not set @@ -3197,9 +3114,7 @@ CONFIG_EDAC_SUPPORT=y CONFIG_EDAC=y CONFIG_EDAC_LEGACY_SYSFS=y # CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_DECODE_MCE=y # CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_AMD64 is not set # CONFIG_EDAC_E752X is not set # CONFIG_EDAC_I82975X is not set # CONFIG_EDAC_I3000 is not set @@ -3357,41 +3272,8 @@ CONFIG_VHOST_MENU=y # # Microsoft Hyper-V guest support # -# CONFIG_HYPERV is not set # end of Microsoft Hyper-V guest support -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 -CONFIG_XEN_SCRUB_PAGES_DEFAULT=y -CONFIG_XEN_DEV_EVTCHN=y -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=y -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=y -CONFIG_XEN_GRANT_DEV_ALLOC=y -# CONFIG_XEN_GRANT_DMA_ALLOC is not set -CONFIG_SWIOTLB_XEN=y -CONFIG_XEN_PCIDEV_BACKEND=y -# CONFIG_XEN_PVCALLS_FRONTEND is not set -# CONFIG_XEN_PVCALLS_BACKEND is not set -CONFIG_XEN_PRIVCMD=y -CONFIG_XEN_ACPI_PROCESSOR=y -CONFIG_XEN_MCE_LOG=y -CONFIG_XEN_HAVE_PVMMU=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -CONFIG_XEN_ACPI=y -CONFIG_XEN_SYMS=y -CONFIG_XEN_HAVE_VPMU=y -CONFIG_XEN_UNPOPULATED_ALLOC=y -# end of Xen driver support - # CONFIG_GREYBUS is not set # CONFIG_COMEDI is not set CONFIG_STAGING=y @@ -3427,7 +3309,6 @@ CONFIG_X86_PLATFORM_DEVICES=y # CONFIG_SENSORS_HDAPS is not set # CONFIG_THINKPAD_ACPI is not set CONFIG_X86_PLATFORM_DRIVERS_INTEL=y -# CONFIG_INTEL_ATOMISP2_PM is not set # CONFIG_INTEL_SAR_INT1092 is not set # CONFIG_INTEL_SKL_INT3472 is not set # CONFIG_INTEL_PMC_CORE is not set @@ -3444,7 +3325,6 @@ CONFIG_X86_PLATFORM_DRIVERS_INTEL=y # CONFIG_INTEL_PUNIT_IPC is not set # CONFIG_INTEL_RST is not set # CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_TURBO_MAX_3 is not set # CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set # CONFIG_PCENGINES_APU2 is not set # CONFIG_SAMSUNG_LAPTOP is not set @@ -3464,7 +3344,6 @@ CONFIG_PMC_ATOM=y # CONFIG_MELLANOX_PLATFORM is not set CONFIG_SURFACE_PLATFORMS=y # CONFIG_SURFACE_3_POWER_OPREGION is not set -# CONFIG_SURFACE_GPE is not set # CONFIG_SURFACE_HOTPLUG is not set # CONFIG_SURFACE_PRO3_BUTTON is not set CONFIG_HAVE_CLK=y @@ -3606,7 +3485,6 @@ CONFIG_GENERIC_PHY=y # end of PHY Subsystem CONFIG_POWERCAP=y -# CONFIG_INTEL_RAPL is not set # CONFIG_IDLE_INJECT is not set # CONFIG_DTPM is not set # CONFIG_MCB is not set @@ -3687,8 +3565,6 @@ CONFIG_QUOTACTL=y # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_PROC_CHILDREN=y @@ -4120,8 +3996,6 @@ CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y CONFIG_XZ_DEC=y CONFIG_XZ_DEC_X86=y # CONFIG_XZ_DEC_POWERPC is not set @@ -4131,21 +4005,13 @@ CONFIG_XZ_DEC_X86=y # CONFIG_XZ_DEC_SPARC is not set CONFIG_XZ_DEC_BCJ=y # CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_DECOMPRESS_ZSTD=y CONFIG_GENERIC_ALLOCATOR=y -CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y -CONFIG_DMA_OPS=y CONFIG_NEED_SG_DMA_LENGTH=y CONFIG_NEED_DMA_MAP_STATE=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y @@ -4153,7 +4019,6 @@ CONFIG_SWIOTLB=y # CONFIG_DMA_API_DEBUG is not set # CONFIG_DMA_MAP_BENCHMARK is not set CONFIG_SGL_ALLOC=y -CONFIG_IOMMU_HELPER=y CONFIG_CPU_RMAP=y CONFIG_DQL=y CONFIG_GLOB=y @@ -4435,7 +4300,6 @@ CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_USB_XDBC is not set # CONFIG_EFI_PGT_DUMP is not set # CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set CONFIG_HAVE_MMIOTRACE_SUPPORT=y # CONFIG_X86_DECODER_SELFTEST is not set CONFIG_IO_DELAY_0X80=y From ace6dd61f58b558ddd785d987abfc0d971681282 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 6 Jan 2022 09:59:46 -0800 Subject: [PATCH 039/132] aeeon/i11: prune the kernel Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash.config | 188 ++++----------------------- 1 file changed, 24 insertions(+), 164 deletions(-) diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index b2df6463..15e277b1 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -186,7 +186,6 @@ CONFIG_CGROUP_PERF=y # CONFIG_CGROUP_BPF is not set # CONFIG_CGROUP_MISC is not set # CONFIG_CGROUP_DEBUG is not set -CONFIG_SOCK_CGROUP_DATA=y CONFIG_NAMESPACES=y # CONFIG_UTS_NS is not set # CONFIG_TIME_NS is not set @@ -216,11 +215,9 @@ CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_LD_ORPHAN_WARN=y CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_HAVE_PCSPKR_PLATFORM=y CONFIG_EXPERT=y -CONFIG_UID16=y CONFIG_MULTIUSER=y CONFIG_SGETMASK_SYSCALL=y CONFIG_SYSFS_SYSCALL=y @@ -228,7 +225,6 @@ CONFIG_FHANDLE=y CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y CONFIG_BUG=y -CONFIG_ELF_CORE=y # CONFIG_PCSPKR_PLATFORM is not set CONFIG_BASE_FULL=y CONFIG_FUTEX=y @@ -288,10 +284,8 @@ CONFIG_ARCH_MMAP_RND_BITS_MIN=28 CONFIG_ARCH_MMAP_RND_BITS_MAX=32 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_FILTER_PGPROT=y @@ -436,7 +430,6 @@ CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa CONFIG_HOTPLUG_CPU=y # CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set # CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_COMPAT_VDSO is not set CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set @@ -462,7 +455,7 @@ CONFIG_PM_SLEEP_SMP=y # CONFIG_PM_WAKELOCKS is not set CONFIG_PM=y CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set # CONFIG_PM_TEST_SUSPEND is not set CONFIG_PM_SLEEP_DEBUG=y # CONFIG_DPM_WATCHDOG is not set @@ -520,7 +513,7 @@ CONFIG_ACPI_APEI_MEMORY_FAILURE=y CONFIG_ACPI_EXTLOG=y # CONFIG_ACPI_CONFIGFS is not set # CONFIG_PMIC_OPREGION is not set -CONFIG_X86_PM_TIMER=y +# CONFIG_X86_PM_TIMER is not set CONFIG_ACPI_PRMT=y # @@ -564,7 +557,7 @@ CONFIG_CPU_IDLE_GOV_MENU=y # CONFIG_CPU_IDLE_GOV_TEO is not set # end of CPU Idle -CONFIG_INTEL_IDLE=y +# CONFIG_INTEL_IDLE is not set # end of Power management and ACPI options # @@ -575,19 +568,15 @@ CONFIG_PCI_MMCONFIG=y CONFIG_MMCONF_FAM10H=y # CONFIG_PCI_CNB20LE_QUIRK is not set # CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y +# CONFIG_ISA_DMA_API is not set CONFIG_AMD_NB=y # end of Bus options (PCI etc.) # # Binary Emulations # -CONFIG_IA32_EMULATION=y -CONFIG_X86_X32=y -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set # end of Binary Emulations CONFIG_HAVE_KVM=y @@ -643,8 +632,6 @@ CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y CONFIG_SECCOMP=y @@ -677,14 +664,9 @@ CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_EXIT_THREAD=y CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y CONFIG_HAVE_STACK_VALIDATION=y CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -CONFIG_COMPAT_32BIT_TIME=y +# CONFIG_COMPAT_32BIT_TIME is not set CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y @@ -742,12 +724,10 @@ CONFIG_FREEZER=y # Executable file formats # CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y CONFIG_BINFMT_SCRIPT=y # CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y +# CONFIG_COREDUMP is not set # end of Executable file formats # @@ -761,13 +741,12 @@ CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_HAVE_FAST_GUP=y CONFIG_MEMORY_ISOLATION=y -CONFIG_HAVE_BOOTMEM_INFO_NODE=y CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG_SPARSE=y # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set CONFIG_MHP_MEMMAP_ON_MEMORY=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y @@ -790,9 +769,7 @@ CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_ARCH_WANTS_THP_SWAP=y # CONFIG_CLEANCACHE is not set # CONFIG_CMA is not set -CONFIG_ZPOOL=y -CONFIG_ZBUD=y -# CONFIG_Z3FOLD is not set +# CONFIG_ZPOOL is not set # CONFIG_ZSMALLOC is not set CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set @@ -802,8 +779,6 @@ CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_ZONE_DMA_SET=y CONFIG_ZONE_DMA=y CONFIG_ZONE_DMA32=y -CONFIG_ZONE_DEVICE=y -# CONFIG_DEVICE_PRIVATE is not set CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y CONFIG_ARCH_HAS_PKEYS=y # CONFIG_PERCPU_STATS is not set @@ -836,18 +811,14 @@ CONFIG_AF_UNIX_OOB=y CONFIG_XFRM=y # CONFIG_XFRM_USER is not set # CONFIG_XFRM_INTERFACE is not set -CONFIG_XFRM_SUB_POLICY=y +# CONFIG_XFRM_SUB_POLICY is not set CONFIG_XFRM_MIGRATE=y # CONFIG_XFRM_STATISTICS is not set # CONFIG_NET_KEY is not set # CONFIG_XDP_SOCKETS is not set CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y # CONFIG_IP_PNP_BOOTP is not set @@ -856,15 +827,10 @@ CONFIG_IP_PNP_DHCP=y # CONFIG_NET_IPGRE_DEMUX is not set CONFIG_NET_IP_TUNNEL=y CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y +# CONFIG_SYN_COOKIES is not set # CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -CONFIG_NET_FOU=y -CONFIG_NET_FOU_IP_TUNNELS=y +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set @@ -874,30 +840,10 @@ CONFIG_INET_TCP_DIAG=y # CONFIG_INET_UDP_DIAG is not set # CONFIG_INET_RAW_DIAG is not set CONFIG_INET_DIAG_DESTROY=y -CONFIG_TCP_CONG_ADVANCED=y -CONFIG_TCP_CONG_BIC=y +# CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y -CONFIG_TCP_CONG_WESTWOOD=y -CONFIG_TCP_CONG_HTCP=y -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -# CONFIG_DEFAULT_BIC is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_HTCP is not set -# CONFIG_DEFAULT_WESTWOOD is not set -# CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y +# CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y CONFIG_IPV6_ROUTER_PREF=y CONFIG_IPV6_ROUTE_INFO=y @@ -913,8 +859,6 @@ CONFIG_IPV6_SIT=y CONFIG_IPV6_SIT_6RD=y CONFIG_IPV6_NDISC_NODETYPE=y CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_FOU=y -CONFIG_IPV6_FOU_TUNNEL=y CONFIG_IPV6_MULTIPLE_TABLES=y CONFIG_IPV6_SUBTREES=y CONFIG_IPV6_MROUTE=y @@ -990,98 +934,18 @@ CONFIG_NETFILTER_INGRESS=y # CONFIG_PHONET is not set # CONFIG_6LOWPAN is not set # CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_INGRESS is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -CONFIG_NET_EMATCH=y -CONFIG_NET_EMATCH_STACK=32 -# CONFIG_NET_EMATCH_CMP is not set -# CONFIG_NET_EMATCH_NBYTE is not set -# CONFIG_NET_EMATCH_U32 is not set -# CONFIG_NET_EMATCH_META is not set -# CONFIG_NET_EMATCH_TEXT is not set -CONFIG_NET_CLS_ACT=y -# CONFIG_NET_ACT_POLICE is not set -# CONFIG_NET_ACT_GACT is not set -# CONFIG_NET_ACT_MIRRED is not set -# CONFIG_NET_ACT_SAMPLE is not set -# CONFIG_NET_ACT_NAT is not set -# CONFIG_NET_ACT_PEDIT is not set -# CONFIG_NET_ACT_SIMP is not set -# CONFIG_NET_ACT_SKBEDIT is not set -# CONFIG_NET_ACT_CSUM is not set -# CONFIG_NET_ACT_MPLS is not set -# CONFIG_NET_ACT_VLAN is not set -# CONFIG_NET_ACT_BPF is not set -# CONFIG_NET_ACT_SKBMOD is not set -# CONFIG_NET_ACT_IFE is not set -# CONFIG_NET_ACT_TUNNEL_KEY is not set -# CONFIG_NET_ACT_GATE is not set -# CONFIG_NET_TC_SKB_EXT is not set -CONFIG_NET_SCH_FIFO=y -CONFIG_DCB=y +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set # CONFIG_DNS_RESOLVER is not set # CONFIG_BATMAN_ADV is not set # CONFIG_OPENVSWITCH is not set # CONFIG_VSOCKETS is not set # CONFIG_NETLINK_DIAG is not set -CONFIG_MPLS=y -CONFIG_NET_MPLS_GSO=y -# CONFIG_MPLS_ROUTING is not set +# CONFIG_MPLS is not set # CONFIG_NET_NSH is not set # CONFIG_HSR is not set # CONFIG_NET_SWITCHDEV is not set -CONFIG_NET_L3_MASTER_DEV=y +# CONFIG_NET_L3_MASTER_DEV is not set # CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set CONFIG_PCPU_DEV_REFCNT=y @@ -1089,8 +953,8 @@ CONFIG_RPS=y CONFIG_RFS_ACCEL=y CONFIG_SOCK_RX_QUEUE_MAPPING=y CONFIG_XPS=y -CONFIG_CGROUP_NET_PRIO=y -CONFIG_CGROUP_NET_CLASSID=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y CONFIG_NET_FLOW_LIMIT=y @@ -1162,7 +1026,6 @@ CONFIG_PCI_LOCKLESS_CONFIG=y CONFIG_PCI_IOV=y CONFIG_PCI_PRI=y CONFIG_PCI_PASID=y -# CONFIG_PCI_P2PDMA is not set CONFIG_PCI_LABEL=y # CONFIG_PCIE_BUS_TUNE_OFF is not set CONFIG_PCIE_BUS_DEFAULT=y @@ -1402,7 +1265,6 @@ CONFIG_NET_CORE=y # CONFIG_DUMMY is not set # CONFIG_WIREGUARD is not set # CONFIG_EQUALIZER is not set -# CONFIG_IFB is not set # CONFIG_NET_TEAM is not set # CONFIG_MACVLAN is not set # CONFIG_IPVLAN is not set @@ -1418,7 +1280,6 @@ CONFIG_NET_POLL_CONTROLLER=y # CONFIG_TUN_VNET_CROSS_LE is not set # CONFIG_VETH is not set # CONFIG_NLMON is not set -# CONFIG_NET_VRF is not set # CONFIG_ARCNET is not set CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_3COM is not set @@ -1460,7 +1321,6 @@ CONFIG_IGBVF=y # CONFIG_IXGBE is not set # CONFIG_IXGBEVF is not set CONFIG_I40E=y -# CONFIG_I40E_DCB is not set # CONFIG_I40EVF is not set CONFIG_ICE=y # CONFIG_FM10K is not set From 83c23aa58fa8958e5cbd5e1b290a9b74759d74da Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 6 Jan 2022 10:38:00 -0800 Subject: [PATCH 040/132] aeeon/i11: further config pruning Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash.config | 133 +++------------------------ 1 file changed, 11 insertions(+), 122 deletions(-) diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 15e277b1..5688a808 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -868,7 +868,6 @@ CONFIG_IPV6_PIMSM_V2=y # CONFIG_IPV6_SEG6_HMAC is not set # CONFIG_IPV6_RPL_LWTUNNEL is not set # CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_NETLABEL is not set # CONFIG_MPTCP is not set CONFIG_NETWORK_SECMARK=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set @@ -1035,9 +1034,7 @@ CONFIG_PCIE_BUS_DEFAULT=y CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_ACPI=y # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -CONFIG_HOTPLUG_PCI_CPCI=y -# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set -# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set # CONFIG_HOTPLUG_PCI_SHPC is not set # @@ -2211,7 +2208,6 @@ CONFIG_HWMON=y # CONFIG_SENSORS_W83L786NG is not set # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set # # ACPI drivers @@ -3125,9 +3121,7 @@ CONFIG_ASYNC_TX_DMA=y # CONFIG_VIRT_DRIVERS is not set # CONFIG_VIRTIO_MENU is not set # CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +# CONFIG_VHOST_MENU is not set # # Microsoft Hyper-V guest support @@ -3136,19 +3130,7 @@ CONFIG_VHOST_MENU=y # CONFIG_GREYBUS is not set # CONFIG_COMEDI is not set -CONFIG_STAGING=y -# CONFIG_FB_SM750 is not set -CONFIG_STAGING_MEDIA=y - -# -# Android -# -# end of Android - -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_QLGE is not set +# CONFIG_STAGING is not set CONFIG_X86_PLATFORM_DEVICES=y # CONFIG_ACPI_WMI is not set # CONFIG_ACERHDF is not set @@ -3168,24 +3150,7 @@ CONFIG_X86_PLATFORM_DEVICES=y # CONFIG_IBM_RTL is not set # CONFIG_SENSORS_HDAPS is not set # CONFIG_THINKPAD_ACPI is not set -CONFIG_X86_PLATFORM_DRIVERS_INTEL=y -# CONFIG_INTEL_SAR_INT1092 is not set -# CONFIG_INTEL_SKL_INT3472 is not set -# CONFIG_INTEL_PMC_CORE is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set # CONFIG_PCENGINES_APU2 is not set # CONFIG_SAMSUNG_LAPTOP is not set # CONFIG_SAMSUNG_Q10 is not set @@ -3202,10 +3167,7 @@ CONFIG_X86_PLATFORM_DRIVERS_INTEL=y CONFIG_PMC_ATOM=y # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set -CONFIG_SURFACE_PLATFORMS=y -# CONFIG_SURFACE_3_POWER_OPREGION is not set -# CONFIG_SURFACE_HOTPLUG is not set -# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_SURFACE_PLATFORMS is not set CONFIG_HAVE_CLK=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y @@ -3234,9 +3196,7 @@ CONFIG_CLKEVT_I8253=y CONFIG_CLKBLD_I8253=y # end of Clock Source drivers -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX is not set # CONFIG_IOMMU_SUPPORT is not set # @@ -3248,7 +3208,6 @@ CONFIG_PCC=y # # Rpmsg drivers # -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set # CONFIG_RPMSG_VIRTIO is not set # end of Rpmsg drivers @@ -3401,7 +3360,6 @@ CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y CONFIG_QUOTA=y CONFIG_QUOTA_NETLINK_INTERFACE=y CONFIG_PRINT_QUOTA_WARNING=y @@ -3539,52 +3497,16 @@ CONFIG_KEYS=y # CONFIG_ENCRYPTED_KEYS is not set # CONFIG_KEY_DH_OPERATIONS is not set CONFIG_SECURITY_DMESG_RESTRICT=y -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_SECURITY_NETWORK_XFRM=y -CONFIG_SECURITY_PATH=y -CONFIG_LSM_MMAP_MIN_ADDR=65536 CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y CONFIG_HARDENED_USERCOPY=y CONFIG_HARDENED_USERCOPY_FALLBACK=y # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set # CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_SECURITY_SELINUX=y -# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set -# CONFIG_SECURITY_SELINUX_DISABLE is not set -CONFIG_SECURITY_SELINUX_DEVELOP=y -CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 -CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 -CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 -# CONFIG_SECURITY_SMACK is not set -CONFIG_SECURITY_TOMOYO=y -CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 -CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 -# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set -CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" -CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" -# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set -CONFIG_SECURITY_APPARMOR=y -CONFIG_SECURITY_APPARMOR_HASH=y -CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y -# CONFIG_SECURITY_APPARMOR_DEBUG is not set -CONFIG_SECURITY_YAMA=y -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -# CONFIG_SECURITY_LANDLOCK is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set # CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -# CONFIG_EVM is not set -# CONFIG_DEFAULT_SECURITY_SELINUX is not set -# CONFIG_DEFAULT_SECURITY_TOMOYO is not set -# CONFIG_DEFAULT_SECURITY_APPARMOR is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" @@ -4147,8 +4069,7 @@ CONFIG_FTRACE_MCOUNT_USE_CC=y # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_SAMPLES is not set CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y +# CONFIG_STRICT_DEVMEM is not set # # x86 Debugging @@ -4186,40 +4107,8 @@ CONFIG_UNWINDER_ORC=y CONFIG_ARCH_HAS_KCOV=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y # CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_DIV64 is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_STRING_SELFTEST is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_SCANF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_TEST_FREE_PAGES is not set -# CONFIG_TEST_FPU is not set -# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +# CONFIG_RUNTIME_TESTING_MENU is not set CONFIG_ARCH_USE_MEMTEST=y -CONFIG_MEMTEST=y +# CONFIG_MEMTEST is not set # end of Kernel Testing and Coverage # end of Kernel hacking From 09fd7a4ac8f843c3d3927b170efabe9cfdd52094 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 6 Jan 2022 12:59:40 -0800 Subject: [PATCH 041/132] Don't restrict dmesg access for any reason Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 5688a808..1f7e0d68 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -3496,7 +3496,7 @@ CONFIG_KEYS=y # CONFIG_PERSISTENT_KEYRINGS is not set # CONFIG_ENCRYPTED_KEYS is not set # CONFIG_KEY_DH_OPERATIONS is not set -CONFIG_SECURITY_DMESG_RESTRICT=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set CONFIG_PAGE_TABLE_ISOLATION=y From 29c25592426104eeed473f4c733a17fa5e868c1a Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 10 Jan 2022 09:27:55 -0800 Subject: [PATCH 042/132] Add the config for 5.4.65 Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash-5.4.65.config | 4212 +++++++++++++++++++ 1 file changed, 4212 insertions(+) create mode 100644 mainboards/aeeon/i11/cpuflash-5.4.65.config diff --git a/mainboards/aeeon/i11/cpuflash-5.4.65.config b/mainboards/aeeon/i11/cpuflash-5.4.65.config new file mode 100644 index 00000000..3d8eaecf --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-5.4.65.config @@ -0,0 +1,4212 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.65 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_VERSION_SIGNATURE="" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_INITRAMFS_COMPRESSION=".gz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_BPF_SYSCALL=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_XXL=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PV=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_512GB=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_KVM_DEBUG_FS is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_JAILHOUSE_GUEST is not set +# CONFIG_ACRN_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +CONFIG_NUMA_EMU=y +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +CONFIG_CRASH_DUMP=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_HMAT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_DPTF_POWER is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +CONFIG_SFI=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set +CONFIG_HALTPOLL_CPUIDLE=y +# end of CPU Idle + +CONFIG_INTEL_IDLE=y +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +CONFIG_IA32_EMULATION=y +CONFIG_X86_X32=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_64BIT_TIME=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ZONE_DEVICE=y +# CONFIG_DEVICE_PRIVATE is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +# CONFIG_NET_IPVTI is not set +CONFIG_NET_UDP_TUNNEL=y +CONFIG_NET_FOU=y +CONFIG_NET_FOU_IP_TUNNELS=y +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=y +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=y +CONFIG_TCP_CONG_HTCP=y +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +# CONFIG_TCP_CONG_BBR is not set +# CONFIG_DEFAULT_BIC is not set +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_HTCP is not set +# CONFIG_DEFAULT_WESTWOOD is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_FOU=y +CONFIG_IPV6_FOU_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_XEN is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=y +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_LABEL=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +CONFIG_HOTPLUG_PCI_CPCI=y +# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set +# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +CONFIG_INTEL_MEI=y +CONFIG_INTEL_MEI_ME=y +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=y +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +CONFIG_IXGB=y +CONFIG_IXGBE=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBEVF=y +CONFIG_I40E=y +CONFIG_IAVF=y +CONFIG_I40EVF=y +CONFIG_ICE=y +CONFIG_FM10K=y +CONFIG_IGC=y +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y + +# +# MII PHY device drivers +# +CONFIG_ADIN_PHY=y +CONFIG_AMD_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_FIXED_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +CONFIG_NATIONAL_PHY=y +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_XEN_NETDEV_FRONTEND is not set +# CONFIG_XEN_NETDEV_BACKEND is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +CONFIG_INPUT_SPARSEKMAP=y +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +# CONFIG_KEYBOARD_APPLESPI is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_PS2_VMMOUSE is not set +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PSXPAD_SPI is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_GTCO is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +# CONFIG_NVRAM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +CONFIG_SPI_DEBUG=y +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_NXP_FLEXSPI is not set +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_PXA2XX is not set +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +CONFIG_PINCTRL_CANNONLAKE=y +CONFIG_PINCTRL_CEDARFORK=y +CONFIG_PINCTRL_DENVERTON=y +CONFIG_PINCTRL_GEMINILAKE=y +CONFIG_PINCTRL_ICELAKE=y +CONFIG_PINCTRL_LEWISBURG=y +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +CONFIG_GPIO_ICH=y +CONFIG_GPIO_LYNXPOINT=y +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +CONFIG_GPIO_SCH=y +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_INTEL_MEI_WDT is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set +# CONFIG_XEN_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +CONFIG_LPC_ICH=y +CONFIG_LPC_SCH=y +# CONFIG_INTEL_SOC_PMIC_BXTWC is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_UPBOARD_FPGA is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# CONFIG_DRM_XEN is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_APU is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXCPLD is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_AMD64 is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_AM1805 is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV is not set +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCIDEV_BACKEND=y +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_FB_SM750 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_STAGING_MEDIA is not set + +# +# Android +# +# end of Android + +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_QLGE is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DELL_UART_BACKLIGHT is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ACPI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +CONFIG_INTEL_INT0002_VGPIO=y +CONFIG_INTEL_HID_EVENT=y +CONFIG_INTEL_VBTN=y +CONFIG_INTEL_IPS=y +CONFIG_INTEL_PMC_CORE=y +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +CONFIG_INTEL_RST=y +CONFIG_INTEL_SMARTCONNECT=y +CONFIG_INTEL_PMC_IPC=y +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_INTEL_PUNIT_IPC=y +CONFIG_INTEL_TELEMETRY=y +CONFIG_INTEL_TURBO_MAX_3=y +# CONFIG_I2C_MULTI_INSTANTIATE is not set +CONFIG_INTEL_ATOMISP2_PM=y +# CONFIG_PCENGINES_APU2 is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +CONFIG_UPBOARD_LEGACY=y +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_INTEL_RAPL is not set +# CONFIG_IDLE_INJECT is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# Ubuntu Supplied Third-Party Device Drivers +# +# CONFIG_HIO is not set +# end of Ubuntu Supplied Third-Party Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set +# CONFIG_SHIFT_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_AUFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_IOMMU_HELPER=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UACCESS_MCSAFE=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POISONING_NO_SANITY=y +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_PREEMPTIRQ_EVENTS is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_DEBUG_WX=y +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking From 763ba0311ac07d546a17f65e0139f8cf991da2d4 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 10 Jan 2022 09:28:10 -0800 Subject: [PATCH 043/132] aeeon/i11: Add the pci serial to the command line Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/cpuflash.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 1f7e0d68..0ee64b13 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -434,7 +434,7 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0" +CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=pciserial,force,1:0.0,115200" CONFIG_CMDLINE_OVERRIDE=y # CONFIG_MODIFY_LDT_SYSCALL is not set CONFIG_HAVE_LIVEPATCH=y From 9dfbdfc5844ce49afbe0fc5a1455568bd82fed69 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 10 Jan 2022 11:30:14 -0800 Subject: [PATCH 044/132] aeeon/i11: new makefile and config files These config files are for 5.15.0 : cpuflash.config 5.4.65 : cpuflash-5.4.65.config They start a cpu daemon on boot. The cpu daemon in turns starts a dhclient and a shell. You can type commands. They use pciserial for earlyprintk beacause their serial hardware does not work in any way I can find. 5.4.65 can't run the on-board ethernet, so I have to use a usb serial when I boot 5.4.65. They have a simple standard command line. You can override it via grub or kexec, but if you don't, looks like this for both of them: CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" While each kernel can kexec itself, they can not kexec the other. 5.15.0 kexec'ing 5.4.65: brick 5.4.65 kexec'ing 5.15.0: boots, but no working ethernet Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 1 + mainboards/aeeon/i11/cpuflash-5.4.65.config | 4 ++-- mainboards/aeeon/i11/cpuflash.config | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 695014ad..26dbe95a 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -209,6 +209,7 @@ cpu.cpio.lzma: cpu.cpio cpu.cpio: Makefile u-root -build=bb -o cpu.cpio \ + -initcmd=cpud \ -files ~/.ssh/cpu_rsa.pub:key.pub \ github.com/u-root/cpu/cmds/cpud \ github.com/u-root/u-root/cmds/exp/console \ diff --git a/mainboards/aeeon/i11/cpuflash-5.4.65.config b/mainboards/aeeon/i11/cpuflash-5.4.65.config index 3d8eaecf..974a2702 100644 --- a/mainboards/aeeon/i11/cpuflash-5.4.65.config +++ b/mainboards/aeeon/i11/cpuflash-5.4.65.config @@ -448,8 +448,8 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set CONFIG_MODIFY_LDT_SYSCALL=y CONFIG_HAVE_LIVEPATCH=y # end of Processor type and features diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 0ee64b13..55198097 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -434,7 +434,7 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" CONFIG_CMDLINE_OVERRIDE=y # CONFIG_MODIFY_LDT_SYSCALL is not set CONFIG_HAVE_LIVEPATCH=y From fad7ffdfa79fa6b1a9c2a9e51c29c136d2d7be34 Mon Sep 17 00:00:00 2001 From: Ryan O'Leary Date: Fri, 10 Dec 2021 12:32:23 -0800 Subject: [PATCH 045/132] Update to go1.17.5 This is now required by u-root. Signed-off-by: Ryan O'Leary --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93205158..45cde8a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,14 +73,20 @@ jobs: - name: Install dependent packages run: | + set -ex sudo apt-get update sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools + # We need this newer version of Go. + wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz + sudo rm -rf /usr/local/go + sudo tar -C /usr/local -xzf go1.17.5.linux-amd64.tar.gz # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | + set -ex cd mainboards - PATH=$PATH:$GOPATH/bin + PATH=$GOPATH/bin:/usr/local/go/bin:$PATH cd $(echo ${{ matrix.mainboard }} | tr '-' '/') make fetch make flashkernel From e912c404f735efc0a6dd94343e90dd5da45a2d67 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Tue, 11 Jan 2022 01:12:43 +0100 Subject: [PATCH 046/132] CI: Update to go1.17.6 using actions/setup-go Signed-off-by: Daniel Maslowski --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45cde8a3..2fe41294 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,17 +70,16 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can # access it. - uses: actions/checkout@v2 - + # We need this newer version of Go. + - name: Go version + uses: actions/setup-go@v2 + with: + go-version: '^1.17.6' - name: Install dependent packages run: | set -ex sudo apt-get update sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools - # We need this newer version of Go. - wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz - sudo rm -rf /usr/local/go - sudo tar -C /usr/local -xzf go1.17.5.linux-amd64.tar.gz - # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | From 5c5fe4f7f9e51a4c0a38cfedd3840220c8f4f5d9 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 12 Jan 2022 01:56:28 +0100 Subject: [PATCH 047/132] CI: touch SSH pub key files to make build pass Signed-off-by: Daniel Maslowski --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fe41294..4a7380be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,12 @@ jobs: set -ex sudo apt-get update sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools + # TODO: This is a temporary workaround, need to streamline key handling + - name: Fake SSH keys to pass builds + run: | + mkdir ~/.ssh && touch ~/.ssh/cpu_rsa.pub + touch mainboards/tyan7106/key.pub + touch mainboards/tyan7106/ssh_host_rsa_key # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | From 342aa135d2b82b191383a425936f4f6aa5798d6f Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 12 Jan 2022 02:27:44 +0100 Subject: [PATCH 048/132] CI: install gcc-riscv64-linux-gnu among dependencies Signed-off-by: Daniel Maslowski --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a7380be..466702c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: run: | set -ex sudo apt-get update - sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools + sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} gcc-riscv64-linux-gnu libelf-dev u-boot-tools # TODO: This is a temporary workaround, need to streamline key handling - name: Fake SSH keys to pass builds run: | From 30f3edbe51bb5fc17b2f058f0197d9d1485403e1 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Tue, 11 Jan 2022 01:29:20 +0100 Subject: [PATCH 049/132] Switch to using https:// instead of git:// for cloning from GitHub GitHub says: git clone git://github.com/linux-sunxi/linux-sunxi.git -b sunxi-next --depth=1 linux Cloning into 'linux'... fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. Signed-off-by: Daniel Maslowski --- mainboards/Makefile | 2 +- mainboards/cubie/board/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mainboards/Makefile b/mainboards/Makefile index 3b749741..c8fee15c 100644 --- a/mainboards/Makefile +++ b/mainboards/Makefile @@ -9,5 +9,5 @@ debian-packages: getmecleaner: go get -u github.com/u-root/u-root go get -u github.com/u-root/cpu/... - git clone git://github.com/corna/me_cleaner + git clone https://github.com/corna/me_cleaner @echo Now add $(PWD)/me_cleaner to PATH diff --git a/mainboards/cubie/board/Makefile b/mainboards/cubie/board/Makefile index eab664f7..09454754 100644 --- a/mainboards/cubie/board/Makefile +++ b/mainboards/cubie/board/Makefile @@ -37,7 +37,7 @@ fetch: getkernel geturoot getkernel: rm -rf linux - git clone git://github.com/linux-sunxi/linux-sunxi.git -b sunxi-next --depth=1 linux + git clone https://github.com/linux-sunxi/linux-sunxi.git -b sunxi-next --depth=1 linux (cd linux && make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- sunxi_defconfig) geturoot: From 2126e7d29b67a57f27f37200a67d9720a150303b Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 12 Jan 2022 02:00:55 +0100 Subject: [PATCH 050/132] hpe/dl360gen10/Makefile: leave FIXME for broken target 'injectkeys' Signed-off-by: Daniel Maslowski --- mainboards/hpe/dl360gen10/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile index c35ef9db..1be97ef6 100644 --- a/mainboards/hpe/dl360gen10/Makefile +++ b/mainboards/hpe/dl360gen10/Makefile @@ -124,6 +124,9 @@ uroot: ls -l initramfs* cp *lzma linux +injectkeys: + echo "FIXME: 'injectkeys' got lost; see Makefile.rej!" + bzImage: cp config-$(CONFIG) linux/.config (cd linux && make oldconfig && make -j32) From 7df0afad120b355ea502d9db1c39efe130d0b0fa Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 12 Jan 2022 02:05:03 +0100 Subject: [PATCH 051/132] seeed/beaglev/Makefile: leave FIXME for lost branch from starfive Signed-off-by: Daniel Maslowski --- mainboards/seeed/beaglev/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/seeed/beaglev/Makefile b/mainboards/seeed/beaglev/Makefile index bd5dc222..3bdce4e1 100644 --- a/mainboards/seeed/beaglev/Makefile +++ b/mainboards/seeed/beaglev/Makefile @@ -145,7 +145,7 @@ fetch: getkernel geturoot getrom getuboot getkernel: rm -rf $(LINUX) git clone https://github.com/starfive-tech/beagle_kernel_5.10 $(LINUX) - (cd $(LINUX) && git checkout -b starfive origin/beaglev) + #(cd $(LINUX) && git checkout -b starfive origin/beaglev) # FIXME: branch is gone :( # fyi: make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_evb_sd_net_fedora_defconfig # Change to taste From a6a31b3c45d16db8273a1e75f3443cb15a5fb3d0 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 12 Jan 2022 02:49:00 +0100 Subject: [PATCH 052/132] CI: omit beaglev for now due to upstream sources gone Signed-off-by: Daniel Maslowski --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 466702c2..af96c787 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: - opentitanpilot-dresden - pcengines-apu - pcengines-apu2 - - seeed-beaglev + # - seeed-beaglev # FIXME: broken due to upstream sources gone - slimboot - st-st32mp1517c - tyan7106 From 3900b44a8eb5a75aec5277cfb2829f208764b528 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Mon, 10 Jan 2022 21:47:49 +0100 Subject: [PATCH 053/132] mb/walmart/robot: fix mkimage type It's just kernel, not flashkernel. Signed-off-by: Daniel Maslowski --- mainboards/walmart/robot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/walmart/robot/Makefile b/mainboards/walmart/robot/Makefile index 1091e10f..229cdc32 100644 --- a/mainboards/walmart/robot/Makefile +++ b/mainboards/walmart/robot/Makefile @@ -100,7 +100,7 @@ uroot: flashkernel: Makefile cp config-$(CONFIG) linux/.config (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make -j32) - mkimage -C none -A arm -n 'walmart robot' -d linux/arch/arm/boot/zImage -T flashkernel -a 0xc1000000 -e 0xc1000000 flashkernel + mkimage -C none -A arm -n 'walmart robot' -d linux/arch/arm/boot/zImage -T kernel -a 0xc1000000 -e 0xc1000000 flashkernel cp linux/arch/arm/boot/zImage kernel fetch: getkernel geturoot getfiano getrom getpackages From 5aacc85244abdfb3c93bdd4efdbe75f7a9b54603 Mon Sep 17 00:00:00 2001 From: Ryan O'Leary Date: Fri, 10 Dec 2021 12:22:24 -0800 Subject: [PATCH 054/132] Remove circleci We are replacing it with github actions. Signed-off-by: Ryan O'Leary --- .circleci/config.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 96bd5a28..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/buld-image - steps: - - checkout - - run: 'git clone https://github.com/osresearch/heads' - - run: 'make BOARD=qemu-coreboot' - - run: 'make BOARD=qemu-linuxboot' -workflows: - version: 2 - build_and_test: - jobs: - - build From c96c441b8fc83685fb31f43931164f88c7183f37 Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Thu, 10 Mar 2022 21:56:25 +0700 Subject: [PATCH 055/132] mainboards/ampere/jade: Workaround Linuxboot for Ubuntu 20.04 This supports adding the DT node "linux,uefi-secure-boot" into the EFI Stub for kexecing Ubuntu 20.04+. Otherwise, the Ubuntu will make the kernel crash. Signed-off-by: Tam Chi Nguyen Signed-off-by: Nhi Pham --- ...orkaround-Linuxboot-for-Ubuntu-20.04.patch | 32 +++++++++++++++++++ mainboards/ampere/jade/Makefile | 1 + 2 files changed, 33 insertions(+) create mode 100644 mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch diff --git a/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch new file mode 100644 index 00000000..5020351c --- /dev/null +++ b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch @@ -0,0 +1,32 @@ +From faeb3868d9b8b8fd693134e5f1e17facaf06f127 Mon Sep 17 00:00:00 2001 +From: Tam Chi Nguyen +Date: Wed, 17 Nov 2021 11:18:29 +0700 +Subject: [PATCH] efistub: Workaround Linuxboot for Ubuntu 20.04 + +Apply: Ubuntu kernel patch: "arm64: Allow locking down the kernel under EFI secure boot" + https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/focal/commit/drivers/firmware/efi?id=36ca37871ad2a7d208636725c9465695b2780fee + +Signed-off-by: Tam Chi Nguyen +--- + drivers/firmware/efi/libstub/fdt.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/drivers/firmware/efi/libstub/fdt.c b/drivers/firmware/efi/libstub/fdt.c +index 46cffac7a..738bd14a9 100644 +--- a/drivers/firmware/efi/libstub/fdt.c ++++ b/drivers/firmware/efi/libstub/fdt.c +@@ -136,6 +136,11 @@ static efi_status_t update_fdt(void *orig_fdt, unsigned long orig_fdt_size, + if (status) + goto fdt_set_fail; + ++ fdt_val32 = cpu_to_fdt32(efi_get_secureboot()); ++ status = fdt_setprop_var(fdt, node, "linux,uefi-secure-boot", fdt_val32); ++ if (status) ++ goto fdt_set_fail; ++ + if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) { + efi_status_t efi_status; + +-- +2.17.1 + diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 0fa75de8..c62e17d9 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -53,6 +53,7 @@ sshd.cpio.lzma: Makefile flashkernel: flash.config flashinitramfs.cpio.lzma Makefile cp $< linux/.config + (cd linux && git apply ../0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch) (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make oldconfig && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j32) cp linux/arch/arm64/boot/Image $@ From c2d48ee0b961f30be508243e8f7c7f009368b6f6 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 30 Mar 2022 01:17:35 +0200 Subject: [PATCH 056/132] boards/x3550m5: remove board; there were only empty files Signed-off-by: Daniel Maslowski --- boards/x3550m5/acpi/APIC | 0 boards/x3550m5/acpi/BDAT | 0 boards/x3550m5/acpi/BERT | 0 boards/x3550m5/acpi/DMAR | 0 boards/x3550m5/acpi/DSDT | 0 boards/x3550m5/acpi/EINJ | 0 boards/x3550m5/acpi/ERST | 0 boards/x3550m5/acpi/FACP | 0 boards/x3550m5/acpi/FACS | 0 boards/x3550m5/acpi/HEST | 0 boards/x3550m5/acpi/HPET | 0 boards/x3550m5/acpi/MCFG | 0 boards/x3550m5/acpi/MSCT | 0 boards/x3550m5/acpi/OEM0 | 0 boards/x3550m5/acpi/OEM1 | 0 boards/x3550m5/acpi/PRAD | 0 boards/x3550m5/acpi/SLIC | 0 boards/x3550m5/acpi/SLIT | 0 boards/x3550m5/acpi/SRAT | 0 boards/x3550m5/acpi/SSDT1 | 0 boards/x3550m5/acpi/SSDT2 | 0 boards/x3550m5/acpi/SSDT3 | 0 boards/x3550m5/acpi/SSDT4 | 0 boards/x3550m5/acpi/SSDT5 | 0 boards/x3550m5/acpi/SSDT6 | 0 boards/x3550m5/acpi/TCPA | 0 boards/x3550m5/acpi/UEFI | 0 boards/x3550m5/acpi/WDDT | 0 boards/x3550m5/ifd.bin | 0 29 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 boards/x3550m5/acpi/APIC delete mode 100644 boards/x3550m5/acpi/BDAT delete mode 100644 boards/x3550m5/acpi/BERT delete mode 100644 boards/x3550m5/acpi/DMAR delete mode 100644 boards/x3550m5/acpi/DSDT delete mode 100644 boards/x3550m5/acpi/EINJ delete mode 100644 boards/x3550m5/acpi/ERST delete mode 100644 boards/x3550m5/acpi/FACP delete mode 100644 boards/x3550m5/acpi/FACS delete mode 100644 boards/x3550m5/acpi/HEST delete mode 100644 boards/x3550m5/acpi/HPET delete mode 100644 boards/x3550m5/acpi/MCFG delete mode 100644 boards/x3550m5/acpi/MSCT delete mode 100644 boards/x3550m5/acpi/OEM0 delete mode 100644 boards/x3550m5/acpi/OEM1 delete mode 100644 boards/x3550m5/acpi/PRAD delete mode 100644 boards/x3550m5/acpi/SLIC delete mode 100644 boards/x3550m5/acpi/SLIT delete mode 100644 boards/x3550m5/acpi/SRAT delete mode 100644 boards/x3550m5/acpi/SSDT1 delete mode 100644 boards/x3550m5/acpi/SSDT2 delete mode 100644 boards/x3550m5/acpi/SSDT3 delete mode 100644 boards/x3550m5/acpi/SSDT4 delete mode 100644 boards/x3550m5/acpi/SSDT5 delete mode 100644 boards/x3550m5/acpi/SSDT6 delete mode 100644 boards/x3550m5/acpi/TCPA delete mode 100644 boards/x3550m5/acpi/UEFI delete mode 100644 boards/x3550m5/acpi/WDDT delete mode 100644 boards/x3550m5/ifd.bin diff --git a/boards/x3550m5/acpi/APIC b/boards/x3550m5/acpi/APIC deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/BDAT b/boards/x3550m5/acpi/BDAT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/BERT b/boards/x3550m5/acpi/BERT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/DMAR b/boards/x3550m5/acpi/DMAR deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/DSDT b/boards/x3550m5/acpi/DSDT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/EINJ b/boards/x3550m5/acpi/EINJ deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/ERST b/boards/x3550m5/acpi/ERST deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/FACP b/boards/x3550m5/acpi/FACP deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/FACS b/boards/x3550m5/acpi/FACS deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/HEST b/boards/x3550m5/acpi/HEST deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/HPET b/boards/x3550m5/acpi/HPET deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/MCFG b/boards/x3550m5/acpi/MCFG deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/MSCT b/boards/x3550m5/acpi/MSCT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/OEM0 b/boards/x3550m5/acpi/OEM0 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/OEM1 b/boards/x3550m5/acpi/OEM1 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/PRAD b/boards/x3550m5/acpi/PRAD deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SLIC b/boards/x3550m5/acpi/SLIC deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SLIT b/boards/x3550m5/acpi/SLIT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SRAT b/boards/x3550m5/acpi/SRAT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT1 b/boards/x3550m5/acpi/SSDT1 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT2 b/boards/x3550m5/acpi/SSDT2 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT3 b/boards/x3550m5/acpi/SSDT3 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT4 b/boards/x3550m5/acpi/SSDT4 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT5 b/boards/x3550m5/acpi/SSDT5 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/SSDT6 b/boards/x3550m5/acpi/SSDT6 deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/TCPA b/boards/x3550m5/acpi/TCPA deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/UEFI b/boards/x3550m5/acpi/UEFI deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/acpi/WDDT b/boards/x3550m5/acpi/WDDT deleted file mode 100644 index e69de29b..00000000 diff --git a/boards/x3550m5/ifd.bin b/boards/x3550m5/ifd.bin deleted file mode 100644 index e69de29b..00000000 From 3aa01640b811ec16b00d00f910ed1f8e300fa173 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 21 Mar 2022 10:41:50 -0700 Subject: [PATCH 057/132] pcengines/apu2: run u-root command directly The makefile now builds the u-root command when make fetch is invoked. It runs the u-root command it builds, rather than run u-root.go Further, now that a set of bugs are fixed in cpud, we can now fire up a console shell, and include lots of commands, which makes life a LOT easier. Signed-off-by: Ronald G. Minnich --- mainboards/pcengines/apu2/Makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/mainboards/pcengines/apu2/Makefile b/mainboards/pcengines/apu2/Makefile index 782d83f4..7f1f33b1 100644 --- a/mainboards/pcengines/apu2/Makefile +++ b/mainboards/pcengines/apu2/Makefile @@ -67,7 +67,7 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ + GO111MODULE=off u-root -o $@ -build=bb \ -uinitcmd=/bbin/pxeboot \ github.com/u-root/u-root/cmds/boot/pxeboot \ github.com/u-root/u-root/cmds/core/cat \ @@ -82,18 +82,23 @@ flashinitramfs.cpio: Makefile # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ +cpu.cpio: Makefile + CGO_ENABLED=0 GO111MODULE=off u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + minimal \ github.com/u-root/cpu/cmds/cpud + +cpu.cpio.lzma: cpu.cpio lzma -f -k cpu.cpio +cpu.cpio.xz: cpu.cpio + xz -9 -f -k cpu.cpio + # this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc # the intent is to demonstrate the capability of http loading. # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ + CGO_ENABLED=0 GO111MODULE=off u-root -o sshd.cpio -build=bb \ -uinitcmd=/bbin/sshd \ -files class_key.pub:authorized_keys \ -files classhostkey:id_rsa \ @@ -130,7 +135,8 @@ getrom: geturoot: go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... + CGO_ENABLED=0 GO111MODULE=off go install github.com/u-root/u-root + CGO_ENABLED=0 GO111MODULE=off go get -u github.com/u-root/cpu/... # Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom sshd-pxeserver: From b4013e72b4bf1503b39e3922bc7e411e48ab16dc Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Fri, 1 Apr 2022 01:33:50 +0200 Subject: [PATCH 058/132] Add u-root and cpu as git submodules Signed-off-by: Daniel Maslowski --- .gitmodules | 6 ++++++ cpu | 1 + u-root | 1 + 3 files changed, 8 insertions(+) create mode 100644 .gitmodules create mode 160000 cpu create mode 160000 u-root diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..3ebcd980 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "u-root"] + path = u-root + url = https://github.com/u-root/u-root +[submodule "cpu"] + path = cpu + url = https://github.com/u-root/cpu diff --git a/cpu b/cpu new file mode 160000 index 00000000..3285a2d3 --- /dev/null +++ b/cpu @@ -0,0 +1 @@ +Subproject commit 3285a2d39b9d1a4bf678c954164f813a64a4651b diff --git a/u-root b/u-root new file mode 160000 index 00000000..3ed70c35 --- /dev/null +++ b/u-root @@ -0,0 +1 @@ +Subproject commit 3ed70c35ac04d13f82b464fb48cfbc9ef8cf217b From eb6b76695ef3ce3ea184f3d052254dc78930d788 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Tue, 29 Mar 2022 22:45:18 +0200 Subject: [PATCH 059/132] qemu/x86_64: fix building, add EFI variants Signed-off-by: Daniel Maslowski --- mainboards/qemu/x86_64/Makefile | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/mainboards/qemu/x86_64/Makefile b/mainboards/qemu/x86_64/Makefile index 7aa6282d..db55fdc0 100644 --- a/mainboards/qemu/x86_64/Makefile +++ b/mainboards/qemu/x86_64/Makefile @@ -1,5 +1,7 @@ +OVMF_BIN ?= /usr/share/qemu/OVMF.fd + flashinitramfs.cpio: - u-root -o $@ \ + GO111MODULE=off u-root -o $@ \ github.com/u-root/u-root/cmds/boot/pxeboot \ github.com/u-root/u-root/cmds/core/cat \ github.com/u-root/u-root/cmds/core/elvish \ @@ -18,14 +20,27 @@ flashkernel: flash.config (cd linux && make olddefconfig && make -j32) cp linux/arch/x86/boot/bzImage $@ +efikernel: flash.config + cp $< linux/.config + echo CONFIG_CMDLINE_BOOL=y >> linux/.config + echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config + echo CONFIG_EFI_STUB=y >> linux/.config + echo 'CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' >> linux/.config + (cd linux && make olddefconfig && make -j32) + cp linux/arch/x86/boot/bzImage $@ + testflashkernel: flashkernel flashinitramfs.cpio qemu-system-x86_64 -kernel flashkernel -nographic -initrd flashinitramfs.cpio +testefikernel: efikernel flashinitramfs.cpio + qemu-system-x86_64 -bios $(OVMF_BIN) -nographic \ + -kernel efikernel -initrd flashinitramfs.cpio + fetch: getkernel geturoot getkernel: rm -rf linux - git clone --depth=1 -b v5.10 https://github.com/torvalds/linux + git clone --depth=1 -b v5.15 https://github.com/torvalds/linux geturoot: go get -u github.com/u-root/u-root From 0e4e3bed2c7b80d01b4900576877d29d8e180024 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 14 Apr 2022 14:26:51 -0700 Subject: [PATCH 060/132] Enable mandatory file locking Required for go build in the age of modules. Signed-off-by: Ronald G. Minnich --- mainboards/pcengines/apu2/cpu.config | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mainboards/pcengines/apu2/cpu.config b/mainboards/pcengines/apu2/cpu.config index 58375b23..a3cbc98d 100644 --- a/mainboards/pcengines/apu2/cpu.config +++ b/mainboards/pcengines/apu2/cpu.config @@ -4,11 +4,11 @@ # # -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 CONFIG_CLANG_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y @@ -2230,7 +2230,8 @@ CONFIG_FS_MBCACHE=y # CONFIG_FS_DAX is not set CONFIG_FS_POSIX_ACL=y # CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y # CONFIG_FS_ENCRYPTION is not set # CONFIG_FS_VERITY is not set # CONFIG_DNOTIFY is not set From fe7cbd093b1bddcfff99016378705ba5a9473e19 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 22 Mar 2022 22:47:07 -0700 Subject: [PATCH 061/132] add sunxi/nezha This is "working", but only to the extent that it boots, works for a while, then hangs :-( Build here, then cp cpukernel ~/oreboot/src/mainboard/sunxi/nezha/ cp sun20i-d1-nezha.dtb ~/oreboot/src/mainboard/sunxi/nezha/ cd ~/oreboot/src/mainboard/sunxi/nezha/ PAYLOAD_B=cpukernel PAYLOAD_C=sun20i-d1-nezha.dtb make run Signed-off-by: Ronald G. Minnich --- mainboards/sunxi/nezha/.gitignore | 5 + mainboards/sunxi/nezha/Makefile | 53 + mainboards/sunxi/nezha/cpu.config | 2610 +++++++++++++++++++++++++++++ 3 files changed, 2668 insertions(+) create mode 100644 mainboards/sunxi/nezha/.gitignore create mode 100644 mainboards/sunxi/nezha/Makefile create mode 100644 mainboards/sunxi/nezha/cpu.config diff --git a/mainboards/sunxi/nezha/.gitignore b/mainboards/sunxi/nezha/.gitignore new file mode 100644 index 00000000..2f04e444 --- /dev/null +++ b/mainboards/sunxi/nezha/.gitignore @@ -0,0 +1,5 @@ +cpu.cpio +cpu.cpio.* +linux/ +cpukernel + diff --git a/mainboards/sunxi/nezha/Makefile b/mainboards/sunxi/nezha/Makefile new file mode 100644 index 00000000..2a4d746a --- /dev/null +++ b/mainboards/sunxi/nezha/Makefile @@ -0,0 +1,53 @@ +# This is the makefile for a cpu kernel and initramfs +# to be used on a rvboards d1 +# +# The cpu image uses a cpud as its init, and you +# can cpu to it to run commands. + +default: cpukernel + +cpukernel: cpu.cpio.xz cpu.config + cp cpu.config linux/.config + (cd linux && CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv make oldconfig && CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv make -j32) + cp linux/arch/riscv/boot/Image cpukernel + cp linux/arch/riscv/boot/dts/allwinner/sun20i-d1-nezha.dtb . + +# this target builds an initramfs with cpud as init, and the core +# set of u-root commands. +# It depends on the kernel setting the IP address. +# You need ip=dhcp OR ip=fixed.ip.address.here in the command line +cpu.cpio: Makefile + GO111MODULE=off GOARCH=riscv64 CGO_ENABLED=0 u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ + core \ + github.com/u-root/cpu/cmds/cpud + +cpu.cpio.xz: cpu.cpio + xz --check=crc32 -9 --lzma2=dict=1MiB --stdout cpu.cpio | dd conv=sync bs=512 of=cpu.cpio.xz + +# These stanzas fetch code. +fetch: getkernel geturoot + +getkernel: + rm -rf linux + git clone --depth=1 -b v5.15.5-openwrt --single-branch https://github.com/orangecms/linux + +geturoot: + GO111MODULE=off go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/cpu/... + +# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom +sshd-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) + +# Serve the combined cpu-kernel and cpu-initramfs image. +cpu-pxeserver: + echo Consider Disabling any system services ... + echo e.g. sudo systemctl stop tftpd-hpa.service + echo e.g. sudo systemctl stop isc-dhcp-server + sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) + +ssh: + ssh -i class_key -p 2022 root@up diff --git a/mainboards/sunxi/nezha/cpu.config b/mainboards/sunxi/nezha/cpu.config new file mode 100644 index 00000000..7e8e06b4 --- /dev/null +++ b/mainboards/sunxi/nezha/cpu.config @@ -0,0 +1,2610 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/riscv 5.15.5 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (GCC) 11.1.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=110100 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23601 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23601 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="nezha" +# CONFIG_SWAP is not set +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y + +# +# BPF subsystem +# +# CONFIG_BPF_SYSCALL is not set +# end of BPF subsystem + +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_BSD_PROCESS_ACCT is not set +# CONFIG_TASKSTATS is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_NAMESPACES is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio.xz" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +CONFIG_RD_GZIP=y +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_USERFAULTFD is not set +# CONFIG_KCMP is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +# CONFIG_PERF_EVENTS is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_64BIT=y +CONFIG_RISCV=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=24 +CONFIG_RISCV_SBI=y +CONFIG_MMU=y +CONFIG_VA_BITS=39 +CONFIG_PA_BITS=56 +CONFIG_PAGE_OFFSET=0xffffffe000000000 +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_ARCH_HAS_PROTECTION_MAP_INIT=y +CONFIG_PGTABLE_LEVELS=3 +CONFIG_LOCKDEP_SUPPORT=y + +# +# SoC selection +# +CONFIG_ARCH_SUNXI=y +# CONFIG_SOC_MICROCHIP_POLARFIRE is not set +# CONFIG_SOC_SIFIVE is not set +# CONFIG_SOC_VIRT is not set +# end of SoC selection + +# +# CPU errata selection +# +CONFIG_RISCV_ERRATA_ALTERNATIVE=y +# CONFIG_ERRATA_SIFIVE is not set +# end of CPU errata selection + +# +# Platform type +# +# CONFIG_ARCH_RV32I is not set +CONFIG_ARCH_RV64I=y +# CONFIG_CMODEL_MEDLOW is not set +CONFIG_CMODEL_MEDANY=y +CONFIG_MAXPHYSMEM_128GB=y +# CONFIG_SMP is not set +CONFIG_TUNE_GENERIC=y +CONFIG_RISCV_ISA_C=y +CONFIG_FPU=y +# end of Platform type + +# +# Kernel features +# +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_RISCV_SBI_V01=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_CRASH_DUMP is not set +# end of Kernel features + +# +# Boot options +# +CONFIG_CMDLINE="clk_ignore_unused debug initcall_debug=1 console=ttyS0,115200n8 loglevel=7 earlycon=sbi init=/init" +CONFIG_CMDLINE_FALLBACK=y +# CONFIG_CMDLINE_EXTEND is not set +# CONFIG_CMDLINE_FORCE is not set +# CONFIG_EFI is not set +CONFIG_CC_HAVE_STACKPROTECTOR_TLS=y +CONFIG_PHYS_RAM_BASE_FIXED=y +CONFIG_PHYS_RAM_BASE=0x40000000 +# end of Boot options + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +# CONFIG_CPU_IDLE is not set +# end of CPU Idle +# end of CPU Power Management + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_KEXEC_ELF=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +# CONFIG_SECCOMP is not set +CONFIG_HAVE_STACKPROTECTOR=y +# CONFIG_STACKPROTECTOR is not set +CONFIG_LTO_NONE=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_CLONE_BACKWARDS=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_BLOCK=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_WBT is not set +CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_HAS_MMIOWB=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_ARCH_HAS_BINFMT_FLAT=y +# CONFIG_BINFMT_FLAT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_SPARSEMEM_MANUAL is not set +CONFIG_FLATMEM=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ZONE_DMA32=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_NET_SELFTESTS=y +CONFIG_PAGE_POOL=y +# CONFIG_FAILOVER is not set +# CONFIG_ETHTOOL_NETLINK is not set + +# +# Device Drivers +# +CONFIG_HAVE_PCI=y +# CONFIG_PCI is not set +# CONFIG_PCCARD is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# CONFIG_FW_CACHE is not set +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_MMIO=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MOXTET is not set +CONFIG_SUN50I_DE2_BUS=y +# CONFIG_SUNXI_RSB is not set +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +CONFIG_MTD=y + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +# CONFIG_MTD_CMDLINE_PARTS is not set +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +CONFIG_MTD_PARTITIONED_MASTER=y + +# +# RAM/ROM/Flash chip drivers +# +# CONFIG_MTD_CFI is not set +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_DATAFLASH is not set +# CONFIG_MTD_MCHP23K256 is not set +# CONFIG_MTD_MCHP48L640 is not set +# CONFIG_MTD_SST25L is not set +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=y +# CONFIG_MTD_ONENAND is not set +# CONFIG_MTD_RAW_NAND is not set +CONFIG_MTD_SPI_NAND=y + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +# CONFIG_MTD_SPI_NOR is not set +CONFIG_MTD_UBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_FASTMAP=y +# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_BLOCK=y +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_NET=y +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +CONFIG_OF_OVERLAY=y +# CONFIG_PARPORT is not set +# CONFIG_BLK_DEV is not set + +# +# NVME Support +# +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set +# CONFIG_NVME_TARGET is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# end of EEPROM support + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_SPI is not set + +# +# Altera FPGA firmware download module (requires I2C) +# +# CONFIG_ECHO is not set +# CONFIG_UACCE is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +# CONFIG_SCSI is not set +# end of SCSI device support + +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +# CONFIG_NET_CORE is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_ALACRITECH is not set +CONFIG_NET_VENDOR_ALLWINNER=y +# CONFIG_SUN4I_EMAC is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_NET_VENDOR_MICROSOFT is not set +# CONFIG_NET_VENDOR_LITEX is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=y +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=y +# CONFIG_DWMAC_DWC_QOS_ETH is not set +CONFIG_DWMAC_GENERIC=y +CONFIG_DWMAC_SUNXI=y +CONFIG_DWMAC_SUN8I=y +# CONFIG_DWMAC_INTEL_PLAT is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +CONFIG_PHYLINK=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_NXP_TJA11XX_PHY is not set +# CONFIG_AT803X_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +# CONFIG_MDIO_SUN4I is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=y +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ATKBD is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +CONFIG_KEYBOARD_SUN4I_LRADC=y +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_BCM is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_LDISC_AUTOLOAD is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_NR_UARTS=6 +CONFIG_SERIAL_8250_RUNTIME_UARTS=6 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_EARLYCON_RISCV_SBI=y +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_XILINX_PS_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NULL_TTY is not set +# CONFIG_HVC_RISCV_SBI is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_BA431 is not set +# CONFIG_HW_RANDOM_VIRTIO is not set +# CONFIG_HW_RANDOM_CCTRNG is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +CONFIG_DEVMEM=y +# CONFIG_TCG_TPM is not set +# CONFIG_XILLYBUS is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +# CONFIG_I2C is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_NXP_FLEXSPI is not set +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_FSL_SPI is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=y +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +# CONFIG_SPI_MUX is not set + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SINGLE is not set +# CONFIG_PINCTRL_OCELOT is not set +# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_PINCTRL_SUNXI=y +# CONFIG_PINCTRL_SUN4I_A10 is not set +# CONFIG_PINCTRL_SUN5I is not set +# CONFIG_PINCTRL_SUN6I_A31 is not set +# CONFIG_PINCTRL_SUN6I_A31_R is not set +# CONFIG_PINCTRL_SUN8I_A23 is not set +# CONFIG_PINCTRL_SUN8I_A33 is not set +# CONFIG_PINCTRL_SUN8I_A83T is not set +# CONFIG_PINCTRL_SUN8I_A83T_R is not set +# CONFIG_PINCTRL_SUN8I_A23_R is not set +# CONFIG_PINCTRL_SUN8I_H3 is not set +# CONFIG_PINCTRL_SUN8I_H3_R is not set +# CONFIG_PINCTRL_SUN8I_V3S is not set +# CONFIG_PINCTRL_SUN9I_A80 is not set +# CONFIG_PINCTRL_SUN9I_A80_R is not set +CONFIG_PINCTRL_SUN20I_D1=y +# CONFIG_PINCTRL_SUN50I_A64 is not set +# CONFIG_PINCTRL_SUN50I_A64_R is not set +# CONFIG_PINCTRL_SUN50I_A100 is not set +# CONFIG_PINCTRL_SUN50I_A100_R is not set +# CONFIG_PINCTRL_SUN50I_H5 is not set +# CONFIG_PINCTRL_SUN50I_H6 is not set +# CONFIG_PINCTRL_SUN50I_H6_R is not set +# CONFIG_PINCTRL_SUN50I_H616 is not set +# CONFIG_PINCTRL_SUN50I_H616_R is not set +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_CADENCE is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_FTGPIO010 is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +# CONFIG_GPIO_LOGICVC is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +# CONFIG_GPIO_SIFIVE is not set +# CONFIG_GPIO_SYSCON is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_GPIO_VIRTIO is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_BATTERY_GOLDFISH is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_LTC2947_SPI is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_ADS7871 is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +CONFIG_THERMAL_STATISTICS=y +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_CPU_THERMAL=y +CONFIG_THERMAL_EMULATION=y +# CONFIG_THERMAL_MMIO is not set +CONFIG_SUN8I_THERMAL=y +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_SYSFS=y +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +CONFIG_SUNXI_WATCHDOG=y +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MEN_A21_WDT is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_SUN4I_GPADC is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_HI6421_PMIC is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_INTEL_M10_BMC is not set +# CONFIG_MFD_RSMU_SPI is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_TPS6524X is not set +# CONFIG_REGULATOR_VCTRL is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +# CONFIG_USB_LED_TRIG is not set +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +# CONFIG_USB is not set + +# +# USB port drivers +# + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=y +# CONFIG_USB_GPIO_VBUS is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +# CONFIG_SDIO_UART is not set +# CONFIG_MMC_TEST is not set + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +# CONFIG_MMC_SDHCI is not set +# CONFIG_MMC_SPI is not set +# CONFIG_MMC_DW is not set +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_SUNXI=y +# CONFIG_MMC_CQHCI is not set +# CONFIG_MMC_HSQ is not set +# CONFIG_MMC_MTK is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +CONFIG_LEDS_CLASS_MULTICOLOR=y +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_SUN50I_R329 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_DAC124S085 is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_LT3593 is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_SYSCON is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=y +CONFIG_LEDS_TRIGGER_ONESHOT=y +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=y +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_ACTIVITY=y +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_NETDEV=y +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_SUN6I is not set +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +CONFIG_DMA_SUN6I=y +# CONFIG_DW_AXI_DMAC is not set +# CONFIG_FSL_EDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_XILINX_ZYNQMP_DPDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_SF_PDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +# CONFIG_GOLDFISH is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_LMK04832 is not set +# CONFIG_COMMON_CLK_AXI_CLKGEN is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +# CONFIG_CLK_SIFIVE is not set +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_SUNXI_CCU=y +CONFIG_SUN20I_D1_CCU=y +CONFIG_SUN20I_D1_R_CCU=y +CONFIG_SUN6I_RTC_CCU=y +# CONFIG_SUN8I_A83T_CCU is not set +CONFIG_SUN8I_DE2_CCU=y +# CONFIG_SUN8I_R_CCU is not set +# CONFIG_XILINX_VCU is not set +CONFIG_HWSPINLOCK=y +CONFIG_HWSPINLOCK_SUN6I=y + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y +CONFIG_CLKSRC_MMIO=y +CONFIG_SUN4I_TIMER=y +CONFIG_SUN5I_HSTIMER=y +CONFIG_RISCV_TIMER=y +# CONFIG_MICROCHIP_PIT64B is not set +# end of Clock Source drivers + +CONFIG_MAILBOX=y +# CONFIG_PLATFORM_MHU is not set +# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX_TEST is not set +CONFIG_SUN6I_MSGBOX=y +CONFIG_SUN8I_MSGBOX=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_OF_IOMMU=y +CONFIG_SUN50I_IOMMU=y + +# +# Remoteproc drivers +# +CONFIG_REMOTEPROC=y +CONFIG_REMOTEPROC_CDEV=y +# CONFIG_SUN8I_DSP_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=y +CONFIG_RPMSG_CHAR=y +CONFIG_RPMSG_NS=y +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +CONFIG_RPMSG_VIRTIO=y +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +CONFIG_SUNXI_SRAM=y +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +# CONFIG_EXTCON_USB_GPIO is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +# CONFIG_AL_FIC is not set +CONFIG_RISCV_INTC=y +CONFIG_SIFIVE_PLIC=y +CONFIG_SUN20I_INTC=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SUNXI=y +# CONFIG_RESET_TI_SYSCON is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_PHY_CAN_TRANSCEIVER is not set +CONFIG_PHY_SUN4I_USB=y +# CONFIG_PHY_SUN6I_MIPI_DPHY is not set +# CONFIG_PHY_SUN9I_USB is not set +# CONFIG_PHY_SUN50I_USB3 is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_CADENCE_TORRENT is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set +# CONFIG_PHY_FSL_IMX8MQ_USB is not set +# CONFIG_PHY_MIXEL_MIPI_DPHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set +# CONFIG_RAS is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +CONFIG_NVMEM_SUNXI_SID=y +# CONFIG_NVMEM_RMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +# CONFIG_DNOTIFY is not set +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +# CONFIG_MSDOS_FS is not set +# CONFIG_VFAT_FS is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# CONFIG_NTFS3_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +# CONFIG_TMPFS_XATTR is not set +# CONFIG_TMPFS_INODE64 is not set +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +# CONFIG_HUGETLBFS is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +CONFIG_UBIFS_FS=y +CONFIG_UBIFS_FS_ADVANCED_COMPR=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +# CONFIG_UBIFS_FS_AUTHENTICATION is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +# CONFIG_ZERO_CALL_USED_REGS is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST6 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TWOFISH is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_ZSTD=y + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_SKCIPHER=y +CONFIG_CRYPTO_USER_API_RNG=y +CONFIG_CRYPTO_USER_API_AEAD=y +# CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_ALLWINNER=y +# CONFIG_CRYPTO_DEV_SUN4I_SS is not set +CONFIG_CRYPTO_DEV_SUN8I_CE=y +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y +# CONFIG_CRYPTO_DEV_SUN8I_SS is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +# CONFIG_XZ_DEC_X86 is not set +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_LIBFDT=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# end of Library routines + +CONFIG_GENERIC_IOREMAP=y +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_INFO_REDUCED=y +# CONFIG_DEBUG_INFO_COMPRESSED is not set +CONFIG_DEBUG_INFO_SPLIT=y +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_DWARF5 is not set +CONFIG_PAHOLE_HAS_SPLIT_BTF=y +# CONFIG_GDB_SCRIPTS is not set +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +# CONFIG_FRAME_POINTER is not set +CONFIG_VMLINUX_MAP=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +# CONFIG_MAGIC_SYSRQ_SERIAL is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_KCSAN_COMPILER=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_MISC is not set + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +CONFIG_DEBUG_PREEMPT=y + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +CONFIG_DEBUG_ATOMIC_SLEEP=y +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_SAMPLES is not set +# CONFIG_STRICT_DEVMEM is not set + +# +# riscv Debugging +# + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking From a32b0a735e5edd05a700d35de8688036e1221fe0 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 19 Oct 2021 14:53:57 -0700 Subject: [PATCH 062/132] Clean up makefile, remove unused commands from boot.scr Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 53 ++-------------------- 1 file changed, 3 insertions(+), 50 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile index 3f255160..4a450e3a 100644 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -1,38 +1,5 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i ../../class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - +# This is the makefile for a netbootable image. It has cpud build in. +# see README.md in this directory for more information. default: netbootkernel @@ -87,7 +54,7 @@ kernel-5.10: config-5.10 flashinitramfs.cpio cp linux-5.10/arch/arm64/boot/Image $@ # These stanzas fetch code. -fetch: getkernel geturoot +fetch: getkernel geturoot apt getkernel: rm -rf linux @@ -101,19 +68,5 @@ geturoot: GO111MODULE=off go get -u github.com/u-root/u-root GO111MODULE=off go get -u github.com/u-root/cpu/... -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - apt: sudo apt install gcc-aarch64-linux-gnu - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) From 5db5842969cae36c206257a573d36151104feae2 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 12 May 2022 09:24:49 -0700 Subject: [PATCH 063/132] solidrun/honeycomb: tweak the docs Signed-off-by: Ronald G. Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 22 +++++++++++++++++++-- mainboards/solidrun/honeycomblx2k/README.md | 8 +++++--- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile index 4a450e3a..17d9a678 100644 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ b/mainboards/solidrun/honeycomblx2k/Makefile @@ -1,7 +1,12 @@ # This is the makefile for a netbootable image. It has cpud build in. # see README.md in this directory for more information. +# Status: you can netboot the netbootkernel, which is currently 5.17 +# You need to be careful to use the correct dtb, see note. +# I have included the dtb in this repo for safety default: netbootkernel + echo Be sure to use fsl-lx2160a-cex7.dtb, NOT fsl-lx2160a-honeycomb.dtb + echo the latter causes a trap on boot. ARM is so great u-root: GO111MODULE=off go install github.com/u-root/u-root @@ -17,6 +22,7 @@ kexectestimage-5.10: kexecconfig-5.10 kexecinitramfs.cpio cp $< linux-5.10/.config (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) cp linux-5.10/arch/arm64/boot/Image $@ + cp linux/arch/arm64/boot/dts/freescale/fsl-lx2160a-cex7.dtb fsl-lx2160a-cex7.dtb kexectestimage-5.4: kexecconfig-5.4 kexecinitramfs.cpio cp $< linux/.config @@ -36,14 +42,17 @@ kexecinitramfs.cpio: u-root Makefile kernel-5.4 kernel-5.10 github.com/u-root/u-root/cmds/boot/pxeboot \ core \ -flashinitramfs.cpio: u-root Makefile +flashinitramfs.cpio: Makefile GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ -files ~/.ssh/cpu_rsa.pub:key.pub \ github.com/u-root/cpu/cmds/cpud \ github.com/u-root/u-root/cmds/boot/pxeboot \ core \ -netbootkernel: config-5.4.47 flashinitramfs.cpio +netbootkernel: kernel-5.17 + cp $< $@ + +kernel-5.4.47: config-5.4.47 flashinitramfs.cpio cp $< linux/.config (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) cp linux/arch/arm64/boot/Image $@ @@ -53,6 +62,11 @@ kernel-5.10: config-5.10 flashinitramfs.cpio (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) cp linux-5.10/arch/arm64/boot/Image $@ +kernel-5.17: config-5.17 flashinitramfs.cpio + cp config-5.17 linux-5.17/.config + (cd linux-5.17 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) + cp linux-5.17/arch/arm64/boot/Image $@ + # These stanzas fetch code. fetch: getkernel geturoot apt @@ -64,6 +78,10 @@ getkernel-5.10: rm -rf linux-5.10 git clone --depth=1 -b v5.10 --single-branch https://github.com/torvalds/linux linux-5.10 +getkernel-5.17: + rm -rf linux-5.17 + git clone --depth=1 -b v5.17 --single-branch https://github.com/torvalds/linux linux-5.17 + geturoot: GO111MODULE=off go get -u github.com/u-root/u-root GO111MODULE=off go get -u github.com/u-root/cpu/... diff --git a/mainboards/solidrun/honeycomblx2k/README.md b/mainboards/solidrun/honeycomblx2k/README.md index 475630c1..b9db8f4c 100644 --- a/mainboards/solidrun/honeycomblx2k/README.md +++ b/mainboards/solidrun/honeycomblx2k/README.md @@ -10,6 +10,10 @@ make ``` Put the netbootkernel and the .dtb somewhere for ftp. +I use the centre tool, and my location for netboot is ~/centre, so: +``` +cp netbootkernel fsl-lx2160a-cex7.dtb ~/centre +``` On the honeycomb: ``` @@ -33,15 +37,13 @@ The kernel will boot. You will need to get an IP address: dhclient -vv & ``` -This takes a few minutes for some reason. - Then: ``` cpud -init & ``` And you can cpu to the board! -Note: you will need an ssh public key, I used ~/.ssh/cpu_rsa.pub +Note: you will need an ssh public key, in the build step, I used ~/.ssh/cpu_rsa.pub You can make getting to the board more convenient, e.g, in my .ssh/config I have this: ``` From 2e07e640b05a3483d41a86e024bccddfd3c28fd6 Mon Sep 17 00:00:00 2001 From: Dexter Fryar Date: Tue, 26 Apr 2022 11:19:23 -0500 Subject: [PATCH 064/132] Ampere README describing LinuxBoot and Plan9 cpu commands Enabled Plan9 support in the LinuxBoot kernel config Added systemboot as the default init for LinuxBoot and added cpud to the command set Signed-off-by: Dexter Fryar --- mainboards/ampere/jade/Makefile | 2 +- mainboards/ampere/jade/README.md | 414 ++++++++++++++++++++++++++++ mainboards/ampere/jade/flash.config | 3 +- 3 files changed, 417 insertions(+), 2 deletions(-) create mode 100644 mainboards/ampere/jade/README.md diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index c62e17d9..358deb6f 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -21,7 +21,7 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - GOARCH=arm64 u-root -o $@ -build=bb all github.com/u-root/u-root/cmds/exp/acpicat github.com/u-root/u-root/cmds/exp/acpigrep github.com/u-root/u-root/cmds/exp/disk_unlock github.com/u-root/u-root/cmds/exp/dmidecode github.com/u-root/u-root/cmds/exp/ipmidump + GOARCH=arm64 u-root -uinitcmd=systemboot -o $@ -build=bb core github.com/u-root/u-root/cmds/boot/{systemboot,localboot,fbnetboot} github.com/u-root/u-root/cmds/exp/acpicat github.com/u-root/u-root/cmds/exp/acpigrep github.com/u-root/u-root/cmds/exp/disk_unlock github.com/u-root/u-root/cmds/exp/dmidecode github.com/u-root/u-root/cmds/exp/ipmidump github.com/u-root/cpu/cmds/cpud # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. diff --git a/mainboards/ampere/jade/README.md b/mainboards/ampere/jade/README.md new file mode 100644 index 00000000..1c2ba05f --- /dev/null +++ b/mainboards/ampere/jade/README.md @@ -0,0 +1,414 @@ +# Ampere Mt Jade (WiWynn) LinuxBoot Altra / Altra Max + +# LinuxBoot + Plan9 via u-root/cpu + +## Documentation + +LinuxBoot [documention](https://book.linuxboot.org/cpu/) of the Plan9 cpu/cpud commands implemented in [u-root/cpu](https://github.com/u-root/cpu) + +# Plan9 u-root/cpu Benefits + +This tool allows you to have a very small kernel in SPI-NOR and use ssh with 9P remote filesystems on a remote Arm64 system to have full access to any Arm64 tools without installing them locally. In the example below any tool that is installed on the Raspberry Pi will be availble to Mt Jade once the cpu to cpud connection is made. + +- Full access to remote filesystem +- Maintain minimal SPI-NOR usage +- Firmware and OS bringup +- Baseboard bring-up and debugging +- Security testing e.g. [chipsec](https://github.com/chipsec/chipsec) +- Factory diagnostics and manufacturing flow + +## LinuxBoot Docker Example + +There is an example project that will build LinuxBoot with 9P enabled and systemboot as the default for Mt Jade [here](https://gitlab.com/fryard/Ampere-Samples/-/tree/main/examples/edk2) + +## Plan9 Client cpu + +- An aarch64/Arm64 system (*e.g. Mt Jade, Cloud instance, QEMU, Raspberri Pi, etc.*) + + Option **A**: [Raspberry Pi 3 UEFI Firmware Images](https://github.com/pftf/RPi3) forked from [here](https://github.com/tianocore/edk2-platforms/tree/master/Platform/RaspberryPi/RPi3) with OS installation instructions [here](https://pete.akeo.ie/2019/07/installing-debian-arm64-on-raspberry-pi.html) + + Option **B**: Use one of the [prebuilt RasPiOS Arm64 images](https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2022-04-07/) This is the option used for these examples. + + You'll need to copy or create ssh keys once the OS is up. + +- Install Golang and uroot/cpu for Arm64 + + Create a directory to install Golang for Arm64. + + `sudo su && mkdir -p /usr/local` + + The package manager version is likely outdated and some compatibility things changed around version 1.17 so wget is the best way to install for now. + + `cd /usr/local/ && wget -q -O - https://go.dev/dl/go1.17.4.linux-arm64.tar.gz | tar -xzi` + + Set your GOPATH when you login. + + `echo "export GOPATH=/home/pi/go" >> ~/.bashrc` + + This is an older Golang problem but shouldn't hurt for new installations. + + `echo "export GO111MODULE=off" >> ~/.bashrc` + + Update your PATH to include Golang and GOPATH. + + `echo "export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH" >> ~/.bashrc` + + Logout and login again to reread your .bashrc to get the GO variables + + Create your GOPATH where u-root/cpu and others will be installed. + + `mkdir $GOPATH` + + Install the u-root/cpu package. + + `go get -u github.com/u-root/cpu/...` + +- SSH client private key (.ssh/identity) + + If you want cpu to use defaults then you need to copy your ssh key to ~/.ssh/identity. If you'd rather specify the key then use the `-key string` option when starting cpu. + + `cat ~/.ssh/id_rsa > ~/.ssh/identity` + +- Testing the client + + After completing the steps for the cpud server below you can test a simple command to return the date. If you add dbg9p to the cpu command _**cpu -dbg9p 192.168.0.192 date**_ you'll see logs of debug output. + + `cpu 192.168.0.192 date` + +___ +CLIENT +___ + + ``` + 1970/01/01 00:02:56 + CPUD:Args [cpud -d -remote -bin cpud -port9p 46593 date] pid 692 *runasinit false *remote true + 1970/01/01 00:02:56 + CPUD:Not server package: Running as remote: args ["date"], port9p 46593 + 1970/01/01 00:02:56 CPUD:namespace is "/lib:/lib64:/usr:/bin:/etc:/home" + 1970/01/01 00:02:56 CPUD:Dial 127.0.0.1:46593 + 1970/01/01 00:02:56 CPUD:Connected: write nonce 1b8dc12cfb4831fac97961fa55bcaf39 + 1970/01/01 00:02:56 CPUD:Wrote the nonce + 1970/01/01 00:02:56 CPUD:fd is 10 + 1970/01/01 00:02:56 CPUD: mount 127.0.0.1 on /tmp/cpu 9p 0x6 version=9p2000.L,trans=fd,rfdno=10,wfdno=10,uname=pi,debug=0,msize=1048576 + 1970/01/01 00:02:56 CPUD: mount done + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/lib over /lib + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/lib on /lib + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/lib64 over /lib64 + 1970/01/01 00:02:56 CPUD:Warning: mounting /tmp/cpu/lib64 on /lib64 failed: no such file or directory + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/usr over /usr + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/usr on /usr + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/bin over /bin + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/bin on /bin + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/etc over /etc + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/etc on /etc + 1970/01/01 00:02:56 CPUD: mount /tmp/cpu/home over /home + 1970/01/01 00:02:56 CPUD:Mounted /tmp/cpu/home on /home + 1970/01/01 00:02:56 CPUD: bind mounts done + 1970/01/01 00:02:56 CPUD:dropPrives: uid is 0 + 1970/01/01 00:02:56 CPUD:dropPrivs: not dropping privs + 1970/01/01 00:02:56 CPUD:runRemote: command is "date" + ``` + +``` +Wed 31 Dec 1969 06:02:56 PM CST +``` + +``` +1970/01/01 00:02:56 CPUD:Run /usr/bin/date returns +1970/01/01 00:02:56 CPUD: ignoring err +``` + +Establish an ssh connection to Mt Jade running cpud from the Raspberry Pi using cpu. + +`pi@rpi3debug:~ $ cpu 192.168.0.192` + +``` +1970/01/01 00:11:43 CPUD:runRemote: command is "/bin/bash" +``` + +Run any command available on the Raspberry Pi but executing on Mt Jade using the 9P remoted mounted filesystem. + +`root@(none):~ # uname -a` + +``` +Linux (none) 5.7.0 #1 SMP Fri Apr 22 15:57:28 CDT 2022 aarch64 GNU/Linux +``` + +`root@(none):~ # date` + +``` +Wed 31 Dec 1969 06:12:03 PM CST +``` + +Verify we are executing on an 80 core Ampere Altra Q80-30 CPU + +`root@(none):~ # lscpu` + +``` +Architecture: aarch64 +CPU op-mode(s): 32-bit, 64-bit +Byte Order: Little Endian +CPU(s): 80 +On-line CPU(s) list: 0-79 +Thread(s) per core: 1 +Core(s) per socket: 80 +Socket(s): 1 +Vendor ID: ARM +Model: 1 +Model name: Neoverse-N1 +Stepping: r3p1 +BogoMIPS: 50.00 +L1d cache: 5 MiB +L1i cache: 5 MiB +L2 cache: 80 MiB +Vulnerability Itlb multihit: Not affected +Vulnerability L1tf: Not affected +Vulnerability Mds: Not affected +Vulnerability Meltdown: Not affected +Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl +Vulnerability Spectre v1: Mitigation; __user pointer sanitization +Vulnerability Spectre v2: Not affected +Vulnerability Tsx async abort: Not affected +Flags: fp asimd aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc + dcpop asimddp ssbs +``` + +___ +SERVER +___ + +`cpud -init -d` + + ``` + 1970/01/01 00:02:15 + CPUD:Args [/bbin/cpud -init -d] pid 669 *runasinit true *remote false + 1970/01/01 00:02:15 + CPUD:Running as Init + 1970/01/01 00:02:15 + CPUD:Kicked off startup jobs, now serve ssh + 1970/01/01 00:02:15 + CPUD:Start the process reaper + 1970/01/01 00:02:15 CPUD:starting ssh server on port 23 + 1970/01/01 00:02:15 CPUD: All startup jobs exited + 1970/01/01 00:02:15 CPUD: Syncing filesystems + 1970/01/01 00:02:46 CPUD:attempt to bind 127.0.0.1 0 granted + 1970/01/01 00:02:46 CPUD:handler: cmd is ["cpud" "-d" "-remote" "-bin" "cpud" "-port9p" "45675" "date"] + 1970/01/01 00:02:46 command started with pty + 1970/01/01 00:02:47 wait for /bbin/cpud -d -remote -bin cpud -port9p 45675 date + 1970/01/01 00:02:47 cmd "/bbin/cpud -d -remote -bin cpud -port9p 45675 date" returns with exit status 0 + 1970/01/01 00:02:47 + CPUD:handler exits + 1970/01/01 00:02:56 CPUD:attempt to bind 127.0.0.1 0 granted + 1970/01/01 00:02:56 CPUD:handler: cmd is ["cpud" "-d" "-remote" "-bin" "cpud" "-port9p" "46593" "date"] + 1970/01/01 00:02:56 command started with pty + 1970/01/01 00:02:56 wait for /bbin/cpud -d -remote -bin cpud -port9p 46593 date + 1970/01/01 00:02:56 cmd "/bbin/cpud -d -remote -bin cpud -port9p 46593 date" returns with exit status 0 + 1970/01/01 00:02:56 + CPUD:handler exits + ``` + +## Plan8 Server cpud (LinuxBoot Mt Jade) + +- Booting Mt Jade + + After flashing your LinuxBoot image boot Mt Jade and either connect to the UEFI UART with a TTL cable or use ipmitool with the serial-over-lan (SOL) option. + + `ipmitool -I lanplus -H 192.168.0.156 -U admin -P admin sol activate` + +- Interrupt systemboot within 5 seconds using CTRL+C + + There are also kernel options that allow you to configure the network and run cpud instead of systemboot. Look at the Makefile in this project to generate a kernel that automatically initializes the network and runs cpud as init. + + ``` + ____ _ _ _ + / ___| _ _ ___| |_ ___ _ __ ___ | |__ ___ ___ | |_ + \___ \| | | / __| __/ _ \ '_ ` _ \| '_ \ / _ \ / _ \| __| + ___) | |_| \__ \ || __/ | | | | | |_) | (_) | (_) | |_ + |____/ \__, |___/\__\___|_| |_| |_|_.__/ \___/ \___/ \__| + |___/ + 1970/01/01 00:00:21 Watchdog is stopped. + 1970/01/01 00:00:21 VPD bmc_bootorder_override is + 1970/01/01 00:00:21 System firmware version: TianoCore 2.06.100 (SYS: 2.06.20220308) + 1970/01/01 00:00:21 Failed to set system firmware version to BMC invalid response, expected first byte of response to be 0, got: 204. + 1970/01/01 00:00:21 No product name is matched for OEM commands. + 1970/01/01 00:00:21 ************************************************************************** + 1970/01/01 00:00:21 Starting boot sequence, press CTRL-C within 5 seconds to drop into a shell + 1970/01/01 00:00:21 ************************************************************************** + + ^CException: systemboot killed by signal interrupt + [tty 1], line 1: systemboot + /# root@(none) + ``` + +- Network setup + + Configure the network by using DHCP or static assignment. + + **Dynamic Address** + + `dhclient` + + ``` + 1970/01/01 00:05:41 Bringing up interface eth0... + 1970/01/01 00:05:41 Bringing up interface eth1... + 1970/01/01 00:05:42 Attempting to get DHCPv4 lease on eth1 + 1970/01/01 00:05:45 Got DHCPv4 lease on eth1: DHCPv4 Message + opcode: BootReply + hwtype: Ethernet + hopcount: 0 + transaction ID: 0x79187472 + num seconds: 0 + flags: Unicast (0x00) + client IP: 0.0.0.0 + your IP: 192.168.0.192 + server IP: 192.168.0.1 + gateway IP: 0.0.0.0 + client MAC: 0c:42:a1:5a:8a:9d + server hostname: + bootfile name: + options: + Subnet Mask: ffffff00 + Router: 192.168.0.1 + Domain Name Server: 192.168.0.11, 1.1.1.1 + Domain Name: lan + Broadcast Address: 192.168.0.255 + IP Addresses Lease Time: 12h0m0s + DHCP Message Type: ACK + Server Identifier: 192.168.0.1 + Renew Time Value: [0 0 84 96] + Rebinding Time Value: [0 0 147 168] + 1970/01/01 00:05:45 Configured eth1 with IPv4 DHCP Lease IP 192.168.0.192/24 + 1970/01/01 00:06:11 Could not bring up interface eth0: link "eth0" still down after 30 seconds + 1970/01/01 00:06:12 Could not configure eth1 for IPv6: timeout after waiting for a non-tentative IPv6 address + 1970/01/01 00:06:12 Finished trying to configure all interfaces. + ``` + + **Static Address** + + Set the IP and subnet on ETH1 + + `ip a add 192.168.0.193/24 dev eth1` + + Set ETH1 link up + + `ip link set eth1 up` + + Show the link status + + `ip link show` + + ``` + 1: lo: mtu 65536 state UNKNOWN + link/loopback + 2: eth0: mtu 1500 state DOWN + link/ether 0c:42:a1:5a:8a:9c + 3: eth1: mtu 1500 state UP + link/ether 0c:42:a1:5a:8a:9d + 4: tunl0: <0> mtu 1480 state DOWN + link/ipip + ``` + +- SSH public key + + Create key.pub from your public key on the client. See The Makefile in this project specifies the default key.pub for the server. + + client (e.g. pi@rpi3debug): `cat ~/.ssh/id_rsa.pub` + + server (e.g. LinuxBoot MtJade): `echo "ssh-rsa AAAAB3Nza...4PiQ== hp 840g1 laptop" > key.pub` + +- Starting cpud + + `cpud -init` + +## Debugging 9P + +1. Was your LinuxBoot kernel built with 9P enabled? + + `make CONFIG_NET_9P=y CONFIG_9P_FS=y` + + Note: tinyconfig, oldconfig, etc. may not have these symbols defined especially if you are using an unmodified Makefile. Also make sure it's not defined as a module *e.g. CONFIG_NET_9P=m* since LinuxBoot builds a small monolithic kernel due to the size of SPI-NOR typically available. + +2. Is there a problem reading the SSH keys on the client or server? + + The default file cpu looks for on the client side is called *~/.ssh/identity* + +3. CPUD(as remote):9p mount no such device + + It's a vague error that is difficult to understand where it came from since the u-root/cpu error printed [here](https://github.com/u-root/cpu/blob/main/cmds/cpud/main.go#L223) the actual message _**no such device**_ came from the call to [mount()](https://man7.org/linux/man-pages/man2/mount.2.html). + + The error is coming from the cpud side where the LinuxBoot kernel does not have a 9P driver in the kernel. See item #1 above. + + ` pi@rpi3debug:~ $ cpu -d -dbg9p 192.168.0.193 date` + + ``` + 2022/04/22 01:38:04 + Running as client, to host "192.168.0.193", args "date" + 2022/04/22 01:38:04 getKeyFile for "" + 2022/04/22 01:38:04 key file from config is "~/.ssh/identity" + 2022/04/22 01:38:04 getKeyFile returns "/home/pi/.ssh/identity" + 2022/04/22 01:38:04 getPort("192.168.0.193", "") + 2022/04/22 01:38:04 config.Get("192.168.0.193",""): "22" + 2022/04/22 01:38:04 getPort: return default "23" + 2022/04/22 01:38:04 returns "23" + 2022/04/22 01:38:05 listener *ssh.tcpListener &{0x1d802e8 0x1d98b80 0x1e88000} addr 127.0.0.1:43971 port 23 + 2022/04/22 01:38:05 srv: try to accept + 2022/04/22 01:38:05 command is "cpud -remote -bin cpud -port9p 43971 date" + 2022/04/22 01:38:05 Start remote with command "cpud -remote -bin cpud -port9p 43971 date" + 2022/04/22 01:38:05 srv got &{0x1d0a200 0x1d802e8 0x1cc34a0} + 1970/01/01 00:18:31 + CPUD:Args [cpud -remote -bin cpud -port9p 43971 date] pid 759 *runasinit false *remote true + 1970/01/01 00:18:31 + CPUD:Not server package: Running as remote: args ["date"], port9p 43971 + 1970/01/01 00:18:31 CPUD:namespace is "/lib:/lib64:/usr:/bin:/etc:/home" + 1970/01/01 00:18:31 CPUD:Dial 127.0.0.1:43971 + 1970/01/01 00:18:31 CPUD:Connected: write nonce 0799fc2a4ab42cfbf2c9e3535e0ed389 + 1970/01/01 00:18:31 CPUD:Wrote the nonce + 1970/01/01 00:18:31 CPUD:fd is 10 + 1970/01/01 00:18:31 CPUD: mount 127.0.0.1 on /tmp/cpu 9p 0x6 version=9p2000.L,trans=fd,rfdno=10,wfdno=10,uname=pi,debug=0,msize=1048576 + 1970/01/01 00:18:31 CPUD(as remote):9p mount no such device + 2022/04/22 01:38:05 srv: read the nonce back got 0799fc2a4ab42cfbf2c9e3535e0ed389 + 2022/04/22 01:38:05 SSH error Process exited with status 1 + ``` + +4. Enabling debug options on the client (cpu) and server (cpud) + + Look at using -d -dbg9p -dump options + + `pi@rpi3debug:~ $ cpu -help` + + ``` + Usage of cpu: + -bin string + path of cpu binary (default "cpud") + -cpudcmd string + cpud invocation to run at remote, e.g. cpud -d -bin cpud + -d enable debug prints + -dbg9p + show 9p io + -dump + Dump copious output, including a 9p trace, to a temp file at exit + -fstab string + pass an fstab to the cpud + -hk string + file for host key + -key string + key file + -mountopts string + Extra options to add to the 9p mount + -msize int + msize to use (default 1048576) + -namespace string + Default namespace for the remote process -- set to none for none (default "/lib:/lib64:/usr:/bin:/etc:/home") + -network string + network to use (default "tcp") + -new + Use new cpu package for cpu client + -port9p string + port9p # on remote machine for 9p mount + -root string + 9p root (default "/") + -sp string + cpu default port + -timeout9p string + time to wait for the 9p mount to happen. (default "100ms") + ``` \ No newline at end of file diff --git a/mainboards/ampere/jade/flash.config b/mainboards/ampere/jade/flash.config index 953948e5..90db4df6 100644 --- a/mainboards/ampere/jade/flash.config +++ b/mainboards/ampere/jade/flash.config @@ -859,7 +859,7 @@ CONFIG_STREAM_PARSER=y # CONFIG_WIRELESS is not set # CONFIG_WIMAX is not set # CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set +CONFIG_NET_9P=y # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set @@ -2296,6 +2296,7 @@ CONFIG_NETWORK_FILESYSTEMS=y # CONFIG_CIFS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set +CONFIG_9P_FS=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y From ccd8eaca33034f414a50ac56382d9990d4066f0b Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Mon, 23 May 2022 07:59:09 +0700 Subject: [PATCH 065/132] ampere/jade: fix CI issues with the Go modules This fixes the CI pipeline failure per Ron's suggestion in the PR#69. Signed-off-by: Nhi Pham --- mainboards/ampere/jade/Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 358deb6f..d88071eb 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -21,13 +21,22 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - GOARCH=arm64 u-root -uinitcmd=systemboot -o $@ -build=bb core github.com/u-root/u-root/cmds/boot/{systemboot,localboot,fbnetboot} github.com/u-root/u-root/cmds/exp/acpicat github.com/u-root/u-root/cmds/exp/acpigrep github.com/u-root/u-root/cmds/exp/disk_unlock github.com/u-root/u-root/cmds/exp/dmidecode github.com/u-root/u-root/cmds/exp/ipmidump github.com/u-root/cpu/cmds/cpud + GO111MODULE=off GOARCH=arm64 u-root -uinitcmd=systemboot -o $@ core \ + github.com/u-root/u-root/cmds/boot/systemboot \ + github.com/u-root/u-root/cmds/boot/localboot \ + github.com/u-root/u-root/cmds/boot/fbnetboot \ + github.com/u-root/u-root/cmds/exp/acpicat \ + github.com/u-root/u-root/cmds/exp/acpigrep \ + github.com/u-root/u-root/cmds/exp/disk_unlock \ + github.com/u-root/u-root/cmds/exp/dmidecode \ + github.com/u-root/u-root/cmds/exp/ipmidump \ + github.com/u-root/cpu/cmds/cpud # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line cpu.cpio.lzma: Makefile - GOARCH=arm64 go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ + GO111MODULE=off GOARCH=arm64 go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ -defaultsh="" \ github.com/u-root/cpu/cmds/cpud lzma -f -k cpu.cpio @@ -37,7 +46,7 @@ cpu.cpio.lzma: Makefile # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line sshd.cpio.lzma: Makefile - GOARCH=arm64 go run github.com/u-root/u-root -o sshd.cpio -build=bb \ + GO111MODULE=off GOARCH=arm64 go run github.com/u-root/u-root -o sshd.cpio -build=bb \ -uinitcmd=/bbin/sshd \ -files class_key.pub:authorized_keys \ -files classhostkey:id_rsa \ From 01386b74fb034f439ae0d4c3b96db439f5b3980d Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Mon, 23 May 2022 08:13:57 +0700 Subject: [PATCH 066/132] ampere/jade: replace oldconfig to olddefconfig Compiling Linux kernel with making olddefconfig helps set all new config symbols to their default values without prompting. Signed-off-by: Nhi Pham --- mainboards/ampere/jade/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index d88071eb..52472663 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -63,7 +63,7 @@ sshd.cpio.lzma: Makefile flashkernel: flash.config flashinitramfs.cpio.lzma Makefile cp $< linux/.config (cd linux && git apply ../0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch) - (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make oldconfig && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j32) + (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make olddefconfig && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make -j32) cp linux/arch/arm64/boot/Image $@ testflashkernel: flashkernel From dc93fe21d8600c482a05067615b0869d12ecd664 Mon Sep 17 00:00:00 2001 From: David Hu Date: Tue, 31 May 2022 08:29:59 -0700 Subject: [PATCH 067/132] Arm qemu board, arm64 equivalent to qemu/x86_64 TODO: * flash config can be trimmed down to minimal * aarch64 qemu startup options can be trimmed down Signed-off-by: David Hu --- mainboards/qemu/arm64/Makefile | 45 ++++++++++++++++ mainboards/qemu/arm64/flash.config | 84 ++++++++++++++++++++++++++++++ 2 files changed, 129 insertions(+) create mode 100644 mainboards/qemu/arm64/Makefile create mode 100644 mainboards/qemu/arm64/flash.config diff --git a/mainboards/qemu/arm64/Makefile b/mainboards/qemu/arm64/Makefile new file mode 100644 index 00000000..ae245b45 --- /dev/null +++ b/mainboards/qemu/arm64/Makefile @@ -0,0 +1,45 @@ +flashinitramfs.cpio: flashkernel core.cpio + GO111MODULE=off GOARCH=arm64 u-root -o $@ \ + -files flashkernel \ + -files core.cpio \ + -files /usr/bin/gzip \ + github.com/u-root/u-root/cmds/boot/pxeboot \ + github.com/u-root/u-root/cmds/core/cat \ + github.com/u-root/u-root/cmds/core/elvish \ + github.com/u-root/u-root/cmds/core/init \ + github.com/u-root/u-root/cmds/core/ip \ + github.com/u-root/u-root/cmds/core/ls \ + github.com/u-root/u-root/cmds/core/kexec \ + github.com/u-root/u-root/cmds/core/pci \ + github.com/u-root/u-root/cmds/core/wget + +core.cpio: flash.config Makefile + GO111MODULE=off GOARCH=arm64 u-root -o $@ + +flashkernel: flash.config core.cpio + cp $< linux/.config + echo CONFIG_CMDLINE_BOOL=y >> linux/.config + echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config + (cd linux && make ARCH=arm64 olddefconfig && make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j32) + cp linux/arch/arm64/boot/Image $@ + +testflashkernel: flashkernel flashinitramfs.cpio + qemu-system-aarch64 -device VGA,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd \ + -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 \ + -nographic -machine virt -cpu cortex-a57 -m 512 -serial mon:stdio -serial null \ + -initrd flashinitramfs.cpio \ + -kernel flashkernel \ + -append console=ttyAMA0,115200 \ + -monitor $(MONITOR) $(EXTRA) + +fetch: getkernel geturoot + +installdep: + sudo apt install gcc-aarch64-linux-gnu + +getkernel: + rm -rf linux + git clone --depth=1 -b v5.11 https://github.com/torvalds/linux + +geturoot: + GO111MODULE=off go get -u github.com/u-root/u-root diff --git a/mainboards/qemu/arm64/flash.config b/mainboards/qemu/arm64/flash.config new file mode 100644 index 00000000..9a203e5c --- /dev/null +++ b/mainboards/qemu/arm64/flash.config @@ -0,0 +1,84 @@ +# Copyright 2022 the u-root Authors. All rights reserved +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. +# +# If you copy this to your Linux directory, run +# make olddefconfig +# to fill in the blanks. +# +# This is not intended to be a minimal Linux configuration, but perhaps it comes +# close to listing requirements for certain things. +# +# EFI +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_EFI_ESRT=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_ARMSTUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_EARLYCON=y +# Config settings specific to ARM hardware: +CONFIG_MMU=y +CONFIG_ARCH_MULTIPLATFORM=y +CONFIG_ARCH_MULTI_V7=y +CONFIG_ARCH_VIRT=y +CONFIG_ARM_AMBA=y +CONFIG_ARM64_VA_BITS_48=y +# Minimal kernel config needed for Go and serial port: +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_CMDLINE="console=ttyAMA0,115200" +# vfat filesystem: +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_NLS=y +CONFIG_MSDOS_FS=y +# Loop device for tcz: +CONFIG_BLK_DEV_LOOP=y +CONFIG_MISC_FILESYSTEMS=y +CONFIG_SQUASHFS=y +# GPIO test - mock GPIO libraries +CONFIG_GPIOLIB=y +CONFIG_GPIO_MOCKUP=y +CONFIG_GPIO_SYSFS=y +# For the kernel being kexec'ed +CONFIG_RELOCATABLE=y +# For the kernel doing the kexec'ing +# CONFIG_KEXEC needs more stuff on ARM +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_SUSPEND=y +CONFIG_HOTPLUG_CPU=y +# BMC IPMI Support +CONFIG_IPMI_HANDLER=y +CONFIG_IPMI_DEVICE_INTERFACE=y +CONFIG_IPMI_SI=y +CONFIG_IPMI_SSIF=y +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# Enable SMMUv3 +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOMMU_DMA=y +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +CONFIG_ARM_SMMU_V3=y +# Enable EFI RTC +CONFIG_RTC_CLASS=y +CONFIG_RTC_DRV_EFI=y +# Hotremove needed for ProdID +CONFIG_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_MIGRATION=y +CONFIG_MEMORY_HOTREMOVE=y + +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_COMPRESSION=".xz" +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# seem required, other make will do prompt and ask again. +ARM64_PTR_AUTH=n +ARM64_TLB_RANGE=y +ARM64_MTE=y From 9c020daba1379b84d16e0bd373d34b2052f3a1f3 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 24 Jan 2022 19:34:36 -0800 Subject: [PATCH 068/132] checkpoint commit, chasing bugs Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 18 +- mainboards/aeeon/i11/cpu-5.14.config | 4099 ++++++++++++++++++ mainboards/aeeon/i11/cpuflash-5.17.0.config | 4192 ++++++++++++++++++ mainboards/aeeon/i11/cpuflash-5.4.0.config | 4204 +++++++++++++++++++ mainboards/aeeon/i11/cpuflash-5.6.0.config | 4114 ++++++++++++++++++ mainboards/aeeon/i11/cpuflash.config | 2 +- 6 files changed, 16625 insertions(+), 4 deletions(-) create mode 100644 mainboards/aeeon/i11/cpu-5.14.config create mode 100644 mainboards/aeeon/i11/cpuflash-5.17.0.config create mode 100644 mainboards/aeeon/i11/cpuflash-5.4.0.config create mode 100644 mainboards/aeeon/i11/cpuflash-5.6.0.config diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 26dbe95a..819cd5c7 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -172,11 +172,19 @@ cpukernel: cpu.cpio.lzma cpu.config # KERNEL=ubuntu-bionic-up KERNEL=linux -cpuflashkernel: cpu.cpio cpuflash.config - cp cpuflash.config $(KERNEL)/.config +#CONFIG=cpuflash-5.17.0.config +#CONFIG=cpuflash-5.4.0.config +CONFIG=cpuflash.config +cpuflashkernel: cpu.cpio $(CONFIG) + cp $(CONFIG) $(KERNEL)/.config (cd $(KERNEL) && make oldconfig && make -j32) cp $(KERNEL)/arch/x86/boot/bzImage $@ +5.4.65.cpuflashkernel: cpu.cpio cpuflash-5.4.65.config + cp cpuflash-5.4.65.config linux-5.4.65/.config + (cd linux-5.4.65 && make oldconfig && make -j32) + cp linux-5.4.65/arch/x86/boot/bzImage $@ + readrom: echo You need to get a ROM image from *somewhere* echo Once you do, put it in ROM.bin @@ -254,7 +262,11 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux + git clone --depth=1 -b v5.15 --single-branch git@github.com:torvalds/linux + +getkernel-5.4.65: + rm -rf linux-5.4.65 + git clone --depth=1 -b hwe-5.4-upboard --single-branch git@github.com:AaeonCM/ubuntu-bionic-up linux-5.4.65 getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/aeeon/i11/cpu-5.14.config b/mainboards/aeeon/i11/cpu-5.14.config new file mode 100644 index 00000000..940c1b45 --- /dev/null +++ b/mainboards/aeeon/i11/cpu-5.14.config @@ -0,0 +1,4099 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.14.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +# CONFIG_SCHED_CORE is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# CONFIG_CPU_ISOLATION is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_DPTF is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set +CONFIG_ACPI_PRMT=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +CONFIG_X86_SYSFB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_MPTCP is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_SYSLOG is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40EVF is not set +CONFIG_ICE=y +# CONFIG_FM10K is not set +CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +CONFIG_ADIN_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set +CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_LXT_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set +CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XILLYUSB is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set +CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID_ACPI is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS_SUPPORT is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_WIRELESS_HOTKEY is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +CONFIG_PLDMFW=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.17.0.config b/mainboards/aeeon/i11/cpuflash-5.17.0.config new file mode 100644 index 00000000..4be858bd --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-5.17.0.config @@ -0,0 +1,4192 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.17.0-rc1 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +CONFIG_PREEMPT_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y +CONFIG_PREEMPT_DYNAMIC=y +# CONFIG_SCHED_CORE is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# CONFIG_CPU_ISOLATION is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_DPTF is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_ACPI_PFRUT is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set +CONFIG_ACPI_PRMT=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_AMD_PSTATE is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_PAGE_SIZE_LESS_THAN_256KB=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_DYNAMIC_SIGFRAME=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y +# CONFIG_ANON_VMA_NAME is not set + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_MPTCP is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_SYSLOG is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_FD=y +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +# CONFIG_DEVTMPFS_SAFE is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +CONFIG_NET_VENDOR_ASIX=y +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +CONFIG_NET_VENDOR_ENGLEDER=y +# CONFIG_TSNEP is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40EVF is not set +CONFIG_ICE=y +CONFIG_ICE_HWTS=y +# CONFIG_FM10K is not set +CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +CONFIG_NET_VENDOR_VERTEXCOM=y +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +CONFIG_ADIN_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set +CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_LXT_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set +CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_CYPRESS_SF is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set +CONFIG_SERIAL_8250_PERICOM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XILLYUSB is not set +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set + +# +# Intel pinctrl drivers +# +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set +CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set +# end of Intel pinctrl drivers + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_GPIO_SIM is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_MAX77976 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6620 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_NZXT_SMART2 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA238 is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# CONFIG_INTEL_MENLOW is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX20086 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTQ2134 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_RTQ6752 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_RC_CORE is not set + +# +# CEC support +# +# CONFIG_MEDIA_CEC_SUPPORT is not set +# end of CEC support + +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_XIAOMI is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LETSKETCH is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NINTENDO is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID_ACPI is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS_SUPPORT is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set + +# +# Simple LED drivers +# +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IDXD_COMPAT is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_AMD_PTDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ASUS_TF103C_DOCK is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_WIRELESS_HOTKEY is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_SAR_INT1092 is not set +# CONFIG_INTEL_SKL_INT3472 is not set +# CONFIG_INTEL_PMC_CORE is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_ISHTP_ECLITE is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_INTEL_VSEC is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_BARCO_P50_GPIO is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +# CONFIG_SIEMENS_SIMATIC_IPC is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_LAN966X is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set + +# +# PHY drivers for Broadcom platforms +# +# CONFIG_BCM_KONA_USB2_PHY is not set +# end of PHY drivers for Broadcom platforms + +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +CONFIG_NETFS_SUPPORT=y +# CONFIG_NETFS_STATS is not set +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +# end of Crypto library routines + +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +# CONFIG_XZ_DEC_MICROLZMA is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +CONFIG_PLDMFW=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Networking Debugging +# +# CONFIG_NET_DEV_REFCNT_TRACKER is not set +# CONFIG_NET_NS_REFCNT_TRACKER is not set +# end of Networking Debugging + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_TABLE_CHECK is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +CONFIG_DEBUG_PREEMPT=y + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_BUILDTIME_MCOUNT_SORT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_PREEMPT_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_FTRACE_SORT_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.4.0.config b/mainboards/aeeon/i11/cpuflash-5.4.0.config new file mode 100644 index 00000000..36b482e8 --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-5.4.0.config @@ -0,0 +1,4204 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_HEADER_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_INITRAMFS_COMPRESSION=".gz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_BPF_SYSCALL=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +# CONFIG_IOSF_MBI_DEBUG is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_XXL=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PV=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_512GB=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_KVM_DEBUG_FS is not set +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_JAILHOUSE_GUEST is not set +# CONFIG_ACRN_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +CONFIG_NUMA_EMU=y +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +CONFIG_CRASH_DUMP=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_HMAT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_DPTF_POWER is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +CONFIG_SFI=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set +CONFIG_HALTPOLL_CPUIDLE=y +# end of CPU Idle + +CONFIG_INTEL_IDLE=y +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +CONFIG_IA32_EMULATION=y +CONFIG_X86_X32=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_64BIT_TIME=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ZONE_DEVICE=y +# CONFIG_DEVICE_PRIVATE is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +# CONFIG_NET_IPVTI is not set +CONFIG_NET_UDP_TUNNEL=y +CONFIG_NET_FOU=y +CONFIG_NET_FOU_IP_TUNNELS=y +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=y +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=y +CONFIG_TCP_CONG_HTCP=y +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +# CONFIG_TCP_CONG_BBR is not set +# CONFIG_DEFAULT_BIC is not set +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_HTCP is not set +# CONFIG_DEFAULT_WESTWOOD is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_FOU=y +CONFIG_IPV6_FOU_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_XEN is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=y +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_LABEL=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +CONFIG_HOTPLUG_PCI_CPCI=y +# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set +# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +CONFIG_INTEL_MEI=y +CONFIG_INTEL_MEI_ME=y +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=y +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +CONFIG_IXGB=y +CONFIG_IXGBE=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBEVF=y +CONFIG_I40E=y +CONFIG_IAVF=y +CONFIG_I40EVF=y +CONFIG_ICE=y +CONFIG_FM10K=y +CONFIG_IGC=y +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y + +# +# MII PHY device drivers +# +CONFIG_ADIN_PHY=y +CONFIG_AMD_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_FIXED_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +CONFIG_NATIONAL_PHY=y +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_XEN_NETDEV_FRONTEND is not set +# CONFIG_XEN_NETDEV_BACKEND is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +CONFIG_INPUT_SPARSEKMAP=y +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +# CONFIG_KEYBOARD_APPLESPI is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_PS2_VMMOUSE is not set +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PSXPAD_SPI is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_GTCO is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +# CONFIG_TOUCHSCREEN_AD7877 is not set +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2005 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_IFX6X60 is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +# CONFIG_NVRAM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +CONFIG_SPI_DEBUG=y +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_NXP_FLEXSPI is not set +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_PXA2XX is not set +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +CONFIG_PINCTRL_CANNONLAKE=y +CONFIG_PINCTRL_CEDARFORK=y +CONFIG_PINCTRL_DENVERTON=y +CONFIG_PINCTRL_GEMINILAKE=y +CONFIG_PINCTRL_ICELAKE=y +CONFIG_PINCTRL_LEWISBURG=y +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +CONFIG_GPIO_ICH=y +CONFIG_GPIO_LYNXPOINT=y +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +CONFIG_GPIO_SCH=y +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_INTEL_MEI_WDT is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set +# CONFIG_XEN_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +CONFIG_LPC_ICH=y +CONFIG_LPC_SCH=y +# CONFIG_INTEL_SOC_PMIC_BXTWC is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# CONFIG_DRM_XEN is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_APU is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXCPLD is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_AMD64 is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RX6110 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV is not set +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=y +CONFIG_XEN_GRANT_DEV_ALLOC=y +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCIDEV_BACKEND=y +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_STAGING=y +# CONFIG_COMEDI is not set +# CONFIG_FB_SM750 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_STAGING_MEDIA is not set + +# +# Android +# +# end of Android + +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +# CONFIG_PI433 is not set + +# +# Gasket devices +# +# CONFIG_STAGING_GASKET_FRAMEWORK is not set +# end of Gasket devices + +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_USB_WUSB_CBAF is not set +# CONFIG_UWB is not set +# CONFIG_QLGE is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBU is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ACPI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +CONFIG_INTEL_INT0002_VGPIO=y +CONFIG_INTEL_HID_EVENT=y +CONFIG_INTEL_VBTN=y +CONFIG_INTEL_IPS=y +CONFIG_INTEL_PMC_CORE=y +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +CONFIG_INTEL_RST=y +CONFIG_INTEL_SMARTCONNECT=y +CONFIG_INTEL_PMC_IPC=y +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_INTEL_PUNIT_IPC=y +CONFIG_INTEL_TELEMETRY=y +# CONFIG_MLX_PLATFORM is not set +CONFIG_INTEL_TURBO_MAX_3=y +# CONFIG_I2C_MULTI_INSTANTIATE is not set +CONFIG_INTEL_ATOMISP2_PM=y +# CONFIG_PCENGINES_APU2 is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_INTEL_RAPL is not set +# CONFIG_IDLE_INJECT is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_IOMMU_HELPER=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UACCESS_MCSAFE=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POISONING_NO_SANITY=y +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_PREEMPTIRQ_EVENTS is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +CONFIG_MEMTEST=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_DEBUG_WX=y +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.6.0.config b/mainboards/aeeon/i11/cpuflash-5.6.0.config new file mode 100644 index 00000000..4037658e --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-5.6.0.config @@ -0,0 +1,4114 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.15.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +# CONFIG_SCHED_CORE is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# CONFIG_CPU_ISOLATION is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_DPTF is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set +CONFIG_ACPI_PRMT=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_MPTCP is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_SYSLOG is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40EVF is not set +CONFIG_ICE=y +# CONFIG_FM10K is not set +CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +CONFIG_ADIN_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set +CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_LXT_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set +CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XILLYUSB is not set +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set +CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# CONFIG_INTEL_MENLOW is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTQ2134 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_RTQ6752 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID_ACPI is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS_SUPPORT is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IDXD_COMPAT is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_AMD_PTDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_WIRELESS_HOTKEY is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +CONFIG_PLDMFW=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config index 55198097..4037658e 100644 --- a/mainboards/aeeon/i11/cpuflash.config +++ b/mainboards/aeeon/i11/cpuflash.config @@ -976,7 +976,7 @@ CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_DEBUG=y # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set From 5078d716b17da403bb4cca297c2f2bb0b7dc824c Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 1 Feb 2022 09:15:06 -0800 Subject: [PATCH 069/132] More bits and pieces for i11 kexec and 9p testing the upstream kernel broke 9p, so there was bisection needed. Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/9pnotes | 17 + mainboards/aeeon/i11/BISECT | 7 + mainboards/aeeon/i11/Makefile | 3 +- mainboards/aeeon/i11/NOTES | 1058 +++++ mainboards/aeeon/i11/cpu-5.15.config | 4114 +++++++++++++++++ .../aeeon/i11/cpuflash-5.4.0-rc6.config | 3872 ++++++++++++++++ 6 files changed, 9070 insertions(+), 1 deletion(-) create mode 100644 mainboards/aeeon/i11/9pnotes create mode 100644 mainboards/aeeon/i11/BISECT create mode 100644 mainboards/aeeon/i11/NOTES create mode 100644 mainboards/aeeon/i11/cpu-5.15.config create mode 100644 mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config diff --git a/mainboards/aeeon/i11/9pnotes b/mainboards/aeeon/i11/9pnotes new file mode 100644 index 00000000..c8870dc3 --- /dev/null +++ b/mainboards/aeeon/i11/9pnotes @@ -0,0 +1,17 @@ +5.11-rc4 fails + +5.11-rc1 fails + +5.10 works + +2911ed9f47b47cb5ab87d03314b3b9fe008e607f OK +b0a6cd29e00a317d7fd823e0db57abbbd9bbb610 OK +8a5be36b9303ae167468d4f5e1b3c090b9981396 OK +6a447b0e3151893f6d4a889956553c06d2e775c6 OK +1375b9803e007842493c64d0d73d7dd0e385e17c BAD +8552d28e140110fc935b39a6bfaf33c8ce3a1ad5 BAD +0a7e7ec90e601d98cc5914626b78fd043598b85b OK +526671bfc47df175eb87f96067d51b389a8af50d OK + +48342fc07272eec454fc5b400ed3ce3739c7e950 OK + diff --git a/mainboards/aeeon/i11/BISECT b/mainboards/aeeon/i11/BISECT new file mode 100644 index 00000000..f803bbd4 --- /dev/null +++ b/mainboards/aeeon/i11/BISECT @@ -0,0 +1,7 @@ + 2613 git log e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc + 2614 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc + 2615 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | head -8000 | tail -4 + 2616 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 + + +last one is bad, try 4000 later diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 819cd5c7..22da271a 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -174,7 +174,8 @@ cpukernel: cpu.cpio.lzma cpu.config KERNEL=linux #CONFIG=cpuflash-5.17.0.config #CONFIG=cpuflash-5.4.0.config -CONFIG=cpuflash.config +#CONFIG=cpuflash.config +CONFIG=cpu-5.14.config cpuflashkernel: cpu.cpio $(CONFIG) cp $(CONFIG) $(KERNEL)/.config (cd $(KERNEL) && make oldconfig && make -j32) diff --git a/mainboards/aeeon/i11/NOTES b/mainboards/aeeon/i11/NOTES new file mode 100644 index 00000000..fcae5c62 --- /dev/null +++ b/mainboards/aeeon/i11/NOTES @@ -0,0 +1,1058 @@ + 1401 make getkernel-5.4.65 + 1402 ls + 1403 fg + 1404 emacs + 1405 cd linux-5.4/ + 1406 history | grep tar + 1407 ls + 1408 ls .. + 1409 ls ~/ + 1410 cd .. + 1411 vi Makefile + 1412 make getkernel-5.4.65 + 1413 vi Makefile + 1414 make getkernel-5.4.65 + 1415 make cpuflashkernel 5.4.65.cpuflashkernel + 1416 more linux/Makefile + 1417 make cpuflashkernel 5.4.65.cpuflashkernel + 1418 ls -l *kernel + 1419 cpu i11 cp cpuflashkernel /x + 1420 cpu i11 kexec /x + 1421 cpu i11 date + 1422 cpu i11 cp 5.4.65.cpuflashkernel /x + 1423 cpu i11 kexec /x + 1424 cpu i11 cp 5.4.65.cpuflashkernel /x + 1425 cpu i11 kexec -r /x + 1426 cpu i11 lspci + 1427 ls + 1428 cpu i11 date + 1429 grep cpu.*kernel Makefile + 1430 make cpuflashkernel + 1431 cpu i11 cp cpuflashkernel /x + 1432 cpu i11 kexec -e + 1433 cpu i11 cp cpuflashkernel /x + 1434 cpu i11 kexec -r '0000:01:00.0 0000:01:00.1' -e + 1435 cpu i11 kexec --pcireset '0000:01:00.0 0000:01:00.1' -e + 1436 cpu i11 ls /sys/bus/pci/devices/0000:01:00.0/reset + 1437 cpu i11 kexec --pcireset '0000:01:00.0 0000:01:00.1' -e + 1438 cpu i11 kexec --pcireset '0000:01:00.1 0000:01:00.1' -e + 1439 cpu i11 + 1440 cpu i11 ls /sys/bus/pci/devices + 1441 cpu i11 /bin/sh + 1442 strace -o shit -f -v -s 1024 cpu i11 /bin/sh + 1443 /usr/bin/strace -o shit -f -v -s 1024 cpu i11 /bin/sh + 1444 vi shit + 1445 cpu i11 dmesg + 1446 cpu i11 kexec cpuflashkernel + 1447 cpu -h + 1448 cpu i11 -dbg9p -dump kexec cpuflashkernel + 1449 ls + 1450 ls /tmp + 1451 ls -l kexec + 1452 cpu i11 -dbg9p kexec cpuflashkernel + 1453 cpu i11 -dbg9p 8 kexec cpuflashkernel + 1454 cpu i11 -dump kexec cpuflashkernel + 1455 cpu -dumnp i11 kexec cpuflashkernel + 1456 cpu -dump i11 kexec cpuflashkernel + 1457 vi /tmp/cpu029385184 + 1458 cpu -dump i11 + 1459 vi /tmp/cpu585843260 + 1460 fg + 1461 file /usr/bin/lesspipe + 1462 more /usr/bin/lesspipe + 1463 fg + 1464 cpu i11 lesspipe + 1465 cpu i11 basename x x + 1466 fg + 1467 cpu i11 /usr/bin/strace date + 1468 cpu i11 lsof + 1469 cd linux + 1470 git grep EBUSY + 1471 git grep EBUSY kernel/ + 1472 git grep EBUSY fs + 1473 git grep EBUSY fs | grep exec + 1474 git grep EBUSY fs | grep proc + 1475 git grep EBUSY fs/9p + 1476 git grep EBUSY fs/p9 + 1477 git grep EBUSY fs/9p/ + 1478 git grep exec kerne + 1479 git grep exec kernel + 1480 git grep EBUSY kernel/*exec* + 1481 git grep EBUSY fs/*.c + 1482 cpu i11 cat README + 1483 cpu i11 dd of=README + 1484 cpu i11 /usr/bin/strace date + 1485 cd .. + 1486 cpu i11 strace date + 1487 cpu i11 strace kexec cpuflashkernel + 1488 cpu -dump i11 strace kexec cpuflashkernel + 1489 script xyz + 1490 vi xyz + 1491 cpu i11 strace date + 1492 cpu i11 date + 1493 cpu i11 sh -c date + 1494 cpu i11 strace sh -c date + 1495 grep -r EBUSY linux/net/9p/ + 1496 vi linux/net/9p/error.c + 1497 vi linux/net/9p/trans_virtio.c + 1498 grep -ri busy linux/fs/9p/ + 1499 grep -ri busy linux/fs/*open* + 1500 vi linux/fs/fsopen.c + 1501 girt grep EBUSY linux/fs/ + 1502 grep -r EBUSY linux/fs/ + 1503 grep -r EBUSY linux//fs/namei.c + 1504 /BUSY + 1505 vi /BUSY + 1506 grep -r EBUSY linux//fs/namei.c + 1507 vi linux//fs/namei.c + 1508 vi linux/Documentation/filesystems/9p.rst + 1509 fg + 1510 make cpukernel + 1511 make cpuflashkernel + 1512 rm cpu.cpio + 1513 make cpuflashkernel + 1514 cpu i11 cp cpuflashkernel /x + 1515 cpu i11 kexec -e /x + 1516 cpu i11 kexec -e + 1517 cpu i11 kexec /x + 1518 cpu i11 kexec cpuflash + 1519 cpu i11 kexec cpuflashkernel + 1520 cpu i11 dmesg -c + 1521 cpu i11 cat /proc/mounts + 1522 vi linux/Documentation/filesystems/9p.rst + 1523 rm cpu.cpio + 1524 make cpuflashkernel + 1525 cpu i11 cp cpuflashkernel /x + 1526 cpu i11 kexec /x + 1527 cpu i11 date + 1528 cpu i11 dmesg + 1529 cd linux + 1530 make menuconfig + 1531 diff .config ../cpuflash-5.4.65.config + 1532 more Makefile + 1533 diff .config ../cpuflash.config + 1534 cp .config ../cpuflash.config + 1535 cd .. + 1536 make cpuflashkernel + 1537 cpu i11 cp cpuflashkernel /x + 1538 cpu i11 kexec /x + 1539 cpu i11 date + 1540 cpu i11 dmesg + 1541 cpu i11 dmesg -c + 1542 cpu i11 kexec cpuflash + 1543 cpu i11 dmesg -c > xxx + 1544 vi xxx + 1545 more xxx + 1546 which dmesg + 1547 cpu i11 /bbin/demsg -c + 1548 cpu i11 kexec cpuflash + 1549 cpu i11 kexec cpuflashkernel + 1550 cpu i11 cat /xyz + 1551 vi xyz + 1552 cpu i11 cp /xyz . + 1553 vi xyz + 1554 rm xyz + 1555 cpu i11 cp /xyz . + 1556 vi xyz + 1557 cpu i11 kexec -l cpuflashkernel + 1558 rm cpu.cpio + 1559 make cpuflashkernel + 1560 cpu i11 cp cpuflashkernel /x + 1561 cpu i11 kexec /x + 1562 cpu i11 date + 1563 cpu i11 kexec cpuflashkernel + 1564 rm xyz + 1565 cpu i11 cp /xyz xyz + 1566 vi xyz + 1567 cpu i11 strace date + 1568 cp 11 /usr/bin/strace date + 1569 cpu i11 /usr/bin/strace date + 1570 cpu i11 cp /xyz /tmp/faileddatestrace + 1571 vi /tmp/faileddatestrace + 1572 cpu i11 cp /xyz faileddatestrace + 1573 vi faileddatestrace + 1574 strace /usr/bin/strace x + 1575 grep CLUNK faileddatestrace + 1576 vi faileddatestrace + 1577 fg + 1578 vi linux/Documentation/filesystems/9p.rst + 1579 cd linux + 1580 git log + 1581 cd .. + 1582 cpu i11 + 1583 rm xyz + 1584 cpu i11 cp /xyz . + 1585 vi xyz + 1586 fg + 1587 cpu i11 /bbin/dmesg -c + 1588 cpu i11 kexec -l cpuflashkernel + 1589 cpu i11 /bbin/dmesg -c > xyz + 1590 vi xyz + 1591 man 2 open + 1592 grep O_ /usr/include/fcntl.h + 1593 grep -r define.*O_CL /usr/include + 1594 vi /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h + 1595 gdb + 1596 fg + 1597 strace -o shit kexec -l cpuflashkernel + 1598 vi shit + 1599 cpu i11 strace kexec -l cpuflashkernel + 1600 cpu i11 strace -o strfail kexec -l cpuflashkernel + 1601 grep open strfail + 1602 vi x.c + 1603 man 2 open + 1604 fg + 1605 cc -o x x.c + 1606 vi x.c + 1607 cc -o x x.c + 1608 vi x.c + 1609 cc -o x x.c + 1610 vi x.c + 1611 fg + 1612 cc -o x x.c + 1613 ./x + 1614 cpu i11 ./x cpuflashkernel + 1615 vi x.c + 1616 cc -o x x.c + 1617 man printf + 1618 man 3 printf + 1619 vi x.c + 1620 cc -o x x.c + 1621 cpu i11 ./x cpuflashkernel + 1622 vi x.c + 1623 cc -o x x.c + 1624 vi x.c + 1625 cc -o x x.c + 1626 cpu i11 ./x cpuflashkernel + 1627 ./x + 1628 vi x.c + 1629 ./x cpuflashkernel + 1630 vi x.c + 1631 cc -o x x.c + 1632 ./x cpuflashkernel + 1633 cpu i11 ./x cpuflashkernel + 1634 ./x cpuflashkernel + 1635 vi linux/fs/9p/vfs_file.c + 1636 git grep CLOE linux/fs//9p + 1637 more x.c + 1638 git grep CLOE linux/fs + 1639 git grep CLOE linux + 1640 grep -r CLOE linux/fs/9p + 1641 vi linux/fs/9p/vfs_inode_dotl.c + 1642 grep -r CLOEXEC linux + 1643 vi linux/fs/file.c + 1644 cd linux + 1645 git grep set.close.on + 1646 vi fs/file.c + 1647 git grep EBUSY fs + 1648 git grep EBUSY fs/*.c + 1649 git grep CLOEX fs/*.c + 1650 cat x.c + 1651 cat ../x.c + 1652 cd .. + 1653 vi x.c + 1654 cc -o x x.c + 1655 cpu i11 ./x cpuflashkernel + 1656 cat x.c + 1657 vi x.c + 1658 cc -o x x.c + 1659 cpu i11 ./x cpuflashkernel + 1660 cat x.c + 1661 vi x.c + 1662 cc -o x x.c + 1663 cpu i11 ./x cpuflashkernel + 1664 vi x.c + 1665 go build + 1666 cc -o x x.c + 1667 cpu i11 ./x cpuflashkernel + 1668 cat x.c + 1669 cpu i11 ./x /bbin/date + 1670 vi x.c + 1671 cc -o x x.c + 1672 vi x.c + 1673 cc -o x x.c + 1674 cpu i11 ./x /bbin/date + 1675 cpu i11 ./x cpuflashkernel + 1676 cpu i11 + 1677 grep clone + 1678 grep clone Makefile + 1679 rm -rf linux + 1680 git clone -b v5.15 git@github.com:torvalds/linux + 1681 cd linux + 1682 git grep 8259 Documentation/ + 1683 vi Documentation/core-api/irq/concepts.rst + 1684 pwd + 1685 git branch + 1686 git log + 1687 git branch -a + 1688 git checkout master + 1689 more Makefile + 1690 cd .. + 1691 cp cpuflash-5.17.0.config + 1692 cp cpuflash.config cpuflash-5.17.0.config + 1693 vi Makefile + 1694 fg + 1695 make cpuflashkernel + 1696 cd linux + 1697 make menuconfig + 1698 make + 1699 cp .config ../cpuflash-5.17.0.config + 1700 cd .. + 1701 make cpuflashkernel + 1702 grep INIT cpuflash-5.17.0.config + 1703 cpu i11 cp cpuflashkernel /x + 1704 cpu i11 kexec /x + 1705 cpu i11 + 1706 cpu i11 cat /proc/version + 1707 cpu i11 ./x cpuflashkernel + 1708 cd linux + 1709 git branch + 1710 git log + 1711 git branch -a + 1712 git tag -h + 1713 git tag -l + 1714 git bisect start + 1715 git tag -l | grep 5.4 + 1716 git bisect bad + 1717 git checkout v5.4 + 1718 cp ../cpuflash-5.4.65.config .config + 1719 make menuconfig + 1720 make -j32 + 1721 make menuconfig + 1722 make + 1723 grep KAS .config + 1724 git log + 1725 more Makefile + 1726 cp .config ../cpuflash-5.4.0.config + 1727 make mrproper + 1728 cd .. + 1729 vi Makefile + 1730 make cpuflashkernel + 1731 git checkout v5.5 + 1732 git checkout v5.5.0 + 1733 git tag -l + 1734 cd linux + 1735 git checkout v5.5.0 + 1736 git checkout v5.5 + 1737 make menuconfig + 1738 make clean + 1739 make -j32 + 1740 make menuconfig + 1741 cp ../cpuflash-5.4.65.config + 1742 cp ../cpuflash-5.4.65.config .config + 1743 make -j32 + 1744 git grep __force_order + 1745 vi arch/x86/boot/compressed/Makefile + 1746 vi .config + 1747 make + 1748 pwd + 1749 cp i11 cp arch/x86/boot/bzImage /x + 1750 cpu i11 cp arch/x86/boot/bzImage /x + 1751 cpu x cp arch/x86/boot/bzImage /x + 1752 cpu x kexec /x + 1753 cpu i11 date + 1754 cpu x date + 1755 sudo dmesg -c + 1756 sudo fsck /dev/sdb1 + 1757 sudo mount /dev/sdb1 /mnt + 1758 sudo cp arch/x86/boot/bzImage /mnt/v5.5 + 1759 vi /boot/grub/grub.cfg + 1760 grep -r IP /mnt + 1761 vi /boot/grub/grub.cfg + 1762 vi /boot/efi/EFI/ubuntu/grub.cfg + 1763 cd /mnt/boot/ + 1764 ls + 1765 vi grub/grub.cfg + 1766 sudo vi grub/grub.cfg + 1767 ls /mnt + 1768 cd + 1769 sudo umount /mnt + 1770 ls + 1771 pwd + 1772 cd linuxboot/mainboards/aeeon/i11/ + 1773 ls + 1774 cp cpuflash.config cpuflash-5.6.0.config + 1775 cd linux + 1776 make mrproer + 1777 make mrproper + 1778 cp ../cpuflash-5.6.0.config .config + 1779 git checkout v5.6 + 1780 make + 1781 cpu i11 date + 1782 cpu i11 cp arch/x86/boot/bzImage /xxx + 1783 cpu i11 kexec /xxx + 1784 cd .. + 1785 more cpu.config + 1786 more Makefile + 1787 git diff + 1788 grep CONFIG Makefile + 1789 git diff + 1790 vi Makefile + 1791 cd linux + 1792 more ../cpuflash.config + 1793 git checkout v5.15 + 1794 make mrproper + 1795 cd .. + 1796 make cpuflashkernel + 1797 cpu i11 date + 1798 cpu i11 cp cpuflashkernel /xxx + 1799 cpu i11 kexec /xxx + 1800 cpu i11 cat /proc/version + 1801 cpu i11 ./x cpuflashkernel + 1802 cd linux + 1803 git log + 1804 git checkout v5.14 + 1805 cd .. + 1806 make cpuflashkernel + 1807 rm cpuflashkernel + 1808 cd linux + 1809 make mrproper + 1810 git log + 1811 cd .. + 1812 make cpuflashkernel + 1813 more linux/Makefile + 1814 cp linux/.config cpu-5.14.config + 1815 git add *.config + 1816 git status + 1817 git add Makefile + 1818 git commit -as + 1819 cpu i11 cp cpuflashkernel /xxx + 1820 cpu i11 kexec /xxx + 1821 cpu i11 date + 1822 cpu x date + 1823 cpu i11 date + 1824 cd linux + 1825 git log + 1826 git bisect bad + 1827 cd .. + 1828 cd linux + 1829 git log + 1830 git status + 1831 git bisect step + 1832 git bisect next + 1833 more ../cpu.config + 1834 ls .. + 1835 more ../cpuflash.config + 1836 cd .. + 1837 cp cpuflash.config cpu-5.15.config + 1838 cd linux + 1839 git checkout v5.15 + 1840 git bisect good + 1841 git checkout v5.15 + 1842 git bisect reset + 1843 git bisect start + 1844 git checkout v5.14 + 1845 cd .. + 1846 cpu i11 date + 1847 cpu i11 cat /proc/version + 1848 make cpuflashkernel + 1849 cp cpuflashkernel cpuflashkernel-5.15 + 1850 more linux/.config + 1851 make cpuflashkernel + 1852 rm cpuflashkernel + 1853 vi Makefile + 1854 ls *5.14* + 1855 fg + 1856 make cpuflashkernel + 1857 cpu i11 cp cpuflashkernel /xxx + 1858 cpu i11 kexec /xxx + 1859 cd linux + 1860 git bisect bad + 1861 git status + 1862 git log + 1863 git log v5.14..v5.15 + 1864 git bisect reset + 1865 git log + 1866 git checkout v5.14 + 1867 git bisect start + 1868 git bisect goot + 1869 git bisect good + 1870 git checkout v5.14 + 1871 git bisect bad + 1872 git bisect reset + 1873 git checkout v5.15 + 1874 git bisect stop + 1875 git bisect start + 1876 git bisect good + 1877 git checkout v5.14 + 1878 git bisect bad + 1879 git checkout v5.15 + 1880 git log + 1881 git log v5.14..v5.15 + 1882 git log v5.14 + 1883 git log v5.15 + 1884 git log v5.14 + 1885 git log v5.15 + 1886 git log --pretty=online v5.14..v5.15 + 1887 git log --pretty=oneline v5.14..v5.15 + 1888 git log --pretty=oneline v5.14..v5.15|wc + 1889 git log --pretty=oneline v5.14..v5.15|tail -4 + 1890 git log + 1891 git log --pretty=oneline v5.14..v5.15|tail -4 + 1892 git log --pretty=oneline v5.14..v5.15| + 1893 git log --pretty=oneline v5.14..v5.15 + 1894 git log --pretty=oneline v5.14..v5.15|tail -5 + 1895 git checkout f49fd6d3c070d08c4ae9696876c7098320e48dab + 1896 git bisect bad + 1897 git checkout v5.15 + 1898 git bisect reset + 1899 git log + 1900 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 + 1901 git bisect start + 1902 git bisect good + 1903 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 + 1904 git bisect bad + 1905 git status + 1906 git bisect reset + 1907 git branch + 1908 git checkout master + 1909 git log + 1910 git bisect start + 1911 git bisect good + 1912 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 + 1913 git show + 1914 git checkout v5.14 + 1915 git log + 1916 git bisect bad + 1917 git checkout v.5.15 + 1918 git checkout v5.15 + 1919 git log + 1920 git log --pretty=oneline | head -1000 | tail -4 + 1921 git checkout b2d70c0dbf2731a37d1c7bcc86ab2387954d5f56 + 1922 make -j32 + 1923 cpu i11 date + 1924 cpu i11 cp arch/x86/boot/bzImage /xxx + 1925 cpu i11 kexec /xxx + 1926 cpu i11 date + 1927 cpu i11 cat /proc/version + 1928 date + 1929 git log + 1930 git log --pretty=oneline | head -1000 | tail -4 + 1931 git log --pretty=oneline | head -8000 | tail -4 + 1932 git checkout 26c22cfde5dd6e63f25c48458b0185dcb0fbb2fd + 1933 make -j32 + 1934 cpu i11 cp arch/x86/boot/bzImage /xxx + 1935 cpu i11 kexec /xxx + 1936 git bisect bad + 1937 git log HEAD..v5.15 + 1938 git log -pretty=oneline HEAD..v5.15 + 1939 git log --pretty=oneline HEAD..v5.15 + 1940 git log --pretty=oneline HEAD..v5.15|wc + 1941 git checkout v5.15 + 1942 git log --pretty=oneline HEAD..v5.15 | head -5000 | tail -4 + 1943 git log --pretty=oneline v5.15 | head -5000 | tail -4 + 1944 git checkout 18fc1a922e2416998c5d37c26c69aab940c07ffb + 1945 make mrproper + 1946 cp ../cpu-5.15.config .config + 1947 make -j32 + 1948 cpu i11 cp arch/x86/boot/bzImage /xxx + 1949 cpu i11 kexec /xxx + 1950 cpu i11 date + 1951 cpu i11 cat /proc/version + 1952 git show + 1953 git log + 1954 git log --pretty=oneline | head -5000 | tail -4 + 1955 git checkout e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b + 1956 make -j32 + 1957 cpu i11 date + 1958 cpu i11 cp arch/x86/boot/bzImage /xxx + 1959 cpu i11 kexec /xxx + 1960 cpu i11 date + 1961 cpu x date + 1962 git bisect bad + 1963 history + 1964 git bisect reset + 1965 git checkout 18fc1a922e2416998c5d37c26c69aab940c07ffb + 1966 git bisect start + 1967 git bisect good + 1968 git checkout e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b + 1969 git bisect bad + 1970 git log e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb + 1971 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb + 1972 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb |wc + 1973 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb |head -800 | tail -4 + 1974 git checkout 5313a37b881e57767bc37185bef2873862be8d47 + 1975 make -j32 + 1976 cpu i11 date + 1977 cpu i11 cp arch/x86/boot/bzImage /xxx + 1978 cpu i11 kexec /xxx + 1979 cpu i11 date + 1980 cpu i11 cat /proc/version + 1981 git log + 1982 history + 1983 git bisect start + 1984 git bisect good + 1985 git checkout e3a5f40c5809a2ffc5fb9f8 + 1986 git bisect bad + 1987 git log e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc + 1988 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc + 1989 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | head -8000 | tail -4 + 1990 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 + 1991 make -j32 + 1992 cpu i11 cp arch/x86/boot/bzImage /xxx + 1993 cpu i11 kexec /xxx + 1994 history + 1995 vi BISECT + 1996 cd linuxboot/mainboards/aeeon/up + 1997 cd ../i11/ + 1998 grep -r max.*cpu linux/Documentation/ + 1999 grep -r nbr.*cpu linux/Documentation/ + 2000 grep -r nr.*cpu linux/Documentation/ + 2001 pushd ~/AMD64/linux/ + 2002 git log + 2003 git branch + 2004 git log nastyhacksforlapic + 2005 git show nastyhacksforlapic + 2006 cpu i11 dmesg + 2007 cpu i11 /bbin/dmesg > /tmp/fail + 2008 vi /tmp/fail + 2009 git barnch + 2010 bit diff master + 2011 git diff master + 2012 vi arch/x86/kernel/apic/apic.c + 2013 popd + 2014 cd linux + 2015 git show + 2016 git checkout v5.15 + 2017 git bisect start + 2018 git show + 2019 git branch + 2020 more Makefile + 2021 git bisect reset + 2022 git log + 2023 git checkout v5.15^ + 2024 git show + 2025 git bisect start + 2026 more Makefile + 2027 git bisect good + 2028 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | less + 2029 git show ce87d936889bdb183590647b9827bb2ae7f674c7 + 2030 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 + 2031 make -j32 + 2032 cpu i11 cp arch/x86/boot/bzImage /xxx + 2033 cpu i11 kexec /xxx + 2034 git log + 2035 git log v5.14^ + 2036 git log --pretty=oneline |less + 2037 git log + 2038 git log --pretty=oneline |less + 2039 git checkout 5497bc2a2bff777ce6d176650377362c0269b5eb + 2040 make -j32 + 2041 git log + 2042 git log v5.12^ + 2043 cpu i11 date + 2044 git log --pretty=oneline |less + 2045 git checkout cd81acc600a9684ea4b4d25a47900d38a3890eab + 2046 make -j32 + 2047 cpu i11 cp arch/x86/boot/bzImage /xxx + 2048 cpu i11 kexec /xxx + 2049 git log --pretty=oneline |less + 2050 git checkout cad14885a8d32c1c0d8eaa7bf5c0152a22b6080e + 2051 make -j32 + 2052 vi .config + 2053 make -j32 + 2054 more Makefile + 2055 more .config + 2056 cp .config ../cpuflash-5.4.0-rc6.config + 2057 cpu i11 cp arch/x86/boot/bzImage /xxx + 2058 cpu i11 kexec /xxx + 2059 git bisect bad + 2060 git bisect good v5.15 + 2061 it bisect bad + 2062 git bisect bad + 2063 history + 2064 ls -lR .git + 2065 rm .git/refs/bisect/* + 2066 git bisect good v5.15 + 2067 git bisect bad HEAD + 2068 ls .git/refs/bisect/ + 2069 cat .git/refs/bisect//* + 2070 history + 2071 git bisect good ce87d936889bdb183590647b9827bb2ae7f674c7 + 2072 git bisect resert + 2073 git bisect reset + 2074 ls .git/bisect + 2075 ls .git + 2076 git bisect good + 2077 git bisect bad v5.4 + 2078 git bisect log + 2079 git bisect next + 2080 git log + 2081 git bisect reset + 2082 more BISECT + 2083 git log ce87d936889bdb183590647b9827bb2ae7f674c7 + 2084 more ../BI + 2085 ls + 2086 mv BISECT .. + 2087 make clean + 2088 git log + 2089 cat ../BISECT + 2090 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 + 2091 history + 2092 make -j32 + 2093 more Makefile + 2094 cp ../cpu-5.14.config .config + 2095 make oldconfig + 2096 make -j32 + 2097 cpu i11 cp arch/x86/boot/bzImage /xxx + 2098 cpu i11 kexec /xxx + 2099 more Makefile + 2100 git bisect bad + 2101 more Makefile + 2102 git checkout v5.15 + 2103 git bisect good + 2104 ls .git/bisect + 2105 ls .git + 2106 ls -R .git + 2107 ls + 2108 more Makefile + 2109 git bisect log + 2110 git checkout v5.14 + 2111 make mrproper + 2112 cp ../cpu-5.14.config .config + 2113 make -j32 + 2114 cpu i11 cp arch/x86/boot/bzImage /xxx + 2115 cpu i11 kexec /xxx + 2116 more Makefile + 2117 git bisect bad + 2118 git log v5.14..v5.15 + 2119 git log --pretty=oneline v5.14..v5.15 |wc + 2120 git log --pretty=oneline v5.14..v5.15 | head -7000 | tail -4 + 2121 git checkout fad7cd3310db3099f95dd34312c77740fbc455e5 + 2122 git log --pretty=oneline HEAD..v5.15 |wc + 2123 git log --pretty=oneline fad7cd3310db..v5.15 |wc + 2124 git log --pretty=oneline v5.14..v5.15 | head -4000 | tail -4 + 2125 git checkout f35715a6574707ecfeac795d451fccd751e614b5 + 2126 git log --pretty=oneline HEAD..v5.15 |wc + 2127 make mrproper + 2128 cp ../cpu-5.15.config .config + 2129 make -j32 + 2130 cpu i11 date + 2131 more Makefile + 2132 cpu i11 date + 2133 more Makefile + 2134 cpu i11 kexec /xxx + 2135 cpu i11 cp arch/x86/boot/bzImage /xxx + 2136 cpu i11 kexec /xxx + 2137 git branch -a + 2138 git tag -l + 2139 git checkout v5.14-rc7 + 2140 make mrproper + 2141 cp ../cpu-5.15.config .config + 2142 make -j32 + 2143 cpu i11 date + 2144 cpu i11 cp arch/x86/boot/bzImage /xxx + 2145 cpu i11 kexec /xxx + 2146 git tag -l + 2147 git bisect bad + 2148 git checkout v5.15-rc1 + 2149 make mrproper + 2150 cp ../cpu-5.15.config .config + 2151 make -j32 + 2152 cpu i11 date + 2153 cpu i11 cp arch/x86/boot/bzImage /xxx + 2154 cpu i11 kexec /xxx + 2155 cpu i11 date + 2156 git bisect good + 2157 git log --pretty=oneline v5.14..v5.15-rc1 + 2158 git log --pretty=oneline v5.14..v5.15-rc1 |wc + 2159 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc + 2160 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | wc + 2161 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less + 2162* + 2163 make mrproper + 2164 cp ../cpu-5.15.config .config + 2165 make -j32 + 2166 cpu i11 date + 2167 more Makefile + 2168 git log + 2169 cpu i11 cp arch/x86/boot/bzImage /xxx + 2170 cpu i11 kexec /xxx + 2171 cpu i11 cp arch/x86/boot/bzImage /xxx + 2172 cpu i11 kexec /xxx + 2173 git bisect bad + 2174 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less + 2175 git checkout c6c3c5704ba70820f6b632982abde06661b7222a + 2176 git log + 2177 make mrproper + 2178 cp ../cpu-5.15.config .config + 2179 make -j32 + 2180 make + 2181 grep ACPI .config + 2182 git grep acpi.table.upgrade + 2183 vi drivers/acpi/Makefile + 2184 fg + 2185 make menuconfig + 2186 make + 2187 git grep acpi.mps.check + 2188 make menuconfig + 2189 make -j32 + 2190 make + 2191 vi arch/x86/kernel/setup.c + 2192 git grep acpi.mps.check + 2193 vi arch/x86/kernel/acpi/boot.c + 2194 grep APIC .config + 2195 grep MPS .config + 2196 make menuconfig + 2197 git grep MPS + 2198 git grep select.*MPS + 2199 git grep if.*MPP + 2200 git grep if.*MPS + 2201 git grep if.*MPS.*PARSE + 2202 git grep if.*MP.*PARSE + 2203 git grep select.*MPP + 2204 vi .config + 2205 make + 2206 git grep acpi.mps.check + 2207 vi include/linux/acpi.h + 2208 fg + 2209 vi arch/x86/kernel/setup.c + 2210 git grep acpi.boot.init + 2211 vi vi arch//x86//kernel/acpi/Makefile + 2212 grep ACPI .config + 2213 grep CONFIG_ACPI .config + 2214 grep CONFIG_ACPI= .config + 2215 make clena + 2216 make clean + 2217 make + 2218 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less + 2219 git checkout 34c59da47329ac50b9700035e0c3a829e6c3c183 + 2220 make + 2221 more Makefile + 2222 git log + 2223 cpu i11 date + 2224 cpu i11 cp arch/x86/boot/bzImage /xxx + 2225 cpu i11 kexec /xxx + 2226 history + 2227 git bisect bad + 2228 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less + 2229 history | grep checkout + 2230 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less + 2231 git show + 2232 git log + 2233 git show + 2234 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less + 2235 git checkout 7c314bdfb64e4bb8d2f829376ed56ce663483752 + 2236 make mrproper + 2237 cp ../cpu-5.15.config .config + 2238 make -j32 + 2239 make + 2240 grep MPP .config + 2241 vi .config + 2242 make + 2243 grep MPP .config + 2244 make clean + 2245 make -j32 + 2246 git bisect reset + 2247 git bisect bad v5.15 + 2248 git bisect good v5.14 + 2249 make mrproper + 2250 cp ../cpu-5.14.config .config + 2251 make + 2252 cpu i11 cp arch/x86/boot/bzImage /xxx + 2253 cpu i11 kexec /xxx + 2254 history + 2255 git bisect good + 2256 more Makefile + 2257 git log + 2258 cp .config config-626bf91a292e2035af5b9d9cce35c5c138dfe06d + 2259 make mrproper + 2260 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config + 2261 make -j32 + 2262 cpu i11 cp arch/x86/boot/bzImage /xxx + 2263 cpu i11 kexec /xxx + 2264 cpu i11 cp arch/x86/boot/bzImage /xxx + 2265 cpu i11 kexec /xxx + 2266 git bisect good + 2267 git reflog + 2268 cp .config config-626bf91a292e2035af5b9d9cce35c5c138dfe06d + 2269 make mrproper + 2270 ls + 2271 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config + 2272 make + 2273 make -j32 + 2274 cpu i11 date + 2275 git log + 2276 git ref + 2277 cp .config config-a3b397b4fffb799d25658defafd962f0fb3e9fe0 + 2278 cpu i11 cp arch/x86/boot/bzImage /xxx + 2279 cpu i11 kexec /xxx + 2280 git bisect good + 2281 make mrproper + 2282 cp config-a3b397b4fffb799d25658defafd962f0fb3e9fe0 .config + 2283 make -j32 + 2284 cpu i11 date + 2285 cpu i11 cat /proc/version + 2286 ls + 2287 git log + 2288 cp .config config-3ff6d64e68abc231955d216236615918797614ae + 2289 cpu i11 cp arch/x86/boot/bzImage /xxx + 2290 cpu i11 kexec /xxx + 2291 history + 2292 git bisect good + 2293 make mrproper + 2294 ls + 2295 history + 2296 cp config-3ff6d64e68abc231955d216236615918797614ae .config + 2297 make -j32 + 2298 cpu i11 cp arch/x86/boot/bzImage /xxx + 2299 cpu i11 date + 2300 cpu i11 cp arch/x86/boot/bzImage /xxx + 2301 cpu i11 kexec /xxx + 2302 git bisect good + 2303 cp .config xxx + 2304 make mrproper + 2305 cp xxx .config + 2306 make -j32 + 2307 cpu i11 date + 2308 cpu i11 cp arch/x86/boot/bzImage /xxx + 2309 cpu i11 kexec /xxx + 2310 git log + 2311 cp .config config-79516af3497a5b89acb09f4a644f61d6c69e5f16 + 2312 git bisect good + 2313 make mrproper + 2314 cp config-79516af3497a5b89acb09f4a644f61d6c69e5f16 .config + 2315 make -j32 + 2316 cpu i11 date + 2317 git log + 2318 cp .config config-411a44c24a561e449b592ff631b7ae321f1eb559 + 2319 cpu i11 kexec /xxx + 2320 cpu i11 cp arch/x86/boot/bzImage /xxx + 2321 cpu i11 kexec /xxx + 2322 git bisect good + 2323 make mrproper + 2324 cp config-411a44c24a561e449b592ff631b7ae321f1eb559 .config + 2325 make -j32 + 2326 cpu i11 cp arch/x86/boot/bzImage /xxx + 2327 cpu i11 kexec /xxx + 2328 ping x + 2329 cpu x cate + 2330 more ~/.ssh/config + 2331 host sx1 + 2332 host i11 + 2333 cpu i11 cp arch/x86/boot/bzImage /xxx + 2334 cpu i11 kexec /xxx + 2335 more Makefile + 2336 more .config + 2337 grep upboard * + 2338 grep upboard .config + 2339 history | grep checkout + 2340 history + 2341 git log + 2342 echo REF 17d50f89410c5f71142657d9a012cbabcaadb134 has working i11 ethernet but not working display + 2343 ls + 2344 git checkout 626bf91a292e2035af5b9d9cce35c5c138dfe06d + 2345 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d + 2346 make mrproper + 2347 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config + 2348 make -j32 + 2349 cpu i11 date + 2350 git log + 2351 cpu i11 cp arch/x86/boot/bzImage /xxx + 2352 kexec -h + 2353 which kexec + 2354 /usr/sbin/kexec + 2355 /usr/sbin/kexec --entry-32bit /xxx + 2356 cpu i11 cp arch/x86/boot/bzImage /xxx + 2357 cpu i11 /usr/sbin/kexec --entry-32bit /xxx + 2358 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx + 2359 cpu i11 date + 2360 git checkout v5.4 + 2361 make mrproper + 2362 cp ../cpuflash-5.4.0.config .config + 2363 make -j32 + 2364 git grep force.order + 2365 vi arch/x86//boot/compressed/Makefile + 2366 git grep force.order + 2367 vi .config + 2368 make -j32 + 2369 git log + 2370 cpu i11 cp arch/x86/boot/bzImage /xxx + 2371 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx + 2372 git bisect reset + 2373 git log + 2374 git bisect start + 2375 git bisect bad + 2376 git checkout v5.4 + 2377 git bisect good + 2378 cpu i11 date + 2379 git bisect good + 2380 cpu i11 date + 2381 pwd + 2382 git log + 2383 make mrproper + 2384 git log + 2385 git log v5.4 + 2386 cp ../cpu-5.15.config .config + 2387 make -j32 + 2388 cpu i11 cp arch/x86/boot/bzImage /xxx + 2389 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx + 2390 git log + 2391 git bisect bad + 2392 cp .config config-9ff9b0d392ea08090cd1780fb196f36dbb586529 + 2393 make mrproper + 2394 cp config-9ff9b0d392ea08090cd1780fb196f36dbb586529 .config + 2395 make -j32 + 2396 cpu i11 cp arch/x86/boot/bzImage /xxx + 2397 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx + 2398 git log + 2399 vi NOTES + 2400 history > NOTES + +9ff9b0d392ea08090cd1780fb196f36dbb586529 usb eth ok, other eth no, had to dhclient manually, display works +16e811fe0fc6b8344785feb2ab8c927685dca08e usb eth ok, other eth no, had to dhclient manually, display works, 9p works +ea6ec774372740b024a6c27caac0d0af8960ea15 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +25d8d4eecace9de5a6a2193e4df1917afbdd3052 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c0c419c04557117258d184876d94091d29bbd9a6 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c7fabbc51352f50cc58242a6dc3b9c1a3599849b usb eth ok, other eth no, had to dhclient manually, display works, 9p works +bdd0c277d9846977ec3f175341d4e7475ed26ef7 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +824186fbf73499adad545a3ae30b0a3feef4f05a usb eth ok, other eth no, had to dhclient manually, display works, 9p works +e348cf543426762d7babea49712534f95d0779b9 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c42d8c17a9523a4f28b6f6be3920a6674e50c5d3 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +b7a742cff3f618d848e62e5a1ade0ff816e93092 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c9015a1723373f2c8f8ac994f59470f4fb852623 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +7a3a7671fa6c7e90aff5f4242add2a40587b85ef usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c01db8b00d35d398fa8264d8d0d2031e8d512318 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +17212e7188783de75d2a1226c32d3fd7af96ad5d usb eth ok, other eth no, had to dhclient manually, display works, 9p works +40e2c465894e5b79b49f55d9574dbcda4ac0f08f nothing. no display anyway. not sure what else is wrong. + +git bisect good 40e2c465894e5b79b49f55d9574dbcda4ac0f08f +Bisecting: a merge base must be tested +[4036d05c38ca2f73c2ca182c3ebf0dfd066593a6] Merge series "ASoC: topology: fix use-after-free when removing components" from Pierre-Louis Bossart : +fuck +git bisect good +Bisecting: a merge base must be tested +[b3a9e3b9622ae10064826dccb4f7a52bd88c7407] Linux 5.8-rc1 +NOPE +commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407 (HEAD, tag: v5.8-rc1) usb eth ok, other eth no, had to dhclient manually, display works, 9p works + +git bisect bad +The merge base 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 is bad. +This means the bug has been fixed between 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 and [219d54332a09e8d8741c1e1982f5eae56099de85 4036d05c38ca2f73c2ca182c3ebf0dfd066593a6 40e2c465894e5b79b49f55d9574dbcda4ac0f08f 9ab9bc5115c9a1a57ed83a143c601c31488eadd9]. + +5.7 works. fuck. + +lets' go with new and old now. + 2060 git bisect reset + 2061 git bisect new 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 + 2062 history + 2063 git bisect old 40e2c465894e5b79b49f55d9574dbcda4ac0f08f + 2064 history + +new == good +try to avoid make mrproper ... +will speed it up considerably, cross fingers +80ef846e9909f22ccdc2a4a6d931266cecce8b2c usb eth ok, other eth no, had to dhclient manually, display works, 9p works +2e63f6ce7ed2c4ff83ba30ad9ccad422289a6c63usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c2b0fc847f3122e5a4176c3772626a7a8facced0 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +539d39ad0c61b35f69565a037d7586deaf6d6166 bad no graphics +729ea4e064202aeec149b034b459501ef0a5060e usb eth ok, other eth no, had to dhclient manually, display works, 9p works +183be6f967fe37c3154bfac39e913c3bafe89d1b usb eth ok, other eth no, had to dhclient manually, display works, 9p works +97076ea41a093e67db20d0e40f728a054b799630 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +26b089a7fc3301d8f53f99dd3607513d7700b505 bad no graphics +b48397cb75ac17a5c6f99b3b41fab0ab1f879826 usb eth ok, other eth no, had to dhclient manually, display works, 9p works +c4e0e4ab4cf3ec2b3f0b628ead108d677644ebd9 bad no graphics +befc42e5dd4977b63dd3b0c0db05e21d56f13c2e bad no graphics +5a9ffb954a3933d7867f4341684a23e008d6839b bad no graphics +43567139f5f3808cda4f61c956576f8a4f2232cb usb eth ok, other eth no, had to dhclient manually, display works, 9p works +a9a3ed1eff3601b63aea4fb462d8b3b92c7c1e7e usb eth ok, other eth no, had to dhclient manually, display works, 9p works diff --git a/mainboards/aeeon/i11/cpu-5.15.config b/mainboards/aeeon/i11/cpu-5.15.config new file mode 100644 index 00000000..4037658e --- /dev/null +++ b/mainboards/aeeon/i11/cpu-5.15.config @@ -0,0 +1,4114 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.15.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +# CONFIG_SCHED_CORE is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# CONFIG_CPU_ISOLATION is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_DPTF is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_X86_PM_TIMER is not set +CONFIG_ACPI_PRMT=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_MPTCP is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_SYSLOG is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +# CONFIG_FAILOVER is not set +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40EVF is not set +CONFIG_ICE=y +# CONFIG_FM10K is not set +CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +CONFIG_ADIN_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set +CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_LXT_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set +CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set +# CONFIG_WLAN is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_NVRAM is not set +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XILLYUSB is not set +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set +CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# CONFIG_INTEL_MENLOW is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTQ2134 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_RTQ6752 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PLAYSTATION is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID_ACPI is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS_SUPPORT is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IDXD_COMPAT is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_AMD_PTDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set +# CONFIG_VDPA is not set +# CONFIG_VHOST_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_WIRELESS_HOTKEY is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +# CONFIG_ICST is not set +# CONFIG_CLK_SP810 is not set +# end of Clock driver for ARM Reference designs + +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_LINEAR_RANGES=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +# end of Library routines + +CONFIG_PLDMFW=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config b/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config new file mode 100644 index 00000000..a99f12df --- /dev/null +++ b/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config @@ -0,0 +1,3872 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.0-rc6 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_HEADER_TEST is not set +CONFIG_LOCALVERSION="-upboard" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# CONFIG_CPU_ISOLATION is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../cpu.cpio" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +# CONFIG_INITRAMFS_COMPRESSION_NONE is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y +CONFIG_INITRAMFS_COMPRESSION=".xz" +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_BPF_SYSCALL=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_DPTF_POWER is not set +CONFIG_ACPI_EXTLOG=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_64BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +CONFIG_XFRM=y +# CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_NETDEV is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_DEBUG=y +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# NVME Support +# +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# end of SCSI device support + +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +CONFIG_NET_VENDOR_AURORA=y +# CONFIG_AURORA_NB8800 is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CADENCE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_CORTINA is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +CONFIG_NET_VENDOR_HP=y +# CONFIG_HP100 is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_E1000E_HWTS=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +CONFIG_I40E=y +# CONFIG_I40EVF is not set +CONFIG_ICE=y +# CONFIG_FM10K is not set +CONFIG_IGC=y +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETERION is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_SOCIONEXT is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +CONFIG_MDIO_MSCC_MIIM=y +CONFIG_MDIO_THUNDER=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y + +# +# MII PHY device drivers +# +CONFIG_ADIN_PHY=y +CONFIG_AMD_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +CONFIG_FIXED_PHY=y +CONFIG_ICPLUS_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +CONFIG_MARVELL_10G_PHY=y +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +CONFIG_NATIONAL_PHY=y +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_QSEMI_PHY=y +CONFIG_REALTEK_PHY=y +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_GTCO is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_PROPERTIES=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MSM_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GP2A is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +# CONFIG_NVRAM is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_ICH is not set +# CONFIG_GPIO_LYNXPOINT is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_CHARGER_RT9455 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_CLOCK_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_GENERIC=y +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +# CONFIG_USB_MON is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set +# CONFIG_LEDS_TI_LMU_COMMON is not set + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBU is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ACPI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set +# CONFIG_INTEL_PMC_IPC is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_MLX_PLATFORM is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_PCENGINES_APU2 is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_PWM is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +CONFIG_MEMORY=y +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# end of PHY Subsystem + +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +CONFIG_PM_OPP=y +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ECRYPT_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDENED_USERCOPY_FALLBACK=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UACCESS_MCSAFE=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_PAGE_POISONING_NO_SANITY is not set +# CONFIG_PAGE_POISONING_ZERO is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +# CONFIG_PREEMPTIRQ_EVENTS is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_STACK_TRACER=y +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_MMIOTRACE=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_DEBUG_WX=y +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking From b32b9662df7e7908ae533a39f4ccb538a7123960 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 1 Feb 2022 11:11:55 -0800 Subject: [PATCH 070/132] aeeon/i11: update to 5.17 Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 22da271a..6570eb76 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -172,10 +172,10 @@ cpukernel: cpu.cpio.lzma cpu.config # KERNEL=ubuntu-bionic-up KERNEL=linux -#CONFIG=cpuflash-5.17.0.config +CONFIG=cpuflash-5.17.0.config #CONFIG=cpuflash-5.4.0.config #CONFIG=cpuflash.config -CONFIG=cpu-5.14.config +#CONFIG=cpu-5.14.config cpuflashkernel: cpu.cpio $(CONFIG) cp $(CONFIG) $(KERNEL)/.config (cd $(KERNEL) && make oldconfig && make -j32) From b3a8562d8642b240073df1cd958a81929bbd4fb6 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 9 Feb 2022 10:48:18 -0800 Subject: [PATCH 071/132] qemu/x86_64: add tweaks to make debugging easier Signed-off-by: Ronald G. Minnich --- mainboards/qemu/x86_64/flash.config | 3030 ++++++++++++++++++++++++++- 1 file changed, 2952 insertions(+), 78 deletions(-) diff --git a/mainboards/qemu/x86_64/flash.config b/mainboards/qemu/x86_64/flash.config index c44888e5..96d4b9e2 100644 --- a/mainboards/qemu/x86_64/flash.config +++ b/mainboards/qemu/x86_64/flash.config @@ -1,108 +1,2982 @@ -# Copyright 2021 the u-root Authors. All rights reserved -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.10.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=100300 +CONFIG_LD_VERSION=235010000 +CONFIG_CLANG_VERSION=0 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y -# If you copy this to your Linux directory, run -# make olddefconfig -# to fill in the blanks. # -# This is not intended to be a minimal Linux configuration, but perhaps it comes -# close to listing requirements for certain things. +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +# CONFIG_SYSVIPC is not set +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_WATCH_QUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y -# Minimal kernel config needed for Go -CONFIG_64BIT=y -CONFIG_BINFMT_ELF=y +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_SIM=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_BSD_PROCESS_ACCT is not set +# CONFIG_TASKSTATS is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# end of RCU Subsystem + +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +CONFIG_NET_NS=y +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set CONFIG_BLK_DEV_INITRD=y -CONFIG_DEVTMPFS=y -CONFIG_EARLY_PRINTK=y -CONFIG_EPOLL=y -CONFIG_FUTEX=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +# CONFIG_BOOT_CONFIG is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +# CONFIG_EXPERT is not set +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y -CONFIG_PROC_FS=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y -# Serial port output -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_TTY=y +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters -# Block devices -CONFIG_BLOCK=y -CONFIG_ATA=y -CONFIG_SATA_AHCI=y -CONFIG_BLK_DEV_NVME=y -CONFIG_BLK_DEV_SD=y -# Allows using -hda when running QEMU -CONFIG_ATA_PIIX=y +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +CONFIG_COMPAT_BRK=y +# CONFIG_SLAB is not set +CONFIG_SLUB=y +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_PROFILING is not set +# end of General setup -# vfat+ext4 filesystem -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -CONFIG_NLS=y -CONFIG_NLS_CODEPAGE_437=y -CONFIG_NLS_ISO8859_1=y -CONFIG_EXT4_FS=y +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=5 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y -# Loop device for tcz -CONFIG_BLK_DEV_LOOP=y -CONFIG_MISC_FILESYSTEMS=y -CONFIG_SQUASHFS=y +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_GOLDFISH is not set +# CONFIG_X86_INTEL_MID is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +CONFIG_NR_CPUS_RANGE_BEGIN=1 +CONFIG_NR_CPUS_RANGE_END=1 +CONFIG_NR_CPUS_DEFAULT=1 +CONFIG_NR_CPUS=1 +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_THERMAL_VECTOR=y -# Add /dev/port for io command -CONFIG_PCI=y -CONFIG_DEVPORT=y +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring -# For the kernel doing the kexec'ing -CONFIG_CRYPTO=y +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +CONFIG_X86_5LEVEL=y +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +# CONFIG_EFI_STUB is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y - -# For the kernel being kexec'ed +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +CONFIG_CMDLINE_OVERRIDE=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features -# Add EFI support -CONFIG_EFI=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# Frame buffer graphics support -CONFIG_FB_SIMPLE=y -CONFIG_FB=y +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_DPTF is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_PMIC_OPREGION is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y CONFIG_X86_SYSFB=y +# end of Bus options (PCI etc.) -# Virtio Networking + random + storage -CONFIG_VIRTIO_PCI=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_CRYPTO_DEV_VIRTIO=y -CONFIG_VIRTIO_BLK=y -CONFIG_VIRTIO_SCSI=y -CONFIG_VIRTIO_NET=y +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +CONFIG_VIRTUALIZATION=y +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_GENERIC_ENTRY=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_FRONTSWAP is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options -# Networking CONFIG_NET=y -CONFIG_INET=y + +# +# Networking options +# CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y -CONFIG_NET_CORE=y -CONFIG_NETDEVICES=y -CONFIG_ETHERNET=y -CONFIG_E1000=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_MPTCP is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options -# 9P net filesystem +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_WIRELESS=y +# CONFIG_CFG80211 is not set + +# +# CFG80211 needs to be enabled for MAC80211 +# +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set CONFIG_NET_9P=y CONFIG_NET_9P_VIRTIO=y -CONFIG_9P_FS=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_HAVE_EBPF_JIT=y -# GPIO test - mock GPIO libraries -CONFIG_GPIOLIB=y -CONFIG_GPIO_MOCKUP=y +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCI_MSI is not set +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set -# Compressed initramfs -CONFIG_KERNEL_GZIP=y +# +# PCI controller drivers +# -# iSCSI initiator support -CONFIG_ISCSI_TCP=y +# +# DesignWare PCI Core Support +# +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set -# NBD (Network Block Device) support: will automatically re-read partitions when -# iSCSI disk is mounted. +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MHI_BUS is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set CONFIG_BLK_DEV_NBD=y +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +CONFIG_VIRTIO_BLK=y +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +# CONFIG_NVME_HWMON is not set +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# +# Altera FPGA firmware download module (requires I2C) +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +CONFIG_SCSI_ISCSI_ATTRS=y +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=y +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_BUSLOGIC is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_GDTH is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_VIRTIO is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +# CONFIG_SATA_MV is not set +# CONFIG_SATA_NV is not set +# CONFIG_SATA_PROMISE is not set +# CONFIG_SATA_SIL is not set +# CONFIG_SATA_SIS is not set +# CONFIG_SATA_SVW is not set +# CONFIG_SATA_ULI is not set +# CONFIG_SATA_VIA is not set +# CONFIG_SATA_VITESSE is not set + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SCH is not set +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +# CONFIG_PATA_SIS is not set +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +# CONFIG_ATA_GENERIC is not set +# CONFIG_PATA_LEGACY is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_WIREGUARD is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +CONFIG_VIRTIO_NET=y +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_NET_VENDOR_3COM=y +# CONFIG_VORTEX is not set +# CONFIG_TYPHOON is not set +CONFIG_NET_VENDOR_ADAPTEC=y +# CONFIG_ADAPTEC_STARFIRE is not set +CONFIG_NET_VENDOR_AGERE=y +# CONFIG_ET131X is not set +CONFIG_NET_VENDOR_ALACRITECH=y +# CONFIG_SLICOSS is not set +CONFIG_NET_VENDOR_ALTEON=y +# CONFIG_ACENIC is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_NET_VENDOR_AMD=y +# CONFIG_AMD8111_ETH is not set +# CONFIG_PCNET32 is not set +# CONFIG_AMD_XGBE is not set +CONFIG_NET_VENDOR_AQUANTIA=y +# CONFIG_AQTION is not set +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +# CONFIG_ATL2 is not set +# CONFIG_ATL1 is not set +# CONFIG_ATL1E is not set +# CONFIG_ATL1C is not set +# CONFIG_ALX is not set +CONFIG_NET_VENDOR_AURORA=y +# CONFIG_AURORA_NB8800 is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +# CONFIG_TIGON3 is not set +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +CONFIG_NET_VENDOR_BROCADE=y +# CONFIG_BNA is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +CONFIG_NET_VENDOR_CAVIUM=y +# CONFIG_THUNDER_NIC_PF is not set +# CONFIG_THUNDER_NIC_VF is not set +# CONFIG_THUNDER_NIC_BGX is not set +# CONFIG_THUNDER_NIC_RGX is not set +# CONFIG_LIQUIDIO is not set +CONFIG_NET_VENDOR_CHELSIO=y +# CONFIG_CHELSIO_T1 is not set +# CONFIG_CHELSIO_T3 is not set +# CONFIG_CHELSIO_T4 is not set +# CONFIG_CHELSIO_T4VF is not set +CONFIG_NET_VENDOR_CISCO=y +# CONFIG_ENIC is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +# CONFIG_NET_TULIP is not set +CONFIG_NET_VENDOR_DLINK=y +# CONFIG_DL2K is not set +# CONFIG_SUNDANCE is not set +CONFIG_NET_VENDOR_EMULEX=y +# CONFIG_BE2NET is not set +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +# CONFIG_E1000E is not set +# CONFIG_IGB is not set +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_I40E is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_MVMDIO is not set +# CONFIG_SKGE is not set +# CONFIG_SKY2 is not set +CONFIG_NET_VENDOR_MELLANOX=y +# CONFIG_MLX4_EN is not set +# CONFIG_MLX5_CORE is not set +# CONFIG_MLXSW_CORE is not set +# CONFIG_MLXFW is not set +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8851_MLL is not set +# CONFIG_KSZ884X_PCI is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MYRI=y +# CONFIG_MYRI10GE is not set +# CONFIG_FEALNX is not set +CONFIG_NET_VENDOR_NATSEMI=y +# CONFIG_NATSEMI is not set +# CONFIG_NS83820 is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_8390=y +# CONFIG_NE2K_PCI is not set +CONFIG_NET_VENDOR_NVIDIA=y +# CONFIG_FORCEDETH is not set +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +CONFIG_NET_VENDOR_QLOGIC=y +# CONFIG_QLA3XXX is not set +# CONFIG_QLCNIC is not set +# CONFIG_NETXEN_NIC is not set +# CONFIG_QED is not set +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCOM_EMAC is not set +# CONFIG_RMNET is not set +CONFIG_NET_VENDOR_RDC=y +# CONFIG_R6040 is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +# CONFIG_R8169 is not set +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SOLARFLARE=y +# CONFIG_SFC is not set +# CONFIG_SFC_FALCON is not set +CONFIG_NET_VENDOR_SILAN=y +# CONFIG_SC92031 is not set +CONFIG_NET_VENDOR_SIS=y +# CONFIG_SIS900 is not set +# CONFIG_SIS190 is not set +CONFIG_NET_VENDOR_SMSC=y +# CONFIG_EPIC100 is not set +# CONFIG_SMSC911X is not set +# CONFIG_SMSC9420 is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_STMICRO=y +# CONFIG_STMMAC_ETH is not set +CONFIG_NET_VENDOR_SUN=y +# CONFIG_HAPPYMEAL is not set +# CONFIG_SUNGEM is not set +# CONFIG_CASSINI is not set +# CONFIG_NIU is not set +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +CONFIG_NET_VENDOR_TEHUTI=y +# CONFIG_TEHUTI is not set +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +# CONFIG_TLAN is not set +CONFIG_NET_VENDOR_VIA=y +# CONFIG_VIA_RHINE is not set +# CONFIG_VIA_VELOCITY is not set +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_PHYLIB is not set +# CONFIG_MDIO_DEVICE is not set + +# +# PCS device drivers +# +# end of PCS device drivers + +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +# CONFIG_HOSTAP is not set +# CONFIG_PRISM54 is not set +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLAN_VENDOR_QUANTENNA=y + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +CONFIG_NET_FAILOVER=y +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_FF_MEMLESS=y +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +CONFIG_SERIAL_8250_MID=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +CONFIG_DEVMEM=y +# CONFIG_DEVKMEM is not set +# CONFIG_NVRAM is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_DEVPORT=y +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_XILLYBUS is not set +# end of Character devices + +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +# CONFIG_DEBUG_GPIO is not set +# CONFIG_GPIO_SYSFS is not set +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_ICH is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# CONFIG_GPIO_AGGREGATOR is not set +CONFIG_GPIO_MOCKUP=y +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_LT3651 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_AMD_ENERGY is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_DRIVETEMP is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# end of Intel thermal drivers + +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_MADERA is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ARM devices +# +# end of ARM devices + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +CONFIG_FB_SIMPLE=y +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_FRAMEBUFFER_CONSOLE is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +# CONFIG_HID_ACRUX is not set +CONFIG_HID_APPLE=y +# CONFIG_HID_AUREAL is not set +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +CONFIG_HID_CYPRESS=y +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +CONFIG_HID_EZKEY=y +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +CONFIG_HID_ITE=y +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +CONFIG_HID_KENSINGTON=y +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +CONFIG_HID_REDRAGON=y +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +# CONFIG_USB is not set +CONFIG_USB_PCI=y + +# +# USB port drivers +# + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_HEAPS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +# CONFIG_VIRTIO_BALLOON is not set +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VDPA is not set +CONFIG_VHOST_MENU=y +# CONFIG_VHOST_NET is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_DCDBAS is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_AMD_IOMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_USB_LGM_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_TEE is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +CONFIG_MANDATORY_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +# CONFIG_TMPFS is not set +# CONFIG_HUGETLBFS is not set +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_NULL is not set +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +CONFIG_CRYPTO_ENGINE=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# CONFIG_CRYPTO_CURVE25519_X86 is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +# CONFIG_CRYPTO_BLAKE2B is not set +# CONFIG_CRYPTO_BLAKE2S is not set +# CONFIG_CRYPTO_BLAKE2S_X86 is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set + +# +# Crypto library routines +# +# CONFIG_CRYPTO_LIB_BLAKE2S is not set +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +CONFIG_CRYPTO_DEV_VIRTIO=y +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_GDB_SCRIPTS=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_FS is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHEDSTATS is not set +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +# CONFIG_IO_STRICT_DEVMEM is not set + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_FPU is not set +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking From 82e20b993808bec6da4b92bde00a8077b0a5be22 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Thu, 10 Feb 2022 09:14:01 -0800 Subject: [PATCH 072/132] Include a basic cpio in the initramfs, for testing kexec Signed-off-by: Ronald G. Minnich --- mainboards/qemu/x86_64/Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/mainboards/qemu/x86_64/Makefile b/mainboards/qemu/x86_64/Makefile index db55fdc0..ed19a6e6 100644 --- a/mainboards/qemu/x86_64/Makefile +++ b/mainboards/qemu/x86_64/Makefile @@ -1,7 +1,10 @@ OVMF_BIN ?= /usr/share/qemu/OVMF.fd -flashinitramfs.cpio: +flashinitramfs.cpio: flashkernel core.cpio GO111MODULE=off u-root -o $@ \ + -files flashkernel \ + -files core.cpio \ + -files /usr/bin/gzip \ github.com/u-root/u-root/cmds/boot/pxeboot \ github.com/u-root/u-root/cmds/core/cat \ github.com/u-root/u-root/cmds/core/elvish \ @@ -12,7 +15,10 @@ flashinitramfs.cpio: github.com/u-root/u-root/cmds/core/pci \ github.com/u-root/u-root/cmds/core/wget -flashkernel: flash.config +core.cpio: flash.config Makefile + GO111MODULE=off u-root -o $@ + +flashkernel: flash.config core.cpio cp $< linux/.config echo CONFIG_CMDLINE_BOOL=y >> linux/.config echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config @@ -30,7 +36,7 @@ efikernel: flash.config cp linux/arch/x86/boot/bzImage $@ testflashkernel: flashkernel flashinitramfs.cpio - qemu-system-x86_64 -kernel flashkernel -nographic -initrd flashinitramfs.cpio + qemu-system-x86_64 -m 8192 -kernel flashkernel -nographic -serial stdio -initrd flashinitramfs.cpio -monitor $(MONITOR) $(EXTRA) testefikernel: efikernel flashinitramfs.cpio qemu-system-x86_64 -bios $(OVMF_BIN) -nographic \ @@ -43,4 +49,4 @@ getkernel: git clone --depth=1 -b v5.15 https://github.com/torvalds/linux geturoot: - go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/u-root From 6ab5f77d2ca216c9dde9e050f45258c734e87492 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 11 Feb 2022 09:55:54 -0800 Subject: [PATCH 073/132] aeeon/i11: update to 5.17-rc3, it has 9p fixes. Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index 6570eb76..c21afdc6 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -263,7 +263,7 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b v5.15 --single-branch git@github.com:torvalds/linux + git clone --depth=1 -b 5.17-rc3 --single-branch git@github.com:torvalds/linux getkernel-5.4.65: rm -rf linux-5.4.65 From 996bb18ef909623a55c45e750c52fd146259f7e3 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Mon, 27 Jun 2022 17:16:42 -0700 Subject: [PATCH 074/132] i11, atomicpi, nezha: clean up, catch up Signed-off-by: Ronald G. Minnich --- mainboards/aeeon/i11/Makefile | 2 +- mainboards/aeeon/i11/cpu.config | 2715 ++++++++++++++----- mainboards/digitalloggers/atomicpi/Makefile | 11 + mainboards/sunxi/nezha/Makefile | 5 +- 4 files changed, 2086 insertions(+), 647 deletions(-) diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile index c21afdc6..aec5ddfe 100644 --- a/mainboards/aeeon/i11/Makefile +++ b/mainboards/aeeon/i11/Makefile @@ -217,7 +217,7 @@ cpu.cpio.lzma: cpu.cpio lzma -f -k cpu.cpio cpu.cpio: Makefile - u-root -build=bb -o cpu.cpio \ + GO111MODULE=off CGO_ENABLED=0 u-root -build=bb -o cpu.cpio \ -initcmd=cpud \ -files ~/.ssh/cpu_rsa.pub:key.pub \ github.com/u-root/cpu/cmds/cpud \ diff --git a/mainboards/aeeon/i11/cpu.config b/mainboards/aeeon/i11/cpu.config index cf830d38..e2d6a45f 100644 --- a/mainboards/aeeon/i11/cpu.config +++ b/mainboards/aeeon/i11/cpu.config @@ -1,18 +1,21 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 +# Linux/x86 5.17.0-rc3 Kernel Configuration # +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 +CONFIG_GCC_VERSION=100300 CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23501 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23501 +CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_TABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y @@ -22,7 +25,8 @@ CONFIG_THREAD_INFO_IN_TASK=y # CONFIG_INIT_ENV_ARG_LIMIT=32 # CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="-upboard" # CONFIG_LOCALVERSION_AUTO is not set CONFIG_BUILD_SALT="" CONFIG_HAVE_KERNEL_GZIP=y @@ -31,21 +35,27 @@ CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_XZ=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y # CONFIG_KERNEL_GZIP is not set # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set CONFIG_KERNEL_XZ=y # CONFIG_KERNEL_LZO is not set # CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +CONFIG_AUDIT=y CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y # # IRQ subsystem @@ -75,6 +85,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y # # Timers subsystem @@ -82,94 +94,148 @@ CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ_COMMON=y # CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set # CONFIG_NO_HZ is not set CONFIG_HIGH_RES_TIMERS=y # end of Timers subsystem -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +CONFIG_PREEMPT_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y # CONFIG_PREEMPT is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y +CONFIG_PREEMPT_DYNAMIC=y +# CONFIG_SCHED_CORE is not set # # CPU/Task time and stats accounting # -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set # CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y # CONFIG_PSI is not set # end of CPU/Task time and stats accounting -CONFIG_CPU_ISOLATION=y +# CONFIG_CPU_ISOLATION is not set # # RCU Subsystem # CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y # CONFIG_RCU_EXPERT is not set CONFIG_SRCU=y CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y CONFIG_RCU_STALL_COMMON=y CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y # end of RCU Subsystem CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y +# CONFIG_IKCONFIG is not set # CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_BUF_SHIFT=17 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # # Scheduler features # +# CONFIG_UCLAMP_TASK is not set # end of Scheduler features CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y CONFIG_CC_HAS_INT128=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +# CONFIG_BLK_CGROUP is not set +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_NAMESPACES=y +# CONFIG_UTS_NS is not set +# CONFIG_TIME_NS is not set +# CONFIG_IPC_NS is not set +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +# CONFIG_NET_NS is not set # CONFIG_CHECKPOINT_RESTORE is not set # CONFIG_SCHED_AUTOGROUP is not set # CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set +CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="../cpu.cpio" CONFIG_INITRAMFS_ROOT_UID=0 CONFIG_INITRAMFS_ROOT_GID=0 # CONFIG_RD_GZIP is not set # CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y # CONFIG_RD_LZO is not set # CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y +# CONFIG_RD_ZSTD is not set +CONFIG_INITRAMFS_COMPRESSION_XZ=y # CONFIG_INITRAMFS_COMPRESSION_NONE is not set # CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y CONFIG_SYSCTL=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set +CONFIG_MULTIUSER=y CONFIG_SGETMASK_SYSCALL=y CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set +CONFIG_FHANDLE=y CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y +# CONFIG_PCSPKR_PLATFORM is not set CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_FUTEX_PI=y @@ -178,21 +244,21 @@ CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y -# CONFIG_AIO is not set +CONFIG_AIO=y CONFIG_IO_URING=y CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y CONFIG_MEMBARRIER=y CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set +CONFIG_USERFAULTFD=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y +# CONFIG_KCMP is not set +# CONFIG_RSEQ is not set +# CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y # CONFIG_PC104 is not set @@ -203,18 +269,17 @@ CONFIG_PERF_EVENTS=y # CONFIG_DEBUG_PERF_USE_VMALLOC is not set # end of Kernel Performance Events And Counters -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set +# CONFIG_VM_EVENT_COUNTERS is not set # CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y +CONFIG_SLAB=y +# CONFIG_SLUB is not set # CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_MERGE_DEFAULT is not set # CONFIG_SLAB_FREELIST_RANDOM is not set # CONFIG_SLAB_FREELIST_HARDENED is not set # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y +# CONFIG_PROFILING is not set +CONFIG_TRACEPOINTS=y # end of General setup CONFIG_64BIT=y @@ -233,17 +298,12 @@ CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_X86_64_SMP=y CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_FIX_EARLYCON_MEM=y @@ -253,10 +313,8 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y # CONFIG_X86_MPPARSE is not set # CONFIG_GOLDFISH is not set # CONFIG_RETPOLINE is not set @@ -265,7 +323,8 @@ CONFIG_X86_X2APIC=y # CONFIG_X86_INTEL_LPSS is not set # CONFIG_X86_AMD_PLATFORM_DEVICE is not set # CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set # CONFIG_HYPERVISOR_GUEST is not set # CONFIG_MK8 is not set # CONFIG_MPSC is not set @@ -281,26 +340,33 @@ CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_IA32_FEAT_CTL=y CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y +# CONFIG_PROCESSOR_SELECT is not set CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_ZHAOXIN=y CONFIG_HPET_TIMER=y -CONFIG_DMI=y +CONFIG_HPET_EMULATE_RTC=y +# CONFIG_DMI is not set # CONFIG_GART_IOMMU is not set # CONFIG_MAXSMP is not set CONFIG_NR_CPUS_RANGE_BEGIN=2 CONFIG_NR_CPUS_RANGE_END=512 CONFIG_NR_CPUS_DEFAULT=64 CONFIG_NR_CPUS=512 +CONFIG_SCHED_CLUSTER=y CONFIG_SCHED_SMT=y # CONFIG_SCHED_MC is not set CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y # CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set # # Performance monitoring @@ -309,12 +375,16 @@ CONFIG_PERF_EVENTS_INTEL_UNCORE=y CONFIG_PERF_EVENTS_INTEL_RAPL=y CONFIG_PERF_EVENTS_INTEL_CSTATE=y # CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=y # end of Performance monitoring # CONFIG_X86_VSYSCALL_EMULATION is not set CONFIG_X86_IOPL_IOPERM=y # CONFIG_I8K is not set -# CONFIG_MICROCODE is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +# CONFIG_MICROCODE_OLD_INTERFACE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # CONFIG_X86_5LEVEL is not set @@ -325,11 +395,11 @@ CONFIG_X86_DIRECT_GBPAGES=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y +# CONFIG_ARCH_MEMORY_PROBE is not set CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 # CONFIG_X86_PMEM_LEGACY is not set # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 @@ -337,21 +407,21 @@ CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 CONFIG_X86_PAT=y CONFIG_ARCH_USES_PG_UNCACHED=y CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set +CONFIG_X86_SMAP=y CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_INTEL_TSX_MODE_ON is not set # CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +# CONFIG_X86_SGX is not set CONFIG_EFI=y CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set +CONFIG_EFI_MIXED=y # CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set +CONFIG_HZ_250=y # CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y CONFIG_KEXEC_FILE=y @@ -360,8 +430,12 @@ CONFIG_ARCH_HAS_KEXEC_PURGATORY=y # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa CONFIG_HOTPLUG_CPU=y # CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set # CONFIG_DEBUG_HOTPLUG_CPU0 is not set @@ -369,21 +443,36 @@ CONFIG_LEGACY_VSYSCALL_EMULATE=y # CONFIG_LEGACY_VSYSCALL_XONLY is not set # CONFIG_LEGACY_VSYSCALL_NONE is not set CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set +CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" +CONFIG_CMDLINE_OVERRIDE=y # CONFIG_MODIFY_LDT_SYSCALL is not set +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set CONFIG_HAVE_LIVEPATCH=y # end of Processor type and features CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y # # Power management and ACPI options # -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set # CONFIG_ENERGY_MODEL is not set CONFIG_ARCH_SUPPORTS_ACPI=y CONFIG_ACPI=y @@ -392,59 +481,80 @@ CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y # CONFIG_ACPI_DEBUGGER is not set CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_FPDT is not set CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y # CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_VIDEO is not set +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set +CONFIG_ACPI_TABLE_UPGRADE=y # CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y CONFIG_ACPI_HOTPLUG_IOAPIC=y # CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set +CONFIG_ACPI_HED=y # CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_BGRT=y # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set # CONFIG_ACPI_NFIT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +# CONFIG_ACPI_APEI_EINJ is not set +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +# CONFIG_ACPI_DPTF is not set +CONFIG_ACPI_EXTLOG=y # CONFIG_ACPI_CONFIGFS is not set +# CONFIG_ACPI_PFRUT is not set +# CONFIG_PMIC_OPREGION is not set # CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set +CONFIG_ACPI_PRMT=y # # CPU Frequency scaling # CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y CONFIG_CPU_FREQ_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +CONFIG_CPU_FREQ_GOV_ONDEMAND=y # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y # # CPU frequency scaling drivers # -# CONFIG_X86_INTEL_PSTATE is not set +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_AMD_PSTATE is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set # CONFIG_X86_P4_CLOCKMOD is not set # @@ -457,7 +567,7 @@ CONFIG_CPU_FREQ_GOV_PERFORMANCE=y # CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set +CONFIG_CPU_IDLE_GOV_MENU=y # CONFIG_CPU_IDLE_GOV_TEO is not set # end of CPU Idle @@ -468,12 +578,12 @@ CONFIG_CPU_IDLE_GOV_LADDER=y # Bus options (PCI etc.) # CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_MMCONFIG=y +CONFIG_MMCONF_FAM10H=y # CONFIG_PCI_CNB20LE_QUIRK is not set # CONFIG_ISA_BUS is not set # CONFIG_ISA_DMA_API is not set CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -483,47 +593,12 @@ CONFIG_AMD_NB=y # CONFIG_X86_X32 is not set # end of Binary Emulations -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - CONFIG_HAVE_KVM=y # CONFIG_VIRTUALIZATION is not set CONFIG_AS_AVX512=y CONFIG_AS_SHA1_NI=y CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y # # General architecture-dependent options @@ -531,11 +606,11 @@ CONFIG_AS_SHA256_NI=y CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set +CONFIG_GENERIC_ENTRY=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_UPROBES=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y CONFIG_HAVE_IOREMAP_PROT=y @@ -543,8 +618,10 @@ CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_OPTPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y @@ -553,11 +630,11 @@ CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_ARCH_HAS_SET_DIRECT_MAP=y CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RSEQ=y CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y @@ -568,19 +645,26 @@ CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set CONFIG_HAVE_ARCH_STACKLEAK=y CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y CONFIG_HAVE_MOVE_PMD=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y @@ -590,16 +674,20 @@ CONFIG_HAVE_ARCH_SOFT_DIRTY=y CONFIG_HAVE_MOD_ARCH_SPECIFIC=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_EXIT_THREAD=y CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_PAGE_SIZE_LESS_THAN_256KB=y CONFIG_HAVE_STACK_VALIDATION=y CONFIG_HAVE_RELIABLE_STACKTRACE=y # CONFIG_COMPAT_32BIT_TIME is not set CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y @@ -607,6 +695,15 @@ CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_ARCH_USE_MEMREMAP_PROT=y # CONFIG_LOCK_EVENT_COUNTS is not set CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_DYNAMIC_SIGFRAME=y # # GCOV-based kernel profiling @@ -623,15 +720,14 @@ CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set +CONFIG_BLK_DEV_BSG_COMMON=y # CONFIG_BLK_DEV_BSGLIB is not set # CONFIG_BLK_DEV_INTEGRITY is not set # CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set # CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set +CONFIG_BLK_DEBUG_FS=y # CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set # # Partition Types @@ -642,21 +738,18 @@ CONFIG_EFI_PARTITION=y # end of Partition Types CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y # # IO Schedulers # -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y # CONFIG_IOSCHED_BFQ is not set # end of IO Schedulers -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_RWSEM_SPIN_ON_OWNER=y @@ -668,6 +761,7 @@ CONFIG_QUEUED_RWLOCKS=y CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y # # Executable file formats @@ -685,51 +779,91 @@ CONFIG_BINFMT_SCRIPT=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MHP_MEMMAP_ON_MEMORY=y CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +# CONFIG_PAGE_REPORTING is not set +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +# CONFIG_HWPOISON_INJECT is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set +CONFIG_THP_SWAP=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y # CONFIG_CMA is not set +# CONFIG_ZSWAP is not set # CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set # CONFIG_ZSMALLOC is not set CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set # CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y # CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_SECRETMEM=y +# CONFIG_ANON_VMA_NAME is not set + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring # end of Memory Management options CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_SKB_EXTENSIONS=y # # Networking options # CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y +# CONFIG_PACKET_DIAG is not set CONFIG_UNIX=y CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y # CONFIG_UNIX_DIAG is not set # CONFIG_TLS is not set +CONFIG_XFRM=y # CONFIG_XFRM_USER is not set +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set # CONFIG_NET_KEY is not set +# CONFIG_XDP_SOCKETS is not set CONFIG_INET=y # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set @@ -739,41 +873,97 @@ CONFIG_IP_PNP_DHCP=y # CONFIG_IP_PNP_RARP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=y +CONFIG_IP_MROUTE_COMMON=y # CONFIG_SYN_COOKIES is not set # CONFIG_NET_IPVTI is not set # CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set +CONFIG_INET_TUNNEL=y CONFIG_INET_DIAG=y CONFIG_INET_TCP_DIAG=y # CONFIG_INET_UDP_DIAG is not set # CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set +CONFIG_INET_DIAG_DESTROY=y # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y # CONFIG_INET6_AH is not set # CONFIG_INET6_ESP is not set # CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set +CONFIG_IPV6_MIP6=y +# CONFIG_IPV6_ILA is not set +CONFIG_INET6_TUNNEL=y # CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set +CONFIG_IPV6_SIT=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y # CONFIG_IPV6_SEG6_LWTUNNEL is not set # CONFIG_IPV6_SEG6_HMAC is not set # CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set # CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NETWORK_SECMARK=y # CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +# CONFIG_NETFILTER_NETLINK_OSF is not set +# CONFIG_NF_CONNTRACK is not set +# CONFIG_NF_LOG_SYSLOG is not set +# CONFIG_NF_TABLES is not set +# CONFIG_NETFILTER_XTABLES is not set +# end of Core Netfilter Configuration + +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV4 is not set +# CONFIG_NF_TPROXY_IPV4 is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +# CONFIG_NF_REJECT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +# CONFIG_NF_SOCKET_IPV6 is not set +# CONFIG_NF_TPROXY_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +# CONFIG_NF_REJECT_IPV6 is not set +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# end of IPv6: Netfilter Configuration + # CONFIG_BPFILTER is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set @@ -782,7 +972,6 @@ CONFIG_NET_PTP_CLASSIFY=y # CONFIG_ATM is not set # CONFIG_L2TP is not set # CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y # CONFIG_NET_DSA is not set # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set @@ -795,19 +984,25 @@ CONFIG_HAVE_NET_DSA=y # CONFIG_IEEE802154 is not set # CONFIG_NET_SCHED is not set # CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set # CONFIG_BATMAN_ADV is not set # CONFIG_OPENVSWITCH is not set # CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y +# CONFIG_NETLINK_DIAG is not set # CONFIG_MPLS is not set # CONFIG_NET_NSH is not set # CONFIG_HSR is not set # CONFIG_NET_SWITCHDEV is not set # CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y CONFIG_RPS=y CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y CONFIG_NET_FLOW_LIMIT=y @@ -816,6 +1011,7 @@ CONFIG_NET_FLOW_LIMIT=y # Network testing # # CONFIG_NET_PKTGEN is not set +# CONFIG_NET_DROP_MONITOR is not set # end of Network testing # end of Networking options @@ -824,21 +1020,26 @@ CONFIG_NET_FLOW_LIMIT=y # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set +# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y # CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_FD=y +CONFIG_NET_9P_DEBUG=y # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set # CONFIG_PSAMPLE is not set # CONFIG_NET_IFE is not set # CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y # CONFIG_FAILOVER is not set CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y # # Device Drivers @@ -849,21 +1050,42 @@ CONFIG_HAVE_PCI=y CONFIG_PCI=y CONFIG_PCI_DOMAINS=y CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y # CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set +# CONFIG_PCIE_EDR is not set CONFIG_PCI_MSI=y CONFIG_PCI_MSI_IRQ_DOMAIN=y CONFIG_PCI_QUIRKS=y # CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y # CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set # # PCI controller drivers @@ -900,15 +1122,18 @@ CONFIG_PCI_LABEL=y # CONFIG_PCI_SW_SWITCHTEC is not set # end of PCI switch controller drivers +# CONFIG_CXL_BUS is not set # CONFIG_PCCARD is not set # CONFIG_RAPIDIO is not set # # Generic Driver Options # +CONFIG_AUXILIARY_BUS=y # CONFIG_UEVENT_HELPER is not set CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y +# CONFIG_DEVTMPFS_MOUNT is not set +# CONFIG_DEVTMPFS_SAFE is not set CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y @@ -916,9 +1141,12 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y # Firmware loader # CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set # CONFIG_FW_LOADER_COMPRESS is not set +CONFIG_FW_CACHE=y # end of Firmware loader CONFIG_ALLOW_DEV_COREDUMP=y @@ -927,8 +1155,6 @@ CONFIG_ALLOW_DEV_COREDUMP=y # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y # end of Generic Driver Options # @@ -938,13 +1164,62 @@ CONFIG_REGMAP_I2C=y # end of Bus devices # CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_ISCSI_IBFT is not set +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=y +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + # CONFIG_GNSS is not set # CONFIG_MTD is not set # CONFIG_OF is not set CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y # CONFIG_PARPORT is not set CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y +# CONFIG_PNP_DEBUG_MESSAGES is not set # # Protocols @@ -953,26 +1228,21 @@ CONFIG_PNPACPI=y CONFIG_BLK_DEV=y # CONFIG_BLK_DEV_NULL_BLK is not set # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_LOOP is not set # CONFIG_BLK_DEV_DRBD is not set # CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set # CONFIG_BLK_DEV_SX8 is not set # CONFIG_BLK_DEV_RAM is not set # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set # CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set # # NVME Support # # CONFIG_BLK_DEV_NVME is not set # CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set # end of NVME Support # @@ -995,15 +1265,15 @@ CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 # CONFIG_HMC6352 is not set # CONFIG_DS1682 is not set # CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set # CONFIG_C2PORT is not set # # EEPROM support # -CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_AT24 is not set # CONFIG_EEPROM_LEGACY is not set # CONFIG_EEPROM_MAX6875 is not set # CONFIG_EEPROM_93CX6 is not set @@ -1016,6 +1286,7 @@ CONFIG_EEPROM_AT24=y # # Texas Instruments shared transport line discipline # +# CONFIG_TI_ST is not set # end of Texas Instruments shared transport line discipline # CONFIG_SENSORS_LIS3_I2C is not set @@ -1024,31 +1295,22 @@ CONFIG_EEPROM_AT24=y # CONFIG_INTEL_MEI_ME is not set # CONFIG_INTEL_MEI_TXE is not set # CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - # CONFIG_GENWQE is not set # CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set # CONFIG_MISC_ALCOR_PCI is not set # CONFIG_MISC_RTSX_PCI is not set # CONFIG_MISC_RTSX_USB is not set # CONFIG_HABANA_AI is not set +# CONFIG_PVPANIC is not set # end of Misc devices -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - # # SCSI device support # CONFIG_SCSI_MOD=y # CONFIG_RAID_ATTRS is not set +CONFIG_SCSI_COMMON=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y CONFIG_SCSI_PROC_FS=y @@ -1060,6 +1322,7 @@ CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set # CONFIG_BLK_DEV_SR is not set # CONFIG_CHR_DEV_SG is not set +CONFIG_BLK_DEV_BSG=y # CONFIG_CHR_DEV_SCH is not set # CONFIG_SCSI_CONSTANTS is not set # CONFIG_SCSI_LOGGING is not set @@ -1076,7 +1339,58 @@ CONFIG_BLK_DEV_SD=y # CONFIG_SCSI_SRP_ATTRS is not set # end of SCSI Transports -# CONFIG_SCSI_LOWLEVEL is not set +CONFIG_SCSI_LOWLEVEL=y +# CONFIG_ISCSI_TCP is not set +# CONFIG_ISCSI_BOOT_SYSFS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_MPI3MR is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_BUSLOGIC is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_ISCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set # CONFIG_SCSI_DH is not set # end of SCSI device support @@ -1094,6 +1408,7 @@ CONFIG_BLK_DEV_SD=y # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y +CONFIG_MII=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set @@ -1114,15 +1429,8 @@ CONFIG_NET_POLL_CONTROLLER=y # CONFIG_TUN is not set # CONFIG_TUN_VNET_CROSS_LE is not set # CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set # CONFIG_NLMON is not set # CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_3COM is not set # CONFIG_NET_VENDOR_ADAPTEC is not set @@ -1134,80 +1442,66 @@ CONFIG_ETHERNET=y # CONFIG_NET_VENDOR_AMD is not set # CONFIG_NET_VENDOR_AQUANTIA is not set # CONFIG_NET_VENDOR_ARC is not set +CONFIG_NET_VENDOR_ASIX=y # CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set +# CONFIG_NET_VENDOR_BROADCOM is not set # CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CADENCE is not set # CONFIG_NET_VENDOR_CAVIUM is not set # CONFIG_NET_VENDOR_CHELSIO is not set # CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_NET_VENDOR_CORTINA is not set # CONFIG_CX_ECAT is not set # CONFIG_DNET is not set # CONFIG_NET_VENDOR_DEC is not set # CONFIG_NET_VENDOR_DLINK is not set # CONFIG_NET_VENDOR_EMULEX is not set +CONFIG_NET_VENDOR_ENGLEDER=y +# CONFIG_TSNEP is not set # CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set +# CONFIG_NET_VENDOR_GOOGLE is not set # CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_I825XX=y CONFIG_NET_VENDOR_INTEL=y # CONFIG_E100 is not set -# CONFIG_E1000 is not set +CONFIG_E1000=y CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set +CONFIG_E1000E_HWTS=y CONFIG_IGB=y -# CONFIG_IGBVF is not set +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=y # CONFIG_IXGB is not set # CONFIG_IXGBE is not set # CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set +CONFIG_I40E=y # CONFIG_I40EVF is not set -# CONFIG_ICE is not set +CONFIG_ICE=y +CONFIG_ICE_HWTS=y # CONFIG_FM10K is not set -# CONFIG_IGC is not set +CONFIG_IGC=y +CONFIG_NET_VENDOR_MICROSOFT=y # CONFIG_JME is not set +CONFIG_NET_VENDOR_LITEX=y # CONFIG_NET_VENDOR_MARVELL is not set # CONFIG_NET_VENDOR_MELLANOX is not set # CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set # CONFIG_NET_VENDOR_MYRI is not set # CONFIG_FEALNX is not set # CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set +# CONFIG_NET_VENDOR_NETERION is not set # CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NI is not set # CONFIG_NET_VENDOR_NVIDIA is not set # CONFIG_NET_VENDOR_OKI is not set # CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_PACKET_ENGINES is not set +# CONFIG_NET_VENDOR_PENSANDO is not set # CONFIG_NET_VENDOR_QLOGIC is not set # CONFIG_NET_VENDOR_QUALCOMM is not set # CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y +# CONFIG_NET_VENDOR_REALTEK is not set # CONFIG_NET_VENDOR_RENESAS is not set # CONFIG_NET_VENDOR_ROCKER is not set # CONFIG_NET_VENDOR_SAMSUNG is not set @@ -1216,71 +1510,94 @@ CONFIG_R8169=y # CONFIG_NET_VENDOR_SILAN is not set # CONFIG_NET_VENDOR_SIS is not set # CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_SOCIONEXT is not set # CONFIG_NET_VENDOR_STMICRO is not set # CONFIG_NET_VENDOR_SUN is not set # CONFIG_NET_VENDOR_SYNOPSYS is not set # CONFIG_NET_VENDOR_TEHUTI is not set # CONFIG_NET_VENDOR_TI is not set +CONFIG_NET_VENDOR_VERTEXCOM=y # CONFIG_NET_VENDOR_VIA is not set # CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_NET_VENDOR_XILINX is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set CONFIG_PHYLIB=y +CONFIG_SWPHY=y +CONFIG_LED_TRIGGER_PHY=y +CONFIG_FIXED_PHY=y # # MII PHY device drivers # -# CONFIG_ADIN_PHY is not set CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set +CONFIG_ADIN_PHY=y +CONFIG_AQUANTIA_PHY=y +CONFIG_AX88796B_PHY=y +CONFIG_BROADCOM_PHY=y +# CONFIG_BCM54140_PHY is not set CONFIG_BCM7XXX_PHY=y +# CONFIG_BCM84881_PHY is not set CONFIG_BCM87XX_PHY=y CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_CICADA_PHY=y +CONFIG_CORTINA_PHY=y +CONFIG_DAVICOM_PHY=y +CONFIG_ICPLUS_PHY=y CONFIG_LXT_PHY=y +CONFIG_INTEL_XWAY_PHY=y +CONFIG_LSI_ET1011C_PHY=y CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set +CONFIG_MARVELL_10G_PHY=y +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +CONFIG_MICREL_PHY=y +CONFIG_MICROCHIP_PHY=y +CONFIG_MICROCHIP_T1_PHY=y +CONFIG_MICROSEMI_PHY=y +# CONFIG_MOTORCOMM_PHY is not set +CONFIG_NATIONAL_PHY=y +# CONFIG_NXP_C45_TJA11XX_PHY is not set +CONFIG_NXP_TJA11XX_PHY=y +CONFIG_AT803X_PHY=y +CONFIG_QSEMI_PHY=y CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set +CONFIG_RENESAS_PHY=y +CONFIG_ROCKCHIP_PHY=y +CONFIG_SMSC_PHY=y +CONFIG_STE10XP=y +CONFIG_TERANETICS_PHY=y +CONFIG_DP83822_PHY=y +CONFIG_DP83TC811_PHY=y +CONFIG_DP83848_PHY=y +CONFIG_DP83867_PHY=y +# CONFIG_DP83869_PHY is not set +CONFIG_VITESSE_PHY=y +CONFIG_XILINX_GMII2RGMII=y +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BCM_UNIMAC=y +CONFIG_MDIO_CAVIUM=y +CONFIG_MDIO_GPIO=y +# CONFIG_MDIO_MVUSB is not set +CONFIG_MDIO_THUNDER=y + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +# CONFIG_PCS_XPCS is not set +# end of PCS device drivers + # CONFIG_PPP is not set # CONFIG_SLIP is not set CONFIG_USB_NET_DRIVERS=y @@ -1290,34 +1607,74 @@ CONFIG_USB_NET_DRIVERS=y # CONFIG_USB_RTL8150 is not set # CONFIG_USB_RTL8152 is not set # CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set +CONFIG_USB_USBNET=y +CONFIG_USB_NET_AX8817X=y +CONFIG_USB_NET_AX88179_178A=y +CONFIG_USB_NET_CDCETHER=y +# CONFIG_USB_NET_CDC_EEM is not set +CONFIG_USB_NET_CDC_NCM=y +# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set +# CONFIG_USB_NET_CDC_MBIM is not set +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +CONFIG_USB_NET_NET1080=y +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +# CONFIG_USB_NET_RNDIS_HOST is not set +CONFIG_USB_NET_CDC_SUBSET_ENABLE=y +CONFIG_USB_NET_CDC_SUBSET=y +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_NET_INT51X1 is not set # CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +# CONFIG_USB_RTL8153_ECM is not set # CONFIG_WLAN is not set +# CONFIG_WAN is not set # -# Enable WiMAX (Networking options) to see the WiMAX drivers +# Wireless WAN # -# CONFIG_WAN is not set +# CONFIG_WWAN is not set +# end of Wireless WAN + # CONFIG_VMXNET3 is not set # CONFIG_FUJITSU_ES is not set # CONFIG_NETDEVSIM is not set # CONFIG_NET_FAILOVER is not set # CONFIG_ISDN is not set -# CONFIG_NVM is not set # # Input device support # CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y # CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set # # Userland interfaces # -# CONFIG_INPUT_MOUSEDEV is not set +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_EVDEV is not set # CONFIG_INPUT_EVBUG is not set @@ -1334,8 +1691,12 @@ CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_QT2160 is not set # CONFIG_KEYBOARD_DLINK_DIR685 is not set # CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set # CONFIG_KEYBOARD_TCA6416 is not set # CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set # CONFIG_KEYBOARD_LM8333 is not set # CONFIG_KEYBOARD_MAX7359 is not set # CONFIG_KEYBOARD_MCS is not set @@ -1345,12 +1706,158 @@ CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SAMSUNG is not set # CONFIG_KEYBOARD_STOWAWAY is not set # CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set # CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set +# CONFIG_KEYBOARD_CYPRESS_SF is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +CONFIG_INPUT_JOYSTICK=y +# CONFIG_JOYSTICK_ANALOG is not set +# CONFIG_JOYSTICK_A3D is not set +# CONFIG_JOYSTICK_ADI is not set +# CONFIG_JOYSTICK_COBRA is not set +# CONFIG_JOYSTICK_GF2K is not set +# CONFIG_JOYSTICK_GRIP is not set +# CONFIG_JOYSTICK_GRIP_MP is not set +# CONFIG_JOYSTICK_GUILLEMOT is not set +# CONFIG_JOYSTICK_INTERACT is not set +# CONFIG_JOYSTICK_SIDEWINDER is not set +# CONFIG_JOYSTICK_TMDC is not set +# CONFIG_JOYSTICK_IFORCE is not set +# CONFIG_JOYSTICK_WARRIOR is not set +# CONFIG_JOYSTICK_MAGELLAN is not set +# CONFIG_JOYSTICK_SPACEORB is not set +# CONFIG_JOYSTICK_SPACEBALL is not set +# CONFIG_JOYSTICK_STINGER is not set +# CONFIG_JOYSTICK_TWIDJOY is not set +# CONFIG_JOYSTICK_ZHENHUA is not set +# CONFIG_JOYSTICK_AS5011 is not set +# CONFIG_JOYSTICK_JOYDUMP is not set +# CONFIG_JOYSTICK_XPAD is not set +# CONFIG_JOYSTICK_PXRC is not set +# CONFIG_JOYSTICK_QWIIC is not set +# CONFIG_JOYSTICK_FSIA6B is not set +CONFIG_INPUT_TABLET=y +# CONFIG_TABLET_USB_ACECAD is not set +# CONFIG_TABLET_USB_AIPTEK is not set +# CONFIG_TABLET_USB_HANWANG is not set +# CONFIG_TABLET_USB_KBTAB is not set +# CONFIG_TABLET_USB_PEGASUS is not set +# CONFIG_TABLET_SERIAL_WACOM4 is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_AD7879 is not set +# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DYNAPRO is not set +# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +# CONFIG_TOUCHSCREEN_EXC3000 is not set +# CONFIG_TOUCHSCREEN_FUJITSU is not set +# CONFIG_TOUCHSCREEN_GOODIX is not set +# CONFIG_TOUCHSCREEN_HIDEEP is not set +# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set +# CONFIG_TOUCHSCREEN_ILI210X is not set +# CONFIG_TOUCHSCREEN_ILITEK is not set +# CONFIG_TOUCHSCREEN_S6SY761 is not set +# CONFIG_TOUCHSCREEN_GUNZE is not set +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +# CONFIG_TOUCHSCREEN_ELO is not set +# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +# CONFIG_TOUCHSCREEN_MCS5000 is not set +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +# CONFIG_TOUCHSCREEN_MTOUCH is not set +# CONFIG_TOUCHSCREEN_INEXIO is not set +# CONFIG_TOUCHSCREEN_MK712 is not set +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set +# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +# CONFIG_TOUCHSCREEN_TSC2004 is not set +# CONFIG_TOUCHSCREEN_TSC2007 is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +# CONFIG_TOUCHSCREEN_TPS6507X is not set +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +# CONFIG_TOUCHSCREEN_ZINITIX is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_APANEL is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +# CONFIG_INPUT_UINPUT is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set # CONFIG_RMI4_CORE is not set # @@ -1361,12 +1868,13 @@ CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y # CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y +# CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set # CONFIG_SERIO_ALTERA_PS2 is not set # CONFIG_SERIO_PS2MULT is not set # CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set # CONFIG_USERIO is not set # CONFIG_GAMEPORT is not set # end of Hardware I/O ports @@ -1379,11 +1887,11 @@ CONFIG_TTY=y CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_LEGACY_PTYS is not set CONFIG_LDISC_AUTOLOAD=y # @@ -1394,18 +1902,24 @@ CONFIG_SERIAL_8250=y # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set CONFIG_SERIAL_8250_PNP=y # CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_FINTEK=y CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_NR_UARTS=32 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set +CONFIG_SERIAL_8250_DW=y # CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_LPSS is not set # CONFIG_SERIAL_8250_MID is not set +CONFIG_SERIAL_8250_PERICOM=y # # Non-8250 serial port support @@ -1414,8 +1928,10 @@ CONFIG_SERIAL_8250_LPSS=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_LANTIQ is not set # CONFIG_SERIAL_SCCNXP is not set # CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set # CONFIG_SERIAL_ARC is not set @@ -1425,38 +1941,43 @@ CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_SPRD is not set # end of Serial drivers -# CONFIG_SERIAL_NONSTANDARD is not set +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set # CONFIG_N_GSM is not set # CONFIG_NOZOMI is not set # CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set # CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_TTY_PRINTK is not set # CONFIG_VIRTIO_CONSOLE is not set # CONFIG_IPMI_HANDLER is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_BA431 is not set CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y +# CONFIG_HW_RANDOM_XIPHERA is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set +# CONFIG_NVRAM is not set CONFIG_DEVPORT=y -# CONFIG_HPET is not set +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y # CONFIG_HANGCHECK_TIMER is not set # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set # CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_XILLYUSB is not set +# CONFIG_RANDOM_TRUST_CPU is not set # CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices # # I2C support @@ -1464,19 +1985,11 @@ CONFIG_RANDOM_TRUST_CPU=y CONFIG_I2C=y CONFIG_ACPI_I2C_OPREGION=y CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set +CONFIG_I2C_COMPAT=y # CONFIG_I2C_CHARDEV is not set # CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# +CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms # # I2C Hardware Bus support @@ -1511,9 +2024,11 @@ CONFIG_I2C_ALGOBIT=y # # I2C system bus drivers (mostly embedded / system-on-chip) # +# CONFIG_I2C_CBUS_GPIO is not set # CONFIG_I2C_DESIGNWARE_PLATFORM is not set # CONFIG_I2C_DESIGNWARE_PCI is not set # CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set # CONFIG_I2C_OCORES is not set # CONFIG_I2C_PCA_PLATFORM is not set # CONFIG_I2C_SIMTEC is not set @@ -1523,6 +2038,7 @@ CONFIG_I2C_ALGOBIT=y # External I2C/SMBus adapter drivers # # CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set # CONFIG_I2C_ROBOTFUZZ_OSIF is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set @@ -1531,9 +2047,12 @@ CONFIG_I2C_ALGOBIT=y # Other I2C/SMBus bus drivers # # CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_VIRTIO is not set # end of I2C Hardware Bus support -# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +# CONFIG_I2C_SLAVE_TESTUNIT is not set # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set @@ -1543,41 +2062,430 @@ CONFIG_I2C_ALGOBIT=y # CONFIG_SPI is not set # CONFIG_SPMI is not set # CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set +# CONFIG_PPS is not set # -# PPS clients support +# PTP clock support # -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=y # -# PPS generators support +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. # +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_MCP23S08 is not set +# CONFIG_PINCTRL_SX150X is not set # -# PTP clock support +# Intel pinctrl drivers # -CONFIG_PTP_1588_CLOCK=y +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +# CONFIG_PINCTRL_LYNXPOINT is not set +CONFIG_PINCTRL_INTEL=y +# CONFIG_PINCTRL_ALDERLAKE is not set +CONFIG_PINCTRL_BROXTON=y +# CONFIG_PINCTRL_CANNONLAKE is not set +# CONFIG_PINCTRL_CEDARFORK is not set +# CONFIG_PINCTRL_DENVERTON is not set +# CONFIG_PINCTRL_ELKHARTLAKE is not set +# CONFIG_PINCTRL_EMMITSBURG is not set +# CONFIG_PINCTRL_GEMINILAKE is not set +# CONFIG_PINCTRL_ICELAKE is not set +# CONFIG_PINCTRL_JASPERLAKE is not set +# CONFIG_PINCTRL_LAKEFIELD is not set +# CONFIG_PINCTRL_LEWISBURG is not set +CONFIG_PINCTRL_SUNRISEPOINT=y +# CONFIG_PINCTRL_TIGERLAKE is not set +# end of Intel pinctrl drivers # -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# Renesas pinctrl drivers # -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support +# end of Renesas pinctrl drivers + +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_VX855 is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +# CONFIG_GPIO_F7188X is not set +# CONFIG_GPIO_IT87 is not set +# CONFIG_GPIO_SCH311X is not set +# CONFIG_GPIO_WINBOND is not set +# CONFIG_GPIO_WS16C48 is not set +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_AMD8111 is not set +# CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_ML_IOH is not set +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_GPIO_SIM is not set +# end of Virtual GPIO drivers -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set # CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set # CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_MAX77976 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_APPLESMC is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ASPEED is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DELL_SMM is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_FTSTEUTATES is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_I5500 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX6620 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_NZXT_SMART2 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH5627 is not set +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA238 is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set + +# +# Intel thermal drivers +# +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=y +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# end of ACPI INT340X thermal drivers + +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_INTEL_TCC_COOLING is not set +# CONFIG_INTEL_MENLOW is not set +# end of Intel thermal drivers + +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +# CONFIG_WATCHDOG_SYSFS is not set +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +# CONFIG_SOFT_WATCHDOG is not set +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_ACQUIRE_WDT is not set +# CONFIG_ADVANTECH_WDT is not set +# CONFIG_ALIM1535_WDT is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_EBC_C384_WDT is not set +# CONFIG_F71808E_WDT is not set +# CONFIG_SP5100_TCO is not set +# CONFIG_SBC_FITPC2_WATCHDOG is not set +# CONFIG_EUROTECH_WDT is not set +# CONFIG_IB700_WDT is not set +# CONFIG_IBMASR is not set +# CONFIG_WAFER_WDT is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_IE6XX_WDT is not set +# CONFIG_ITCO_WDT is not set +# CONFIG_IT8712F_WDT is not set +# CONFIG_IT87_WDT is not set +# CONFIG_HP_WATCHDOG is not set +# CONFIG_SC1200_WDT is not set +# CONFIG_PC87413_WDT is not set +# CONFIG_NV_TCO is not set +# CONFIG_60XX_WDT is not set +# CONFIG_CPU5_WDT is not set +# CONFIG_SMSC_SCH311X_WDT is not set +# CONFIG_SMSC37B787_WDT is not set +# CONFIG_TQMX86_WDT is not set +# CONFIG_VIA_WDT is not set +# CONFIG_W83627HF_WDT is not set +# CONFIG_W83877F_WDT is not set +# CONFIG_W83977F_WDT is not set +# CONFIG_MACHZ_WDT is not set +# CONFIG_SBC_EPX_C3_WATCHDOG is not set +# CONFIG_NI903X_WDT is not set +# CONFIG_NIC7018_WDT is not set +# CONFIG_MEN_A21_WDT is not set + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set CONFIG_SSB_POSSIBLE=y # CONFIG_SSB is not set CONFIG_BCMA_POSSIBLE=y @@ -1588,6 +2496,7 @@ CONFIG_BCMA_POSSIBLE=y # # CONFIG_MFD_AS3711 is not set # CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set # CONFIG_MFD_BCM590XX is not set # CONFIG_MFD_BD9571MWV is not set # CONFIG_MFD_AXP20X_I2C is not set @@ -1600,12 +2509,15 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set # CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set # CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set # CONFIG_LPC_ICH is not set # CONFIG_LPC_SCH is not set # CONFIG_MFD_INTEL_LPSS_ACPI is not set # CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_INTEL_PMC_BXT is not set # CONFIG_MFD_IQS62X is not set # CONFIG_MFD_JANZ_CMODIO is not set # CONFIG_MFD_KEMPLD is not set @@ -1619,20 +2531,19 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_MAX8925 is not set # CONFIG_MFD_MAX8997 is not set # CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_MENF21BMC is not set # CONFIG_MFD_VIPERBOARD is not set # CONFIG_MFD_RETU is not set # CONFIG_MFD_PCF50633 is not set # CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set # CONFIG_MFD_SI476X_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set # CONFIG_MFD_SYSCON is not set # CONFIG_MFD_TI_AM335X_TSCADC is not set # CONFIG_MFD_LP3943 is not set @@ -1640,13 +2551,14 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_TI_LMU is not set # CONFIG_MFD_PALMAS is not set # CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set # CONFIG_TPS6507X is not set # CONFIG_MFD_TPS65086 is not set # CONFIG_MFD_TPS65090 is not set # CONFIG_MFD_TI_LP873X is not set # CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set # CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set # CONFIG_TWL4030_CORE is not set # CONFIG_TWL6040_CORE is not set # CONFIG_MFD_WL1273_CORE is not set @@ -1658,19 +2570,80 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_WM831X_I2C is not set # CONFIG_MFD_WM8350_I2C is not set # CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ATC260X_I2C is not set # end of Multifunction device drivers -# CONFIG_REGULATOR is not set +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +# CONFIG_REGULATOR_FAN53555 is not set +# CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX20086 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MP8859 is not set +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_PCA9450 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set +# CONFIG_REGULATOR_RT4801 is not set +# CONFIG_REGULATOR_RT6160 is not set +# CONFIG_REGULATOR_RT6245 is not set +# CONFIG_REGULATOR_RTQ2134 is not set +# CONFIG_REGULATOR_RTMV20 is not set +# CONFIG_REGULATOR_RTQ6752 is not set +# CONFIG_REGULATOR_SLG51000 is not set +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set # CONFIG_RC_CORE is not set + +# +# CEC support +# +# CONFIG_MEDIA_CEC_SUPPORT is not set +# end of CEC support + # CONFIG_MEDIA_SUPPORT is not set # # Graphics support # -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=y +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y # CONFIG_DRM is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set # # ARM devices @@ -1685,14 +2658,14 @@ CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set +CONFIG_FIRMWARE_EDID=y CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers @@ -1703,7 +2676,7 @@ CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_ARC is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=y +# CONFIG_FB_VGA16 is not set CONFIG_FB_VESA=y CONFIG_FB_EFI=y # CONFIG_FB_N411 is not set @@ -1714,6 +2687,7 @@ CONFIG_FB_EFI=y # CONFIG_FB_RIVA is not set # CONFIG_FB_I740 is not set # CONFIG_FB_LE80578 is not set +# CONFIG_FB_INTEL is not set # CONFIG_FB_MATROX is not set # CONFIG_FB_RADEON is not set # CONFIG_FB_ATY128 is not set @@ -1721,6 +2695,7 @@ CONFIG_FB_EFI=y # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set @@ -1737,6 +2712,7 @@ CONFIG_FB_EFI=y # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set # CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set # CONFIG_FB_SM712 is not set # end of Frame buffer Devices @@ -1744,22 +2720,34 @@ CONFIG_FB_EFI=y # Backlight & LCD device support # # CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set # end of Backlight & LCD device support -CONFIG_VGASTATE=y - # # Console display driver support # CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 CONFIG_FRAMEBUFFER_CONSOLE=y -# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y # CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set # end of Console display driver support @@ -1772,7 +2760,7 @@ CONFIG_FRAMEBUFFER_CONSOLE=y # HID support # CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HID_BATTERY_STRENGTH=y CONFIG_HIDRAW=y # CONFIG_UHID is not set CONFIG_HID_GENERIC=y @@ -1785,30 +2773,39 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_ACRUX is not set # CONFIG_HID_APPLE is not set # CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set # CONFIG_HID_AUREAL is not set # CONFIG_HID_BELKIN is not set # CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set # CONFIG_HID_CHERRY is not set # CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set # CONFIG_HID_COUGAR is not set # CONFIG_HID_MACALLY is not set # CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set # CONFIG_HID_CREATIVE_SB0540 is not set # CONFIG_HID_CYPRESS is not set # CONFIG_HID_DRAGONRISE is not set # CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set # CONFIG_HID_ELECOM is not set # CONFIG_HID_ELO is not set # CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set # CONFIG_HID_GEMBIRD is not set # CONFIG_HID_GFRM is not set # CONFIG_HID_GLORIOUS is not set # CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set # CONFIG_HID_KEYTOUCH is not set # CONFIG_HID_KYE is not set # CONFIG_HID_UCLOGIC is not set # CONFIG_HID_WALTOP is not set # CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_XIAOMI is not set # CONFIG_HID_GYRATION is not set # CONFIG_HID_ICADE is not set # CONFIG_HID_ITE is not set @@ -1816,7 +2813,10 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_TWINHAN is not set # CONFIG_HID_KENSINGTON is not set # CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set # CONFIG_HID_LENOVO is not set +# CONFIG_HID_LETSKETCH is not set +# CONFIG_HID_LOGITECH is not set # CONFIG_HID_MAGICMOUSE is not set # CONFIG_HID_MALTRON is not set # CONFIG_HID_MAYFLASH is not set @@ -1824,6 +2824,7 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_MICROSOFT is not set # CONFIG_HID_MONTEREY is not set # CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NINTENDO is not set # CONFIG_HID_NTI is not set # CONFIG_HID_NTRIG is not set # CONFIG_HID_ORTEK is not set @@ -1837,6 +2838,8 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_ROCCAT is not set # CONFIG_HID_SAITEK is not set # CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SONY is not set # CONFIG_HID_SPEEDLINK is not set # CONFIG_HID_STEAM is not set # CONFIG_HID_STEELSERIES is not set @@ -1846,14 +2849,18 @@ CONFIG_HID_GENERIC=y # CONFIG_HID_SMARTJOYPLUS is not set # CONFIG_HID_TIVO is not set # CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set # CONFIG_HID_THRUSTMASTER is not set # CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set # CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set # CONFIG_HID_XINMO is not set # CONFIG_HID_ZEROPLUS is not set # CONFIG_HID_ZYDACRON is not set # CONFIG_HID_SENSOR_HUB is not set # CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set # end of Special HID drivers # @@ -1867,20 +2874,29 @@ CONFIG_USB_HID=y # # I2C HID support # -# CONFIG_I2C_HID is not set +# CONFIG_I2C_HID_ACPI is not set # end of I2C HID support # # Intel ISH HID support # -# CONFIG_INTEL_ISH_HID is not set +CONFIG_INTEL_ISH_HID=y +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set # end of Intel ISH HID support + +# +# AMD SFH HID Support +# +# CONFIG_AMD_SFH_HID is not set +# end of AMD SFH HID Support # end of HID support CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_SUPPORT=y CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y # CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB=y CONFIG_USB_PCI=y @@ -1890,9 +2906,12 @@ CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # Miscellaneous USB options # CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set # CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set CONFIG_USB_AUTOSUSPEND_DELAY=2 # CONFIG_USB_MON is not set @@ -1901,9 +2920,10 @@ CONFIG_USB_AUTOSUSPEND_DELAY=2 # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_DBGCAP=y CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PLATFORM is not set +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=y CONFIG_USB_EHCI_HCD=y # CONFIG_USB_EHCI_ROOT_HUB_TT is not set CONFIG_USB_EHCI_TT_NEWSCHED=y @@ -1913,8 +2933,10 @@ CONFIG_USB_EHCI_PCI=y # CONFIG_USB_OXU210HP_HCD is not set # CONFIG_USB_ISP116X_HCD is not set # CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_HCD_TEST_MODE is not set @@ -1949,7 +2971,7 @@ CONFIG_USB_STORAGE=y # CONFIG_USB_STORAGE_KARMA is not set # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set # CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y +# CONFIG_USB_UAS is not set # # USB Imaging devices @@ -1957,7 +2979,7 @@ CONFIG_USB_UAS=y # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_CDNS_SUPPORT is not set # CONFIG_USB_MUSB_HDRC is not set # CONFIG_USB_DWC3 is not set # CONFIG_USB_DWC2 is not set @@ -1967,7 +2989,60 @@ CONFIG_USB_UAS=y # # USB port drivers # -# CONFIG_USB_SERIAL is not set +CONFIG_USB_SERIAL=y +CONFIG_USB_SERIAL_CONSOLE=y +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=y +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +# CONFIG_USB_SERIAL_FTDI_SIO is not set +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers @@ -2003,67 +3078,248 @@ CONFIG_USB_UAS=y # USB Physical Layer drivers # # CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set # CONFIG_USB_ISP1301 is not set # end of USB Physical Layer drivers # CONFIG_USB_GADGET is not set # CONFIG_TYPEC is not set # CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_TIFM_SD is not set -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set +# CONFIG_MMC is not set # CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_NIC78BX is not set + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_GPIO is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +# CONFIG_LEDS_TRIGGER_AUDIO is not set +# CONFIG_LEDS_TRIGGER_TTY is not set + +# +# Simple LED drivers +# +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# end of Speakup console speech + # CONFIG_INFINIBAND is not set CONFIG_EDAC_ATOMIC_SCRUB=y CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_GHES is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +# CONFIG_EDAC_SBRIDGE is not set +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_I10NM is not set +# CONFIG_EDAC_PND2 is not set +# CONFIG_EDAC_IGEN6 is not set CONFIG_RTC_LIB=y CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_INTEL_IDXD is not set +# CONFIG_INTEL_IDXD_COMPAT is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_PLX_DMA is not set +# CONFIG_AMD_PTDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_DW_EDMA_PCIE is not set +# CONFIG_SF_PDMA is not set +# CONFIG_INTEL_LDMA is not set + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set # # DMABUF options # # CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set # CONFIG_DMABUF_HEAPS is not set # end of DMABUF options # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set +# CONFIG_VFIO is not set # CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VIRTIO_MENU is not set # CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +# CONFIG_VHOST_MENU is not set # # Microsoft Hyper-V guest support @@ -2071,50 +3327,88 @@ CONFIG_VHOST_MENU=y # end of Microsoft Hyper-V guest support # CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set # CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACPI_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ACER_WIRELESS is not set +# CONFIG_AMD_PMC is not set +# CONFIG_ADV_SWBUTTON is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_ASUS_WIRELESS is not set +# CONFIG_ASUS_TF103C_DOCK is not set +# CONFIG_EEEPC_LAPTOP is not set +# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_WIRELESS_HOTKEY is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_SAR_INT1092 is not set +# CONFIG_INTEL_SKL_INT3472 is not set +# CONFIG_INTEL_PMC_CORE is not set + +# +# Intel Speed Select Technology interface support +# +# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set +# end of Intel Speed Select Technology interface support + +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_INT0002_VGPIO is not set +# CONFIG_INTEL_ISHTP_ECLITE is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_INTEL_RST is not set +# CONFIG_INTEL_SMARTCONNECT is not set +# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set +# CONFIG_INTEL_VSEC is not set +# CONFIG_PCENGINES_APU2 is not set +# CONFIG_BARCO_P50_GPIO is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SYSTEM76_ACPI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_I2C_MULTI_INSTANTIATE is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_SCU_PCI is not set +# CONFIG_INTEL_SCU_PLATFORM is not set +# CONFIG_SIEMENS_SIMATIC_IPC is not set CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set # CONFIG_CHROME_PLATFORMS is not set # CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# # CONFIG_COMMON_CLK_MAX9485 is not set # CONFIG_COMMON_CLK_SI5341 is not set # CONFIG_COMMON_CLK_SI5351 is not set # CONFIG_COMMON_CLK_SI544 is not set # CONFIG_COMMON_CLK_CDCE706 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - +# CONFIG_COMMON_CLK_LAN966X is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_XILINX_VCU is not set # CONFIG_HWSPINLOCK is not set # # Clock Source drivers # CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y CONFIG_CLKBLD_I8253=y # end of Clock Source drivers # CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y +# CONFIG_IOMMU_SUPPORT is not set # # Remoteproc drivers @@ -2139,11 +3433,6 @@ CONFIG_IRQ_REMAP=y # # end of Amlogic SoC drivers -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - # # Broadcom SoC drivers # @@ -2159,6 +3448,11 @@ CONFIG_IRQ_REMAP=y # # end of i.MX SoC drivers +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + # # Qualcomm SoC drivers # @@ -2169,17 +3463,36 @@ CONFIG_IRQ_REMAP=y # # Xilinx SoC drivers # -# CONFIG_XILINX_VCU is not set # end of Xilinx SoC drivers # end of SOC (System On Chip) specific Drivers -# CONFIG_PM_DEVFREQ is not set +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +# CONFIG_DEVFREQ_GOV_USERSPACE is not set +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set # CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set +CONFIG_MEMORY=y # CONFIG_IIO is not set # CONFIG_NTB is not set # CONFIG_VME_BUS is not set -# CONFIG_PWM is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_LPSS_PCI is not set +# CONFIG_PWM_LPSS_PLATFORM is not set +# CONFIG_PWM_PCA9685 is not set # # IRQ chip support @@ -2193,13 +3506,23 @@ CONFIG_IRQ_REMAP=y # PHY Subsystem # CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_USB_LGM_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set + +# +# PHY drivers for Broadcom platforms +# +# CONFIG_BCM_KONA_USB2_PHY is not set +# end of PHY drivers for Broadcom platforms + # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set +# CONFIG_PHY_INTEL_LGM_EMMC is not set # end of PHY Subsystem -# CONFIG_POWERCAP is not set +CONFIG_POWERCAP=y +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set # CONFIG_MCB is not set # @@ -2207,7 +3530,8 @@ CONFIG_BCM_KONA_USB2_PHY=y # # end of Performance monitor support -# CONFIG_RAS is not set +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set # CONFIG_USB4 is not set # @@ -2220,6 +3544,7 @@ CONFIG_BCM_KONA_USB2_PHY=y # CONFIG_DAX is not set CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_RMEM is not set # # HW tracing support @@ -2230,6 +3555,7 @@ CONFIG_NVMEM_SYSFS=y # CONFIG_FPGA is not set # CONFIG_TEE is not set +CONFIG_PM_OPP=y # CONFIG_UNISYS_VISORBUS is not set # CONFIG_SIOX is not set # CONFIG_SLIMBUS is not set @@ -2254,24 +3580,32 @@ CONFIG_DCACHE_WORD_ACCESS=y # CONFIG_F2FS_FS is not set # CONFIG_FS_DAX is not set CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y # CONFIG_FS_ENCRYPTION is not set # CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QUOTACTL=y # CONFIG_AUTOFS4_FS is not set # CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set +# CONFIG_FUSE_FS is not set # CONFIG_OVERLAY_FS is not set # # Caches # +CONFIG_NETFS_SUPPORT=y +# CONFIG_NETFS_STATS is not set # CONFIG_FSCACHE is not set # end of Caches @@ -2291,8 +3625,10 @@ CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" # CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set +CONFIG_EXFAT_FS=y +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" # CONFIG_NTFS_FS is not set +# CONFIG_NTFS3_FS is not set # end of DOS/FAT/EXFAT/NT Filesystems # @@ -2302,14 +3638,18 @@ CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_CHILDREN=y CONFIG_PROC_PID_ARCH_STATUS=y CONFIG_KERNFS=y CONFIG_SYSFS=y CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_POSIX_ACL=y CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set CONFIG_MEMFD_CREATE=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y # CONFIG_CONFIGFS_FS is not set @@ -2320,27 +3660,14 @@ CONFIG_MISC_FILESYSTEMS=y # CONFIG_ORANGEFS_FS is not set # CONFIG_ADFS_FS is not set # CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set # CONFIG_HFS_FS is not set # CONFIG_HFSPLUS_FS is not set # CONFIG_BEFS_FS is not set # CONFIG_BFS_FS is not set # CONFIG_EFS_FS is not set # CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_SQUASHFS is not set # CONFIG_VXFS_FS is not set # CONFIG_MINIX_FS is not set # CONFIG_OMFS_FS is not set @@ -2348,20 +3675,38 @@ CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 # CONFIG_QNX4FS_FS is not set # CONFIG_QNX6FS_FS is not set # CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_RAM is not set +# CONFIG_PSTORE_BLK is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set # CONFIG_EROFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NFS_FS is not set +# CONFIG_NFSD is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set +# CONFIG_SMB_SERVER is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_9P_FS=y # CONFIG_9P_FS_POSIX_ACL is not set # CONFIG_9P_FS_SECURITY is not set CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_DEFAULT="utf8" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set @@ -2385,8 +3730,8 @@ CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_ISO8859_8 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ASCII is not set +CONFIG_NLS_ISO8859_1=y # CONFIG_NLS_ISO8859_2 is not set # CONFIG_NLS_ISO8859_3 is not set # CONFIG_NLS_ISO8859_4 is not set @@ -2418,12 +3763,18 @@ CONFIG_IO_WQ=y # # Security options # -# CONFIG_KEYS is not set +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_PAGE_TABLE_ISOLATION=y CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set # CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set # CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set @@ -2457,29 +3808,32 @@ CONFIG_CRYPTO_SKCIPHER=y CONFIG_CRYPTO_SKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y CONFIG_CRYPTO_KPP2=y CONFIG_CRYPTO_ACOMP2=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y # CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set CONFIG_CRYPTO_NULL=y CONFIG_CRYPTO_NULL2=y # CONFIG_CRYPTO_PCRYPT is not set # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set # # Public-key cryptography # -# CONFIG_CRYPTO_RSA is not set +CONFIG_CRYPTO_RSA=y # CONFIG_CRYPTO_DH is not set # CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECDSA is not set # CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set # CONFIG_CRYPTO_CURVE25519 is not set # CONFIG_CRYPTO_CURVE25519_X86 is not set @@ -2492,19 +3846,19 @@ CONFIG_CRYPTO_AUTHENC=y # CONFIG_CRYPTO_AEGIS128 is not set # CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set # CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y +# CONFIG_CRYPTO_ECHAINIV is not set # # Block modes # -CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CBC is not set # CONFIG_CRYPTO_CFB is not set # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_ECB is not set # CONFIG_CRYPTO_LRW is not set # CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_PCBC is not set # CONFIG_CRYPTO_XTS is not set # CONFIG_CRYPTO_KEYWRAP is not set # CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set @@ -2516,14 +3870,14 @@ CONFIG_CRYPTO_PCBC=y # Hash modes # # CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_HMAC is not set # CONFIG_CRYPTO_XCBC is not set # CONFIG_CRYPTO_VMAC is not set # # Digest # -CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C is not set # CONFIG_CRYPTO_CRC32C_INTEL is not set # CONFIG_CRYPTO_CRC32 is not set # CONFIG_CRYPTO_CRC32_PCLMUL is not set @@ -2539,20 +3893,16 @@ CONFIG_CRYPTO_CRCT10DIF=y # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y # CONFIG_CRYPTO_SHA1_SSSE3 is not set # CONFIG_CRYPTO_SHA256_SSSE3 is not set # CONFIG_CRYPTO_SHA512_SSSE3 is not set CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_SM3 is not set # CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set @@ -2562,8 +3912,6 @@ CONFIG_CRYPTO_SHA512=y CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_TI is not set # CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_BLOWFISH_X86_64 is not set # CONFIG_CRYPTO_CAMELLIA is not set @@ -2574,20 +3922,18 @@ CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set # CONFIG_CRYPTO_CAST6 is not set # CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_DES3_EDE_X86_64 is not set # CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set # CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set # CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set # CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set # CONFIG_CRYPTO_TWOFISH is not set # CONFIG_CRYPTO_TWOFISH_X86_64 is not set # CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set @@ -2607,66 +3953,84 @@ CONFIG_CRYPTO_LZO=y # Random Number Generation # # CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set # CONFIG_CRYPTO_USER_API_HASH is not set # CONFIG_CRYPTO_USER_API_SKCIPHER is not set # CONFIG_CRYPTO_USER_API_RNG is not set # CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_HASH_INFO=y CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_PADLOCK is not set # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=y +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=y +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set # CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set # CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set # CONFIG_CRYPTO_DEV_SAFEXCEL is not set # CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y # # Certificates for signature checking # +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set # end of Certificates for signature checking +CONFIG_BINARY_PRINTF=y + # # Library routines # +CONFIG_LINEAR_RANGES=y # CONFIG_PACKING is not set CONFIG_BITREVERSE=y CONFIG_GENERIC_STRNCPY_FROM_USER=y CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y # CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_IOMAP=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y +# CONFIG_CRYPTO_LIB_CHACHA is not set +# CONFIG_CRYPTO_LIB_CURVE25519 is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +# CONFIG_CRYPTO_LIB_POLY1305 is not set +# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_LIB_SHA256=y +# end of Crypto library routines + # CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y +# CONFIG_CRC16 is not set CONFIG_CRC_T10DIF=y # CONFIG_CRC_ITU_T is not set CONFIG_CRC32=y @@ -2680,6 +4044,7 @@ CONFIG_CRC32_SLICEBY8=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set # CONFIG_CRC8 is not set +CONFIG_XXHASH=y # CONFIG_RANDOM32_SELFTEST is not set CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y @@ -2692,10 +4057,13 @@ CONFIG_XZ_DEC_X86=y # CONFIG_XZ_DEC_ARM is not set # CONFIG_XZ_DEC_ARMTHUMB is not set # CONFIG_XZ_DEC_SPARC is not set +# CONFIG_XZ_DEC_MICROLZMA is not set CONFIG_XZ_DEC_BCJ=y # CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y CONFIG_GENERIC_ALLOCATOR=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y @@ -2704,11 +4072,18 @@ CONFIG_NEED_DMA_MAP_STATE=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y CONFIG_SWIOTLB=y # CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set CONFIG_SGL_ALLOC=y CONFIG_CPU_RMAP=y CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y @@ -2720,11 +4095,13 @@ CONFIG_FONT_8x16=y CONFIG_SG_POOL=y CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y CONFIG_ARCH_STACKWALK=y CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set # end of Library routines +CONFIG_PLDMFW=y + # # Kernel hacking # @@ -2732,35 +4109,32 @@ CONFIG_SBITMAP=y # # printk and dmesg options # -# CONFIG_PRINTK_TIME is not set +CONFIG_PRINTK_TIME=y # CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set +CONFIG_DEBUG_BUGVERBOSE=y # end of printk and dmesg options # # Compile-time checks and compiler options # -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y # CONFIG_READABLE_ASM is not set # CONFIG_HEADERS_INSTALL is not set # CONFIG_DEBUG_SECTION_MISMATCH is not set CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set # end of Compile-time checks and compiler options @@ -2768,45 +4142,67 @@ CONFIG_STACK_VALIDATION=y # Generic Kernel Debugging Instruments # CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 CONFIG_MAGIC_SYSRQ_SERIAL=y CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y # CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y # end of Generic Kernel Debugging Instruments CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_MISC=y +# +# Networking Debugging +# +# CONFIG_NET_DEV_REFCNT_TRACKER is not set +# CONFIG_NET_NS_REFCNT_TRACKER is not set +# end of Networking Debugging + # # Memory Debugging # -# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_EXTENSION=y # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_PAGE_TABLE_CHECK is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_DEBUG_WX=y CONFIG_GENERIC_PTDUMP=y +CONFIG_PTDUMP_CORE=y # CONFIG_PTDUMP_DEBUGFS is not set # CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set +# CONFIG_DEBUG_SLAB is not set CONFIG_HAVE_DEBUG_KMEMLEAK=y # CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y # CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y # CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_DEBUG_MEMORY_INIT=y # CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set CONFIG_HAVE_ARCH_KASAN=y CONFIG_HAVE_ARCH_KASAN_VMALLOC=y CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y # CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 +CONFIG_HAVE_ARCH_KFENCE=y +# CONFIG_KFENCE is not set # end of Memory Debugging # CONFIG_DEBUG_SHIRQ is not set @@ -2816,26 +4212,33 @@ CONFIG_KASAN_STACK=1 # # CONFIG_PANIC_ON_OOPS is not set CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 CONFIG_DETECT_HUNG_TASK=y CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 # CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set # end of Debug Oops, Lockups and Hangs # # Scheduler Debugging # -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y # end of Scheduler Debugging # CONFIG_DEBUG_TIMEKEEPING is not set +CONFIG_DEBUG_PREEMPT=y # # Lock Debugging (spinlocks, mutexes, etc...) @@ -2853,16 +4256,19 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set # CONFIG_LOCK_TORTURE_TEST is not set # CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set # end of Lock Debugging (spinlocks, mutexes, etc...) -# CONFIG_STACKTRACE is not set +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set # CONFIG_DEBUG_KOBJECT is not set # # Debug kernel data structures # -# CONFIG_DEBUG_LIST is not set +CONFIG_DEBUG_LIST=y # CONFIG_DEBUG_PLIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_DEBUG_NOTIFIERS is not set @@ -2874,48 +4280,97 @@ CONFIG_LOCK_DEBUGGING_SUPPORT=y # # RCU Debugging # -# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_SCALE_TEST is not set # CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 # CONFIG_RCU_TRACE is not set # CONFIG_RCU_EQS_DEBUG is not set # end of RCU Debugging # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set # CONFIG_LATENCYTOP is not set CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y +CONFIG_BUILDTIME_MCOUNT_SORT=y +CONFIG_TRACER_MAX_TRACE=y CONFIG_TRACE_CLOCK=y CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_PREEMPT_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_BLK_DEV_IO_TRACE is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +# CONFIG_SYNTH_EVENTS is not set +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_FTRACE_SORT_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y # CONFIG_STRICT_DEVMEM is not set # # x86 Debugging # -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +# CONFIG_X86_VERBOSE_BOOTUP is not set CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_EARLY_PRINTK_USB_XDBC is not set # CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y # CONFIG_DEBUG_TLBFLUSH is not set CONFIG_HAVE_MMIOTRACE_SUPPORT=y # CONFIG_X86_DECODER_SELFTEST is not set @@ -2927,10 +4382,10 @@ CONFIG_IO_DELAY_0X80=y # CONFIG_CPA_DEBUG is not set # CONFIG_DEBUG_ENTRY is not set # CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set +CONFIG_X86_DEBUG_FPU=y # CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set # CONFIG_UNWINDER_GUESS is not set # end of x86 Debugging @@ -2943,36 +4398,8 @@ CONFIG_UNWINDER_FRAME_POINTER=y CONFIG_ARCH_HAS_KCOV=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y # CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +CONFIG_ARCH_USE_MEMTEST=y # CONFIG_MEMTEST is not set # end of Kernel Testing and Coverage # end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile index 44b8f8b0..3d1fc024 100644 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ b/mainboards/digitalloggers/atomicpi/Makefile @@ -174,6 +174,11 @@ cpukernel-5.10: cpu.cpio.lzma cpu.config-5.10 (cd linux-5.10 && make oldconfig && make -j32) cp linux-5.10/arch/x86/boot/bzImage $@ +dutkernel-5.10: dut.cpio.lzma dut.config-5.10 + cp dut.config-5.10 linux-5.10/.config + (cd linux-5.10 && make oldconfig && make -j32) + cp linux-5.10/arch/x86/boot/bzImage $@ + cpuflashkernel: cpu.cpio.lzma cpuflash.config cp cpuflash.config linux/.config (cd linux && make oldconfig && make -j32) @@ -212,6 +217,12 @@ cpu.cpio.lzma: Makefile github.com/u-root/cpu/cmds/cpud lzma -f -k cpu.cpio +dut.cpio.lzma: Makefile + u-root -o dut.cpio -build=bb -initcmd=dut -files ~/.ssh/cpu_rsa.pub:key.pub \ + -defaultsh="" \ + github.com/u-root/cpu/cmds/cpud + lzma -f -k cpu.cpio + # this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc # the intent is to demonstrate the capability of http loading. # It depends on the kernel setting the IP address. diff --git a/mainboards/sunxi/nezha/Makefile b/mainboards/sunxi/nezha/Makefile index 2a4d746a..04259b09 100644 --- a/mainboards/sunxi/nezha/Makefile +++ b/mainboards/sunxi/nezha/Makefile @@ -17,9 +17,10 @@ cpukernel: cpu.cpio.xz cpu.config # It depends on the kernel setting the IP address. # You need ip=dhcp OR ip=fixed.ip.address.here in the command line cpu.cpio: Makefile - GO111MODULE=off GOARCH=riscv64 CGO_ENABLED=0 u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ + GOARCH=riscv64 CGO_ENABLED=0 u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ + -uroot-source $(HOME)/go/src/github.com/u-root/u-root \ core \ - github.com/u-root/cpu/cmds/cpud + $(HOME)/go/src/github.com/u-root/cpu/cmds/cpud cpu.cpio.xz: cpu.cpio xz --check=crc32 -9 --lzma2=dict=1MiB --stdout cpu.cpio | dd conv=sync bs=512 of=cpu.cpio.xz From 29e6406b19efd6b5468ef07625e0260b9061d89b Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Sun, 12 Mar 2023 14:47:11 +0700 Subject: [PATCH 075/132] ampere/jade: Fix geturoot failling to download u-root/cpu For go version 1.17, the 'go get' command is a combination of downloading and installing a package. We have to use -d flag to skip installing the package. For future go versions, the -d flag will be enabled by default, so we have to use 'go install' to install the package instead. This patch also fixes the go/u-root version to avoid unexpected compatibility issue between golang and u-root. Without specifying the version, the go always gets the latest version. Signed-off-by: Nhi Pham --- mainboards/ampere/jade/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 52472663..6746d548 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -79,8 +79,8 @@ getkernel: (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make tinyconfig) geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... + go install github.com/u-root/u-root@v0.9.0 + go get -d github.com/u-root/cpu/... # Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom sshd-pxeserver: From c72e4994185dc6c797cce00146e6bef8efc01e78 Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Sun, 12 Mar 2023 15:05:38 +0700 Subject: [PATCH 076/132] ampere/jade: Specify the -uroot-source path Signed-off-by: Nhi Pham --- mainboards/ampere/jade/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 6746d548..19b9a07c 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -21,7 +21,7 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - GO111MODULE=off GOARCH=arm64 u-root -uinitcmd=systemboot -o $@ core \ + GO111MODULE=off GOARCH=arm64 u-root -uroot-source ${GOPATH}/src/github.com/u-root/u-root -uinitcmd=systemboot -o $@ core \ github.com/u-root/u-root/cmds/boot/systemboot \ github.com/u-root/u-root/cmds/boot/localboot \ github.com/u-root/u-root/cmds/boot/fbnetboot \ From f632136b6d3f9d0fddd5c50c564c57ca569fdab9 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Tue, 19 Dec 2023 17:11:30 +0800 Subject: [PATCH 077/132] qemu/x86_64: Adjust QEMU parameters Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/qemu/x86_64/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/qemu/x86_64/Makefile b/mainboards/qemu/x86_64/Makefile index ed19a6e6..ce4bc62d 100644 --- a/mainboards/qemu/x86_64/Makefile +++ b/mainboards/qemu/x86_64/Makefile @@ -36,7 +36,7 @@ efikernel: flash.config cp linux/arch/x86/boot/bzImage $@ testflashkernel: flashkernel flashinitramfs.cpio - qemu-system-x86_64 -m 8192 -kernel flashkernel -nographic -serial stdio -initrd flashinitramfs.cpio -monitor $(MONITOR) $(EXTRA) + qemu-system-x86_64 -m 512 -kernel flashkernel -nographic -serial mon:stdio -initrd flashinitramfs.cpio testefikernel: efikernel flashinitramfs.cpio qemu-system-x86_64 -bios $(OVMF_BIN) -nographic \ From 4831fcc9041c00ab6a7ddf3b70f008c6e53baa9b Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Tue, 19 Dec 2023 17:16:25 +0800 Subject: [PATCH 078/132] qemu/arm64: Adjust QEMU parameters Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/qemu/arm64/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mainboards/qemu/arm64/Makefile b/mainboards/qemu/arm64/Makefile index ae245b45..b3fba408 100644 --- a/mainboards/qemu/arm64/Makefile +++ b/mainboards/qemu/arm64/Makefile @@ -29,8 +29,7 @@ testflashkernel: flashkernel flashinitramfs.cpio -nographic -machine virt -cpu cortex-a57 -m 512 -serial mon:stdio -serial null \ -initrd flashinitramfs.cpio \ -kernel flashkernel \ - -append console=ttyAMA0,115200 \ - -monitor $(MONITOR) $(EXTRA) + -append console=ttyAMA0,115200 fetch: getkernel geturoot From a297524f04cbf2f53090d815e2fec7ce9626de87 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Fri, 22 Dec 2023 13:10:32 +0800 Subject: [PATCH 079/132] Add more file types for .gitignore Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- .gitignore | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c5266998..a52f8cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,14 @@ Module.symvers Mkfile.old dkms.conf +# Kernel +linux/ + +# Build artifacts +*.cpio +bzImage +flashkernel + # Other things .*.swp *.xz @@ -63,9 +71,9 @@ dkms.conf *.tgz *.img *.rom -*.cpio typescript* config/*.old +*.Log *.log *~ crossgcc @@ -84,7 +92,6 @@ blobs/*/volume* bin/create-ffs.utk bin/utk edk2 -bzImage boards/*/volume-* .config *.raw From f648c931057a040bdb8acdf4c45bf2df8b113b18 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Fri, 22 Dec 2023 13:05:13 +0800 Subject: [PATCH 080/132] mainboards: Add docker build support Add docker build support to unify the build environment for mainboards. Current supported mainboards: Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/Dockerfile | 52 +++++++++++++++++++++++++++++++++++++++++++ mainboards/Makefile | 49 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 mainboards/Dockerfile diff --git a/mainboards/Dockerfile b/mainboards/Dockerfile new file mode 100644 index 00000000..84365c11 --- /dev/null +++ b/mainboards/Dockerfile @@ -0,0 +1,52 @@ +FROM ubuntu:latest + + +LABEL description="Build environment for Linuxboot mainboards" + +# Working directory for mounting git repo in +RUN mkdir /linuxboot-mainboards +WORKDIR /linuxboot-mainboards + +# Install dependencies +RUN apt-get update +RUN apt-get install -y \ + gcc-aarch64-linux-gnu \ + gcc-arm-linux-gnueabi \ + gcc-arm-linux-gnueabihf \ + gcc-riscv64-linux-gnu \ + libelf-dev \ + u-boot-tools \ + acpica-tools \ + bc \ + bison \ + build-essential \ + cpio \ + flex \ + kmod \ + libncurses5-dev \ + libssl-dev \ + nasm \ + qemu-system \ + uuid-dev \ + wget \ + git \ + ssh + +# install golang +RUN wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz +RUN rm -rf /usr/local/go && \ + tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz +ENV GOPATH="/root/go" +ENV GOROOT="/usr/local/go" +ENV PATH="$PATH:/root/go/bin:/usr/local/go/bin" +RUN go env -w GO111MODULE=off + + +# Fake sshkey +RUN mkdir ~/.ssh && touch ~/.ssh/cpu_rsa.pub +# RUN touch tyan7106/key.pub +# RUN touch tyan7106/ssh_host_rsa_key + + + +ENTRYPOINT ["/bin/bash", "-l", "-c"] \ No newline at end of file diff --git a/mainboards/Makefile b/mainboards/Makefile index c8fee15c..669c41d7 100644 --- a/mainboards/Makefile +++ b/mainboards/Makefile @@ -1,3 +1,5 @@ +CONTAINER_NAME := linuxboot-mainboards + all: echo pick one of debian-packages or repos @@ -11,3 +13,50 @@ getmecleaner: go get -u github.com/u-root/cpu/... git clone https://github.com/corna/me_cleaner @echo Now add $(PWD)/me_cleaner to PATH + + +docker-build: Dockerfile + docker build -t $(CONTAINER_NAME) -f $< . + +docker-run-aeeon-up: docker-build + docker run --rm -v "$(shell pwd)/aeeon/up":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + + +docker-run-aeeon-upxtreme: docker-build + docker run --rm -v "$(shell pwd)/aeeon/upxtreme":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-bytedance-g220a: docker-build + docker run --rm -v "$(shell pwd)/bytedance/g220a":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-digitallogger-atomicpi: docker-build + docker run --rm -v "$(shell pwd)/digitalloggers/atomicpi":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-amd-rome: docker-build + docker run --rm -v "$(shell pwd)/amd/rome":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-ampere-jade: docker-build + docker run --rm -v "$(shell pwd)/ampere/jade":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-cubie-board: docker-build + docker run --rm -v "$(shell pwd)/cubie/board":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-intel-hw: docker-build + docker run --rm -v "$(shell pwd)/intel/hw":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-intel-s2600: docker-build + docker run --rm -v "$(shell pwd)/intel/s2600":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-lenovo-sr630: docker-build + docker run --rm -v "$(shell pwd)/lenovo/sr630":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-marvel-macchiatobin: docker-build + docker run --rm -v "$(shell pwd)/marvel/macchiatobin":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-opentitanpilot-dresden: docker-build + docker run --rm -v "$(shell pwd)/opentitanpilot/dresden":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-pcengines-apu2: docker-build + docker run --rm -v "$(shell pwd)/pcengines/apu2":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-qemu-x86-64: docker-build + docker run --rm -v "$(shell pwd)/qemu/x86_64":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' \ No newline at end of file From 828da469b290b2056ab166c375f365d77612c996 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Fri, 22 Dec 2023 17:06:30 +0800 Subject: [PATCH 081/132] mainboards: Fix kernel version to pass CI Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/aeeon/upxtreme/Makefile | 2 +- mainboards/bytedance/g220a/Makefile | 2 +- mainboards/digitalloggers/atomicpi/Makefile | 2 +- mainboards/intel/s2600/Makefile | 2 +- mainboards/lenovo/sr630/Makefile | 4 +--- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/mainboards/aeeon/upxtreme/Makefile b/mainboards/aeeon/upxtreme/Makefile index 07c1b7c1..c3118859 100644 --- a/mainboards/aeeon/upxtreme/Makefile +++ b/mainboards/aeeon/upxtreme/Makefile @@ -239,7 +239,7 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/bytedance/g220a/Makefile b/mainboards/bytedance/g220a/Makefile index 3dbd20b3..4d86bc19 100644 --- a/mainboards/bytedance/g220a/Makefile +++ b/mainboards/bytedance/g220a/Makefile @@ -33,7 +33,7 @@ fetch: getkernel geturoot getfiano getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile index 3d1fc024..87870c8a 100644 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ b/mainboards/digitalloggers/atomicpi/Makefile @@ -261,7 +261,7 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getlinux-5.4: rm -rf linux-5.4 diff --git a/mainboards/intel/s2600/Makefile b/mainboards/intel/s2600/Makefile index 97db5ffe..46c0b9d9 100644 --- a/mainboards/intel/s2600/Makefile +++ b/mainboards/intel/s2600/Makefile @@ -211,7 +211,7 @@ fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/lenovo/sr630/Makefile b/mainboards/lenovo/sr630/Makefile index b3c0d14d..84011c37 100644 --- a/mainboards/lenovo/sr630/Makefile +++ b/mainboards/lenovo/sr630/Makefile @@ -57,9 +57,7 @@ bzImage: fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz - xzcat kernel.xz | tar x - mv linux-4.14.111 linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk go install github.com/linuxboot/fiano/cmds/utk From 2b68bc345af23a7e5e995cbdaad409ff58713ebb Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Wed, 20 Dec 2023 10:28:38 +0800 Subject: [PATCH 082/132] ampere/jade: Upgrade kernel to 5.15 Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/ampere/jade/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 19b9a07c..af59da3d 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -74,7 +74,7 @@ fetch: getkernel geturoot getkernel: rm -rf linux - git clone --depth=1 -b v5.7 --single-branch https://github.com/torvalds/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux (cd linux && make mrproper) (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make tinyconfig) From 84d85c432b1b32919fa1f1d52e9c865e40790e42 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Wed, 20 Dec 2023 17:02:15 +0800 Subject: [PATCH 083/132] ampere/jade: Fix patch and go get for cpud Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- .../0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch | 2 +- mainboards/ampere/jade/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch index 5020351c..09a90a10 100644 --- a/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch +++ b/mainboards/ampere/jade/0001-efistub-Workaround-Linuxboot-for-Ubuntu-20.04.patch @@ -24,7 +24,7 @@ index 46cffac7a..738bd14a9 100644 + if (status) + goto fdt_set_fail; + - if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) { + if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && !efi_nokaslr) { efi_status_t efi_status; -- diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index af59da3d..37092ca8 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -79,8 +79,8 @@ getkernel: (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make tinyconfig) geturoot: - go install github.com/u-root/u-root@v0.9.0 - go get -d github.com/u-root/cpu/... + GO111MODULE=off go get -u github.com/u-root/u-root + GO111MODULE=off go get -u github.com/u-root/cpu/... # Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom sshd-pxeserver: From 27a1b3f1d2d27749bf58765daa8de3fb2f2960f5 Mon Sep 17 00:00:00 2001 From: Chiao Yang Date: Fri, 22 Dec 2023 13:08:43 +0800 Subject: [PATCH 084/132] intel/generic: correct typo Signed-off-by: Chiao Yang Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/intel/generic/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainboards/intel/generic/Makefile b/mainboards/intel/generic/Makefile index 3e0f833b..0c874b4f 100644 --- a/mainboards/intel/generic/Makefile +++ b/mainboards/intel/generic/Makefile @@ -91,7 +91,7 @@ getfiano: go install github.com/linuxboot/fiano/cmds/utk getrom: @echo If you plan to flash to hardware, - @echo you will need to get a rom imagei + @echo you will need to get a rom image @echo and put it in rom.bin @echo you can get it via wget, flashrom, whatever. @echo If you are not targeting hardware, you can From bad5a12b608c443d0f6ebf7f5ad5b6283315668f Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 13:53:02 +0800 Subject: [PATCH 085/132] hpe/dl360gen10: Update kernel version and config update kernel version and config to 5.15 cofig-5.15 is same as config-5.4 Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/hpe/dl360gen10/Makefile | 6 +- mainboards/hpe/dl360gen10/config-5.15.0 | 2945 +++++++++++++++++++++++ 2 files changed, 2948 insertions(+), 3 deletions(-) create mode 100644 mainboards/hpe/dl360gen10/config-5.15.0 diff --git a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile index 1be97ef6..d37bc40c 100644 --- a/mainboards/hpe/dl360gen10/Makefile +++ b/mainboards/hpe/dl360gen10/Makefile @@ -1,6 +1,6 @@ MAJOR ?= 5 -STABLE = $(MAJOR).4 -CONFIG ?= $(MAJOR).4.0 +STABLE = $(MAJOR).15 +CONFIG ?= $(MAJOR).15.0 KEYPATH ?= "" default: build @@ -150,5 +150,5 @@ getrom: @echo and run that kernel via qemu geturoot: - go get -v -u github.com/u-root/u-root + go get -u github.com/u-root/u-root diff --git a/mainboards/hpe/dl360gen10/config-5.15.0 b/mainboards/hpe/dl360gen10/config-5.15.0 new file mode 100644 index 00000000..4b2260ad --- /dev/null +++ b/mainboards/hpe/dl360gen10/config-5.15.0 @@ -0,0 +1,2945 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70400 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_HEADER_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_NOCB_CPU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +# CONFIG_FHANDLE is not set +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_PROFILING=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_64BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_ZPODD=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=3 +CONFIG_SATA_AHCI_PLATFORM=y +CONFIG_SATA_INIC162X=y +CONFIG_SATA_ACARD_AHCI=y +CONFIG_SATA_SIL24=y +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +CONFIG_SATA_DWC=y +# CONFIG_SATA_DWC_OLD_DMA is not set +# CONFIG_SATA_DWC_DEBUG is not set +CONFIG_SATA_MV=y +CONFIG_SATA_NV=y +CONFIG_SATA_PROMISE=y +CONFIG_SATA_SIL=y +CONFIG_SATA_SIS=y +CONFIG_SATA_SVW=y +CONFIG_SATA_ULI=y +CONFIG_SATA_VIA=y +CONFIG_SATA_VITESSE=y + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +CONFIG_PATA_HPT3X3=y +# CONFIG_PATA_HPT3X3_DMA is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SCH is not set +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +CONFIG_PATA_SIS=y +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_PCMCIA is not set +# CONFIG_PATA_PLATFORM is not set +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +CONFIG_ATA_GENERIC=y +# CONFIG_PATA_LEGACY is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +CONFIG_TIGON3=y +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +# CONFIG_NET_VENDOR_BROCADE is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_GOOGLE=y +# CONFIG_GVE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +# CONFIG_USB_NET_DRIVERS is not set +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_NVRAM=y +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set +# end of I2C Algorithms + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set +# end of USB HID support +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +CONFIG_USB_ULPI_BUS=y +CONFIG_USB_CONN_GPIO=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +CONFIG_USB_DYNAMIC_MINORS=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=y +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=y + +# +# USB Host Controller Drivers +# +CONFIG_USB_C67X00_HCD=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_PCI=y +CONFIG_USB_XHCI_PLATFORM=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_EHCI_FSL=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OXU210HP_HCD=y +CONFIG_USB_ISP116X_HCD=y +CONFIG_USB_FOTG210_HCD=y +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=y +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SL811_CS=m +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=y +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=y +CONFIG_USB_STORAGE_FREECOM=y +CONFIG_USB_STORAGE_ISD200=y +CONFIG_USB_STORAGE_USBAT=y +CONFIG_USB_STORAGE_SDDR09=y +CONFIG_USB_STORAGE_SDDR55=y +CONFIG_USB_STORAGE_JUMPSHOT=y +CONFIG_USB_STORAGE_ALAUDA=y +CONFIG_USB_STORAGE_ONETOUCH=y +CONFIG_USB_STORAGE_KARMA=y +CONFIG_USB_STORAGE_CYPRESS_ATACB=y +CONFIG_USB_STORAGE_ENE_UB6250=y +CONFIG_USB_UAS=y + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_CDNS3 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ROLE_SWITCH is not set + +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set + +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +# CONFIG_INTEL_IOMMU is not set +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_QCOM_USB_HS is not set +# CONFIG_PHY_QCOM_USB_HSIC is not set +# CONFIG_PHY_TUSB1210 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +CONFIG_UDF_FS=y +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking From 0ee818cbca6c23d09c162a81b1eb8d1701531272 Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 13:55:41 +0800 Subject: [PATCH 086/132] intel/generic: Update kernel version and config update kernel version and config to 5.15 config-5.15.0 is same as config-5.4.0 Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/intel/generic/Makefile | 4 +- mainboards/intel/generic/config-5.15.0 | 2678 ++++++++++++++++++++++++ 2 files changed, 2680 insertions(+), 2 deletions(-) create mode 100644 mainboards/intel/generic/config-5.15.0 diff --git a/mainboards/intel/generic/Makefile b/mainboards/intel/generic/Makefile index 0c874b4f..191281b2 100644 --- a/mainboards/intel/generic/Makefile +++ b/mainboards/intel/generic/Makefile @@ -1,6 +1,6 @@ MAJOR ?= 5 -STABLE = $(MAJOR).4 -CONFIG ?= $(MAJOR).4.0 +STABLE = $(MAJOR).15 +CONFIG ?= $(MAJOR).15.0 default: build build: diff --git a/mainboards/intel/generic/config-5.15.0 b/mainboards/intel/generic/config-5.15.0 new file mode 100644 index 00000000..30428dae --- /dev/null +++ b/mainboards/intel/generic/config-5.15.0 @@ -0,0 +1,2678 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.4.0 Kernel Configuration +# + +# +# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 +# +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=70400 +CONFIG_CLANG_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y +CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_HEADER_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_NOCB_CPU=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +# CONFIG_FHANDLE is not set +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_BPF_SYSCALL is not set +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_PROFILING=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# end of Performance monitoring + +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_CPU_IDLE_GOV_TEO is not set +# end of CPU Idle + +# CONFIG_INTEL_IDLE is not set +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_X86_SYSFB is not set +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +# end of Binary Emulations + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_RCI2_TABLE is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_64BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_PLUGIN_HOSTCC="" +CONFIG_HAVE_GCC_PLUGINS=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +# end of IO Schedulers + +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_FAST_GUP=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_PTE_DEVMAP=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# end of Memory Management options + +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_IPVTI is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_BPFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_FAILOVER is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_PTM is not set +# CONFIG_PCIE_BW is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support + +# CONFIG_VMD is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_FW_LOADER_COMPRESS is not set +# end of Firmware loader + +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +# end of Generic Driver Options + +# +# Bus devices +# +# end of Bus devices + +# CONFIG_CONNECTOR is not set +# CONFIG_GNSS is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_PVPANIC is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# end of Intel MIC & related support + +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_HABANA_AI is not set +# end of Misc devices + +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_IPVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_GENEVE is not set +# CONFIG_GTP is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +# CONFIG_BNX2 is not set +# CONFIG_CNIC is not set +CONFIG_TIGON3=y +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +# CONFIG_NET_VENDOR_BROCADE is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_GOOGLE=y +# CONFIG_GVE is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_VXGE is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +CONFIG_NET_VENDOR_XILINX=y +# CONFIG_XILINX_AXI_EMAC is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +# CONFIG_ADIN_PHY is not set +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_NETDEVSIM is not set +# CONFIG_NET_FAILOVER is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_NULL_TTY is not set +CONFIG_LDISC_AUTOLOAD=y +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# end of Serial drivers + +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_NVRAM=y +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set +# end of Character devices + +CONFIG_RANDOM_TRUST_CPU=y +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set +# end of I2C Algorithms + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# end of PTP clock support + +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set +# CONFIG_DRM_DP_CEC is not set + +# +# ARM devices +# +# end of ARM devices + +# +# ACP (Audio CoProcessor) Configuration +# +# end of ACP (Audio CoProcessor) Configuration + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# end of Backlight & LCD device support +# end of Graphics support + +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# end of Special HID drivers + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +# end of I2C HID support + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +# end of Intel ISH HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_MFD_CROS_EC is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# end of Common Clock Framework + +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +# CONFIG_INTEL_IOMMU is not set +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Aspeed SoC drivers +# +# end of Aspeed SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_VALIDATE_FS_PARSER is not set +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_AUTOFS_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_VIRTIO_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set +# end of DOS/FAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_UNICODE is not set +# end of File systems + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Public-key cryptography +# +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_ECRDSA is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_AEGIS128 is not set +# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CFB is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set +# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ESSIV is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_XXHASH is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_STREEBOG is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_LIB_DES=y +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SM4 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +# CONFIG_CRYPTO_ZSTD is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set + +# +# Certificates for signature checking +# +# end of Certificates for signature checking + +# +# Library routines +# +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +# CONFIG_CORDIC is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC64 is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_8x16=y +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +# end of Library routines + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +# CONFIG_PRINTK_CALLER is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_INSTALL is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +# CONFIG_KASAN is not set +CONFIG_KASAN_STACK=1 +# end of Memory Debugging + +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# end of Debug Lockups and Hangs + +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITFIELD is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_UBSAN_ALIGNMENT=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of Kernel hacking From 2689e369c494e8b1b4afd1b919f2f28fef27dc8e Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 13:59:46 +0800 Subject: [PATCH 087/132] tyan7106: Update kernel to 5.15 Add key.pub and ssh_host_rsa_key to for docker build. Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/tyan7106/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mainboards/tyan7106/Makefile b/mainboards/tyan7106/Makefile index 87494917..333be048 100644 --- a/mainboards/tyan7106/Makefile +++ b/mainboards/tyan7106/Makefile @@ -49,13 +49,15 @@ bzImage: fetch: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz xzcat kernel.xz | tar x - mv linux-4.14.111 linux + mv linux-5.15 linux go get -u github.com/linuxboot/fiano/cmds/utk wget ftp://ftp.tyan.com/bios/S7106GM2NR-L2_v204.zip - unzip S7106GM2NR-L2_v204.zip + unzip -o S7106GM2NR-L2_v204.zip cp 7106V204.ROM tyan7106.bin + touch key.pub + touch ssh_host_rsa_key go get -u github.com/u-root/u-root go get -u github.com/u-root/cpu/... From 920a693c624a147b8a4adf94e01be52731325930 Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 14:02:43 +0800 Subject: [PATCH 088/132] walmart/robot: Change cross compiler tool to pass CI there is a different between armel and armhf, they adopt different strategies for dealing with floating-point operations. Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/walmart/robot/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mainboards/walmart/robot/Makefile b/mainboards/walmart/robot/Makefile index 229cdc32..d1481123 100644 --- a/mainboards/walmart/robot/Makefile +++ b/mainboards/walmart/robot/Makefile @@ -99,14 +99,11 @@ uroot: flashkernel: Makefile cp config-$(CONFIG) linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make -j32) + (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make -j32) mkimage -C none -A arm -n 'walmart robot' -d linux/arch/arm/boot/zImage -T kernel -a 0xc1000000 -e 0xc1000000 flashkernel cp linux/arch/arm/boot/zImage kernel -fetch: getkernel geturoot getfiano getrom getpackages - -getpackages: - sudo apt install gcc-9-arm-linux-gnueabihf gcc-10-multilib-arm-linux-gnueabihf +fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux From 383b97df300c841d74d933f9cbc333d866437ac2 Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 14:06:07 +0800 Subject: [PATCH 089/132] mainboards: Update docker build support Current support mainboards: aeeon/i11 aeeon/up aeeon/upxtreme amd/rome ampere/jade bytedance/g220a cubie/board digitalloggers/atomicpi hpe/dl360gen10 intel/generic intel/hw intel/minplatform intel/s2600 lenovo/hr630 lenovo/sr630 lenovo/thinkpad marvel/macchiatobin opentitanpilot/dresden pcengines/apu pcengines/apu2 qemu/arm64 qemu/x86_64 seeed/beaglev slimboot solidrun/honeycomblx2k st/st32mp1517c sunxi/nezha tianocore/ovmf tyan7106 walmart/robot Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/mainboards/Makefile b/mainboards/Makefile index 669c41d7..10e6cd1b 100644 --- a/mainboards/Makefile +++ b/mainboards/Makefile @@ -31,6 +31,9 @@ docker-run-bytedance-g220a: docker-build docker-run-digitallogger-atomicpi: docker-build docker run --rm -v "$(shell pwd)/digitalloggers/atomicpi":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-hpe-dl360gen10: docker-build + docker run --rm -v "$(shell pwd)/hpe/dl360gen10":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-amd-rome: docker-build docker run --rm -v "$(shell pwd)/amd/rome":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' @@ -43,20 +46,47 @@ docker-run-cubie-board: docker-build docker-run-intel-hw: docker-build docker run --rm -v "$(shell pwd)/intel/hw":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-intel-generic: docker-build + docker run --rm -v "$(shell pwd)/intel/generic":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-intel-minplatform: docker-build + docker run --rm -v "$(shell pwd)/intel/minplatform":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-intel-s2600: docker-build docker run --rm -v "$(shell pwd)/intel/s2600":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-lenovo-hr630: docker-build + docker run --rm -v "$(shell pwd)/lenovo/hr630":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-lenovo-sr630: docker-build docker run --rm -v "$(shell pwd)/lenovo/sr630":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-lenovo-thinkpad: docker-build + docker run --rm -v "$(shell pwd)/lenovo/thinkpad":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-marvel-macchiatobin: docker-build docker run --rm -v "$(shell pwd)/marvel/macchiatobin":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' docker-run-opentitanpilot-dresden: docker-build docker run --rm -v "$(shell pwd)/opentitanpilot/dresden":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-pcengines-apu: docker-build + docker run --rm -v "$(shell pwd)/pcengines/apu":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-pcengines-apu2: docker-build docker run --rm -v "$(shell pwd)/pcengines/apu2":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' +docker-run-slimboot: docker-build + docker run --rm -v "$(shell pwd)/slimboot":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-st-st32mp1517c: docker-build + docker run --rm -v "$(shell pwd)/st/st32mp1517c":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-tyan7106: docker-build + docker run --rm -v "$(shell pwd)/tyan7106":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + +docker-run-walmart-robot: docker-build + docker run --rm -v "$(shell pwd)/walmart/robot":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' + docker-run-qemu-x86-64: docker-build docker run --rm -v "$(shell pwd)/qemu/x86_64":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' \ No newline at end of file From badd59a0b7bf39e67469279c3e4914f4f9e80e88 Mon Sep 17 00:00:00 2001 From: KuiRong <605470060@gms.tku.edu.tw> Date: Thu, 28 Dec 2023 14:54:41 +0800 Subject: [PATCH 090/132] mainboards: Fix kernel version to pass CI Signed-off-by: KuiRong <605470060@gms.tku.edu.tw> --- mainboards/intel/minplatform/Makefile | 2 +- mainboards/lenovo/hr630/Makefile | 6 +- mainboards/lenovo/hr630/config-5.15.0 | 2385 +++++++++++++++++++++ mainboards/lenovo/sr630/Makefile | 2 +- mainboards/lenovo/sr630/config-5.15.0 | 1654 +++++++++++++++ mainboards/lenovo/thinkpad/Makefile | 6 +- mainboards/lenovo/thinkpad/config-5.15.0 | 2435 ++++++++++++++++++++++ mainboards/pcengines/apu/Makefile | 6 +- mainboards/pcengines/apu/config-5.15.0 | 2222 ++++++++++++++++++++ mainboards/slimboot/Makefile | 6 +- mainboards/slimboot/config-5.15.0 | 2385 +++++++++++++++++++++ mainboards/st/st32mp1517c/Makefile | 2 +- 12 files changed, 11096 insertions(+), 15 deletions(-) create mode 100644 mainboards/lenovo/hr630/config-5.15.0 create mode 100644 mainboards/lenovo/sr630/config-5.15.0 create mode 100644 mainboards/lenovo/thinkpad/config-5.15.0 create mode 100644 mainboards/pcengines/apu/config-5.15.0 create mode 100644 mainboards/slimboot/config-5.15.0 diff --git a/mainboards/intel/minplatform/Makefile b/mainboards/intel/minplatform/Makefile index 04d2bdbc..2439b51b 100644 --- a/mainboards/intel/minplatform/Makefile +++ b/mainboards/intel/minplatform/Makefile @@ -33,7 +33,7 @@ fetch: getkernel geturoot getfiano getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/lenovo/hr630/Makefile b/mainboards/lenovo/hr630/Makefile index b3c0d14d..83dee93e 100644 --- a/mainboards/lenovo/hr630/Makefile +++ b/mainboards/lenovo/hr630/Makefile @@ -51,15 +51,15 @@ uroot: cp *lzma linux bzImage: - cp config-4.14.111 linux/.config + cp config-5.15.0 linux/.config (cd linux && make oldconfig && make -j32) fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz xzcat kernel.xz | tar x - mv linux-4.14.111 linux + mv linux-5.15 linux getfiano: go get -u github.com/linuxboot/fiano/cmds/utk go install github.com/linuxboot/fiano/cmds/utk diff --git a/mainboards/lenovo/hr630/config-5.15.0 b/mainboards/lenovo/hr630/config-5.15.0 new file mode 100644 index 00000000..668213a2 --- /dev/null +++ b/mainboards/lenovo/hr630/config-5.15.0 @@ -0,0 +1,2385 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.14.111 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_FHANDLE is not set +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +CONFIG_RCU_NOCB_CPU=y +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_POSIX_TIMERS=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_ADVISE_SYSCALLS=y +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +CONFIG_MEMBARRIER=y +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +CONFIG_PROFILING=y +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_RCU_TABLE_INVALIDATE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +# CONFIG_IOSCHED_CFQ is not set +CONFIG_DEFAULT_NOOP=y +CONFIG_DEFAULT_IOSCHED="noop" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +# CONFIG_FREEZER is not set + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_INTEL_MPX is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_VERIFY_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_HT_IRQ is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_CONNECTOR is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +CONFIG_DUMMY=y +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_FM10K is not set +# CONFIG_NET_VENDOR_I825XX is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +# CONFIG_REALTEK_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set + +# +# FSI support +# +# CONFIG_FSI is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FSNOTIFY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_EFI is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_GF128MUL is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +# CONFIG_DMA_NOOP_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +# CONFIG_SG_SPLIT is not set +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/sr630/Makefile b/mainboards/lenovo/sr630/Makefile index 84011c37..15616779 100644 --- a/mainboards/lenovo/sr630/Makefile +++ b/mainboards/lenovo/sr630/Makefile @@ -51,7 +51,7 @@ uroot: cp *lzma linux bzImage: - cp config-4.14.111 linux/.config + cp config-5.15.0 linux/.config (cd linux && make oldconfig && make -j32) fetch: getkernel geturoot getfiano getrom diff --git a/mainboards/lenovo/sr630/config-5.15.0 b/mainboards/lenovo/sr630/config-5.15.0 new file mode 100644 index 00000000..a0c4f7e8 --- /dev/null +++ b/mainboards/lenovo/sr630/config-5.15.0 @@ -0,0 +1,1654 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.14.111 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_BROKEN_ON_SMP=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="(none)" +# CONFIG_SYSVIPC is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_FHANDLE is not set +# CONFIG_USELIB is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_HZ_PERIODIC=y +# CONFIG_NO_HZ_IDLE is not set +# CONFIG_NO_HZ is not set +# CONFIG_HIGH_RES_TIMERS is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TINY_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TINY_SRCU=y +# CONFIG_TASKS_RCU is not set +# CONFIG_RCU_STALL_COMMON is not set +# CONFIG_RCU_NEED_SEGCBLIST is not set +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="../initramfs.linux_amd64.cpio.lzma" +CONFIG_RD_GZIP=n +CONFIG_RD_BZIP2=n +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=n +CONFIG_RD_LZ4=n +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL is not set +# CONFIG_POSIX_TIMERS is not set +# CONFIG_KALLSYMS is not set +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_BASE_FULL is not set +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +# CONFIG_SIGNALFD is not set +# CONFIG_TIMERFD is not set +# CONFIG_EVENTFD is not set +# CONFIG_BPF_SYSCALL is not set +# CONFIG_SHMEM is not set +# CONFIG_AIO is not set +# CONFIG_ADVISE_SYSCALLS is not set +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +# CONFIG_MEMBARRIER is not set +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +# CONFIG_SLUB is not set +CONFIG_SLOB=y +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +# CONFIG_PROFILING is not set +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_RCU_TABLE_INVALIDATE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=1 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +# CONFIG_BLOCK is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +# CONFIG_FREEZER is not set + +# +# Processor type and features +# +# CONFIG_ZONE_DMA is not set +# CONFIG_SMP is not set +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_PROCESSOR_SELECT is not set +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +# CONFIG_DMI is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +CONFIG_NR_CPUS=1 +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_UP_LATE_INIT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# CONFIG_VM86 is not set +CONFIG_X86_VSYSCALL_EMULATION=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_NEED_PER_CPU_KM=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +CONFIG_ARCH_HAS_ZONE_DEVICE=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_MTRR is not set +# CONFIG_ARCH_RANDOM is not set +# CONFIG_X86_SMAP is not set +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_EFI is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +# CONFIG_SCHED_HRTICK is not set +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_VERIFY_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +# CONFIG_CPU_FREQ is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +# CONFIG_PCI_MSI is not set +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y + +# +# DesignWare PCI Core Support +# + +# +# PCI host controller drivers +# + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +# CONFIG_BINFMT_SCRIPT is not set +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +# CONFIG_NET is not set +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +# CONFIG_STANDALONE is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set +# CONFIG_FW_LOADER is not set +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# + +# +# Altera FPGA firmware download module +# +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +CONFIG_HAVE_IDE=y + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_SCSI_DMA is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_DEVMEM is not set +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +CONFIG_SERIAL_8250_MID=y +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_NVRAM is not set +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +# CONFIG_I2C is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +# CONFIG_INTEL_PCH_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_REGULATOR is not set +CONFIG_RC_CORE=y +CONFIG_RC_MAP=y +CONFIG_RC_DECODERS=y +# CONFIG_LIRC is not set +CONFIG_IR_NEC_DECODER=y +CONFIG_IR_RC5_DECODER=y +CONFIG_IR_RC6_DECODER=y +CONFIG_IR_JVC_DECODER=y +CONFIG_IR_SONY_DECODER=y +CONFIG_IR_SANYO_DECODER=y +CONFIG_IR_SHARP_DECODER=y +CONFIG_IR_MCE_KBD_DECODER=y +CONFIG_IR_XMP_DECODER=y +# CONFIG_RC_DEVICES is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set + +# +# Virtio drivers +# +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set + +# +# FSI support +# +# CONFIG_FSI is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_FS_POSIX_ACL is not set +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FSNOTIFY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +# CONFIG_KERNFS is not set +# CONFIG_SYSFS is not set +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_NLS_CODEPAGE_437 is not set +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +# CONFIG_NLS_ASCII is not set +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +# CONFIG_NLS_UTF8 is not set + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_DEBUG_FS is not set +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_STACK_VALIDATION is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set + +# +# Runtime Testing +# +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DOUBLEFAULT is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_CPA_DEBUG is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +# CONFIG_UNWINDER_FRAME_POINTER is not set +CONFIG_UNWINDER_GUESS=y + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_GF128MUL is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +# CONFIG_CRYPTO_AES is not set +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +# CONFIG_DMA_NOOP_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +# CONFIG_SG_SPLIT is not set +# CONFIG_SG_POOL is not set +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/thinkpad/Makefile b/mainboards/lenovo/thinkpad/Makefile index 4995d64c..618899a0 100644 --- a/mainboards/lenovo/thinkpad/Makefile +++ b/mainboards/lenovo/thinkpad/Makefile @@ -59,15 +59,15 @@ uroot: cp *lzma linux bzImage: - cp config-4.14.111 linux/.config + cp config-5.15.0 linux/.config (cd linux && make oldconfig && make -j32) fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz xzcat kernel.xz | tar x - mv linux-4.14.111 linux + mv linux-5.15 linux getrom: echo you create the flashkernel echo on the APU2: flashrom -r coreboot.bin -p internal diff --git a/mainboards/lenovo/thinkpad/config-5.15.0 b/mainboards/lenovo/thinkpad/config-5.15.0 new file mode 100644 index 00000000..d0c546b7 --- /dev/null +++ b/mainboards/lenovo/thinkpad/config-5.15.0 @@ -0,0 +1,2435 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.14.111 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_FHANDLE is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +CONFIG_RCU_NOCB_CPU=y +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_POSIX_TIMERS=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_ADVISE_SYSCALLS=y +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +CONFIG_MEMBARRIER=y +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +CONFIG_PROFILING=y +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_RCU_TABLE_INVALIDATE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +# CONFIG_IOSCHED_CFQ is not set +CONFIG_DEFAULT_NOOP=y +CONFIG_DEFAULT_IOSCHED="noop" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_EFI is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="console=tty0" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_PM_TRACE_RTC is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_HT_IRQ is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_CONNECTOR is not set +CONFIG_MTD=y +# CONFIG_MTD_REDBOOT_PARTS is not set +# CONFIG_MTD_CMDLINE_PARTS is not set +# CONFIG_MTD_AR7_PARTS is not set + +# +# Partition parsers +# + +# +# User Modules And Translation Layers +# +# CONFIG_MTD_BLOCK is not set +# CONFIG_MTD_BLOCK_RO is not set +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=y +CONFIG_MTD_JEDECPROBE=y +CONFIG_MTD_GEN_PROBE=y +CONFIG_MTD_CFI_ADV_OPTIONS=y +CONFIG_MTD_CFI_NOSWAP=y +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +CONFIG_MTD_CFI_GEOMETRY=y +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_MAP_BANK_WIDTH_8=y +CONFIG_MTD_MAP_BANK_WIDTH_16=y +CONFIG_MTD_MAP_BANK_WIDTH_32=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_I4=y +CONFIG_MTD_CFI_I8=y +CONFIG_MTD_OTP=y +CONFIG_MTD_CFI_INTELEXT=y +CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_CFI_STAA=y +CONFIG_MTD_CFI_UTIL=y +CONFIG_MTD_RAM=y +CONFIG_MTD_ROM=y +CONFIG_MTD_ABSENT=y + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +# CONFIG_MTD_PHYSMAP is not set +# CONFIG_MTD_SBC_GXX is not set +CONFIG_MTD_AMD76XROM=y +CONFIG_MTD_ICHXROM=y +CONFIG_MTD_ESB2ROM=y +# CONFIG_MTD_CK804XROM is not set +CONFIG_MTD_SCB2_FLASH=y +# CONFIG_MTD_NETtel is not set +# CONFIG_MTD_L440GX is not set +# CONFIG_MTD_PCI is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# CONFIG_MTD_LATCH_ADDR is not set + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +# CONFIG_MTD_DATAFLASH is not set +# CONFIG_MTD_M25P80 is not set +# CONFIG_MTD_MCHP23K256 is not set +# CONFIG_MTD_SST25L is not set +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# CONFIG_MTD_NAND is not set +# CONFIG_MTD_ONENAND is not set + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +CONFIG_MTD_SPI_NOR=y +# CONFIG_MTD_MT81xx_NOR is not set +# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set +CONFIG_SPI_INTEL_SPI=y +CONFIG_SPI_INTEL_SPI_PCI=y +CONFIG_SPI_INTEL_SPI_PLATFORM=y +# CONFIG_MTD_UBI is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_TI_DAC7512 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +# CONFIG_SCSI is not set +# CONFIG_SCSI_DMA is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +CONFIG_DUMMY=y +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_FM10K is not set +# CONFIG_NET_VENDOR_I825XX is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_ENC28J60 is not set +# CONFIG_ENCX24J600 is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +# CONFIG_REALTEK_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +# CONFIG_CONSOLE_TRANSLATIONS is not set +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_INTEL is not set +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_VIA is not set +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +# CONFIG_ACPI_I2C_OPREGION is not set +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_PXA2XX is not set +# CONFIG_SPI_PXA2XX_PCI is not set +# CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +# CONFIG_LEDS_CLASS is not set + +# +# LED drivers +# + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# + +# +# LED Triggers +# +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set + +# +# Virtio drivers +# +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set + +# +# FSI support +# +# CONFIG_FSI is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +# CONFIG_DMIID is not set +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FSNOTIFY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +CONFIG_FSCACHE=y +# CONFIG_FSCACHE_STATS is not set +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +# CONFIG_CACHEFILES is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +# CONFIG_MSDOS_FS is not set +# CONFIG_VFAT_FS is not set +# CONFIG_NTFS_FS is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +# CONFIG_CRAMFS is not set +# CONFIG_SQUASHFS is not set +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +CONFIG_9P_FSCACHE=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_MANAGER2 is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_GF128MUL is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +# CONFIG_CRYPTO_HW is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +# CONFIG_XZ_DEC is not set +# CONFIG_XZ_DEC_BCJ is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +# CONFIG_DMA_NOOP_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +# CONFIG_SG_SPLIT is not set +# CONFIG_SG_POOL is not set +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/pcengines/apu/Makefile b/mainboards/pcengines/apu/Makefile index 4d26b52a..dbf6f1a4 100644 --- a/mainboards/pcengines/apu/Makefile +++ b/mainboards/pcengines/apu/Makefile @@ -40,15 +40,15 @@ uroot: cp *lzma linux bzImage: - cp config-4.14.111 linux/.config + cp config-5.15.0 linux/.config (cd linux && make oldconfig && make -j32) fetch: getkernel geturoot getfiano getrom getkernel: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz xzcat kernel.xz | tar x - mv linux-4.14.111 linux + mv linux-5.15 linux getrom: echo you create the kernel echo on the APU2: flashrom -r apu.bin -p internal diff --git a/mainboards/pcengines/apu/config-5.15.0 b/mainboards/pcengines/apu/config-5.15.0 new file mode 100644 index 00000000..01b22f02 --- /dev/null +++ b/mainboards/pcengines/apu/config-5.15.0 @@ -0,0 +1,2222 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.14.111 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_FHANDLE is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +CONFIG_RCU_NOCB_CPU=y +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_POSIX_TIMERS=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_ADVISE_SYSCALLS=y +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +CONFIG_MEMBARRIER=y +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +CONFIG_PROFILING=y +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_RCU_TABLE_INVALIDATE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +# CONFIG_IOSCHED_CFQ is not set +CONFIG_DEFAULT_NOOP=y +CONFIG_DEFAULT_IOSCHED="noop" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +# CONFIG_FREEZER is not set + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +# CONFIG_CPU_SUP_INTEL is not set +CONFIG_CPU_SUP_AMD=y +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_GART_IOMMU is not set +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_AMD_POWER is not set +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT is not set +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_EFI is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_HT_IRQ is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +CONFIG_AMD_NB=y +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_CONNECTOR is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +# CONFIG_SCSI is not set +# CONFIG_SCSI_DMA is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +CONFIG_DUMMY=y +# CONFIG_EQUALIZER is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +# CONFIG_E1000E is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_FM10K is not set +# CONFIG_NET_VENDOR_I825XX is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +# CONFIG_REALTEK_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +# CONFIG_SERIO_LIBPS2 is not set +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_PNP is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_LPSS is not set +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_INTEL is not set +CONFIG_HW_RANDOM_AMD=y +# CONFIG_HW_RANDOM_VIA is not set +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +# CONFIG_ACPI_I2C_OPREGION is not set +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set + +# +# Virtio drivers +# +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set + +# +# FSI support +# +# CONFIG_FSI is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +# CONFIG_DMIID is not set +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FSNOTIFY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +CONFIG_FSCACHE=y +# CONFIG_FSCACHE_STATS is not set +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +# CONFIG_CACHEFILES is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +# CONFIG_MSDOS_FS is not set +# CONFIG_VFAT_FS is not set +# CONFIG_NTFS_FS is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +# CONFIG_SQUASHFS is not set +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +CONFIG_9P_FSCACHE=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_MANAGER2 is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_GF128MUL is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +# CONFIG_CRYPTO_CRC32C is not set +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_DRBG_MENU is not set +# CONFIG_CRYPTO_JITTERENTROPY is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +# CONFIG_CRYPTO_HW is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +# CONFIG_CRC16 is not set +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +# CONFIG_XZ_DEC is not set +# CONFIG_XZ_DEC_BCJ is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +# CONFIG_DMA_NOOP_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +# CONFIG_SG_SPLIT is not set +# CONFIG_SG_POOL is not set +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/slimboot/Makefile b/mainboards/slimboot/Makefile index f365a2da..0585ca46 100644 --- a/mainboards/slimboot/Makefile +++ b/mainboards/slimboot/Makefile @@ -17,15 +17,15 @@ uroot: cp *lzma linux bzImage: - cp config-4.14.111 linux/.config + cp config-5.15.0 linux/.config (cd linux && make oldconfig && make -j32) fetch: getkernel geturoot getkernel: rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.111.tar.xz + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz xzcat kernel.xz | tar x - mv linux-4.14.111 linux + mv linux-5.15 linux geturoot: go get -u github.com/u-root/u-root diff --git a/mainboards/slimboot/config-5.15.0 b/mainboards/slimboot/config-5.15.0 new file mode 100644 index 00000000..668213a2 --- /dev/null +++ b/mainboards/slimboot/config-5.15.0 @@ -0,0 +1,2385 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.14.111 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-onie" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="onie" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_FHANDLE is not set +CONFIG_USELIB=y +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TASKS_RCU is not set +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_CONTEXT_TRACKING=y +# CONFIG_CONTEXT_TRACKING_FORCE is not set +CONFIG_RCU_NOCB_CPU=y +CONFIG_BUILD_BIN2C=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" +CONFIG_INITRAMFS_ROOT_UID=0 +CONFIG_INITRAMFS_ROOT_GID=0 +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_LZMA=y +# CONFIG_RD_XZ is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_INITRAMFS_COMPRESSION=".lzma" +# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +# CONFIG_MULTIUSER is not set +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_POSIX_TIMERS=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_BUG=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +# CONFIG_BPF_SYSCALL is not set +CONFIG_SHMEM=y +# CONFIG_AIO is not set +CONFIG_ADVISE_SYSCALLS=y +# CONFIG_USERFAULTFD is not set +CONFIG_PCI_QUIRKS=y +CONFIG_MEMBARRIER=y +CONFIG_EMBEDDED=y +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SYSTEM_DATA_VERIFICATION is not set +CONFIG_PROFILING=y +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_OPROFILE=y +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_RCU_TABLE_INVALIDATE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_DEBUG_FS is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +# CONFIG_PARTITION_ADVANCED is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +# CONFIG_IOSCHED_CFQ is not set +CONFIG_DEFAULT_NOOP=y +CONFIG_DEFAULT_IOSCHED="noop" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +# CONFIG_FREEZER is not set + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_FAST_FEATURE_TESTS is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +# CONFIG_RETPOLINE is not set +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_DMI=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=512 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +# CONFIG_X86_MCE is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +# CONFIG_COMPACTION is not set +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +# CONFIG_X86_SMAP is not set +# CONFIG_X86_INTEL_MPX is not set +# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +# CONFIG_SECCOMP is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_VERIFY_SIG is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +# CONFIG_RANDOMIZE_BASE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +# CONFIG_SUSPEND is not set +# CONFIG_PM is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BUTTON is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_CSTATE=y +# CONFIG_ACPI_PROCESSOR is not set +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_TABLE_UPGRADE is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_ACPI_CONTAINER is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_CPU_IDLE_GOV_MENU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +# CONFIG_PCIEASPM is not set +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_HT_IRQ is not set +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=y +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +# CONFIG_INET_UDP_DIAG is not set +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +CONFIG_NETLINK_DIAG=y +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +CONFIG_NET_9P=y +# CONFIG_NET_9P_VIRTIO is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_ALLOW_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +# CONFIG_DMA_SHARED_BUFFER is not set + +# +# Bus devices +# +# CONFIG_CONNECTOR is not set +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=y +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +# CONFIG_ATA is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +CONFIG_DUMMY=y +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_MACSEC is not set +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_AURORA is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_CX_ECAT is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +# CONFIG_E1000 is not set +CONFIG_E1000E=y +# CONFIG_E1000E_HWTS is not set +CONFIG_IGB=y +# CONFIG_IGBVF is not set +# CONFIG_IXGB is not set +# CONFIG_IXGBE is not set +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_FM10K is not set +# CONFIG_NET_VENDOR_I825XX is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_SYNOPSYS is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=y +# CONFIG_AQUANTIA_PHY is not set +CONFIG_AT803X_PHY=y +CONFIG_BCM7XXX_PHY=y +CONFIG_BCM87XX_PHY=y +CONFIG_BCM_NET_PHYLIB=y +CONFIG_BROADCOM_PHY=y +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +CONFIG_LXT_PHY=y +CONFIG_MARVELL_PHY=y +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_QSEMI_PHY is not set +# CONFIG_REALTEK_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# Host-side USB support is needed for USB Network Adapter support +# +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +CONFIG_SERIO_PCIPS2=y +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +# CONFIG_VT is not set +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +CONFIG_DEVMEM=y +CONFIG_DEVKMEM=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_LPSS=y +# CONFIG_SERIAL_8250_MID is not set +# CONFIG_SERIAL_8250_MOXA is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=y +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_HPET is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_SMBUS is not set + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=y +# CONFIG_I2C_ALGOPCF is not set +# CONFIG_I2C_ALGOPCA is not set + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_HWMON is not set +# CONFIG_THERMAL is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_DRM is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +# CONFIG_FB is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_VGASTATE is not set +# CONFIG_SOUND is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +# CONFIG_RTC_CLASS is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +# CONFIG_SYNC_FILE is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO=y + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=y +# CONFIG_VIRTIO_PCI_LEGACY is not set +CONFIG_VIRTIO_BALLOON=y +# CONFIG_VIRTIO_INPUT is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +# CONFIG_MAILBOX is not set +# CONFIG_IOMMU_SUPPORT is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_BCM_KONA_USB2_PHY=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_RAS is not set +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set + +# +# FSI support +# +# CONFIG_FSI is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_FS is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +# CONFIG_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FSNOTIFY is not set +# CONFIG_DNOTIFY is not set +# CONFIG_INOTIFY_USER is not set +# CONFIG_FANOTIFY is not set +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +CONFIG_FUSE_FS=y +# CONFIG_CUSE is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_NTFS_FS is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +# CONFIG_PROC_CHILDREN is not set +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +CONFIG_EFIVAR_FS=y +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +# CONFIG_SQUASHFS_XATTR is not set +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_CEPH_FS is not set +# CONFIG_CIFS is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +# CONFIG_NLS_CODEPAGE_936 is not set +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_DEBUG_RODATA_TEST=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=120 +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHED_INFO is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_BUGVERBOSE is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_EFI is not set +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_ACOMP2=y +# CONFIG_CRYPTO_RSA is not set +# CONFIG_CRYPTO_DH is not set +# CONFIG_CRYPTO_ECDH is not set +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_GF128MUL is not set +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_SEQIV is not set +CONFIG_CRYPTO_ECHAINIV=y + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +CONFIG_CRYPTO_PCBC=y +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +CONFIG_CRYPTO_CRCT10DIF=y +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +# CONFIG_CRYPTO_ARC4 is not set +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_VIRTIO is not set + +# +# Certificates for signature checking +# +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_LZMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +# CONFIG_DMA_NOOP_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +CONFIG_UCS2_STRING=y +# CONFIG_SG_SPLIT is not set +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/st/st32mp1517c/Makefile b/mainboards/st/st32mp1517c/Makefile index 5354cc2b..618fbad9 100644 --- a/mainboards/st/st32mp1517c/Makefile +++ b/mainboards/st/st32mp1517c/Makefile @@ -99,7 +99,7 @@ fetch: getkernel geturoot getkernel: rm -rf linux - git clone --depth=1 -b working_hack --single-branch https://github.com/linuxboot/linux + git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux (cd linux && make mrproper) (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make tinyconfig) From cbacce757d3c61bfbcaaba394bf9772b494a32a8 Mon Sep 17 00:00:00 2001 From: Dmitrii Okunev Date: Wed, 19 Jun 2024 16:08:53 +0100 Subject: [PATCH 091/132] fix(intel/hw): A typo: log.Fatal -> log.Fatalf Signed-off-by: Dmitrii Okunev --- mainboards/intel/hw/insert.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainboards/intel/hw/insert.go b/mainboards/intel/hw/insert.go index 2a4fab4f..308896d6 100644 --- a/mainboards/intel/hw/insert.go +++ b/mainboards/intel/hw/insert.go @@ -42,10 +42,10 @@ func main() { log.Fatalf("Size of %q (%d) > allowed size (%d)", initramfs, len(ramfs), sz) } if off > uint64(len(img)) { - log.Fatal("Off (%d) is > image size (%d)", off, len(img)) + log.Fatalf("Off (%d) is > image size (%d)", off, len(img)) } if off+sz > uint64(len(img)) { - log.Fatal("Off (%d) is > image size (%d)", off, len(img)) + log.Fatalf("Off (%d) is > image size (%d)", off, len(img)) } copy(img[off:], ramfs[:]) From 2a47c27339ba0ae24d5867f747a635d0b8852bf3 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Fri, 20 Sep 2024 16:59:50 +0200 Subject: [PATCH 092/132] CI: upgrade actions, print Go version Keeping actions on a recent version is necessary because older ones are deprecated over time and would at some point error. We have seen such errors already, so this upgrades all actions. Also drop the GO111MODULE env var. Go has changed. Signed-off-by: Daniel Maslowski --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af96c787..773a020e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,6 @@ jobs: env: # Setup $GOPATH GOPATH: ${{ github.workspace }}/go - # Turn off modules because they are broken. - GO111MODULE: off # Run the build for each one of these configurations in parallel. strategy: @@ -69,12 +67,12 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can # access it. - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # We need this newer version of Go. - name: Go version - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: - go-version: '^1.17.6' + go-version: '1.21' - name: Install dependent packages run: | set -ex @@ -90,13 +88,14 @@ jobs: - name: Make ${{ matrix.mainboard }} kernel run: | set -ex + go version cd mainboards PATH=$GOPATH/bin:/usr/local/go/bin:$PATH cd $(echo ${{ matrix.mainboard }} | tr '-' '/') make fetch make flashkernel - name: Upload Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.mainboard }} path: | From 0aed224be035b88e770621b7e1b54359845e43b2 Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Fri, 20 Sep 2024 17:31:24 +0200 Subject: [PATCH 093/132] aeeon/up: rework and fix Rework the entire Makefile. The go install commands have changed. For cpu, u-root now requires explicit Go workspace setups. Elvish was dropped in favor of gosh. The other Makefiles will also need fixing. This one is the first running on CI, so start with it. Signed-off-by: Daniel Maslowski --- mainboards/aeeon/up/Makefile | 200 ++++++++++++++++++++--------------- 1 file changed, 113 insertions(+), 87 deletions(-) diff --git a/mainboards/aeeon/up/Makefile b/mainboards/aeeon/up/Makefile index 0b0fe970..e2d32c0b 100644 --- a/mainboards/aeeon/up/Makefile +++ b/mainboards/aeeon/up/Makefile @@ -1,35 +1,117 @@ +INITRAMFS:=initramfs.linux_amd64.cpio + default: build build: - echo fetch, uroot, flashkernel, or image.bin + echo Run 'make fetch' first, which prepares the mainline build environment. + echo Obtain the ROM image; download from the Internet or read from flash. + echo Then make other targets, starting with a u-root flavor, finally Linux. + echo When the new image is built, write it to flash. + +# Prepare + +fetch: getrom prepgows getfiano getkernel + +getkernel: + rm -rf linux + git clone --depth=1 https://github.com/linuxboot/linux + +getstablekernel: + wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.10.tar.xz + xzcat kernel.xz | tar x + mv linux-5.3.10 linux + +upgetkernel: + rm -rf linux + git clone --depth=1 https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux + +# Set up the Go workspace, including cpu. +# see https://github.com/u-root/u-root?tab=readme-ov-file#multi-module-workspace-builds +# NOTE: goanywhere is nice, but how would we combine cpud and u-root templates? +prepgows: + git clone --depth 1 https://github.com/u-root/u-root + git clone --depth 1 https://github.com/u-root/cpu + go work init ./u-root + go work use ./cpu + +getfiano: + go install github.com/linuxboot/fiano/cmds/utk@latest + +# initramfs + +alluroot: + cd u-root && go run . -o $(INITRAMFS) \ + -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub ../cpu/cmds/cpud \ + all + +cpuuroot: + cd u-root && go run . -o $(INITRAMFS) \ + -defaultsh="" \ + -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub ../cpu/cmds/cpud + +# TODO: Should we use a template instead? Or define one in this repo? +# https://github.com/u-root/u-root/blob/main/.mkuimage.yaml +neturoot: + cd u-root && go run . -o $(INITRAMFS) \ + ./cmds/core/init \ + ./cmds/core/ls \ + ./cmds/core/ip \ + ./cmds/core/gosh \ + ./cmds/core/sshd \ + ./cmds/core/scp \ + ./cmds/boot/* + +uroot.lzma: + lzma -f -k ./u-root/$(INITRAMFS) + ls -l u-root/initramfs* + cp u-root/*lzma linux + +# Linux + +# FIXME: The current config does not include the initramfs. Should it? +bzImage: + cp linuxboot-linux.config linux/.config + (cd linux && make oldconfig && make -j32) + +stablebzImage: + echo "the config is from https://github.com/emutex/ubilinux-kernel/issues/2#issue-294853930" + cp ts.config.txt linux/.config + (cd linux && make oldconfig && make -j32) + +flashkernel: cpuuroot uroot.lzma bzImage + cp linux/arch/x86/boot/bzImage flashkernel + +netboot: neturoot uroot.lzma bzImage + cp linux/arch/x86/boot/bzImage kernel + +# ROM operations image.bin: - utk \ - -xzPath /usr/bin/xz \ + utk -xzPath /usr/bin/xz \ ROM.bin \ remove Nb.* \ remove IntelIsh.* \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ + remove Ip.* \ + remove Tcp.* \ + remove Usb.* \ + remove Udp.* \ + remove Dhcp.* \ + remove .np.* \ + remove .tftp.* \ + remove Http.* \ + remove .*Dns.* \ + remove Arp.* \ + remove .*NetworkStackSetupScreen.* \ + remove Iscsi.* \ + remove Scsi.* \ + remove Fat.* \ + remove Ahci.* \ + remove Partition.* \ + remove Sata.* \ + remove Disk.* \ + remove Whea.* \ + remove .*Pxe.* \ + remove Ata.* \ remove AmiSeri.* \ remove IntelGop.* \ remove Logo.* \ @@ -44,17 +126,16 @@ image.bin: remove Tcg.* \ remove Ish.* \ remove Setup \ - save image.bin + save image.bin utk image.bin table | guid2english | grep Free - echo \ - remove AmiTc.* \ + # FIXME: What is this? + echo remove AmiTc.* echo need 0x16b4a0 -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel +getrom: + echo you can put a wget here + echo and unxip it + echo and cp it to sr630.bin readrom: echo You need to get a ROM image from *somewhere* @@ -63,58 +144,3 @@ readrom: writerom: image.bin echo Here is where you would do the flashrom, e.g. echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - go run github.com/u-root/u-root -o linux/initramfs.linux_amd64.cpio -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - -uroot.lzma: uroot - lzma -f -k initramfs.linux_amd64.cpio - -uroot: - go run github.com/u-root/u-root -o initramfs.linux_amd64.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - -alluroot: - go run github.com/u-root/u-root -o initramfs.linux_amd64.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - all - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp linuxboot-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - -stablebzImage: - echo the config is from https://github.com/emutex/ubilinux-kernel/issues/2#issue-294853930 - cp ts.config.txt linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 https://github.com/linuxboot/linux - -getstablekernel: - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.10.tar.xz - xzcat kernel.xz | tar x - mv linux-5.3.10 linux - -upgetkernel: - rm -rf linux - git clone --depth=1 https://github.com/emutex/ubilinux-kernel.git -b upboard-4.9 linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - From 88a34046a04f8eb5bd9aa0f4282e9f9292f1b806 Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Tue, 22 Oct 2024 15:54:22 +0000 Subject: [PATCH 094/132] ampere/jade: Fix CI This is to use `go work` commands for multi-module workspace build. Signed-off-by: Nhi Pham --- mainboards/ampere/jade/Makefile | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/mainboards/ampere/jade/Makefile b/mainboards/ampere/jade/Makefile index 37092ca8..b2111115 100644 --- a/mainboards/ampere/jade/Makefile +++ b/mainboards/ampere/jade/Makefile @@ -21,16 +21,20 @@ flashinitramfs.cpio.lzma: flashinitramfs.cpio lzma -f -k $< flashinitramfs.cpio: Makefile - GO111MODULE=off GOARCH=arm64 u-root -uroot-source ${GOPATH}/src/github.com/u-root/u-root -uinitcmd=systemboot -o $@ core \ - github.com/u-root/u-root/cmds/boot/systemboot \ - github.com/u-root/u-root/cmds/boot/localboot \ - github.com/u-root/u-root/cmds/boot/fbnetboot \ - github.com/u-root/u-root/cmds/exp/acpicat \ - github.com/u-root/u-root/cmds/exp/acpigrep \ - github.com/u-root/u-root/cmds/exp/disk_unlock \ - github.com/u-root/u-root/cmds/exp/dmidecode \ - github.com/u-root/u-root/cmds/exp/ipmidump \ - github.com/u-root/cpu/cmds/cpud + cd u-root && go build . && GOARCH=arm64 ./u-root -uinitcmd="boot" -o $@ \ + ./cmds/core/* \ + ./cmds/boot/* \ + ./cmds/exp/systemboot \ + ./cmds/exp/localboot \ + ./cmds/exp/fbnetboot \ + ./cmds/exp/dmidecode \ + ./cmds/exp/acpicat \ + ./cmds/exp/acpigrep \ + ./cmds/exp/disk_unlock \ + ./cmds/exp/dmidecode \ + ./cmds/exp/ipmidump \ + ../cpu/cmds/cpud + cp u-root/flashinitramfs.cpio . # this target builds an initramfs with only one program, the cpu server. # It depends on the kernel setting the IP address. @@ -79,8 +83,12 @@ getkernel: (cd linux && ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- make tinyconfig) geturoot: - GO111MODULE=off go get -u github.com/u-root/u-root - GO111MODULE=off go get -u github.com/u-root/cpu/... + rm -rf u-root cpu + git clone --depth 1 https://github.com/u-root/u-root + git clone --depth 1 https://github.com/u-root/cpu + rm -f go.* + go work init ./u-root + go work use ./cpu # Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom sshd-pxeserver: From f397147c450302b7b809e06489dc31af793a3583 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:28:46 -0700 Subject: [PATCH 095/132] remove deleted boards from CI remove workaround for no longer supported tyan board Signed-off-by: Ronald G Minnich --- .github/workflows/ci.yml | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 773a020e..8dd39e40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,29 +33,14 @@ jobs: # The `${{ matrix.mainboard }}` variable is replaced with each of these. mainboard: # '-' is used instead of '/' due to restrictions on artifact upload. + - aeeon-i11 - aeeon-up - - aeeon-upxtreme - - amd-rome - ampere-jade - - bytedance-g220a - - cubie-board - - digitalloggers-atomicpi - - hpe-dl360gen10 - intel-generic - - intel-hw - - intel-minplatform - intel-s2600 - - lenovo-hr630 - - lenovo-sr630 - - lenovo-thinkpad - - marvel-macchiatobin - - opentitanpilot-dresden - - pcengines-apu - - pcengines-apu2 - # - seeed-beaglev # FIXME: broken due to upstream sources gone - - slimboot - - st-st32mp1517c - - tyan7106 + - qemu-x86_64 + - rvboards-d1 + - sunxi-nezha - qemu-x86_64 - walmart-robot @@ -78,12 +63,6 @@ jobs: set -ex sudo apt-get update sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} gcc-riscv64-linux-gnu libelf-dev u-boot-tools - # TODO: This is a temporary workaround, need to streamline key handling - - name: Fake SSH keys to pass builds - run: | - mkdir ~/.ssh && touch ~/.ssh/cpu_rsa.pub - touch mainboards/tyan7106/key.pub - touch mainboards/tyan7106/ssh_host_rsa_key # Runs a set of commands using the runners shell - name: Make ${{ matrix.mainboard }} kernel run: | From bd7cfacfd8d1c0d2e75a695f2d7f312bb851f1f6 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:41:54 -0700 Subject: [PATCH 096/132] remove unused make targets Signed-off-by: Ronald G Minnich --- .github/workflows/ci.yml | 14 +++------ mainboards/Makefile | 67 +--------------------------------------- 2 files changed, 5 insertions(+), 76 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dd39e40..e3b26eec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,17 +32,11 @@ jobs: matrix: # The `${{ matrix.mainboard }}` variable is replaced with each of these. mainboard: - # '-' is used instead of '/' due to restrictions on artifact upload. - - aeeon-i11 - - aeeon-up - ampere-jade - - intel-generic - - intel-s2600 - - qemu-x86_64 - - rvboards-d1 - - sunxi-nezha - - qemu-x86_64 - - walmart-robot + # '-' is used instead of '/' due to restrictions on artifact upload. + # - aeeon-i11 + # - aeeon-up + # - qemu-x86_64 # Do not cancel all jobs steps if a single one fails. fail-fast: false diff --git a/mainboards/Makefile b/mainboards/Makefile index 10e6cd1b..595a4324 100644 --- a/mainboards/Makefile +++ b/mainboards/Makefile @@ -20,73 +20,8 @@ docker-build: Dockerfile docker-run-aeeon-up: docker-build docker run --rm -v "$(shell pwd)/aeeon/up":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - - -docker-run-aeeon-upxtreme: docker-build - docker run --rm -v "$(shell pwd)/aeeon/upxtreme":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-bytedance-g220a: docker-build - docker run --rm -v "$(shell pwd)/bytedance/g220a":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-digitallogger-atomicpi: docker-build - docker run --rm -v "$(shell pwd)/digitalloggers/atomicpi":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-hpe-dl360gen10: docker-build - docker run --rm -v "$(shell pwd)/hpe/dl360gen10":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-amd-rome: docker-build - docker run --rm -v "$(shell pwd)/amd/rome":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - docker-run-ampere-jade: docker-build docker run --rm -v "$(shell pwd)/ampere/jade":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' -docker-run-cubie-board: docker-build - docker run --rm -v "$(shell pwd)/cubie/board":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-intel-hw: docker-build - docker run --rm -v "$(shell pwd)/intel/hw":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-intel-generic: docker-build - docker run --rm -v "$(shell pwd)/intel/generic":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-intel-minplatform: docker-build - docker run --rm -v "$(shell pwd)/intel/minplatform":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-intel-s2600: docker-build - docker run --rm -v "$(shell pwd)/intel/s2600":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-lenovo-hr630: docker-build - docker run --rm -v "$(shell pwd)/lenovo/hr630":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-lenovo-sr630: docker-build - docker run --rm -v "$(shell pwd)/lenovo/sr630":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-lenovo-thinkpad: docker-build - docker run --rm -v "$(shell pwd)/lenovo/thinkpad":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-marvel-macchiatobin: docker-build - docker run --rm -v "$(shell pwd)/marvel/macchiatobin":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-opentitanpilot-dresden: docker-build - docker run --rm -v "$(shell pwd)/opentitanpilot/dresden":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-pcengines-apu: docker-build - docker run --rm -v "$(shell pwd)/pcengines/apu":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-pcengines-apu2: docker-build - docker run --rm -v "$(shell pwd)/pcengines/apu2":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-slimboot: docker-build - docker run --rm -v "$(shell pwd)/slimboot":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-st-st32mp1517c: docker-build - docker run --rm -v "$(shell pwd)/st/st32mp1517c":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-tyan7106: docker-build - docker run --rm -v "$(shell pwd)/tyan7106":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - -docker-run-walmart-robot: docker-build - docker run --rm -v "$(shell pwd)/walmart/robot":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' - docker-run-qemu-x86-64: docker-build - docker run --rm -v "$(shell pwd)/qemu/x86_64":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' \ No newline at end of file + docker run --rm -v "$(shell pwd)/qemu/x86_64":/$(CONTAINER_NAME) $(CONTAINER_NAME) 'make fetch flashkernel' From 0217e85b040a93a373932ab30e161f5b7efe1b9e Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 097/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/aeeon/i11/.gitignore | 7 - mainboards/aeeon/i11/9pnotes | 17 - mainboards/aeeon/i11/BISECT | 7 - mainboards/aeeon/i11/Makefile | 299 - mainboards/aeeon/i11/NOTES | 1058 --- mainboards/aeeon/i11/cpu-5.14.config | 4099 --------- mainboards/aeeon/i11/cpu-5.15.config | 4114 --------- mainboards/aeeon/i11/cpu.config | 4405 --------- mainboards/aeeon/i11/cpuflash-4.9.config | 8168 ----------------- mainboards/aeeon/i11/cpuflash-5.17.0.config | 4192 --------- .../aeeon/i11/cpuflash-5.4.0-rc6.config | 3872 -------- mainboards/aeeon/i11/cpuflash-5.4.0.config | 4204 --------- mainboards/aeeon/i11/cpuflash-5.4.65.config | 4212 --------- mainboards/aeeon/i11/cpuflash-5.6.0.config | 4114 --------- .../i11/cpuflash-ubuntu-bionic-up.config | 4212 --------- mainboards/aeeon/i11/cpuflash.config | 4114 --------- mainboards/aeeon/i11/flash.config | 2080 ----- mainboards/aeeon/i11/sshd.config | 2718 ------ 18 files changed, 55892 deletions(-) delete mode 100644 mainboards/aeeon/i11/.gitignore delete mode 100644 mainboards/aeeon/i11/9pnotes delete mode 100644 mainboards/aeeon/i11/BISECT delete mode 100644 mainboards/aeeon/i11/Makefile delete mode 100644 mainboards/aeeon/i11/NOTES delete mode 100644 mainboards/aeeon/i11/cpu-5.14.config delete mode 100644 mainboards/aeeon/i11/cpu-5.15.config delete mode 100644 mainboards/aeeon/i11/cpu.config delete mode 100644 mainboards/aeeon/i11/cpuflash-4.9.config delete mode 100644 mainboards/aeeon/i11/cpuflash-5.17.0.config delete mode 100644 mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config delete mode 100644 mainboards/aeeon/i11/cpuflash-5.4.0.config delete mode 100644 mainboards/aeeon/i11/cpuflash-5.4.65.config delete mode 100644 mainboards/aeeon/i11/cpuflash-5.6.0.config delete mode 100644 mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config delete mode 100644 mainboards/aeeon/i11/cpuflash.config delete mode 100644 mainboards/aeeon/i11/flash.config delete mode 100644 mainboards/aeeon/i11/sshd.config diff --git a/mainboards/aeeon/i11/.gitignore b/mainboards/aeeon/i11/.gitignore deleted file mode 100644 index 352cfb52..00000000 --- a/mainboards/aeeon/i11/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -*.cpio -linux -*.gz -*kernel -pxelinux.cfg -ubuntu* - diff --git a/mainboards/aeeon/i11/9pnotes b/mainboards/aeeon/i11/9pnotes deleted file mode 100644 index c8870dc3..00000000 --- a/mainboards/aeeon/i11/9pnotes +++ /dev/null @@ -1,17 +0,0 @@ -5.11-rc4 fails - -5.11-rc1 fails - -5.10 works - -2911ed9f47b47cb5ab87d03314b3b9fe008e607f OK -b0a6cd29e00a317d7fd823e0db57abbbd9bbb610 OK -8a5be36b9303ae167468d4f5e1b3c090b9981396 OK -6a447b0e3151893f6d4a889956553c06d2e775c6 OK -1375b9803e007842493c64d0d73d7dd0e385e17c BAD -8552d28e140110fc935b39a6bfaf33c8ce3a1ad5 BAD -0a7e7ec90e601d98cc5914626b78fd043598b85b OK -526671bfc47df175eb87f96067d51b389a8af50d OK - -48342fc07272eec454fc5b400ed3ce3739c7e950 OK - diff --git a/mainboards/aeeon/i11/BISECT b/mainboards/aeeon/i11/BISECT deleted file mode 100644 index f803bbd4..00000000 --- a/mainboards/aeeon/i11/BISECT +++ /dev/null @@ -1,7 +0,0 @@ - 2613 git log e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc - 2614 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc - 2615 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | head -8000 | tail -4 - 2616 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 - - -last one is bad, try 4000 later diff --git a/mainboards/aeeon/i11/Makefile b/mainboards/aeeon/i11/Makefile deleted file mode 100644 index aec5ddfe..00000000 --- a/mainboards/aeeon/i11/Makefile +++ /dev/null @@ -1,299 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -# cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma -cpu.bin: dxeremove.bin cpuflashkernel - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell cpuflashkernel \ - save $@ - echo NO replace_pe32 Shell cpuflashkernel \ - echo NO save $@ - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: image.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove Http.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - remove IntelGig.* \ - remove FmpDxe.* \ - remove FlashUcAcmDxe \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - echo NOT DOING chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -# KERNEL=ubuntu-bionic-up -KERNEL=linux -CONFIG=cpuflash-5.17.0.config -#CONFIG=cpuflash-5.4.0.config -#CONFIG=cpuflash.config -#CONFIG=cpu-5.14.config -cpuflashkernel: cpu.cpio $(CONFIG) - cp $(CONFIG) $(KERNEL)/.config - (cd $(KERNEL) && make oldconfig && make -j32) - cp $(KERNEL)/arch/x86/boot/bzImage $@ - -5.4.65.cpuflashkernel: cpu.cpio cpuflash-5.4.65.config - cp cpuflash-5.4.65.config linux-5.4.65/.config - (cd linux-5.4.65 && make oldconfig && make -j32) - cp linux-5.4.65/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: cpu.cpio - lzma -f -k cpu.cpio - -cpu.cpio: Makefile - GO111MODULE=off CGO_ENABLED=0 u-root -build=bb -o cpu.cpio \ - -initcmd=cpud \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - github.com/u-root/u-root/cmds/exp/console \ - github.com/u-root/u-root/cmds/exp/ed \ - core - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b 5.17-rc3 --single-branch git@github.com:torvalds/linux - -getkernel-5.4.65: - rm -rf linux-5.4.65 - git clone --depth=1 -b hwe-5.4-upboard --single-branch git@github.com:AaeonCM/ubuntu-bionic-up linux-5.4.65 - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/aeeon/i11/NOTES b/mainboards/aeeon/i11/NOTES deleted file mode 100644 index fcae5c62..00000000 --- a/mainboards/aeeon/i11/NOTES +++ /dev/null @@ -1,1058 +0,0 @@ - 1401 make getkernel-5.4.65 - 1402 ls - 1403 fg - 1404 emacs - 1405 cd linux-5.4/ - 1406 history | grep tar - 1407 ls - 1408 ls .. - 1409 ls ~/ - 1410 cd .. - 1411 vi Makefile - 1412 make getkernel-5.4.65 - 1413 vi Makefile - 1414 make getkernel-5.4.65 - 1415 make cpuflashkernel 5.4.65.cpuflashkernel - 1416 more linux/Makefile - 1417 make cpuflashkernel 5.4.65.cpuflashkernel - 1418 ls -l *kernel - 1419 cpu i11 cp cpuflashkernel /x - 1420 cpu i11 kexec /x - 1421 cpu i11 date - 1422 cpu i11 cp 5.4.65.cpuflashkernel /x - 1423 cpu i11 kexec /x - 1424 cpu i11 cp 5.4.65.cpuflashkernel /x - 1425 cpu i11 kexec -r /x - 1426 cpu i11 lspci - 1427 ls - 1428 cpu i11 date - 1429 grep cpu.*kernel Makefile - 1430 make cpuflashkernel - 1431 cpu i11 cp cpuflashkernel /x - 1432 cpu i11 kexec -e - 1433 cpu i11 cp cpuflashkernel /x - 1434 cpu i11 kexec -r '0000:01:00.0 0000:01:00.1' -e - 1435 cpu i11 kexec --pcireset '0000:01:00.0 0000:01:00.1' -e - 1436 cpu i11 ls /sys/bus/pci/devices/0000:01:00.0/reset - 1437 cpu i11 kexec --pcireset '0000:01:00.0 0000:01:00.1' -e - 1438 cpu i11 kexec --pcireset '0000:01:00.1 0000:01:00.1' -e - 1439 cpu i11 - 1440 cpu i11 ls /sys/bus/pci/devices - 1441 cpu i11 /bin/sh - 1442 strace -o shit -f -v -s 1024 cpu i11 /bin/sh - 1443 /usr/bin/strace -o shit -f -v -s 1024 cpu i11 /bin/sh - 1444 vi shit - 1445 cpu i11 dmesg - 1446 cpu i11 kexec cpuflashkernel - 1447 cpu -h - 1448 cpu i11 -dbg9p -dump kexec cpuflashkernel - 1449 ls - 1450 ls /tmp - 1451 ls -l kexec - 1452 cpu i11 -dbg9p kexec cpuflashkernel - 1453 cpu i11 -dbg9p 8 kexec cpuflashkernel - 1454 cpu i11 -dump kexec cpuflashkernel - 1455 cpu -dumnp i11 kexec cpuflashkernel - 1456 cpu -dump i11 kexec cpuflashkernel - 1457 vi /tmp/cpu029385184 - 1458 cpu -dump i11 - 1459 vi /tmp/cpu585843260 - 1460 fg - 1461 file /usr/bin/lesspipe - 1462 more /usr/bin/lesspipe - 1463 fg - 1464 cpu i11 lesspipe - 1465 cpu i11 basename x x - 1466 fg - 1467 cpu i11 /usr/bin/strace date - 1468 cpu i11 lsof - 1469 cd linux - 1470 git grep EBUSY - 1471 git grep EBUSY kernel/ - 1472 git grep EBUSY fs - 1473 git grep EBUSY fs | grep exec - 1474 git grep EBUSY fs | grep proc - 1475 git grep EBUSY fs/9p - 1476 git grep EBUSY fs/p9 - 1477 git grep EBUSY fs/9p/ - 1478 git grep exec kerne - 1479 git grep exec kernel - 1480 git grep EBUSY kernel/*exec* - 1481 git grep EBUSY fs/*.c - 1482 cpu i11 cat README - 1483 cpu i11 dd of=README - 1484 cpu i11 /usr/bin/strace date - 1485 cd .. - 1486 cpu i11 strace date - 1487 cpu i11 strace kexec cpuflashkernel - 1488 cpu -dump i11 strace kexec cpuflashkernel - 1489 script xyz - 1490 vi xyz - 1491 cpu i11 strace date - 1492 cpu i11 date - 1493 cpu i11 sh -c date - 1494 cpu i11 strace sh -c date - 1495 grep -r EBUSY linux/net/9p/ - 1496 vi linux/net/9p/error.c - 1497 vi linux/net/9p/trans_virtio.c - 1498 grep -ri busy linux/fs/9p/ - 1499 grep -ri busy linux/fs/*open* - 1500 vi linux/fs/fsopen.c - 1501 girt grep EBUSY linux/fs/ - 1502 grep -r EBUSY linux/fs/ - 1503 grep -r EBUSY linux//fs/namei.c - 1504 /BUSY - 1505 vi /BUSY - 1506 grep -r EBUSY linux//fs/namei.c - 1507 vi linux//fs/namei.c - 1508 vi linux/Documentation/filesystems/9p.rst - 1509 fg - 1510 make cpukernel - 1511 make cpuflashkernel - 1512 rm cpu.cpio - 1513 make cpuflashkernel - 1514 cpu i11 cp cpuflashkernel /x - 1515 cpu i11 kexec -e /x - 1516 cpu i11 kexec -e - 1517 cpu i11 kexec /x - 1518 cpu i11 kexec cpuflash - 1519 cpu i11 kexec cpuflashkernel - 1520 cpu i11 dmesg -c - 1521 cpu i11 cat /proc/mounts - 1522 vi linux/Documentation/filesystems/9p.rst - 1523 rm cpu.cpio - 1524 make cpuflashkernel - 1525 cpu i11 cp cpuflashkernel /x - 1526 cpu i11 kexec /x - 1527 cpu i11 date - 1528 cpu i11 dmesg - 1529 cd linux - 1530 make menuconfig - 1531 diff .config ../cpuflash-5.4.65.config - 1532 more Makefile - 1533 diff .config ../cpuflash.config - 1534 cp .config ../cpuflash.config - 1535 cd .. - 1536 make cpuflashkernel - 1537 cpu i11 cp cpuflashkernel /x - 1538 cpu i11 kexec /x - 1539 cpu i11 date - 1540 cpu i11 dmesg - 1541 cpu i11 dmesg -c - 1542 cpu i11 kexec cpuflash - 1543 cpu i11 dmesg -c > xxx - 1544 vi xxx - 1545 more xxx - 1546 which dmesg - 1547 cpu i11 /bbin/demsg -c - 1548 cpu i11 kexec cpuflash - 1549 cpu i11 kexec cpuflashkernel - 1550 cpu i11 cat /xyz - 1551 vi xyz - 1552 cpu i11 cp /xyz . - 1553 vi xyz - 1554 rm xyz - 1555 cpu i11 cp /xyz . - 1556 vi xyz - 1557 cpu i11 kexec -l cpuflashkernel - 1558 rm cpu.cpio - 1559 make cpuflashkernel - 1560 cpu i11 cp cpuflashkernel /x - 1561 cpu i11 kexec /x - 1562 cpu i11 date - 1563 cpu i11 kexec cpuflashkernel - 1564 rm xyz - 1565 cpu i11 cp /xyz xyz - 1566 vi xyz - 1567 cpu i11 strace date - 1568 cp 11 /usr/bin/strace date - 1569 cpu i11 /usr/bin/strace date - 1570 cpu i11 cp /xyz /tmp/faileddatestrace - 1571 vi /tmp/faileddatestrace - 1572 cpu i11 cp /xyz faileddatestrace - 1573 vi faileddatestrace - 1574 strace /usr/bin/strace x - 1575 grep CLUNK faileddatestrace - 1576 vi faileddatestrace - 1577 fg - 1578 vi linux/Documentation/filesystems/9p.rst - 1579 cd linux - 1580 git log - 1581 cd .. - 1582 cpu i11 - 1583 rm xyz - 1584 cpu i11 cp /xyz . - 1585 vi xyz - 1586 fg - 1587 cpu i11 /bbin/dmesg -c - 1588 cpu i11 kexec -l cpuflashkernel - 1589 cpu i11 /bbin/dmesg -c > xyz - 1590 vi xyz - 1591 man 2 open - 1592 grep O_ /usr/include/fcntl.h - 1593 grep -r define.*O_CL /usr/include - 1594 vi /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h - 1595 gdb - 1596 fg - 1597 strace -o shit kexec -l cpuflashkernel - 1598 vi shit - 1599 cpu i11 strace kexec -l cpuflashkernel - 1600 cpu i11 strace -o strfail kexec -l cpuflashkernel - 1601 grep open strfail - 1602 vi x.c - 1603 man 2 open - 1604 fg - 1605 cc -o x x.c - 1606 vi x.c - 1607 cc -o x x.c - 1608 vi x.c - 1609 cc -o x x.c - 1610 vi x.c - 1611 fg - 1612 cc -o x x.c - 1613 ./x - 1614 cpu i11 ./x cpuflashkernel - 1615 vi x.c - 1616 cc -o x x.c - 1617 man printf - 1618 man 3 printf - 1619 vi x.c - 1620 cc -o x x.c - 1621 cpu i11 ./x cpuflashkernel - 1622 vi x.c - 1623 cc -o x x.c - 1624 vi x.c - 1625 cc -o x x.c - 1626 cpu i11 ./x cpuflashkernel - 1627 ./x - 1628 vi x.c - 1629 ./x cpuflashkernel - 1630 vi x.c - 1631 cc -o x x.c - 1632 ./x cpuflashkernel - 1633 cpu i11 ./x cpuflashkernel - 1634 ./x cpuflashkernel - 1635 vi linux/fs/9p/vfs_file.c - 1636 git grep CLOE linux/fs//9p - 1637 more x.c - 1638 git grep CLOE linux/fs - 1639 git grep CLOE linux - 1640 grep -r CLOE linux/fs/9p - 1641 vi linux/fs/9p/vfs_inode_dotl.c - 1642 grep -r CLOEXEC linux - 1643 vi linux/fs/file.c - 1644 cd linux - 1645 git grep set.close.on - 1646 vi fs/file.c - 1647 git grep EBUSY fs - 1648 git grep EBUSY fs/*.c - 1649 git grep CLOEX fs/*.c - 1650 cat x.c - 1651 cat ../x.c - 1652 cd .. - 1653 vi x.c - 1654 cc -o x x.c - 1655 cpu i11 ./x cpuflashkernel - 1656 cat x.c - 1657 vi x.c - 1658 cc -o x x.c - 1659 cpu i11 ./x cpuflashkernel - 1660 cat x.c - 1661 vi x.c - 1662 cc -o x x.c - 1663 cpu i11 ./x cpuflashkernel - 1664 vi x.c - 1665 go build - 1666 cc -o x x.c - 1667 cpu i11 ./x cpuflashkernel - 1668 cat x.c - 1669 cpu i11 ./x /bbin/date - 1670 vi x.c - 1671 cc -o x x.c - 1672 vi x.c - 1673 cc -o x x.c - 1674 cpu i11 ./x /bbin/date - 1675 cpu i11 ./x cpuflashkernel - 1676 cpu i11 - 1677 grep clone - 1678 grep clone Makefile - 1679 rm -rf linux - 1680 git clone -b v5.15 git@github.com:torvalds/linux - 1681 cd linux - 1682 git grep 8259 Documentation/ - 1683 vi Documentation/core-api/irq/concepts.rst - 1684 pwd - 1685 git branch - 1686 git log - 1687 git branch -a - 1688 git checkout master - 1689 more Makefile - 1690 cd .. - 1691 cp cpuflash-5.17.0.config - 1692 cp cpuflash.config cpuflash-5.17.0.config - 1693 vi Makefile - 1694 fg - 1695 make cpuflashkernel - 1696 cd linux - 1697 make menuconfig - 1698 make - 1699 cp .config ../cpuflash-5.17.0.config - 1700 cd .. - 1701 make cpuflashkernel - 1702 grep INIT cpuflash-5.17.0.config - 1703 cpu i11 cp cpuflashkernel /x - 1704 cpu i11 kexec /x - 1705 cpu i11 - 1706 cpu i11 cat /proc/version - 1707 cpu i11 ./x cpuflashkernel - 1708 cd linux - 1709 git branch - 1710 git log - 1711 git branch -a - 1712 git tag -h - 1713 git tag -l - 1714 git bisect start - 1715 git tag -l | grep 5.4 - 1716 git bisect bad - 1717 git checkout v5.4 - 1718 cp ../cpuflash-5.4.65.config .config - 1719 make menuconfig - 1720 make -j32 - 1721 make menuconfig - 1722 make - 1723 grep KAS .config - 1724 git log - 1725 more Makefile - 1726 cp .config ../cpuflash-5.4.0.config - 1727 make mrproper - 1728 cd .. - 1729 vi Makefile - 1730 make cpuflashkernel - 1731 git checkout v5.5 - 1732 git checkout v5.5.0 - 1733 git tag -l - 1734 cd linux - 1735 git checkout v5.5.0 - 1736 git checkout v5.5 - 1737 make menuconfig - 1738 make clean - 1739 make -j32 - 1740 make menuconfig - 1741 cp ../cpuflash-5.4.65.config - 1742 cp ../cpuflash-5.4.65.config .config - 1743 make -j32 - 1744 git grep __force_order - 1745 vi arch/x86/boot/compressed/Makefile - 1746 vi .config - 1747 make - 1748 pwd - 1749 cp i11 cp arch/x86/boot/bzImage /x - 1750 cpu i11 cp arch/x86/boot/bzImage /x - 1751 cpu x cp arch/x86/boot/bzImage /x - 1752 cpu x kexec /x - 1753 cpu i11 date - 1754 cpu x date - 1755 sudo dmesg -c - 1756 sudo fsck /dev/sdb1 - 1757 sudo mount /dev/sdb1 /mnt - 1758 sudo cp arch/x86/boot/bzImage /mnt/v5.5 - 1759 vi /boot/grub/grub.cfg - 1760 grep -r IP /mnt - 1761 vi /boot/grub/grub.cfg - 1762 vi /boot/efi/EFI/ubuntu/grub.cfg - 1763 cd /mnt/boot/ - 1764 ls - 1765 vi grub/grub.cfg - 1766 sudo vi grub/grub.cfg - 1767 ls /mnt - 1768 cd - 1769 sudo umount /mnt - 1770 ls - 1771 pwd - 1772 cd linuxboot/mainboards/aeeon/i11/ - 1773 ls - 1774 cp cpuflash.config cpuflash-5.6.0.config - 1775 cd linux - 1776 make mrproer - 1777 make mrproper - 1778 cp ../cpuflash-5.6.0.config .config - 1779 git checkout v5.6 - 1780 make - 1781 cpu i11 date - 1782 cpu i11 cp arch/x86/boot/bzImage /xxx - 1783 cpu i11 kexec /xxx - 1784 cd .. - 1785 more cpu.config - 1786 more Makefile - 1787 git diff - 1788 grep CONFIG Makefile - 1789 git diff - 1790 vi Makefile - 1791 cd linux - 1792 more ../cpuflash.config - 1793 git checkout v5.15 - 1794 make mrproper - 1795 cd .. - 1796 make cpuflashkernel - 1797 cpu i11 date - 1798 cpu i11 cp cpuflashkernel /xxx - 1799 cpu i11 kexec /xxx - 1800 cpu i11 cat /proc/version - 1801 cpu i11 ./x cpuflashkernel - 1802 cd linux - 1803 git log - 1804 git checkout v5.14 - 1805 cd .. - 1806 make cpuflashkernel - 1807 rm cpuflashkernel - 1808 cd linux - 1809 make mrproper - 1810 git log - 1811 cd .. - 1812 make cpuflashkernel - 1813 more linux/Makefile - 1814 cp linux/.config cpu-5.14.config - 1815 git add *.config - 1816 git status - 1817 git add Makefile - 1818 git commit -as - 1819 cpu i11 cp cpuflashkernel /xxx - 1820 cpu i11 kexec /xxx - 1821 cpu i11 date - 1822 cpu x date - 1823 cpu i11 date - 1824 cd linux - 1825 git log - 1826 git bisect bad - 1827 cd .. - 1828 cd linux - 1829 git log - 1830 git status - 1831 git bisect step - 1832 git bisect next - 1833 more ../cpu.config - 1834 ls .. - 1835 more ../cpuflash.config - 1836 cd .. - 1837 cp cpuflash.config cpu-5.15.config - 1838 cd linux - 1839 git checkout v5.15 - 1840 git bisect good - 1841 git checkout v5.15 - 1842 git bisect reset - 1843 git bisect start - 1844 git checkout v5.14 - 1845 cd .. - 1846 cpu i11 date - 1847 cpu i11 cat /proc/version - 1848 make cpuflashkernel - 1849 cp cpuflashkernel cpuflashkernel-5.15 - 1850 more linux/.config - 1851 make cpuflashkernel - 1852 rm cpuflashkernel - 1853 vi Makefile - 1854 ls *5.14* - 1855 fg - 1856 make cpuflashkernel - 1857 cpu i11 cp cpuflashkernel /xxx - 1858 cpu i11 kexec /xxx - 1859 cd linux - 1860 git bisect bad - 1861 git status - 1862 git log - 1863 git log v5.14..v5.15 - 1864 git bisect reset - 1865 git log - 1866 git checkout v5.14 - 1867 git bisect start - 1868 git bisect goot - 1869 git bisect good - 1870 git checkout v5.14 - 1871 git bisect bad - 1872 git bisect reset - 1873 git checkout v5.15 - 1874 git bisect stop - 1875 git bisect start - 1876 git bisect good - 1877 git checkout v5.14 - 1878 git bisect bad - 1879 git checkout v5.15 - 1880 git log - 1881 git log v5.14..v5.15 - 1882 git log v5.14 - 1883 git log v5.15 - 1884 git log v5.14 - 1885 git log v5.15 - 1886 git log --pretty=online v5.14..v5.15 - 1887 git log --pretty=oneline v5.14..v5.15 - 1888 git log --pretty=oneline v5.14..v5.15|wc - 1889 git log --pretty=oneline v5.14..v5.15|tail -4 - 1890 git log - 1891 git log --pretty=oneline v5.14..v5.15|tail -4 - 1892 git log --pretty=oneline v5.14..v5.15| - 1893 git log --pretty=oneline v5.14..v5.15 - 1894 git log --pretty=oneline v5.14..v5.15|tail -5 - 1895 git checkout f49fd6d3c070d08c4ae9696876c7098320e48dab - 1896 git bisect bad - 1897 git checkout v5.15 - 1898 git bisect reset - 1899 git log - 1900 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 - 1901 git bisect start - 1902 git bisect good - 1903 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 - 1904 git bisect bad - 1905 git status - 1906 git bisect reset - 1907 git branch - 1908 git checkout master - 1909 git log - 1910 git bisect start - 1911 git bisect good - 1912 git checkout 75fcbd38608c3ce9f4dc784f2ac8916add64c9a8 - 1913 git show - 1914 git checkout v5.14 - 1915 git log - 1916 git bisect bad - 1917 git checkout v.5.15 - 1918 git checkout v5.15 - 1919 git log - 1920 git log --pretty=oneline | head -1000 | tail -4 - 1921 git checkout b2d70c0dbf2731a37d1c7bcc86ab2387954d5f56 - 1922 make -j32 - 1923 cpu i11 date - 1924 cpu i11 cp arch/x86/boot/bzImage /xxx - 1925 cpu i11 kexec /xxx - 1926 cpu i11 date - 1927 cpu i11 cat /proc/version - 1928 date - 1929 git log - 1930 git log --pretty=oneline | head -1000 | tail -4 - 1931 git log --pretty=oneline | head -8000 | tail -4 - 1932 git checkout 26c22cfde5dd6e63f25c48458b0185dcb0fbb2fd - 1933 make -j32 - 1934 cpu i11 cp arch/x86/boot/bzImage /xxx - 1935 cpu i11 kexec /xxx - 1936 git bisect bad - 1937 git log HEAD..v5.15 - 1938 git log -pretty=oneline HEAD..v5.15 - 1939 git log --pretty=oneline HEAD..v5.15 - 1940 git log --pretty=oneline HEAD..v5.15|wc - 1941 git checkout v5.15 - 1942 git log --pretty=oneline HEAD..v5.15 | head -5000 | tail -4 - 1943 git log --pretty=oneline v5.15 | head -5000 | tail -4 - 1944 git checkout 18fc1a922e2416998c5d37c26c69aab940c07ffb - 1945 make mrproper - 1946 cp ../cpu-5.15.config .config - 1947 make -j32 - 1948 cpu i11 cp arch/x86/boot/bzImage /xxx - 1949 cpu i11 kexec /xxx - 1950 cpu i11 date - 1951 cpu i11 cat /proc/version - 1952 git show - 1953 git log - 1954 git log --pretty=oneline | head -5000 | tail -4 - 1955 git checkout e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b - 1956 make -j32 - 1957 cpu i11 date - 1958 cpu i11 cp arch/x86/boot/bzImage /xxx - 1959 cpu i11 kexec /xxx - 1960 cpu i11 date - 1961 cpu x date - 1962 git bisect bad - 1963 history - 1964 git bisect reset - 1965 git checkout 18fc1a922e2416998c5d37c26c69aab940c07ffb - 1966 git bisect start - 1967 git bisect good - 1968 git checkout e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b - 1969 git bisect bad - 1970 git log e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb - 1971 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb - 1972 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb |wc - 1973 git log --pretty=oneline e3a5f40c5809a2ffc5fb9f8d2d659733fc6a3c3b..18fc1a922e2416998c5d37c26c69aab940c07ffb |head -800 | tail -4 - 1974 git checkout 5313a37b881e57767bc37185bef2873862be8d47 - 1975 make -j32 - 1976 cpu i11 date - 1977 cpu i11 cp arch/x86/boot/bzImage /xxx - 1978 cpu i11 kexec /xxx - 1979 cpu i11 date - 1980 cpu i11 cat /proc/version - 1981 git log - 1982 history - 1983 git bisect start - 1984 git bisect good - 1985 git checkout e3a5f40c5809a2ffc5fb9f8 - 1986 git bisect bad - 1987 git log e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc - 1988 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | wc - 1989 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | head -8000 | tail -4 - 1990 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 - 1991 make -j32 - 1992 cpu i11 cp arch/x86/boot/bzImage /xxx - 1993 cpu i11 kexec /xxx - 1994 history - 1995 vi BISECT - 1996 cd linuxboot/mainboards/aeeon/up - 1997 cd ../i11/ - 1998 grep -r max.*cpu linux/Documentation/ - 1999 grep -r nbr.*cpu linux/Documentation/ - 2000 grep -r nr.*cpu linux/Documentation/ - 2001 pushd ~/AMD64/linux/ - 2002 git log - 2003 git branch - 2004 git log nastyhacksforlapic - 2005 git show nastyhacksforlapic - 2006 cpu i11 dmesg - 2007 cpu i11 /bbin/dmesg > /tmp/fail - 2008 vi /tmp/fail - 2009 git barnch - 2010 bit diff master - 2011 git diff master - 2012 vi arch/x86/kernel/apic/apic.c - 2013 popd - 2014 cd linux - 2015 git show - 2016 git checkout v5.15 - 2017 git bisect start - 2018 git show - 2019 git branch - 2020 more Makefile - 2021 git bisect reset - 2022 git log - 2023 git checkout v5.15^ - 2024 git show - 2025 git bisect start - 2026 more Makefile - 2027 git bisect good - 2028 git log --pretty=oneline e3a5f40..5313a37b881e57767bc37185bef2873862be8d47 | less - 2029 git show ce87d936889bdb183590647b9827bb2ae7f674c7 - 2030 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 - 2031 make -j32 - 2032 cpu i11 cp arch/x86/boot/bzImage /xxx - 2033 cpu i11 kexec /xxx - 2034 git log - 2035 git log v5.14^ - 2036 git log --pretty=oneline |less - 2037 git log - 2038 git log --pretty=oneline |less - 2039 git checkout 5497bc2a2bff777ce6d176650377362c0269b5eb - 2040 make -j32 - 2041 git log - 2042 git log v5.12^ - 2043 cpu i11 date - 2044 git log --pretty=oneline |less - 2045 git checkout cd81acc600a9684ea4b4d25a47900d38a3890eab - 2046 make -j32 - 2047 cpu i11 cp arch/x86/boot/bzImage /xxx - 2048 cpu i11 kexec /xxx - 2049 git log --pretty=oneline |less - 2050 git checkout cad14885a8d32c1c0d8eaa7bf5c0152a22b6080e - 2051 make -j32 - 2052 vi .config - 2053 make -j32 - 2054 more Makefile - 2055 more .config - 2056 cp .config ../cpuflash-5.4.0-rc6.config - 2057 cpu i11 cp arch/x86/boot/bzImage /xxx - 2058 cpu i11 kexec /xxx - 2059 git bisect bad - 2060 git bisect good v5.15 - 2061 it bisect bad - 2062 git bisect bad - 2063 history - 2064 ls -lR .git - 2065 rm .git/refs/bisect/* - 2066 git bisect good v5.15 - 2067 git bisect bad HEAD - 2068 ls .git/refs/bisect/ - 2069 cat .git/refs/bisect//* - 2070 history - 2071 git bisect good ce87d936889bdb183590647b9827bb2ae7f674c7 - 2072 git bisect resert - 2073 git bisect reset - 2074 ls .git/bisect - 2075 ls .git - 2076 git bisect good - 2077 git bisect bad v5.4 - 2078 git bisect log - 2079 git bisect next - 2080 git log - 2081 git bisect reset - 2082 more BISECT - 2083 git log ce87d936889bdb183590647b9827bb2ae7f674c7 - 2084 more ../BI - 2085 ls - 2086 mv BISECT .. - 2087 make clean - 2088 git log - 2089 cat ../BISECT - 2090 git checkout ce87d936889bdb183590647b9827bb2ae7f674c7 - 2091 history - 2092 make -j32 - 2093 more Makefile - 2094 cp ../cpu-5.14.config .config - 2095 make oldconfig - 2096 make -j32 - 2097 cpu i11 cp arch/x86/boot/bzImage /xxx - 2098 cpu i11 kexec /xxx - 2099 more Makefile - 2100 git bisect bad - 2101 more Makefile - 2102 git checkout v5.15 - 2103 git bisect good - 2104 ls .git/bisect - 2105 ls .git - 2106 ls -R .git - 2107 ls - 2108 more Makefile - 2109 git bisect log - 2110 git checkout v5.14 - 2111 make mrproper - 2112 cp ../cpu-5.14.config .config - 2113 make -j32 - 2114 cpu i11 cp arch/x86/boot/bzImage /xxx - 2115 cpu i11 kexec /xxx - 2116 more Makefile - 2117 git bisect bad - 2118 git log v5.14..v5.15 - 2119 git log --pretty=oneline v5.14..v5.15 |wc - 2120 git log --pretty=oneline v5.14..v5.15 | head -7000 | tail -4 - 2121 git checkout fad7cd3310db3099f95dd34312c77740fbc455e5 - 2122 git log --pretty=oneline HEAD..v5.15 |wc - 2123 git log --pretty=oneline fad7cd3310db..v5.15 |wc - 2124 git log --pretty=oneline v5.14..v5.15 | head -4000 | tail -4 - 2125 git checkout f35715a6574707ecfeac795d451fccd751e614b5 - 2126 git log --pretty=oneline HEAD..v5.15 |wc - 2127 make mrproper - 2128 cp ../cpu-5.15.config .config - 2129 make -j32 - 2130 cpu i11 date - 2131 more Makefile - 2132 cpu i11 date - 2133 more Makefile - 2134 cpu i11 kexec /xxx - 2135 cpu i11 cp arch/x86/boot/bzImage /xxx - 2136 cpu i11 kexec /xxx - 2137 git branch -a - 2138 git tag -l - 2139 git checkout v5.14-rc7 - 2140 make mrproper - 2141 cp ../cpu-5.15.config .config - 2142 make -j32 - 2143 cpu i11 date - 2144 cpu i11 cp arch/x86/boot/bzImage /xxx - 2145 cpu i11 kexec /xxx - 2146 git tag -l - 2147 git bisect bad - 2148 git checkout v5.15-rc1 - 2149 make mrproper - 2150 cp ../cpu-5.15.config .config - 2151 make -j32 - 2152 cpu i11 date - 2153 cpu i11 cp arch/x86/boot/bzImage /xxx - 2154 cpu i11 kexec /xxx - 2155 cpu i11 date - 2156 git bisect good - 2157 git log --pretty=oneline v5.14..v5.15-rc1 - 2158 git log --pretty=oneline v5.14..v5.15-rc1 |wc - 2159 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc - 2160 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | wc - 2161 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less - 2162* - 2163 make mrproper - 2164 cp ../cpu-5.15.config .config - 2165 make -j32 - 2166 cpu i11 date - 2167 more Makefile - 2168 git log - 2169 cpu i11 cp arch/x86/boot/bzImage /xxx - 2170 cpu i11 kexec /xxx - 2171 cpu i11 cp arch/x86/boot/bzImage /xxx - 2172 cpu i11 kexec /xxx - 2173 git bisect bad - 2174 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less - 2175 git checkout c6c3c5704ba70820f6b632982abde06661b7222a - 2176 git log - 2177 make mrproper - 2178 cp ../cpu-5.15.config .config - 2179 make -j32 - 2180 make - 2181 grep ACPI .config - 2182 git grep acpi.table.upgrade - 2183 vi drivers/acpi/Makefile - 2184 fg - 2185 make menuconfig - 2186 make - 2187 git grep acpi.mps.check - 2188 make menuconfig - 2189 make -j32 - 2190 make - 2191 vi arch/x86/kernel/setup.c - 2192 git grep acpi.mps.check - 2193 vi arch/x86/kernel/acpi/boot.c - 2194 grep APIC .config - 2195 grep MPS .config - 2196 make menuconfig - 2197 git grep MPS - 2198 git grep select.*MPS - 2199 git grep if.*MPP - 2200 git grep if.*MPS - 2201 git grep if.*MPS.*PARSE - 2202 git grep if.*MP.*PARSE - 2203 git grep select.*MPP - 2204 vi .config - 2205 make - 2206 git grep acpi.mps.check - 2207 vi include/linux/acpi.h - 2208 fg - 2209 vi arch/x86/kernel/setup.c - 2210 git grep acpi.boot.init - 2211 vi vi arch//x86//kernel/acpi/Makefile - 2212 grep ACPI .config - 2213 grep CONFIG_ACPI .config - 2214 grep CONFIG_ACPI= .config - 2215 make clena - 2216 make clean - 2217 make - 2218 git log --pretty=oneline v5.14..v5.15-rc1 |grep 5.15-rc | less - 2219 git checkout 34c59da47329ac50b9700035e0c3a829e6c3c183 - 2220 make - 2221 more Makefile - 2222 git log - 2223 cpu i11 date - 2224 cpu i11 cp arch/x86/boot/bzImage /xxx - 2225 cpu i11 kexec /xxx - 2226 history - 2227 git bisect bad - 2228 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less - 2229 history | grep checkout - 2230 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less - 2231 git show - 2232 git log - 2233 git show - 2234 git log --pretty=oneline v5.14..HEAD |grep 5.15-rc | less - 2235 git checkout 7c314bdfb64e4bb8d2f829376ed56ce663483752 - 2236 make mrproper - 2237 cp ../cpu-5.15.config .config - 2238 make -j32 - 2239 make - 2240 grep MPP .config - 2241 vi .config - 2242 make - 2243 grep MPP .config - 2244 make clean - 2245 make -j32 - 2246 git bisect reset - 2247 git bisect bad v5.15 - 2248 git bisect good v5.14 - 2249 make mrproper - 2250 cp ../cpu-5.14.config .config - 2251 make - 2252 cpu i11 cp arch/x86/boot/bzImage /xxx - 2253 cpu i11 kexec /xxx - 2254 history - 2255 git bisect good - 2256 more Makefile - 2257 git log - 2258 cp .config config-626bf91a292e2035af5b9d9cce35c5c138dfe06d - 2259 make mrproper - 2260 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config - 2261 make -j32 - 2262 cpu i11 cp arch/x86/boot/bzImage /xxx - 2263 cpu i11 kexec /xxx - 2264 cpu i11 cp arch/x86/boot/bzImage /xxx - 2265 cpu i11 kexec /xxx - 2266 git bisect good - 2267 git reflog - 2268 cp .config config-626bf91a292e2035af5b9d9cce35c5c138dfe06d - 2269 make mrproper - 2270 ls - 2271 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config - 2272 make - 2273 make -j32 - 2274 cpu i11 date - 2275 git log - 2276 git ref - 2277 cp .config config-a3b397b4fffb799d25658defafd962f0fb3e9fe0 - 2278 cpu i11 cp arch/x86/boot/bzImage /xxx - 2279 cpu i11 kexec /xxx - 2280 git bisect good - 2281 make mrproper - 2282 cp config-a3b397b4fffb799d25658defafd962f0fb3e9fe0 .config - 2283 make -j32 - 2284 cpu i11 date - 2285 cpu i11 cat /proc/version - 2286 ls - 2287 git log - 2288 cp .config config-3ff6d64e68abc231955d216236615918797614ae - 2289 cpu i11 cp arch/x86/boot/bzImage /xxx - 2290 cpu i11 kexec /xxx - 2291 history - 2292 git bisect good - 2293 make mrproper - 2294 ls - 2295 history - 2296 cp config-3ff6d64e68abc231955d216236615918797614ae .config - 2297 make -j32 - 2298 cpu i11 cp arch/x86/boot/bzImage /xxx - 2299 cpu i11 date - 2300 cpu i11 cp arch/x86/boot/bzImage /xxx - 2301 cpu i11 kexec /xxx - 2302 git bisect good - 2303 cp .config xxx - 2304 make mrproper - 2305 cp xxx .config - 2306 make -j32 - 2307 cpu i11 date - 2308 cpu i11 cp arch/x86/boot/bzImage /xxx - 2309 cpu i11 kexec /xxx - 2310 git log - 2311 cp .config config-79516af3497a5b89acb09f4a644f61d6c69e5f16 - 2312 git bisect good - 2313 make mrproper - 2314 cp config-79516af3497a5b89acb09f4a644f61d6c69e5f16 .config - 2315 make -j32 - 2316 cpu i11 date - 2317 git log - 2318 cp .config config-411a44c24a561e449b592ff631b7ae321f1eb559 - 2319 cpu i11 kexec /xxx - 2320 cpu i11 cp arch/x86/boot/bzImage /xxx - 2321 cpu i11 kexec /xxx - 2322 git bisect good - 2323 make mrproper - 2324 cp config-411a44c24a561e449b592ff631b7ae321f1eb559 .config - 2325 make -j32 - 2326 cpu i11 cp arch/x86/boot/bzImage /xxx - 2327 cpu i11 kexec /xxx - 2328 ping x - 2329 cpu x cate - 2330 more ~/.ssh/config - 2331 host sx1 - 2332 host i11 - 2333 cpu i11 cp arch/x86/boot/bzImage /xxx - 2334 cpu i11 kexec /xxx - 2335 more Makefile - 2336 more .config - 2337 grep upboard * - 2338 grep upboard .config - 2339 history | grep checkout - 2340 history - 2341 git log - 2342 echo REF 17d50f89410c5f71142657d9a012cbabcaadb134 has working i11 ethernet but not working display - 2343 ls - 2344 git checkout 626bf91a292e2035af5b9d9cce35c5c138dfe06d - 2345 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d - 2346 make mrproper - 2347 cp config-626bf91a292e2035af5b9d9cce35c5c138dfe06d .config - 2348 make -j32 - 2349 cpu i11 date - 2350 git log - 2351 cpu i11 cp arch/x86/boot/bzImage /xxx - 2352 kexec -h - 2353 which kexec - 2354 /usr/sbin/kexec - 2355 /usr/sbin/kexec --entry-32bit /xxx - 2356 cpu i11 cp arch/x86/boot/bzImage /xxx - 2357 cpu i11 /usr/sbin/kexec --entry-32bit /xxx - 2358 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx - 2359 cpu i11 date - 2360 git checkout v5.4 - 2361 make mrproper - 2362 cp ../cpuflash-5.4.0.config .config - 2363 make -j32 - 2364 git grep force.order - 2365 vi arch/x86//boot/compressed/Makefile - 2366 git grep force.order - 2367 vi .config - 2368 make -j32 - 2369 git log - 2370 cpu i11 cp arch/x86/boot/bzImage /xxx - 2371 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx - 2372 git bisect reset - 2373 git log - 2374 git bisect start - 2375 git bisect bad - 2376 git checkout v5.4 - 2377 git bisect good - 2378 cpu i11 date - 2379 git bisect good - 2380 cpu i11 date - 2381 pwd - 2382 git log - 2383 make mrproper - 2384 git log - 2385 git log v5.4 - 2386 cp ../cpu-5.15.config .config - 2387 make -j32 - 2388 cpu i11 cp arch/x86/boot/bzImage /xxx - 2389 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx - 2390 git log - 2391 git bisect bad - 2392 cp .config config-9ff9b0d392ea08090cd1780fb196f36dbb586529 - 2393 make mrproper - 2394 cp config-9ff9b0d392ea08090cd1780fb196f36dbb586529 .config - 2395 make -j32 - 2396 cpu i11 cp arch/x86/boot/bzImage /xxx - 2397 cpu i11 /usr/sbin/kexec -f --entry-32bit /xxx - 2398 git log - 2399 vi NOTES - 2400 history > NOTES - -9ff9b0d392ea08090cd1780fb196f36dbb586529 usb eth ok, other eth no, had to dhclient manually, display works -16e811fe0fc6b8344785feb2ab8c927685dca08e usb eth ok, other eth no, had to dhclient manually, display works, 9p works -ea6ec774372740b024a6c27caac0d0af8960ea15 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -25d8d4eecace9de5a6a2193e4df1917afbdd3052 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c0c419c04557117258d184876d94091d29bbd9a6 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c7fabbc51352f50cc58242a6dc3b9c1a3599849b usb eth ok, other eth no, had to dhclient manually, display works, 9p works -bdd0c277d9846977ec3f175341d4e7475ed26ef7 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -824186fbf73499adad545a3ae30b0a3feef4f05a usb eth ok, other eth no, had to dhclient manually, display works, 9p works -e348cf543426762d7babea49712534f95d0779b9 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c42d8c17a9523a4f28b6f6be3920a6674e50c5d3 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -b7a742cff3f618d848e62e5a1ade0ff816e93092 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c9015a1723373f2c8f8ac994f59470f4fb852623 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -7a3a7671fa6c7e90aff5f4242add2a40587b85ef usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c01db8b00d35d398fa8264d8d0d2031e8d512318 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -17212e7188783de75d2a1226c32d3fd7af96ad5d usb eth ok, other eth no, had to dhclient manually, display works, 9p works -40e2c465894e5b79b49f55d9574dbcda4ac0f08f nothing. no display anyway. not sure what else is wrong. - -git bisect good 40e2c465894e5b79b49f55d9574dbcda4ac0f08f -Bisecting: a merge base must be tested -[4036d05c38ca2f73c2ca182c3ebf0dfd066593a6] Merge series "ASoC: topology: fix use-after-free when removing components" from Pierre-Louis Bossart : -fuck -git bisect good -Bisecting: a merge base must be tested -[b3a9e3b9622ae10064826dccb4f7a52bd88c7407] Linux 5.8-rc1 -NOPE -commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407 (HEAD, tag: v5.8-rc1) usb eth ok, other eth no, had to dhclient manually, display works, 9p works - -git bisect bad -The merge base 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 is bad. -This means the bug has been fixed between 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 and [219d54332a09e8d8741c1e1982f5eae56099de85 4036d05c38ca2f73c2ca182c3ebf0dfd066593a6 40e2c465894e5b79b49f55d9574dbcda4ac0f08f 9ab9bc5115c9a1a57ed83a143c601c31488eadd9]. - -5.7 works. fuck. - -lets' go with new and old now. - 2060 git bisect reset - 2061 git bisect new 9ab9bc5115c9a1a57ed83a143c601c31488eadd9 - 2062 history - 2063 git bisect old 40e2c465894e5b79b49f55d9574dbcda4ac0f08f - 2064 history - -new == good -try to avoid make mrproper ... -will speed it up considerably, cross fingers -80ef846e9909f22ccdc2a4a6d931266cecce8b2c usb eth ok, other eth no, had to dhclient manually, display works, 9p works -2e63f6ce7ed2c4ff83ba30ad9ccad422289a6c63usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c2b0fc847f3122e5a4176c3772626a7a8facced0 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -539d39ad0c61b35f69565a037d7586deaf6d6166 bad no graphics -729ea4e064202aeec149b034b459501ef0a5060e usb eth ok, other eth no, had to dhclient manually, display works, 9p works -183be6f967fe37c3154bfac39e913c3bafe89d1b usb eth ok, other eth no, had to dhclient manually, display works, 9p works -97076ea41a093e67db20d0e40f728a054b799630 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -26b089a7fc3301d8f53f99dd3607513d7700b505 bad no graphics -b48397cb75ac17a5c6f99b3b41fab0ab1f879826 usb eth ok, other eth no, had to dhclient manually, display works, 9p works -c4e0e4ab4cf3ec2b3f0b628ead108d677644ebd9 bad no graphics -befc42e5dd4977b63dd3b0c0db05e21d56f13c2e bad no graphics -5a9ffb954a3933d7867f4341684a23e008d6839b bad no graphics -43567139f5f3808cda4f61c956576f8a4f2232cb usb eth ok, other eth no, had to dhclient manually, display works, 9p works -a9a3ed1eff3601b63aea4fb462d8b3b92c7c1e7e usb eth ok, other eth no, had to dhclient manually, display works, 9p works diff --git a/mainboards/aeeon/i11/cpu-5.14.config b/mainboards/aeeon/i11/cpu-5.14.config deleted file mode 100644 index 940c1b45..00000000 --- a/mainboards/aeeon/i11/cpu-5.14.config +++ /dev/null @@ -1,4099 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.14.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -CONFIG_X86_SYSFB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set -# CONFIG_INTEL_PMC_CORE is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpu-5.15.config b/mainboards/aeeon/i11/cpu-5.15.config deleted file mode 100644 index 4037658e..00000000 --- a/mainboards/aeeon/i11/cpu-5.15.config +++ /dev/null @@ -1,4114 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.15.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SBRMI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# CONFIG_INTEL_MENLOW is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTQ2134 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_RTQ6752 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IDXD_COMPAT is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_AMD_PTDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpu.config b/mainboards/aeeon/i11/cpu.config deleted file mode 100644 index e2d6a45f..00000000 --- a/mainboards/aeeon/i11/cpu.config +++ /dev/null @@ -1,4405 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.17.0-rc3 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -CONFIG_PREEMPT_BUILD=y -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -CONFIG_PREEMPT_COUNT=y -CONFIG_PREEMPTION=y -CONFIG_PREEMPT_DYNAMIC=y -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RCU=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_SWAP=y -CONFIG_MEMCG_KMEM=y -# CONFIG_BLK_CGROUP is not set -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_CLUSTER=y -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -# CONFIG_STRICT_SIGALTSTACK_SIZE is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_ACPI_PFRUT is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_AMD_PSTATE is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_PAGE_SIZE_LESS_THAN_64KB=y -CONFIG_PAGE_SIZE_LESS_THAN_256KB=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y -CONFIG_DYNAMIC_SIGFRAME=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_DEV_BSG_COMMON=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_ASN1=y -CONFIG_UNINLINE_SPIN_UNLOCK=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_THP_SWAP=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -# CONFIG_CMA is not set -# CONFIG_ZSWAP is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y -# CONFIG_ANON_VMA_NAME is not set - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_NET_EGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -CONFIG_NETFILTER_EGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_FD=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_DEVTMPFS_SAFE is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI_COMMON=y -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -CONFIG_BLK_DEV_BSG=y -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_MPI3MR is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_ASIX=y -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -CONFIG_NET_VENDOR_ENGLEDER=y -# CONFIG_TSNEP is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -CONFIG_ICE_HWTS=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -CONFIG_NET_VENDOR_VERTEXCOM=y -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CYPRESS_SF is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -CONFIG_SERIAL_8250_PERICOM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set - -# -# Intel pinctrl drivers -# -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set -# end of Intel pinctrl drivers - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_GPIO_SIM is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_MAX77976 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6620 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_NZXT_SMART2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SBRMI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA238 is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# CONFIG_INTEL_MENLOW is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX20086 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTQ2134 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_RTQ6752 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set - -# -# CEC support -# -# CONFIG_MEDIA_CEC_SUPPORT is not set -# end of CEC support - -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DEBUG_MODESET_LOCK is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_XIAOMI is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LETSKETCH is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NINTENDO is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set - -# -# Simple LED drivers -# -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IDXD is not set -# CONFIG_INTEL_IDXD_COMPAT is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_AMD_PTDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ASUS_TF103C_DOCK is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_SAR_INT1092 is not set -# CONFIG_INTEL_SKL_INT3472 is not set -# CONFIG_INTEL_PMC_CORE is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_ISHTP_ECLITE is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set -# CONFIG_INTEL_VSEC is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_BARCO_P50_GPIO is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -# CONFIG_SIEMENS_SIMATIC_IPC is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_LAN966X is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set - -# -# PHY drivers for Broadcom platforms -# -# CONFIG_BCM_KONA_USB2_PHY is not set -# end of PHY drivers for Broadcom platforms - -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_NETFS_SUPPORT=y -# CONFIG_NETFS_STATS is not set -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -CONFIG_EXFAT_FS=y -CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" -# CONFIG_NTFS_FS is not set -# CONFIG_NTFS3_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -# CONFIG_PSTORE_BLK is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -# end of Crypto library routines - -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -# CONFIG_XZ_DEC_MICROLZMA is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Networking Debugging -# -# CONFIG_NET_DEV_REFCNT_TRACKER is not set -# CONFIG_NET_NS_REFCNT_TRACKER is not set -# end of Networking Debugging - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_TABLE_CHECK is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set -CONFIG_DEBUG_PREEMPT=y - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y -CONFIG_BUILDTIME_MCOUNT_SORT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_PREEMPT_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -# CONFIG_BLK_DEV_IO_TRACE is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_FTRACE_SORT_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y -CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-4.9.config b/mainboards/aeeon/i11/cpuflash-4.9.config deleted file mode 100644 index aca3dabd..00000000 --- a/mainboards/aeeon/i11/cpuflash-4.9.config +++ /dev/null @@ -1,8168 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.9.45 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_HAVE_INTEL_TXT=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_DEBUG_RODATA=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_FHANDLE=y -CONFIG_USELIB=y -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y -CONFIG_AUDIT_WATCH=y -CONFIG_AUDIT_TREE=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -# CONFIG_TREE_RCU_TRACE is not set -# CONFIG_RCU_EXPEDITE_BOOT is not set -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_NMI_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_SWAP=y -# CONFIG_MEMCG_SWAP_ENABLED is not set -CONFIG_BLK_CGROUP=y -# CONFIG_DEBUG_BLK_CGROUP is not set -CONFIG_CGROUP_WRITEBACK=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_DEBUG is not set -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_BPF_SYSCALL=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_USERFAULTFD=y -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_FREELIST_RANDOM=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -CONFIG_PROFILING=y -CONFIG_TRACEPOINTS=y -CONFIG_KEXEC_CORE=y -CONFIG_OPROFILE=m -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -CONFIG_KPROBES=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_OPTPROBES=y -CONFIG_KPROBES_ON_FTRACE=y -CONFIG_UPROBES=y -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_KRETPROBES=y -CONFIG_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -CONFIG_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR_NONE is not set -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -CONFIG_CC_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_SLABINFO=y -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -CONFIG_MODULE_FORCE_LOAD=y -CONFIG_MODULE_UNLOAD=y -CONFIG_MODULE_FORCE_UNLOAD=y -CONFIG_MODVERSIONS=y -# CONFIG_MODULE_SRCVERSION_ALL is not set -CONFIG_MODULE_SIG=y -# CONFIG_MODULE_SIG_FORCE is not set -# CONFIG_MODULE_SIG_ALL is not set -# CONFIG_MODULE_SIG_SHA1 is not set -# CONFIG_MODULE_SIG_SHA224 is not set -CONFIG_MODULE_SIG_SHA256=y -# CONFIG_MODULE_SIG_SHA384 is not set -# CONFIG_MODULE_SIG_SHA512 is not set -CONFIG_MODULE_SIG_HASH="sha256" -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -CONFIG_BLK_DEV_INTEGRITY=y -CONFIG_BLK_DEV_THROTTLING=y -# CONFIG_BLK_CMDLINE_PARSER is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -CONFIG_ACORN_PARTITION=y -# CONFIG_ACORN_PARTITION_CUMANA is not set -# CONFIG_ACORN_PARTITION_EESOX is not set -CONFIG_ACORN_PARTITION_ICS=y -# CONFIG_ACORN_PARTITION_ADFS is not set -# CONFIG_ACORN_PARTITION_POWERTEC is not set -CONFIG_ACORN_PARTITION_RISCIX=y -# CONFIG_AIX_PARTITION is not set -CONFIG_OSF_PARTITION=y -CONFIG_AMIGA_PARTITION=y -CONFIG_ATARI_PARTITION=y -CONFIG_MAC_PARTITION=y -CONFIG_MSDOS_PARTITION=y -CONFIG_BSD_DISKLABEL=y -CONFIG_MINIX_SUBPARTITION=y -CONFIG_SOLARIS_X86_PARTITION=y -CONFIG_UNIXWARE_DISKLABEL=y -CONFIG_LDM_PARTITION=y -# CONFIG_LDM_DEBUG is not set -CONFIG_SGI_PARTITION=y -CONFIG_ULTRIX_PARTITION=y -CONFIG_SUN_PARTITION=y -CONFIG_KARMA_PARTITION=y -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -# CONFIG_CMDLINE_PARTITION is not set -CONFIG_BLOCK_COMPAT=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -CONFIG_CFQ_GROUP_IOSCHED=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -CONFIG_PREEMPT_NOTIFIERS=y -CONFIG_PADATA=y -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_FREEZER=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_FAST_FEATURE_TESTS=y -CONFIG_X86_X2APIC=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -CONFIG_X86_INTEL_LPSS=y -CONFIG_X86_AMD_PLATFORM_DEVICE=y -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -# CONFIG_QUEUED_LOCK_STAT is not set -CONFIG_XEN=y -CONFIG_XEN_DOM0=y -CONFIG_XEN_PVHVM=y -CONFIG_XEN_512GB=y -CONFIG_XEN_SAVE_RESTORE=y -# CONFIG_XEN_DEBUG_FS is not set -CONFIG_XEN_PVH=y -CONFIG_KVM_GUEST=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -CONFIG_CALGARY_IOMMU=y -CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -CONFIG_X86_MCE=y -CONFIG_X86_MCE_INTEL=y -CONFIG_X86_MCE_AMD=y -CONFIG_X86_MCE_THRESHOLD=y -CONFIG_X86_MCE_INJECT=m -CONFIG_X86_THERMAL_VECTOR=y - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=m -CONFIG_PERF_EVENTS_INTEL_RAPL=m -CONFIG_PERF_EVENTS_INTEL_CSTATE=m -CONFIG_PERF_EVENTS_AMD_POWER=m -# CONFIG_VM86 is not set -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -CONFIG_I8K=m -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -CONFIG_MICROCODE_OLD_INTERFACE=y -CONFIG_X86_MSR=m -CONFIG_X86_CPUID=m -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_NUMA=y -CONFIG_AMD_NUMA=y -CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NODES_SPAN_OTHER_NODES=y -CONFIG_NUMA_EMU=y -CONFIG_NODES_SHIFT=6 -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -# CONFIG_MOVABLE_NODE is not set -CONFIG_HAVE_BOOTMEM_INFO_NODE=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_MEMORY_HOTREMOVE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -CONFIG_BALLOON_COMPACTION=y -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -CONFIG_HWPOISON_INJECT=m -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -CONFIG_FRONTSWAP=y -# CONFIG_CMA is not set -CONFIG_MEM_SOFT_DIRTY=y -CONFIG_ZSWAP=y -CONFIG_ZPOOL=y -CONFIG_ZBUD=y -# CONFIG_Z3FOLD is not set -CONFIG_ZSMALLOC=m -# CONFIG_PGTABLE_MAPPING is not set -# CONFIG_ZSMALLOC_STAT is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ZONE_DEVICE=y -CONFIG_FRAME_VECTOR=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -CONFIG_X86_PMEM_LEGACY_DEVICE=y -CONFIG_X86_PMEM_LEGACY=m -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_MPX=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_KEXEC_VERIFY_SIG=y -CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y -CONFIG_CRASH_DUMP=y -# CONFIG_KEXEC_JUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_COMPAT_VDSO is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_CMDLINE_BOOL is not set -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -CONFIG_LIVEPATCH=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_USE_PERCPU_NUMA_NODE_ID=y - -# -# Power management and ACPI options -# -CONFIG_ARCH_HIBERNATION_HEADER=y -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_HIBERNATION=y -CONFIG_PM_STD_PARTITION="" -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=m -CONFIG_ACPI_BATTERY=m -CONFIG_ACPI_BUTTON=m -CONFIG_ACPI_VIDEO=m -CONFIG_ACPI_FAN=m -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_IPMI=m -CONFIG_ACPI_HOTPLUG_CPU=y -CONFIG_ACPI_PROCESSOR_AGGREGATOR=m -CONFIG_ACPI_THERMAL=m -CONFIG_ACPI_NUMA=y -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_X86_PM_TIMER=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -CONFIG_ACPI_SBS=m -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_ACPI_NFIT=m -# CONFIG_ACPI_NFIT_DEBUG is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -CONFIG_DPTF_POWER=m -CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_SFI=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_STAT_DETAILS is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -CONFIG_CPU_FREQ_GOV_POWERSAVE=m -CONFIG_CPU_FREQ_GOV_USERSPACE=m -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -# CONFIG_CPUFREQ_DT is not set -CONFIG_X86_INTEL_PSTATE=y -CONFIG_X86_PCC_CPUFREQ=m -CONFIG_X86_ACPI_CPUFREQ=m -CONFIG_X86_ACPI_CPUFREQ_CPB=y -CONFIG_X86_POWERNOW_K8=m -CONFIG_X86_AMD_FREQ_SENSITIVITY=m -CONFIG_X86_SPEEDSTEP_CENTRINO=m -CONFIG_X86_P4_CLOCKMOD=m - -# -# shared options -# -CONFIG_X86_SPEEDSTEP_LIB=m - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -CONFIG_INTEL_IDLE=y - -# -# Memory power savings -# -CONFIG_I7300_IDLE_IOAT_CHANNEL=y -CONFIG_I7300_IDLE=m - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_XEN=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEAER_INJECT=m -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -CONFIG_PCI_STUB=m -CONFIG_XEN_PCIDEV_FRONTEND=m -CONFIG_HT_IRQ=y -CONFIG_PCI_ATS=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -CONFIG_PCI_HYPERV=m -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -CONFIG_HOTPLUG_PCI_ACPI_IBM=m -CONFIG_HOTPLUG_PCI_CPCI=y -CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m -CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m -CONFIG_HOTPLUG_PCI_SHPC=m - -# -# PCI host controller drivers -# -# CONFIG_PCIE_DW_PLAT is not set -CONFIG_VMD=m -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -CONFIG_PCCARD=m -CONFIG_PCMCIA=m -CONFIG_PCMCIA_LOAD_CIS=y -CONFIG_CARDBUS=y - -# -# PC-card bridges -# -CONFIG_YENTA=m -CONFIG_YENTA_O2=y -CONFIG_YENTA_RICOH=y -CONFIG_YENTA_TI=y -CONFIG_YENTA_ENE_TUNE=y -CONFIG_YENTA_TOSHIBA=y -CONFIG_PD6729=m -CONFIG_I82092=m -CONFIG_PCCARD_NONSTATIC=y -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -CONFIG_BINFMT_MISC=m -CONFIG_COREDUMP=y -CONFIG_IA32_EMULATION=y -CONFIG_IA32_AOUT=y -CONFIG_X86_X32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -CONFIG_KEYS_COMPAT=y -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_PMC_ATOM=y -CONFIG_NET=y -CONFIG_COMPAT_NETLINK_MESSAGES=y -CONFIG_NET_INGRESS=y -CONFIG_NET_EGRESS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=m -CONFIG_UNIX=y -CONFIG_UNIX_DIAG=m -CONFIG_XFRM=y -CONFIG_XFRM_ALGO=m -CONFIG_XFRM_USER=m -CONFIG_XFRM_SUB_POLICY=y -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -CONFIG_XFRM_IPCOMP=m -CONFIG_NET_KEY=m -CONFIG_NET_KEY_MIGRATE=y -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_ROUTE_CLASSID=y -# CONFIG_IP_PNP is not set -CONFIG_NET_IPIP=m -CONFIG_NET_IPGRE_DEMUX=m -CONFIG_NET_IP_TUNNEL=m -CONFIG_NET_IPGRE=m -CONFIG_NET_IPGRE_BROADCAST=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -CONFIG_NET_IPVTI=m -CONFIG_NET_UDP_TUNNEL=m -CONFIG_NET_FOU=m -CONFIG_NET_FOU_IP_TUNNELS=y -CONFIG_INET_AH=m -CONFIG_INET_ESP=m -CONFIG_INET_IPCOMP=m -CONFIG_INET_XFRM_TUNNEL=m -CONFIG_INET_TUNNEL=m -CONFIG_INET_XFRM_MODE_TRANSPORT=m -CONFIG_INET_XFRM_MODE_TUNNEL=m -CONFIG_INET_XFRM_MODE_BEET=m -CONFIG_INET_DIAG=m -CONFIG_INET_TCP_DIAG=m -CONFIG_INET_UDP_DIAG=m -CONFIG_INET_DIAG_DESTROY=y -CONFIG_TCP_CONG_ADVANCED=y -CONFIG_TCP_CONG_BIC=m -CONFIG_TCP_CONG_CUBIC=y -CONFIG_TCP_CONG_WESTWOOD=m -CONFIG_TCP_CONG_HTCP=m -CONFIG_TCP_CONG_HSTCP=m -CONFIG_TCP_CONG_HYBLA=m -CONFIG_TCP_CONG_VEGAS=m -CONFIG_TCP_CONG_NV=m -CONFIG_TCP_CONG_SCALABLE=m -CONFIG_TCP_CONG_LP=m -CONFIG_TCP_CONG_VENO=m -CONFIG_TCP_CONG_YEAH=m -CONFIG_TCP_CONG_ILLINOIS=m -CONFIG_TCP_CONG_DCTCP=m -CONFIG_TCP_CONG_CDG=m -CONFIG_TCP_CONG_BBR=m -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -CONFIG_INET6_AH=m -CONFIG_INET6_ESP=m -CONFIG_INET6_IPCOMP=m -CONFIG_IPV6_MIP6=y -CONFIG_IPV6_ILA=m -CONFIG_INET6_XFRM_TUNNEL=m -CONFIG_INET6_TUNNEL=m -CONFIG_INET6_XFRM_MODE_TRANSPORT=m -CONFIG_INET6_XFRM_MODE_TUNNEL=m -CONFIG_INET6_XFRM_MODE_BEET=m -CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m -CONFIG_IPV6_VTI=m -CONFIG_IPV6_SIT=m -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=m -CONFIG_IPV6_GRE=m -CONFIG_IPV6_FOU=m -CONFIG_IPV6_FOU_TUNNEL=m -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_NETLABEL is not set -CONFIG_NETWORK_SECMARK=y -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -# CONFIG_NETFILTER_DEBUG is not set -CONFIG_NETFILTER_ADVANCED=y -CONFIG_BRIDGE_NETFILTER=m - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -CONFIG_NETFILTER_NETLINK=m -CONFIG_NETFILTER_NETLINK_ACCT=m -CONFIG_NETFILTER_NETLINK_QUEUE=m -CONFIG_NETFILTER_NETLINK_LOG=m -CONFIG_NF_CONNTRACK=m -CONFIG_NF_LOG_COMMON=m -CONFIG_NF_CONNTRACK_MARK=y -CONFIG_NF_CONNTRACK_SECMARK=y -CONFIG_NF_CONNTRACK_ZONES=y -CONFIG_NF_CONNTRACK_PROCFS=y -CONFIG_NF_CONNTRACK_EVENTS=y -CONFIG_NF_CONNTRACK_TIMEOUT=y -CONFIG_NF_CONNTRACK_TIMESTAMP=y -CONFIG_NF_CONNTRACK_LABELS=y -CONFIG_NF_CT_PROTO_DCCP=m -CONFIG_NF_CT_PROTO_GRE=m -CONFIG_NF_CT_PROTO_SCTP=m -CONFIG_NF_CT_PROTO_UDPLITE=m -CONFIG_NF_CONNTRACK_AMANDA=m -CONFIG_NF_CONNTRACK_FTP=m -CONFIG_NF_CONNTRACK_H323=m -CONFIG_NF_CONNTRACK_IRC=m -CONFIG_NF_CONNTRACK_BROADCAST=m -CONFIG_NF_CONNTRACK_NETBIOS_NS=m -CONFIG_NF_CONNTRACK_SNMP=m -CONFIG_NF_CONNTRACK_PPTP=m -CONFIG_NF_CONNTRACK_SANE=m -CONFIG_NF_CONNTRACK_SIP=m -CONFIG_NF_CONNTRACK_TFTP=m -CONFIG_NF_CT_NETLINK=m -CONFIG_NF_CT_NETLINK_TIMEOUT=m -CONFIG_NF_CT_NETLINK_HELPER=m -CONFIG_NETFILTER_NETLINK_GLUE_CT=y -CONFIG_NF_NAT=m -CONFIG_NF_NAT_NEEDED=y -CONFIG_NF_NAT_PROTO_DCCP=m -CONFIG_NF_NAT_PROTO_UDPLITE=m -CONFIG_NF_NAT_PROTO_SCTP=m -CONFIG_NF_NAT_AMANDA=m -CONFIG_NF_NAT_FTP=m -CONFIG_NF_NAT_IRC=m -CONFIG_NF_NAT_SIP=m -CONFIG_NF_NAT_TFTP=m -CONFIG_NF_NAT_REDIRECT=m -CONFIG_NETFILTER_SYNPROXY=m -CONFIG_NF_TABLES=m -CONFIG_NF_TABLES_INET=m -CONFIG_NF_TABLES_NETDEV=m -CONFIG_NFT_EXTHDR=m -CONFIG_NFT_META=m -CONFIG_NFT_NUMGEN=m -CONFIG_NFT_CT=m -CONFIG_NFT_SET_RBTREE=m -CONFIG_NFT_SET_HASH=m -CONFIG_NFT_COUNTER=m -CONFIG_NFT_LOG=m -CONFIG_NFT_LIMIT=m -CONFIG_NFT_MASQ=m -CONFIG_NFT_REDIR=m -CONFIG_NFT_NAT=m -CONFIG_NFT_QUEUE=m -CONFIG_NFT_QUOTA=m -CONFIG_NFT_REJECT=m -CONFIG_NFT_REJECT_INET=m -CONFIG_NFT_COMPAT=m -CONFIG_NFT_HASH=m -CONFIG_NF_DUP_NETDEV=m -CONFIG_NFT_DUP_NETDEV=m -CONFIG_NFT_FWD_NETDEV=m -CONFIG_NETFILTER_XTABLES=m - -# -# Xtables combined modules -# -CONFIG_NETFILTER_XT_MARK=m -CONFIG_NETFILTER_XT_CONNMARK=m -CONFIG_NETFILTER_XT_SET=m - -# -# Xtables targets -# -CONFIG_NETFILTER_XT_TARGET_AUDIT=m -CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m -CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m -CONFIG_NETFILTER_XT_TARGET_CONNMARK=m -CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m -CONFIG_NETFILTER_XT_TARGET_CT=m -CONFIG_NETFILTER_XT_TARGET_DSCP=m -CONFIG_NETFILTER_XT_TARGET_HL=m -CONFIG_NETFILTER_XT_TARGET_HMARK=m -CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m -CONFIG_NETFILTER_XT_TARGET_LED=m -CONFIG_NETFILTER_XT_TARGET_LOG=m -CONFIG_NETFILTER_XT_TARGET_MARK=m -CONFIG_NETFILTER_XT_NAT=m -CONFIG_NETFILTER_XT_TARGET_NETMAP=m -CONFIG_NETFILTER_XT_TARGET_NFLOG=m -CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m -# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set -CONFIG_NETFILTER_XT_TARGET_RATEEST=m -CONFIG_NETFILTER_XT_TARGET_REDIRECT=m -CONFIG_NETFILTER_XT_TARGET_TEE=m -CONFIG_NETFILTER_XT_TARGET_TPROXY=m -CONFIG_NETFILTER_XT_TARGET_TRACE=m -CONFIG_NETFILTER_XT_TARGET_SECMARK=m -CONFIG_NETFILTER_XT_TARGET_TCPMSS=m -CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m - -# -# Xtables matches -# -CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m -CONFIG_NETFILTER_XT_MATCH_BPF=m -CONFIG_NETFILTER_XT_MATCH_CGROUP=m -CONFIG_NETFILTER_XT_MATCH_CLUSTER=m -CONFIG_NETFILTER_XT_MATCH_COMMENT=m -CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m -CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m -CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m -CONFIG_NETFILTER_XT_MATCH_CONNMARK=m -CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m -CONFIG_NETFILTER_XT_MATCH_CPU=m -CONFIG_NETFILTER_XT_MATCH_DCCP=m -CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m -CONFIG_NETFILTER_XT_MATCH_DSCP=m -CONFIG_NETFILTER_XT_MATCH_ECN=m -CONFIG_NETFILTER_XT_MATCH_ESP=m -CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m -CONFIG_NETFILTER_XT_MATCH_HELPER=m -CONFIG_NETFILTER_XT_MATCH_HL=m -CONFIG_NETFILTER_XT_MATCH_IPCOMP=m -CONFIG_NETFILTER_XT_MATCH_IPRANGE=m -CONFIG_NETFILTER_XT_MATCH_IPVS=m -CONFIG_NETFILTER_XT_MATCH_L2TP=m -CONFIG_NETFILTER_XT_MATCH_LENGTH=m -CONFIG_NETFILTER_XT_MATCH_LIMIT=m -CONFIG_NETFILTER_XT_MATCH_MAC=m -CONFIG_NETFILTER_XT_MATCH_MARK=m -CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m -CONFIG_NETFILTER_XT_MATCH_NFACCT=m -CONFIG_NETFILTER_XT_MATCH_OSF=m -CONFIG_NETFILTER_XT_MATCH_OWNER=m -CONFIG_NETFILTER_XT_MATCH_POLICY=m -CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m -CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m -CONFIG_NETFILTER_XT_MATCH_QUOTA=m -CONFIG_NETFILTER_XT_MATCH_RATEEST=m -CONFIG_NETFILTER_XT_MATCH_REALM=m -CONFIG_NETFILTER_XT_MATCH_RECENT=m -CONFIG_NETFILTER_XT_MATCH_SCTP=m -CONFIG_NETFILTER_XT_MATCH_SOCKET=m -CONFIG_NETFILTER_XT_MATCH_STATE=m -CONFIG_NETFILTER_XT_MATCH_STATISTIC=m -CONFIG_NETFILTER_XT_MATCH_STRING=m -CONFIG_NETFILTER_XT_MATCH_TCPMSS=m -CONFIG_NETFILTER_XT_MATCH_TIME=m -CONFIG_NETFILTER_XT_MATCH_U32=m -CONFIG_IP_SET=m -CONFIG_IP_SET_MAX=256 -CONFIG_IP_SET_BITMAP_IP=m -CONFIG_IP_SET_BITMAP_IPMAC=m -CONFIG_IP_SET_BITMAP_PORT=m -CONFIG_IP_SET_HASH_IP=m -CONFIG_IP_SET_HASH_IPMARK=m -CONFIG_IP_SET_HASH_IPPORT=m -CONFIG_IP_SET_HASH_IPPORTIP=m -CONFIG_IP_SET_HASH_IPPORTNET=m -CONFIG_IP_SET_HASH_MAC=m -CONFIG_IP_SET_HASH_NETPORTNET=m -CONFIG_IP_SET_HASH_NET=m -CONFIG_IP_SET_HASH_NETNET=m -CONFIG_IP_SET_HASH_NETPORT=m -CONFIG_IP_SET_HASH_NETIFACE=m -CONFIG_IP_SET_LIST_SET=m -CONFIG_IP_VS=m -CONFIG_IP_VS_IPV6=y -# CONFIG_IP_VS_DEBUG is not set -CONFIG_IP_VS_TAB_BITS=12 - -# -# IPVS transport protocol load balancing support -# -CONFIG_IP_VS_PROTO_TCP=y -CONFIG_IP_VS_PROTO_UDP=y -CONFIG_IP_VS_PROTO_AH_ESP=y -CONFIG_IP_VS_PROTO_ESP=y -CONFIG_IP_VS_PROTO_AH=y -CONFIG_IP_VS_PROTO_SCTP=y - -# -# IPVS scheduler -# -CONFIG_IP_VS_RR=m -CONFIG_IP_VS_WRR=m -CONFIG_IP_VS_LC=m -CONFIG_IP_VS_WLC=m -CONFIG_IP_VS_FO=m -CONFIG_IP_VS_OVF=m -CONFIG_IP_VS_LBLC=m -CONFIG_IP_VS_LBLCR=m -CONFIG_IP_VS_DH=m -CONFIG_IP_VS_SH=m -CONFIG_IP_VS_SED=m -CONFIG_IP_VS_NQ=m - -# -# IPVS SH scheduler -# -CONFIG_IP_VS_SH_TAB_BITS=8 - -# -# IPVS application helper -# -CONFIG_IP_VS_FTP=m -CONFIG_IP_VS_NFCT=y -CONFIG_IP_VS_PE_SIP=m - -# -# IP: Netfilter Configuration -# -CONFIG_NF_DEFRAG_IPV4=m -CONFIG_NF_CONNTRACK_IPV4=m -CONFIG_NF_TABLES_IPV4=m -CONFIG_NFT_CHAIN_ROUTE_IPV4=m -CONFIG_NFT_REJECT_IPV4=m -CONFIG_NFT_DUP_IPV4=m -CONFIG_NF_TABLES_ARP=m -CONFIG_NF_DUP_IPV4=m -CONFIG_NF_LOG_ARP=m -CONFIG_NF_LOG_IPV4=m -CONFIG_NF_REJECT_IPV4=m -CONFIG_NF_NAT_IPV4=m -CONFIG_NFT_CHAIN_NAT_IPV4=m -CONFIG_NF_NAT_MASQUERADE_IPV4=m -CONFIG_NFT_MASQ_IPV4=m -CONFIG_NFT_REDIR_IPV4=m -CONFIG_NF_NAT_SNMP_BASIC=m -CONFIG_NF_NAT_PROTO_GRE=m -CONFIG_NF_NAT_PPTP=m -CONFIG_NF_NAT_H323=m -CONFIG_IP_NF_IPTABLES=m -CONFIG_IP_NF_MATCH_AH=m -CONFIG_IP_NF_MATCH_ECN=m -CONFIG_IP_NF_MATCH_RPFILTER=m -CONFIG_IP_NF_MATCH_TTL=m -CONFIG_IP_NF_FILTER=m -CONFIG_IP_NF_TARGET_REJECT=m -CONFIG_IP_NF_TARGET_SYNPROXY=m -CONFIG_IP_NF_NAT=m -CONFIG_IP_NF_TARGET_MASQUERADE=m -CONFIG_IP_NF_TARGET_NETMAP=m -CONFIG_IP_NF_TARGET_REDIRECT=m -CONFIG_IP_NF_MANGLE=m -CONFIG_IP_NF_TARGET_CLUSTERIP=m -CONFIG_IP_NF_TARGET_ECN=m -CONFIG_IP_NF_TARGET_TTL=m -CONFIG_IP_NF_RAW=m -CONFIG_IP_NF_SECURITY=m -CONFIG_IP_NF_ARPTABLES=m -CONFIG_IP_NF_ARPFILTER=m -CONFIG_IP_NF_ARP_MANGLE=m - -# -# IPv6: Netfilter Configuration -# -CONFIG_NF_DEFRAG_IPV6=m -CONFIG_NF_CONNTRACK_IPV6=m -CONFIG_NF_TABLES_IPV6=m -CONFIG_NFT_CHAIN_ROUTE_IPV6=m -CONFIG_NFT_REJECT_IPV6=m -CONFIG_NFT_DUP_IPV6=m -CONFIG_NF_DUP_IPV6=m -CONFIG_NF_REJECT_IPV6=m -CONFIG_NF_LOG_IPV6=m -CONFIG_NF_NAT_IPV6=m -CONFIG_NFT_CHAIN_NAT_IPV6=m -CONFIG_NF_NAT_MASQUERADE_IPV6=m -CONFIG_NFT_MASQ_IPV6=m -CONFIG_NFT_REDIR_IPV6=m -CONFIG_IP6_NF_IPTABLES=m -CONFIG_IP6_NF_MATCH_AH=m -CONFIG_IP6_NF_MATCH_EUI64=m -CONFIG_IP6_NF_MATCH_FRAG=m -CONFIG_IP6_NF_MATCH_OPTS=m -CONFIG_IP6_NF_MATCH_HL=m -CONFIG_IP6_NF_MATCH_IPV6HEADER=m -CONFIG_IP6_NF_MATCH_MH=m -CONFIG_IP6_NF_MATCH_RPFILTER=m -CONFIG_IP6_NF_MATCH_RT=m -CONFIG_IP6_NF_TARGET_HL=m -CONFIG_IP6_NF_FILTER=m -CONFIG_IP6_NF_TARGET_REJECT=m -CONFIG_IP6_NF_TARGET_SYNPROXY=m -CONFIG_IP6_NF_MANGLE=m -CONFIG_IP6_NF_RAW=m -CONFIG_IP6_NF_SECURITY=m -CONFIG_IP6_NF_NAT=m -CONFIG_IP6_NF_TARGET_MASQUERADE=m -CONFIG_IP6_NF_TARGET_NPT=m - -# -# DECnet: Netfilter Configuration -# -CONFIG_DECNET_NF_GRABULATOR=m -CONFIG_NF_TABLES_BRIDGE=m -CONFIG_NFT_BRIDGE_META=m -CONFIG_NFT_BRIDGE_REJECT=m -CONFIG_NF_LOG_BRIDGE=m -CONFIG_BRIDGE_NF_EBTABLES=m -CONFIG_BRIDGE_EBT_BROUTE=m -CONFIG_BRIDGE_EBT_T_FILTER=m -CONFIG_BRIDGE_EBT_T_NAT=m -CONFIG_BRIDGE_EBT_802_3=m -CONFIG_BRIDGE_EBT_AMONG=m -CONFIG_BRIDGE_EBT_ARP=m -CONFIG_BRIDGE_EBT_IP=m -CONFIG_BRIDGE_EBT_IP6=m -CONFIG_BRIDGE_EBT_LIMIT=m -CONFIG_BRIDGE_EBT_MARK=m -CONFIG_BRIDGE_EBT_PKTTYPE=m -CONFIG_BRIDGE_EBT_STP=m -CONFIG_BRIDGE_EBT_VLAN=m -CONFIG_BRIDGE_EBT_ARPREPLY=m -CONFIG_BRIDGE_EBT_DNAT=m -CONFIG_BRIDGE_EBT_MARK_T=m -CONFIG_BRIDGE_EBT_REDIRECT=m -CONFIG_BRIDGE_EBT_SNAT=m -CONFIG_BRIDGE_EBT_LOG=m -CONFIG_BRIDGE_EBT_NFLOG=m -CONFIG_IP_DCCP=m -CONFIG_INET_DCCP_DIAG=m - -# -# DCCP CCIDs Configuration -# -# CONFIG_IP_DCCP_CCID2_DEBUG is not set -CONFIG_IP_DCCP_CCID3=y -# CONFIG_IP_DCCP_CCID3_DEBUG is not set -CONFIG_IP_DCCP_TFRC_LIB=y - -# -# DCCP Kernel Hacking -# -# CONFIG_IP_DCCP_DEBUG is not set -CONFIG_NET_DCCPPROBE=m -CONFIG_IP_SCTP=m -CONFIG_NET_SCTPPROBE=m -# CONFIG_SCTP_DBG_OBJCNT is not set -CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y -# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set -# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set -CONFIG_SCTP_COOKIE_HMAC_MD5=y -CONFIG_SCTP_COOKIE_HMAC_SHA1=y -CONFIG_INET_SCTP_DIAG=m -CONFIG_RDS=m -CONFIG_RDS_RDMA=m -CONFIG_RDS_TCP=m -# CONFIG_RDS_DEBUG is not set -CONFIG_TIPC=m -CONFIG_TIPC_MEDIA_IB=y -CONFIG_TIPC_MEDIA_UDP=y -CONFIG_ATM=m -CONFIG_ATM_CLIP=m -# CONFIG_ATM_CLIP_NO_ICMP is not set -CONFIG_ATM_LANE=m -CONFIG_ATM_MPOA=m -CONFIG_ATM_BR2684=m -# CONFIG_ATM_BR2684_IPFILTER is not set -CONFIG_L2TP=m -CONFIG_L2TP_DEBUGFS=m -CONFIG_L2TP_V3=y -CONFIG_L2TP_IP=m -CONFIG_L2TP_ETH=m -CONFIG_STP=m -CONFIG_GARP=m -CONFIG_MRP=m -CONFIG_BRIDGE=m -CONFIG_BRIDGE_IGMP_SNOOPING=y -CONFIG_BRIDGE_VLAN_FILTERING=y -CONFIG_HAVE_NET_DSA=y -CONFIG_VLAN_8021Q=m -CONFIG_VLAN_8021Q_GVRP=y -CONFIG_VLAN_8021Q_MVRP=y -CONFIG_DECNET=m -# CONFIG_DECNET_ROUTER is not set -CONFIG_LLC=m -CONFIG_LLC2=m -CONFIG_IPX=m -# CONFIG_IPX_INTERN is not set -CONFIG_ATALK=m -CONFIG_DEV_APPLETALK=m -CONFIG_IPDDP=m -CONFIG_IPDDP_ENCAP=y -# CONFIG_X25 is not set -CONFIG_LAPB=m -CONFIG_PHONET=m -CONFIG_6LOWPAN=m -# CONFIG_6LOWPAN_DEBUGFS is not set -CONFIG_6LOWPAN_NHC=m -CONFIG_6LOWPAN_NHC_DEST=m -CONFIG_6LOWPAN_NHC_FRAGMENT=m -CONFIG_6LOWPAN_NHC_HOP=m -CONFIG_6LOWPAN_NHC_IPV6=m -CONFIG_6LOWPAN_NHC_MOBILITY=m -CONFIG_6LOWPAN_NHC_ROUTING=m -CONFIG_6LOWPAN_NHC_UDP=m -# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set -# CONFIG_6LOWPAN_GHC_UDP is not set -# CONFIG_6LOWPAN_GHC_ICMPV6 is not set -# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set -# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set -# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set -CONFIG_IEEE802154=m -# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set -CONFIG_IEEE802154_SOCKET=m -CONFIG_IEEE802154_6LOWPAN=m -CONFIG_MAC802154=m -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -CONFIG_NET_SCH_CBQ=m -CONFIG_NET_SCH_HTB=m -CONFIG_NET_SCH_HFSC=m -CONFIG_NET_SCH_ATM=m -CONFIG_NET_SCH_PRIO=m -CONFIG_NET_SCH_MULTIQ=m -CONFIG_NET_SCH_RED=m -CONFIG_NET_SCH_SFB=m -CONFIG_NET_SCH_SFQ=m -CONFIG_NET_SCH_TEQL=m -CONFIG_NET_SCH_TBF=m -CONFIG_NET_SCH_GRED=m -CONFIG_NET_SCH_DSMARK=m -CONFIG_NET_SCH_NETEM=m -CONFIG_NET_SCH_DRR=m -CONFIG_NET_SCH_MQPRIO=m -CONFIG_NET_SCH_CHOKE=m -CONFIG_NET_SCH_QFQ=m -CONFIG_NET_SCH_CODEL=m -CONFIG_NET_SCH_FQ_CODEL=m -CONFIG_NET_SCH_FQ=m -CONFIG_NET_SCH_HHF=m -CONFIG_NET_SCH_PIE=m -CONFIG_NET_SCH_INGRESS=m -CONFIG_NET_SCH_PLUG=m - -# -# Classification -# -CONFIG_NET_CLS=y -CONFIG_NET_CLS_BASIC=m -CONFIG_NET_CLS_TCINDEX=m -CONFIG_NET_CLS_ROUTE4=m -CONFIG_NET_CLS_FW=m -CONFIG_NET_CLS_U32=m -CONFIG_CLS_U32_PERF=y -CONFIG_CLS_U32_MARK=y -CONFIG_NET_CLS_RSVP=m -CONFIG_NET_CLS_RSVP6=m -CONFIG_NET_CLS_FLOW=m -CONFIG_NET_CLS_CGROUP=m -CONFIG_NET_CLS_BPF=m -CONFIG_NET_CLS_FLOWER=m -CONFIG_NET_CLS_MATCHALL=m -CONFIG_NET_EMATCH=y -CONFIG_NET_EMATCH_STACK=32 -CONFIG_NET_EMATCH_CMP=m -CONFIG_NET_EMATCH_NBYTE=m -CONFIG_NET_EMATCH_U32=m -CONFIG_NET_EMATCH_META=m -CONFIG_NET_EMATCH_TEXT=m -CONFIG_NET_EMATCH_CANID=m -CONFIG_NET_EMATCH_IPSET=m -CONFIG_NET_CLS_ACT=y -CONFIG_NET_ACT_POLICE=m -CONFIG_NET_ACT_GACT=m -CONFIG_GACT_PROB=y -CONFIG_NET_ACT_MIRRED=m -CONFIG_NET_ACT_IPT=m -CONFIG_NET_ACT_NAT=m -CONFIG_NET_ACT_PEDIT=m -CONFIG_NET_ACT_SIMP=m -CONFIG_NET_ACT_SKBEDIT=m -CONFIG_NET_ACT_CSUM=m -CONFIG_NET_ACT_VLAN=m -CONFIG_NET_ACT_BPF=m -CONFIG_NET_ACT_CONNMARK=m -# CONFIG_NET_ACT_SKBMOD is not set -CONFIG_NET_ACT_IFE=m -CONFIG_NET_ACT_TUNNEL_KEY=m -CONFIG_NET_IFE_SKBMARK=m -CONFIG_NET_IFE_SKBPRIO=m -CONFIG_NET_IFE_SKBTCINDEX=m -CONFIG_NET_CLS_IND=y -CONFIG_NET_SCH_FIFO=y -CONFIG_DCB=y -CONFIG_DNS_RESOLVER=m -CONFIG_BATMAN_ADV=m -# CONFIG_BATMAN_ADV_BATMAN_V is not set -CONFIG_BATMAN_ADV_BLA=y -CONFIG_BATMAN_ADV_DAT=y -CONFIG_BATMAN_ADV_NC=y -CONFIG_BATMAN_ADV_MCAST=y -CONFIG_BATMAN_ADV_DEBUGFS=y -# CONFIG_BATMAN_ADV_DEBUG is not set -CONFIG_OPENVSWITCH=m -CONFIG_OPENVSWITCH_GRE=m -CONFIG_OPENVSWITCH_VXLAN=m -CONFIG_OPENVSWITCH_GENEVE=m -CONFIG_VSOCKETS=m -CONFIG_VMWARE_VMCI_VSOCKETS=m -CONFIG_VIRTIO_VSOCKETS=m -CONFIG_VIRTIO_VSOCKETS_COMMON=m -CONFIG_NETLINK_DIAG=m -CONFIG_MPLS=y -CONFIG_NET_MPLS_GSO=y -CONFIG_MPLS_ROUTING=m -CONFIG_MPLS_IPTUNNEL=m -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -CONFIG_NET_L3_MASTER_DEV=y -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_SOCK_CGROUP_DATA=y -CONFIG_CGROUP_NET_PRIO=y -CONFIG_CGROUP_NET_CLASSID=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_BPF_JIT=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -CONFIG_NET_PKTGEN=m -# CONFIG_NET_TCPPROBE is not set -CONFIG_NET_DROP_MONITOR=m -CONFIG_HAMRADIO=y - -# -# Packet Radio protocols -# -CONFIG_AX25=m -# CONFIG_AX25_DAMA_SLAVE is not set -CONFIG_NETROM=m -CONFIG_ROSE=m - -# -# AX.25 network device drivers -# -CONFIG_MKISS=m -CONFIG_6PACK=m -CONFIG_BPQETHER=m -CONFIG_BAYCOM_SER_FDX=m -CONFIG_BAYCOM_SER_HDX=m -CONFIG_BAYCOM_PAR=m -CONFIG_YAM=m -CONFIG_CAN=m -CONFIG_CAN_RAW=m -CONFIG_CAN_BCM=m -CONFIG_CAN_GW=m - -# -# CAN Device Drivers -# -CONFIG_CAN_VCAN=m -CONFIG_CAN_SLCAN=m -CONFIG_CAN_DEV=m -CONFIG_CAN_CALC_BITTIMING=y -# CONFIG_CAN_LEDS is not set -# CONFIG_CAN_GRCAN is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -CONFIG_CAN_SJA1000=m -CONFIG_CAN_SJA1000_ISA=m -# CONFIG_CAN_SJA1000_PLATFORM is not set -CONFIG_CAN_EMS_PCMCIA=m -CONFIG_CAN_EMS_PCI=m -CONFIG_CAN_PEAK_PCMCIA=m -CONFIG_CAN_PEAK_PCI=m -CONFIG_CAN_PEAK_PCIEC=y -CONFIG_CAN_KVASER_PCI=m -CONFIG_CAN_PLX_PCI=m -CONFIG_CAN_SOFTING=m -CONFIG_CAN_SOFTING_CS=m - -# -# CAN SPI interfaces -# -# CONFIG_CAN_MCP251X is not set - -# -# CAN USB interfaces -# -CONFIG_CAN_EMS_USB=m -CONFIG_CAN_ESD_USB2=m -CONFIG_CAN_GS_USB=m -CONFIG_CAN_KVASER_USB=m -CONFIG_CAN_PEAK_USB=m -CONFIG_CAN_8DEV_USB=m -# CONFIG_CAN_DEBUG_DEVICES is not set -CONFIG_IRDA=m - -# -# IrDA protocols -# -CONFIG_IRLAN=m -CONFIG_IRNET=m -CONFIG_IRCOMM=m -# CONFIG_IRDA_ULTRA is not set - -# -# IrDA options -# -CONFIG_IRDA_CACHE_LAST_LSAP=y -CONFIG_IRDA_FAST_RR=y -# CONFIG_IRDA_DEBUG is not set - -# -# Infrared-port device drivers -# - -# -# SIR device drivers -# -CONFIG_IRTTY_SIR=m - -# -# Dongle support -# -CONFIG_DONGLE=y -CONFIG_ESI_DONGLE=m -CONFIG_ACTISYS_DONGLE=m -CONFIG_TEKRAM_DONGLE=m -CONFIG_TOIM3232_DONGLE=m -CONFIG_LITELINK_DONGLE=m -CONFIG_MA600_DONGLE=m -CONFIG_GIRBIL_DONGLE=m -CONFIG_MCP2120_DONGLE=m -CONFIG_OLD_BELKIN_DONGLE=m -CONFIG_ACT200L_DONGLE=m -CONFIG_KINGSUN_DONGLE=m -CONFIG_KSDAZZLE_DONGLE=m -CONFIG_KS959_DONGLE=m - -# -# FIR device drivers -# -CONFIG_USB_IRDA=m -CONFIG_SIGMATEL_FIR=m -CONFIG_NSC_FIR=m -CONFIG_WINBOND_FIR=m -CONFIG_SMC_IRCC_FIR=m -CONFIG_ALI_FIR=m -CONFIG_VLSI_FIR=m -CONFIG_VIA_FIR=m -CONFIG_MCS_FIR=m -CONFIG_BT=m -CONFIG_BT_BREDR=y -CONFIG_BT_RFCOMM=m -CONFIG_BT_RFCOMM_TTY=y -CONFIG_BT_BNEP=m -CONFIG_BT_BNEP_MC_FILTER=y -CONFIG_BT_BNEP_PROTO_FILTER=y -CONFIG_BT_CMTP=m -CONFIG_BT_HIDP=m -CONFIG_BT_HS=y -CONFIG_BT_LE=y -CONFIG_BT_6LOWPAN=m -# CONFIG_BT_LEDS is not set -# CONFIG_BT_SELFTEST is not set -CONFIG_BT_DEBUGFS=y - -# -# Bluetooth device drivers -# -CONFIG_BT_INTEL=m -CONFIG_BT_BCM=m -CONFIG_BT_RTL=m -CONFIG_BT_QCA=m -CONFIG_BT_HCIBTUSB=m -CONFIG_BT_HCIBTUSB_BCM=y -CONFIG_BT_HCIBTUSB_RTL=y -CONFIG_BT_HCIBTSDIO=m -CONFIG_BT_HCIUART=m -CONFIG_BT_HCIUART_H4=y -CONFIG_BT_HCIUART_BCSP=y -CONFIG_BT_HCIUART_ATH3K=y -CONFIG_BT_HCIUART_LL=y -CONFIG_BT_HCIUART_3WIRE=y -CONFIG_BT_HCIUART_INTEL=y -CONFIG_BT_HCIUART_BCM=y -CONFIG_BT_HCIUART_QCA=y -CONFIG_BT_HCIUART_AG6XX=y -CONFIG_BT_HCIUART_MRVL=y -CONFIG_BT_HCIBCM203X=m -CONFIG_BT_HCIBPA10X=m -CONFIG_BT_HCIBFUSB=m -CONFIG_BT_HCIDTL1=m -CONFIG_BT_HCIBT3C=m -CONFIG_BT_HCIBLUECARD=m -# CONFIG_BT_HCIBTUART is not set -CONFIG_BT_HCIVHCI=m -CONFIG_BT_MRVL=m -CONFIG_BT_MRVL_SDIO=m -CONFIG_BT_ATH3K=m -CONFIG_AF_RXRPC=m -CONFIG_AF_RXRPC_IPV6=y -# CONFIG_AF_RXRPC_INJECT_LOSS is not set -# CONFIG_AF_RXRPC_DEBUG is not set -CONFIG_RXKAD=y -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_WIRELESS_EXT=y -CONFIG_WEXT_CORE=y -CONFIG_WEXT_PROC=y -CONFIG_WEXT_SPY=y -CONFIG_WEXT_PRIV=y -CONFIG_CFG80211=m -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_CERTIFICATION_ONUS is not set -CONFIG_CFG80211_DEFAULT_PS=y -# CONFIG_CFG80211_DEBUGFS is not set -# CONFIG_CFG80211_INTERNAL_REGDB is not set -CONFIG_CFG80211_CRDA_SUPPORT=y -CONFIG_CFG80211_WEXT=y -CONFIG_CFG80211_WEXT_EXPORT=y -CONFIG_LIB80211=m -CONFIG_LIB80211_CRYPT_WEP=m -CONFIG_LIB80211_CRYPT_CCMP=m -CONFIG_LIB80211_CRYPT_TKIP=m -# CONFIG_LIB80211_DEBUG is not set -CONFIG_MAC80211=m -CONFIG_MAC80211_HAS_RC=y -CONFIG_MAC80211_RC_MINSTREL=y -CONFIG_MAC80211_RC_MINSTREL_HT=y -# CONFIG_MAC80211_RC_MINSTREL_VHT is not set -CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y -CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" -CONFIG_MAC80211_MESH=y -CONFIG_MAC80211_LEDS=y -# CONFIG_MAC80211_DEBUGFS is not set -# CONFIG_MAC80211_MESSAGE_TRACING is not set -# CONFIG_MAC80211_DEBUG_MENU is not set -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -CONFIG_WIMAX=m -CONFIG_WIMAX_DEBUG_LEVEL=8 -CONFIG_RFKILL=m -CONFIG_RFKILL_LEDS=y -CONFIG_RFKILL_INPUT=y -# CONFIG_RFKILL_REGULATOR is not set -# CONFIG_RFKILL_GPIO is not set -CONFIG_NET_9P=m -CONFIG_NET_9P_VIRTIO=m -CONFIG_NET_9P_RDMA=m -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -CONFIG_CEPH_LIB=m -# CONFIG_CEPH_LIB_PRETTYDEBUG is not set -# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set -CONFIG_NFC=m -CONFIG_NFC_DIGITAL=m -# CONFIG_NFC_NCI is not set -CONFIG_NFC_HCI=m -# CONFIG_NFC_SHDLC is not set - -# -# Near Field Communication (NFC) devices -# -# CONFIG_NFC_TRF7970A is not set -CONFIG_NFC_MEI_PHY=m -CONFIG_NFC_SIM=m -CONFIG_NFC_PORT100=m -CONFIG_NFC_PN544=m -CONFIG_NFC_PN544_MEI=m -CONFIG_NFC_PN533=m -CONFIG_NFC_PN533_USB=m -# CONFIG_NFC_PN533_I2C is not set -# CONFIG_NFC_MICROREAD_MEI is not set -# CONFIG_NFC_ST95HF is not set -CONFIG_LWTUNNEL=y -CONFIG_DST_CACHE=y -CONFIG_NET_DEVLINK=m -CONFIG_MAY_USE_DEVLINK=m -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_WANT_DEV_COREDUMP=y -CONFIG_ALLOW_DEV_COREDUMP=y -CONFIG_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_SYS_HYPERVISOR=y -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_FENCE_TRACE is not set - -# -# Bus devices -# -CONFIG_CONNECTOR=y -CONFIG_PROC_EVENTS=y -CONFIG_MTD=m -# CONFIG_MTD_TESTS is not set -CONFIG_MTD_REDBOOT_PARTS=m -CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 -# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set -# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=m -CONFIG_MTD_AR7_PARTS=m - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=m -CONFIG_MTD_BLOCK=m -CONFIG_MTD_BLOCK_RO=m -CONFIG_FTL=m -CONFIG_NFTL=m -CONFIG_NFTL_RW=y -CONFIG_INFTL=m -CONFIG_RFD_FTL=m -CONFIG_SSFDC=m -# CONFIG_SM_FTL is not set -CONFIG_MTD_OOPS=m -CONFIG_MTD_SWAP=m -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=m -CONFIG_MTD_JEDECPROBE=m -CONFIG_MTD_GEN_PROBE=m -# CONFIG_MTD_CFI_ADV_OPTIONS is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_CFI_I4 is not set -# CONFIG_MTD_CFI_I8 is not set -CONFIG_MTD_CFI_INTELEXT=m -CONFIG_MTD_CFI_AMDSTD=m -CONFIG_MTD_CFI_STAA=m -CONFIG_MTD_CFI_UTIL=m -CONFIG_MTD_RAM=m -CONFIG_MTD_ROM=m -CONFIG_MTD_ABSENT=m - -# -# Mapping drivers for chip access -# -CONFIG_MTD_COMPLEX_MAPPINGS=y -CONFIG_MTD_PHYSMAP=m -# CONFIG_MTD_PHYSMAP_COMPAT is not set -# CONFIG_MTD_PHYSMAP_OF is not set -CONFIG_MTD_SBC_GXX=m -# CONFIG_MTD_AMD76XROM is not set -# CONFIG_MTD_ICHXROM is not set -# CONFIG_MTD_ESB2ROM is not set -# CONFIG_MTD_CK804XROM is not set -# CONFIG_MTD_SCB2_FLASH is not set -CONFIG_MTD_NETtel=m -# CONFIG_MTD_L440GX is not set -CONFIG_MTD_PCI=m -CONFIG_MTD_PCMCIA=m -# CONFIG_MTD_PCMCIA_ANONYMOUS is not set -# CONFIG_MTD_GPIO_ADDR is not set -CONFIG_MTD_INTEL_VR_NOR=m -CONFIG_MTD_PLATRAM=m -# CONFIG_MTD_LATCH_ADDR is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -CONFIG_MTD_DATAFLASH=m -# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set -# CONFIG_MTD_DATAFLASH_OTP is not set -CONFIG_MTD_M25P80=m -CONFIG_MTD_SST25L=m -CONFIG_MTD_SLRAM=m -CONFIG_MTD_PHRAM=m -CONFIG_MTD_MTDRAM=m -CONFIG_MTDRAM_TOTAL_SIZE=4096 -CONFIG_MTDRAM_ERASE_SIZE=128 -CONFIG_MTD_BLOCK2MTD=m - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -CONFIG_MTD_NAND_ECC=m -# CONFIG_MTD_NAND_ECC_SMC is not set -CONFIG_MTD_NAND=m -CONFIG_MTD_NAND_BCH=m -CONFIG_MTD_NAND_ECC_BCH=y -CONFIG_MTD_SM_COMMON=m -# CONFIG_MTD_NAND_DENALI_PCI is not set -# CONFIG_MTD_NAND_DENALI_DT is not set -# CONFIG_MTD_NAND_GPIO is not set -# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set -CONFIG_MTD_NAND_IDS=m -CONFIG_MTD_NAND_RICOH=m -CONFIG_MTD_NAND_DISKONCHIP=m -# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set -CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 -# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set -# CONFIG_MTD_NAND_DOCG4 is not set -CONFIG_MTD_NAND_CAFE=m -CONFIG_MTD_NAND_NANDSIM=m -# CONFIG_MTD_NAND_PLATFORM is not set -# CONFIG_MTD_NAND_HISI504 is not set -# CONFIG_MTD_NAND_MTK is not set -CONFIG_MTD_ONENAND=m -CONFIG_MTD_ONENAND_VERIFY_WRITE=y -# CONFIG_MTD_ONENAND_GENERIC is not set -# CONFIG_MTD_ONENAND_OTP is not set -CONFIG_MTD_ONENAND_2X_PROGRAM=y - -# -# LPDDR & LPDDR2 PCM memory drivers -# -CONFIG_MTD_LPDDR=m -CONFIG_MTD_QINFO_PROBE=m -CONFIG_MTD_SPI_NOR=m -# CONFIG_MTD_MT81xx_NOR is not set -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_MTD_UBI=m -CONFIG_MTD_UBI_WL_THRESHOLD=4096 -CONFIG_MTD_UBI_BEB_LIMIT=20 -# CONFIG_MTD_UBI_FASTMAP is not set -# CONFIG_MTD_UBI_GLUEBI is not set -CONFIG_MTD_UBI_BLOCK=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_ADDRESS=y -CONFIG_OF_ADDRESS_PCI=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_MDIO=m -CONFIG_OF_PCI=y -CONFIG_OF_PCI_IRQ=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -CONFIG_PARPORT=m -CONFIG_PARPORT_PC=m -CONFIG_PARPORT_SERIAL=m -# CONFIG_PARPORT_PC_FIFO is not set -# CONFIG_PARPORT_PC_SUPERIO is not set -CONFIG_PARPORT_PC_PCMCIA=m -# CONFIG_PARPORT_GSC is not set -# CONFIG_PARPORT_AX88796 is not set -CONFIG_PARPORT_1284=y -CONFIG_PARPORT_NOT_PC=y -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -CONFIG_BLK_DEV_NULL_BLK=m -CONFIG_BLK_DEV_FD=m -# CONFIG_PARIDE is not set -CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m -CONFIG_ZRAM=m -CONFIG_BLK_CPQ_CISS_DA=m -CONFIG_CISS_SCSI_TAPE=y -CONFIG_BLK_DEV_DAC960=m -CONFIG_BLK_DEV_UMEM=m -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=m -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -CONFIG_BLK_DEV_DRBD=m -# CONFIG_DRBD_FAULT_INJECTION is not set -CONFIG_BLK_DEV_NBD=m -CONFIG_BLK_DEV_SKD=m -CONFIG_BLK_DEV_OSD=m -CONFIG_BLK_DEV_SX8=m -CONFIG_BLK_DEV_RAM=m -CONFIG_BLK_DEV_RAM_COUNT=16 -CONFIG_BLK_DEV_RAM_SIZE=16384 -# CONFIG_BLK_DEV_RAM_DAX is not set -CONFIG_CDROM_PKTCDVD=m -CONFIG_CDROM_PKTCDVD_BUFFERS=8 -# CONFIG_CDROM_PKTCDVD_WCACHE is not set -CONFIG_ATA_OVER_ETH=m -CONFIG_XEN_BLKDEV_FRONTEND=m -CONFIG_XEN_BLKDEV_BACKEND=m -CONFIG_VIRTIO_BLK=m -# CONFIG_BLK_DEV_HD is not set -CONFIG_BLK_DEV_RBD=m -CONFIG_BLK_DEV_RSXX=m -CONFIG_NVME_CORE=m -CONFIG_BLK_DEV_NVME=m -# CONFIG_BLK_DEV_NVME_SCSI is not set -CONFIG_NVME_FABRICS=m -CONFIG_NVME_RDMA=m -CONFIG_NVME_TARGET=m -# CONFIG_NVME_TARGET_LOOP is not set -CONFIG_NVME_TARGET_RDMA=m - -# -# Misc devices -# -CONFIG_SENSORS_LIS3LV02D=m -CONFIG_AD525X_DPOT=m -CONFIG_AD525X_DPOT_I2C=m -CONFIG_AD525X_DPOT_SPI=m -# CONFIG_DUMMY_IRQ is not set -CONFIG_IBM_ASM=m -CONFIG_PHANTOM=m -CONFIG_SGI_IOC4=m -CONFIG_TIFM_CORE=m -CONFIG_TIFM_7XX1=m -CONFIG_ICS932S401=m -CONFIG_ENCLOSURE_SERVICES=m -CONFIG_HP_ILO=m -CONFIG_APDS9802ALS=m -CONFIG_ISL29003=m -CONFIG_ISL29020=m -CONFIG_SENSORS_TSL2550=m -CONFIG_SENSORS_BH1770=m -CONFIG_SENSORS_APDS990X=m -CONFIG_HMC6352=m -CONFIG_DS1682=m -CONFIG_TI_DAC7512=m -CONFIG_VMWARE_BALLOON=m -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PANEL is not set -CONFIG_C2PORT=m -CONFIG_C2PORT_DURAMAR_2150=m - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=m -CONFIG_EEPROM_AT25=m -CONFIG_EEPROM_LEGACY=m -CONFIG_EEPROM_MAX6875=m -CONFIG_EEPROM_93CX6=m -# CONFIG_EEPROM_93XX46 is not set -CONFIG_CB710_CORE=m -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -CONFIG_SENSORS_LIS3_I2C=m - -# -# Altera FPGA firmware download module -# -CONFIG_ALTERA_STAPL=m -CONFIG_INTEL_MEI=m -CONFIG_INTEL_MEI_ME=m -# CONFIG_INTEL_MEI_TXE is not set -CONFIG_VMWARE_VMCI=m - -# -# Intel MIC Bus Driver -# -CONFIG_INTEL_MIC_BUS=m - -# -# SCIF Bus Driver -# -CONFIG_SCIF_BUS=m - -# -# VOP Bus Driver -# -CONFIG_VOP_BUS=m - -# -# Intel MIC Host Driver -# -CONFIG_INTEL_MIC_HOST=m - -# -# Intel MIC Card Driver -# -# CONFIG_INTEL_MIC_CARD is not set - -# -# SCIF Driver -# -CONFIG_SCIF=m - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# -CONFIG_MIC_COSM=m - -# -# VOP Driver -# -CONFIG_VOP=m -CONFIG_VHOST_RING=m -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=m -CONFIG_RAID_ATTRS=m -CONFIG_SCSI=m -CONFIG_SCSI_DMA=y -CONFIG_SCSI_NETLINK=y -# CONFIG_SCSI_MQ_DEFAULT is not set -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=m -CONFIG_CHR_DEV_ST=m -CONFIG_CHR_DEV_OSST=m -CONFIG_BLK_DEV_SR=m -CONFIG_BLK_DEV_SR_VENDOR=y -CONFIG_CHR_DEV_SG=m -CONFIG_CHR_DEV_SCH=m -CONFIG_SCSI_ENCLOSURE=m -CONFIG_SCSI_CONSTANTS=y -CONFIG_SCSI_LOGGING=y -CONFIG_SCSI_SCAN_ASYNC=y - -# -# SCSI Transports -# -CONFIG_SCSI_SPI_ATTRS=m -CONFIG_SCSI_FC_ATTRS=m -CONFIG_SCSI_ISCSI_ATTRS=m -CONFIG_SCSI_SAS_ATTRS=m -CONFIG_SCSI_SAS_LIBSAS=m -CONFIG_SCSI_SAS_ATA=y -CONFIG_SCSI_SAS_HOST_SMP=y -CONFIG_SCSI_SRP_ATTRS=m -CONFIG_SCSI_LOWLEVEL=y -CONFIG_ISCSI_TCP=m -CONFIG_ISCSI_BOOT_SYSFS=m -CONFIG_SCSI_CXGB3_ISCSI=m -CONFIG_SCSI_CXGB4_ISCSI=m -CONFIG_SCSI_BNX2_ISCSI=m -CONFIG_SCSI_BNX2X_FCOE=m -CONFIG_BE2ISCSI=m -CONFIG_BLK_DEV_3W_XXXX_RAID=m -CONFIG_SCSI_HPSA=m -CONFIG_SCSI_3W_9XXX=m -CONFIG_SCSI_3W_SAS=m -CONFIG_SCSI_ACARD=m -CONFIG_SCSI_AACRAID=m -CONFIG_SCSI_AIC7XXX=m -CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 -CONFIG_AIC7XXX_RESET_DELAY_MS=15000 -CONFIG_AIC7XXX_DEBUG_ENABLE=y -CONFIG_AIC7XXX_DEBUG_MASK=0 -CONFIG_AIC7XXX_REG_PRETTY_PRINT=y -CONFIG_SCSI_AIC79XX=m -CONFIG_AIC79XX_CMDS_PER_DEVICE=32 -CONFIG_AIC79XX_RESET_DELAY_MS=15000 -CONFIG_AIC79XX_DEBUG_ENABLE=y -CONFIG_AIC79XX_DEBUG_MASK=0 -CONFIG_AIC79XX_REG_PRETTY_PRINT=y -CONFIG_SCSI_AIC94XX=m -# CONFIG_AIC94XX_DEBUG is not set -CONFIG_SCSI_MVSAS=m -# CONFIG_SCSI_MVSAS_DEBUG is not set -# CONFIG_SCSI_MVSAS_TASKLET is not set -CONFIG_SCSI_MVUMI=m -CONFIG_SCSI_DPT_I2O=m -CONFIG_SCSI_ADVANSYS=m -CONFIG_SCSI_ARCMSR=m -CONFIG_SCSI_ESAS2R=m -CONFIG_MEGARAID_NEWGEN=y -CONFIG_MEGARAID_MM=m -CONFIG_MEGARAID_MAILBOX=m -CONFIG_MEGARAID_LEGACY=m -CONFIG_MEGARAID_SAS=m -CONFIG_SCSI_MPT3SAS=m -CONFIG_SCSI_MPT2SAS_MAX_SGE=128 -CONFIG_SCSI_MPT3SAS_MAX_SGE=128 -CONFIG_SCSI_MPT2SAS=m -CONFIG_SCSI_SMARTPQI=m -CONFIG_SCSI_UFSHCD=m -CONFIG_SCSI_UFSHCD_PCI=m -# CONFIG_SCSI_UFS_DWC_TC_PCI is not set -# CONFIG_SCSI_UFSHCD_PLATFORM is not set -CONFIG_SCSI_HPTIOP=m -CONFIG_SCSI_BUSLOGIC=m -# CONFIG_SCSI_FLASHPOINT is not set -CONFIG_VMWARE_PVSCSI=m -CONFIG_XEN_SCSI_FRONTEND=m -CONFIG_HYPERV_STORAGE=m -CONFIG_LIBFC=m -CONFIG_LIBFCOE=m -CONFIG_FCOE=m -CONFIG_FCOE_FNIC=m -CONFIG_SCSI_SNIC=m -# CONFIG_SCSI_SNIC_DEBUG_FS is not set -CONFIG_SCSI_DMX3191D=m -CONFIG_SCSI_EATA=m -CONFIG_SCSI_EATA_TAGGED_QUEUE=y -CONFIG_SCSI_EATA_LINKED_COMMANDS=y -CONFIG_SCSI_EATA_MAX_TAGS=16 -CONFIG_SCSI_FUTURE_DOMAIN=m -CONFIG_SCSI_GDTH=m -CONFIG_SCSI_ISCI=m -CONFIG_SCSI_IPS=m -CONFIG_SCSI_INITIO=m -CONFIG_SCSI_INIA100=m -# CONFIG_SCSI_PPA is not set -# CONFIG_SCSI_IMM is not set -CONFIG_SCSI_STEX=m -CONFIG_SCSI_SYM53C8XX_2=m -CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 -CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 -CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 -CONFIG_SCSI_SYM53C8XX_MMIO=y -CONFIG_SCSI_IPR=m -# CONFIG_SCSI_IPR_TRACE is not set -# CONFIG_SCSI_IPR_DUMP is not set -CONFIG_SCSI_QLOGIC_1280=m -CONFIG_SCSI_QLA_FC=m -CONFIG_TCM_QLA2XXX=m -# CONFIG_TCM_QLA2XXX_DEBUG is not set -CONFIG_SCSI_QLA_ISCSI=m -CONFIG_SCSI_LPFC=m -# CONFIG_SCSI_LPFC_DEBUG_FS is not set -CONFIG_SCSI_DC395x=m -CONFIG_SCSI_AM53C974=m -CONFIG_SCSI_WD719X=m -CONFIG_SCSI_DEBUG=m -CONFIG_SCSI_PMCRAID=m -CONFIG_SCSI_PM8001=m -CONFIG_SCSI_BFA_FC=m -CONFIG_SCSI_VIRTIO=m -CONFIG_SCSI_CHELSIO_FCOE=m -CONFIG_SCSI_LOWLEVEL_PCMCIA=y -CONFIG_PCMCIA_AHA152X=m -CONFIG_PCMCIA_FDOMAIN=m -CONFIG_PCMCIA_QLOGIC=m -CONFIG_PCMCIA_SYM53C500=m -CONFIG_SCSI_DH=y -CONFIG_SCSI_DH_RDAC=m -CONFIG_SCSI_DH_HP_SW=m -CONFIG_SCSI_DH_EMC=m -CONFIG_SCSI_DH_ALUA=m -CONFIG_SCSI_OSD_INITIATOR=m -CONFIG_SCSI_OSD_ULD=m -CONFIG_SCSI_OSD_DPRINT_SENSE=1 -# CONFIG_SCSI_OSD_DEBUG is not set -CONFIG_ATA=m -# CONFIG_ATA_NONSTANDARD is not set -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_ZPODD=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=m -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_AHCI_CEVA is not set -# CONFIG_AHCI_QORIQ is not set -# CONFIG_SATA_INIC162X is not set -CONFIG_SATA_ACARD_AHCI=m -CONFIG_SATA_SIL24=m -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -CONFIG_PDC_ADMA=m -CONFIG_SATA_QSTOR=m -CONFIG_SATA_SX4=m -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -CONFIG_ATA_PIIX=m -# CONFIG_SATA_DWC is not set -CONFIG_SATA_MV=m -CONFIG_SATA_NV=m -CONFIG_SATA_PROMISE=m -CONFIG_SATA_SIL=m -CONFIG_SATA_SIS=m -CONFIG_SATA_SVW=m -CONFIG_SATA_ULI=m -CONFIG_SATA_VIA=m -CONFIG_SATA_VITESSE=m - -# -# PATA SFF controllers with BMDMA -# -CONFIG_PATA_ALI=m -CONFIG_PATA_AMD=m -CONFIG_PATA_ARTOP=m -CONFIG_PATA_ATIIXP=m -CONFIG_PATA_ATP867X=m -CONFIG_PATA_CMD64X=m -# CONFIG_PATA_CYPRESS is not set -CONFIG_PATA_EFAR=m -CONFIG_PATA_HPT366=m -CONFIG_PATA_HPT37X=m -# CONFIG_PATA_HPT3X2N is not set -# CONFIG_PATA_HPT3X3 is not set -CONFIG_PATA_IT8213=m -CONFIG_PATA_IT821X=m -CONFIG_PATA_JMICRON=m -CONFIG_PATA_MARVELL=m -CONFIG_PATA_NETCELL=m -CONFIG_PATA_NINJA32=m -CONFIG_PATA_NS87415=m -CONFIG_PATA_OLDPIIX=m -# CONFIG_PATA_OPTIDMA is not set -CONFIG_PATA_PDC2027X=m -CONFIG_PATA_PDC_OLD=m -# CONFIG_PATA_RADISYS is not set -CONFIG_PATA_RDC=m -CONFIG_PATA_SCH=m -CONFIG_PATA_SERVERWORKS=m -CONFIG_PATA_SIL680=m -CONFIG_PATA_SIS=m -CONFIG_PATA_TOSHIBA=m -CONFIG_PATA_TRIFLEX=m -CONFIG_PATA_VIA=m -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -CONFIG_PATA_MPIIX=m -CONFIG_PATA_NS87410=m -# CONFIG_PATA_OPTI is not set -CONFIG_PATA_PCMCIA=m -# CONFIG_PATA_PLATFORM is not set -CONFIG_PATA_RZ1000=m - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -CONFIG_ATA_GENERIC=m -# CONFIG_PATA_LEGACY is not set -CONFIG_MD=y -CONFIG_BLK_DEV_MD=m -CONFIG_MD_LINEAR=m -CONFIG_MD_RAID0=m -CONFIG_MD_RAID1=m -CONFIG_MD_RAID10=m -CONFIG_MD_RAID456=m -CONFIG_MD_MULTIPATH=m -CONFIG_MD_FAULTY=m -# CONFIG_MD_CLUSTER is not set -CONFIG_BCACHE=m -# CONFIG_BCACHE_DEBUG is not set -# CONFIG_BCACHE_CLOSURES_DEBUG is not set -CONFIG_BLK_DEV_DM_BUILTIN=y -CONFIG_BLK_DEV_DM=m -# CONFIG_DM_MQ_DEFAULT is not set -# CONFIG_DM_DEBUG is not set -CONFIG_DM_BUFIO=m -# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not set -CONFIG_DM_BIO_PRISON=m -CONFIG_DM_PERSISTENT_DATA=m -CONFIG_DM_CRYPT=m -CONFIG_DM_SNAPSHOT=m -CONFIG_DM_THIN_PROVISIONING=m -CONFIG_DM_CACHE=m -CONFIG_DM_CACHE_SMQ=m -CONFIG_DM_CACHE_CLEANER=m -CONFIG_DM_ERA=m -CONFIG_DM_MIRROR=m -CONFIG_DM_LOG_USERSPACE=m -CONFIG_DM_RAID=m -CONFIG_DM_ZERO=m -CONFIG_DM_MULTIPATH=m -CONFIG_DM_MULTIPATH_QL=m -CONFIG_DM_MULTIPATH_ST=m -CONFIG_DM_DELAY=m -CONFIG_DM_UEVENT=y -CONFIG_DM_FLAKEY=m -CONFIG_DM_VERITY=m -# CONFIG_DM_VERITY_FEC is not set -CONFIG_DM_SWITCH=m -CONFIG_DM_LOG_WRITES=m -CONFIG_TARGET_CORE=m -CONFIG_TCM_IBLOCK=m -CONFIG_TCM_FILEIO=m -CONFIG_TCM_PSCSI=m -CONFIG_TCM_USER2=m -CONFIG_LOOPBACK_TARGET=m -CONFIG_TCM_FC=m -CONFIG_ISCSI_TARGET=m -CONFIG_ISCSI_TARGET_CXGB4=m -CONFIG_SBP_TARGET=m -CONFIG_FUSION=y -CONFIG_FUSION_SPI=m -CONFIG_FUSION_FC=m -CONFIG_FUSION_SAS=m -CONFIG_FUSION_MAX_SGE=128 -CONFIG_FUSION_CTL=m -CONFIG_FUSION_LAN=m -# CONFIG_FUSION_LOGGING is not set - -# -# IEEE 1394 (FireWire) support -# -CONFIG_FIREWIRE=m -CONFIG_FIREWIRE_OHCI=m -CONFIG_FIREWIRE_SBP2=m -CONFIG_FIREWIRE_NET=m -CONFIG_FIREWIRE_NOSY=m -CONFIG_MACINTOSH_DRIVERS=y -CONFIG_MAC_EMUMOUSEBTN=y -CONFIG_NETDEVICES=y -CONFIG_MII=m -CONFIG_NET_CORE=y -CONFIG_BONDING=m -CONFIG_DUMMY=m -CONFIG_EQUALIZER=m -CONFIG_NET_FC=y -CONFIG_IFB=m -CONFIG_NET_TEAM=m -CONFIG_NET_TEAM_MODE_BROADCAST=m -CONFIG_NET_TEAM_MODE_ROUNDROBIN=m -CONFIG_NET_TEAM_MODE_RANDOM=m -CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m -CONFIG_NET_TEAM_MODE_LOADBALANCE=m -CONFIG_MACVLAN=m -CONFIG_MACVTAP=m -CONFIG_IPVLAN=m -CONFIG_VXLAN=m -CONFIG_GENEVE=m -CONFIG_GTP=m -CONFIG_MACSEC=m -CONFIG_NETCONSOLE=m -CONFIG_NETCONSOLE_DYNAMIC=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -CONFIG_TUN=m -# CONFIG_TUN_VNET_CROSS_LE is not set -CONFIG_VETH=m -CONFIG_VIRTIO_NET=m -CONFIG_NLMON=m -CONFIG_NET_VRF=m -CONFIG_SUNGEM_PHY=m -CONFIG_ARCNET=m -CONFIG_ARCNET_1201=m -CONFIG_ARCNET_1051=m -CONFIG_ARCNET_RAW=m -CONFIG_ARCNET_CAP=m -CONFIG_ARCNET_COM90xx=m -CONFIG_ARCNET_COM90xxIO=m -CONFIG_ARCNET_RIM_I=m -CONFIG_ARCNET_COM20020=m -CONFIG_ARCNET_COM20020_PCI=m -CONFIG_ARCNET_COM20020_CS=m -CONFIG_ATM_DRIVERS=y -CONFIG_ATM_DUMMY=m -CONFIG_ATM_TCP=m -CONFIG_ATM_LANAI=m -CONFIG_ATM_ENI=m -# CONFIG_ATM_ENI_DEBUG is not set -# CONFIG_ATM_ENI_TUNE_BURST is not set -CONFIG_ATM_FIRESTREAM=m -CONFIG_ATM_ZATM=m -# CONFIG_ATM_ZATM_DEBUG is not set -CONFIG_ATM_NICSTAR=m -CONFIG_ATM_NICSTAR_USE_SUNI=y -CONFIG_ATM_NICSTAR_USE_IDT77105=y -CONFIG_ATM_IDT77252=m -# CONFIG_ATM_IDT77252_DEBUG is not set -# CONFIG_ATM_IDT77252_RCV_ALL is not set -CONFIG_ATM_IDT77252_USE_SUNI=y -CONFIG_ATM_AMBASSADOR=m -# CONFIG_ATM_AMBASSADOR_DEBUG is not set -CONFIG_ATM_HORIZON=m -# CONFIG_ATM_HORIZON_DEBUG is not set -CONFIG_ATM_IA=m -# CONFIG_ATM_IA_DEBUG is not set -CONFIG_ATM_FORE200E=m -# CONFIG_ATM_FORE200E_USE_TASKLET is not set -CONFIG_ATM_FORE200E_TX_RETRY=16 -CONFIG_ATM_FORE200E_DEBUG=0 -CONFIG_ATM_HE=m -CONFIG_ATM_HE_USE_SUNI=y -CONFIG_ATM_SOLOS=m - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -CONFIG_MDIO=m -CONFIG_NET_VENDOR_3COM=y -CONFIG_PCMCIA_3C574=m -CONFIG_PCMCIA_3C589=m -CONFIG_VORTEX=m -CONFIG_TYPHOON=m -CONFIG_NET_VENDOR_ADAPTEC=y -CONFIG_ADAPTEC_STARFIRE=m -CONFIG_NET_VENDOR_AGERE=y -CONFIG_ET131X=m -CONFIG_NET_VENDOR_ALTEON=y -CONFIG_ACENIC=m -# CONFIG_ACENIC_OMIT_TIGON_I is not set -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_ENA_ETHERNET=m -CONFIG_NET_VENDOR_AMD=y -CONFIG_AMD8111_ETH=m -CONFIG_PCNET32=m -CONFIG_PCMCIA_NMCLAN=m -# CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_ATHEROS=y -CONFIG_ATL2=m -CONFIG_ATL1=m -CONFIG_ATL1E=m -CONFIG_ATL1C=m -CONFIG_ALX=m -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_BROADCOM=y -CONFIG_B44=m -CONFIG_B44_PCI_AUTOSELECT=y -CONFIG_B44_PCICORE_AUTOSELECT=y -CONFIG_B44_PCI=y -# CONFIG_BCMGENET is not set -CONFIG_BNX2=m -CONFIG_CNIC=m -CONFIG_TIGON3=m -CONFIG_BNX2X=m -CONFIG_BNX2X_SRIOV=y -# CONFIG_SYSTEMPORT is not set -CONFIG_BNXT=m -CONFIG_BNXT_SRIOV=y -CONFIG_NET_VENDOR_BROCADE=y -CONFIG_BNA=m -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_THUNDER_NIC_PF is not set -# CONFIG_THUNDER_NIC_VF is not set -# CONFIG_THUNDER_NIC_BGX is not set -# CONFIG_THUNDER_NIC_RGX is not set -CONFIG_LIQUIDIO=m -CONFIG_NET_VENDOR_CHELSIO=y -CONFIG_CHELSIO_T1=m -CONFIG_CHELSIO_T1_1G=y -CONFIG_CHELSIO_T3=m -CONFIG_CHELSIO_T4=m -CONFIG_CHELSIO_T4_DCB=y -CONFIG_CHELSIO_T4_FCOE=y -CONFIG_CHELSIO_T4VF=m -CONFIG_CHELSIO_LIB=m -CONFIG_NET_VENDOR_CISCO=y -CONFIG_ENIC=m -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_DEC=y -CONFIG_NET_TULIP=y -CONFIG_DE2104X=m -CONFIG_DE2104X_DSL=0 -CONFIG_TULIP=m -# CONFIG_TULIP_MWI is not set -# CONFIG_TULIP_MMIO is not set -CONFIG_TULIP_NAPI=y -CONFIG_TULIP_NAPI_HW_MITIGATION=y -# CONFIG_DE4X5 is not set -CONFIG_WINBOND_840=m -CONFIG_DM9102=m -CONFIG_ULI526X=m -CONFIG_PCMCIA_XIRCOM=m -CONFIG_NET_VENDOR_DLINK=y -CONFIG_DL2K=m -CONFIG_SUNDANCE=m -# CONFIG_SUNDANCE_MMIO is not set -CONFIG_NET_VENDOR_EMULEX=y -CONFIG_BE2NET=m -CONFIG_BE2NET_HWMON=y -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_EXAR=y -CONFIG_S2IO=m -CONFIG_VXGE=m -# CONFIG_VXGE_DEBUG_TRACE_ALL is not set -CONFIG_NET_VENDOR_FUJITSU=y -CONFIG_PCMCIA_FMVJ18X=m -CONFIG_NET_VENDOR_HP=y -CONFIG_HP100=m -CONFIG_NET_VENDOR_INTEL=y -CONFIG_E100=m -CONFIG_E1000=m -CONFIG_E1000E=m -CONFIG_E1000E_HWTS=y -CONFIG_IGB=m -CONFIG_IGB_HWMON=y -CONFIG_IGB_DCA=y -CONFIG_IGBVF=m -CONFIG_IXGB=m -CONFIG_IXGBE=m -CONFIG_IXGBE_HWMON=y -CONFIG_IXGBE_DCA=y -CONFIG_IXGBE_DCB=y -CONFIG_IXGBEVF=m -CONFIG_I40E=m -CONFIG_I40E_DCB=y -CONFIG_I40E_FCOE=y -CONFIG_I40EVF=m -# CONFIG_FM10K is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_JME=m -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -# CONFIG_MVNETA_BM is not set -CONFIG_SKGE=m -# CONFIG_SKGE_DEBUG is not set -CONFIG_SKGE_GENESIS=y -CONFIG_SKY2=m -# CONFIG_SKY2_DEBUG is not set -CONFIG_NET_VENDOR_MELLANOX=y -CONFIG_MLX4_EN=m -CONFIG_MLX4_EN_DCB=y -CONFIG_MLX4_CORE=m -CONFIG_MLX4_DEBUG=y -CONFIG_MLX5_CORE=m -CONFIG_MLX5_CORE_EN=y -CONFIG_MLX5_CORE_EN_DCB=y -# CONFIG_MLXSW_CORE is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -CONFIG_KSZ884X_PCI=m -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -CONFIG_NET_VENDOR_MYRI=y -CONFIG_MYRI10GE=m -CONFIG_MYRI10GE_DCA=y -CONFIG_FEALNX=m -CONFIG_NET_VENDOR_NATSEMI=y -CONFIG_NATSEMI=m -CONFIG_NS83820=m -CONFIG_NET_VENDOR_NETRONOME=y -# CONFIG_NFP_NETVF is not set -CONFIG_NET_VENDOR_8390=y -CONFIG_PCMCIA_AXNET=m -CONFIG_NE2K_PCI=m -CONFIG_PCMCIA_PCNET=m -CONFIG_NET_VENDOR_NVIDIA=y -CONFIG_FORCEDETH=m -CONFIG_NET_VENDOR_OKI=y -# CONFIG_ETHOC is not set -CONFIG_NET_PACKET_ENGINE=y -CONFIG_HAMACHI=m -CONFIG_YELLOWFIN=m -CONFIG_NET_VENDOR_QLOGIC=y -CONFIG_QLA3XXX=m -CONFIG_QLCNIC=m -CONFIG_QLCNIC_SRIOV=y -CONFIG_QLCNIC_DCB=y -CONFIG_QLCNIC_HWMON=y -CONFIG_QLGE=m -CONFIG_NETXEN_NIC=m -CONFIG_QED=m -CONFIG_QED_SRIOV=y -CONFIG_QEDE=m -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000 is not set -# CONFIG_QCOM_EMAC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_ATP is not set -CONFIG_8139CP=m -CONFIG_8139TOO=m -# CONFIG_8139TOO_PIO is not set -CONFIG_8139TOO_TUNE_TWISTER=y -CONFIG_8139TOO_8129=y -# CONFIG_8139_OLD_RX_RESET is not set -CONFIG_R8169=m -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_RDC=y -CONFIG_R6040=m -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -# CONFIG_NET_VENDOR_SEEQ is not set -CONFIG_NET_VENDOR_SILAN=y -CONFIG_SC92031=m -CONFIG_NET_VENDOR_SIS=y -CONFIG_SIS900=m -CONFIG_SIS190=m -CONFIG_SFC=m -CONFIG_SFC_MTD=y -CONFIG_SFC_MCDI_MON=y -CONFIG_SFC_SRIOV=y -CONFIG_SFC_MCDI_LOGGING=y -CONFIG_NET_VENDOR_SMSC=y -CONFIG_PCMCIA_SMC91C92=m -CONFIG_EPIC100=m -# CONFIG_SMSC911X is not set -CONFIG_SMSC9420=m -CONFIG_NET_VENDOR_STMICRO=y -# CONFIG_STMMAC_ETH is not set -CONFIG_NET_VENDOR_SUN=y -CONFIG_HAPPYMEAL=m -CONFIG_SUNGEM=m -CONFIG_CASSINI=m -CONFIG_NIU=m -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_SYNOPSYS_DWC_ETH_QOS is not set -CONFIG_NET_VENDOR_TEHUTI=y -CONFIG_TEHUTI=m -CONFIG_NET_VENDOR_TI=y -# CONFIG_TI_CPSW_ALE is not set -CONFIG_TLAN=m -CONFIG_NET_VENDOR_VIA=y -CONFIG_VIA_RHINE=m -# CONFIG_VIA_RHINE_MMIO is not set -CONFIG_VIA_VELOCITY=m -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_NET_VENDOR_XIRCOM=y -CONFIG_PCMCIA_XIRC2PS=m -CONFIG_FDDI=y -CONFIG_DEFXX=m -# CONFIG_DEFXX_MMIO is not set -CONFIG_SKFP=m -CONFIG_HIPPI=y -CONFIG_ROADRUNNER=m -# CONFIG_ROADRUNNER_LARGE_RINGS is not set -CONFIG_NET_SB1000=m -CONFIG_PHYLIB=m -CONFIG_SWPHY=y - -# -# MDIO bus device drivers -# -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_THUNDER is not set - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=m -CONFIG_AQUANTIA_PHY=m -CONFIG_AT803X_PHY=m -# CONFIG_BCM7XXX_PHY is not set -CONFIG_BCM87XX_PHY=m -CONFIG_BCM_NET_PHYLIB=m -CONFIG_BROADCOM_PHY=m -CONFIG_CICADA_PHY=m -CONFIG_DAVICOM_PHY=m -CONFIG_DP83848_PHY=m -CONFIG_DP83867_PHY=m -CONFIG_FIXED_PHY=m -CONFIG_ICPLUS_PHY=m -# CONFIG_INTEL_XWAY_PHY is not set -CONFIG_LSI_ET1011C_PHY=m -CONFIG_LXT_PHY=m -CONFIG_MARVELL_PHY=m -CONFIG_MICREL_PHY=m -CONFIG_MICROCHIP_PHY=m -# CONFIG_MICROSEMI_PHY is not set -CONFIG_NATIONAL_PHY=m -CONFIG_QSEMI_PHY=m -CONFIG_REALTEK_PHY=m -CONFIG_SMSC_PHY=m -CONFIG_STE10XP=m -CONFIG_TERANETICS_PHY=m -CONFIG_VITESSE_PHY=m -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_PLIP=m -CONFIG_PPP=m -CONFIG_PPP_BSDCOMP=m -CONFIG_PPP_DEFLATE=m -CONFIG_PPP_FILTER=y -CONFIG_PPP_MPPE=m -CONFIG_PPP_MULTILINK=y -CONFIG_PPPOATM=m -CONFIG_PPPOE=m -CONFIG_PPTP=m -CONFIG_PPPOL2TP=m -CONFIG_PPP_ASYNC=m -CONFIG_PPP_SYNC_TTY=m -CONFIG_SLIP=m -CONFIG_SLHC=m -CONFIG_SLIP_COMPRESSED=y -CONFIG_SLIP_SMART=y -CONFIG_SLIP_MODE_SLIP6=y - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_USB_NET_DRIVERS=m -CONFIG_USB_CATC=m -CONFIG_USB_KAWETH=m -CONFIG_USB_PEGASUS=m -CONFIG_USB_RTL8150=m -CONFIG_USB_RTL8152=m -CONFIG_USB_LAN78XX=m -CONFIG_USB_USBNET=m -CONFIG_USB_NET_AX8817X=m -CONFIG_USB_NET_AX88179_178A=m -CONFIG_USB_NET_CDCETHER=m -CONFIG_USB_NET_CDC_EEM=m -CONFIG_USB_NET_CDC_NCM=m -CONFIG_USB_NET_HUAWEI_CDC_NCM=m -CONFIG_USB_NET_CDC_MBIM=m -CONFIG_USB_NET_DM9601=m -CONFIG_USB_NET_SR9700=m -CONFIG_USB_NET_SR9800=m -CONFIG_USB_NET_SMSC75XX=m -CONFIG_USB_NET_SMSC95XX=m -CONFIG_USB_NET_GL620A=m -CONFIG_USB_NET_NET1080=m -CONFIG_USB_NET_PLUSB=m -CONFIG_USB_NET_MCS7830=m -CONFIG_USB_NET_RNDIS_HOST=m -CONFIG_USB_NET_CDC_SUBSET_ENABLE=m -CONFIG_USB_NET_CDC_SUBSET=m -CONFIG_USB_ALI_M5632=y -CONFIG_USB_AN2720=y -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -CONFIG_USB_EPSON2888=y -CONFIG_USB_KC2190=y -CONFIG_USB_NET_ZAURUS=m -CONFIG_USB_NET_CX82310_ETH=m -CONFIG_USB_NET_KALMIA=m -CONFIG_USB_NET_QMI_WWAN=m -CONFIG_USB_HSO=m -CONFIG_USB_NET_INT51X1=m -CONFIG_USB_CDC_PHONET=m -CONFIG_USB_IPHETH=m -CONFIG_USB_SIERRA_NET=m -CONFIG_USB_VL600=m -CONFIG_USB_NET_CH9200=m -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_ADM8211=m -CONFIG_ATH_COMMON=m -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -CONFIG_ATH5K=m -# CONFIG_ATH5K_DEBUG is not set -# CONFIG_ATH5K_TRACER is not set -CONFIG_ATH5K_PCI=y -CONFIG_ATH9K_HW=m -CONFIG_ATH9K_COMMON=m -CONFIG_ATH9K_BTCOEX_SUPPORT=y -CONFIG_ATH9K=m -CONFIG_ATH9K_PCI=y -# CONFIG_ATH9K_AHB is not set -# CONFIG_ATH9K_DEBUGFS is not set -# CONFIG_ATH9K_DYNACK is not set -# CONFIG_ATH9K_WOW is not set -CONFIG_ATH9K_RFKILL=y -# CONFIG_ATH9K_CHANNEL_CONTEXT is not set -CONFIG_ATH9K_PCOEM=y -CONFIG_ATH9K_HTC=m -# CONFIG_ATH9K_HTC_DEBUGFS is not set -# CONFIG_ATH9K_HWRNG is not set -CONFIG_CARL9170=m -CONFIG_CARL9170_LEDS=y -CONFIG_CARL9170_WPC=y -# CONFIG_CARL9170_HWRNG is not set -CONFIG_ATH6KL=m -CONFIG_ATH6KL_SDIO=m -CONFIG_ATH6KL_USB=m -# CONFIG_ATH6KL_DEBUG is not set -# CONFIG_ATH6KL_TRACING is not set -CONFIG_AR5523=m -CONFIG_WIL6210=m -CONFIG_WIL6210_ISR_COR=y -CONFIG_WIL6210_TRACING=y -CONFIG_ATH10K=m -CONFIG_ATH10K_PCI=m -# CONFIG_ATH10K_DEBUG is not set -# CONFIG_ATH10K_DEBUGFS is not set -# CONFIG_ATH10K_TRACING is not set -# CONFIG_WCN36XX is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_ATMEL=m -CONFIG_PCI_ATMEL=m -CONFIG_PCMCIA_ATMEL=m -CONFIG_AT76C50X_USB=m -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_B43=m -CONFIG_B43_BCMA=y -CONFIG_B43_SSB=y -CONFIG_B43_BUSES_BCMA_AND_SSB=y -# CONFIG_B43_BUSES_BCMA is not set -# CONFIG_B43_BUSES_SSB is not set -CONFIG_B43_PCI_AUTOSELECT=y -CONFIG_B43_PCICORE_AUTOSELECT=y -CONFIG_B43_SDIO=y -CONFIG_B43_BCMA_PIO=y -CONFIG_B43_PIO=y -CONFIG_B43_PHY_G=y -CONFIG_B43_PHY_N=y -CONFIG_B43_PHY_LP=y -CONFIG_B43_PHY_HT=y -CONFIG_B43_LEDS=y -CONFIG_B43_HWRNG=y -# CONFIG_B43_DEBUG is not set -CONFIG_B43LEGACY=m -CONFIG_B43LEGACY_PCI_AUTOSELECT=y -CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y -CONFIG_B43LEGACY_LEDS=y -CONFIG_B43LEGACY_HWRNG=y -CONFIG_B43LEGACY_DEBUG=y -CONFIG_B43LEGACY_DMA=y -CONFIG_B43LEGACY_PIO=y -CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y -# CONFIG_B43LEGACY_DMA_MODE is not set -# CONFIG_B43LEGACY_PIO_MODE is not set -CONFIG_BRCMUTIL=m -CONFIG_BRCMSMAC=m -CONFIG_BRCMFMAC=m -CONFIG_BRCMFMAC_PROTO_BCDC=y -CONFIG_BRCMFMAC_PROTO_MSGBUF=y -CONFIG_BRCMFMAC_SDIO=y -CONFIG_BRCMFMAC_USB=y -CONFIG_BRCMFMAC_PCIE=y -# CONFIG_BRCM_TRACING is not set -# CONFIG_BRCMDBG is not set -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_AIRO=m -CONFIG_AIRO_CS=m -CONFIG_WLAN_VENDOR_INTEL=y -# CONFIG_IPW2100 is not set -CONFIG_IPW2200=m -CONFIG_IPW2200_MONITOR=y -CONFIG_IPW2200_RADIOTAP=y -CONFIG_IPW2200_PROMISCUOUS=y -CONFIG_IPW2200_QOS=y -# CONFIG_IPW2200_DEBUG is not set -CONFIG_LIBIPW=m -# CONFIG_LIBIPW_DEBUG is not set -CONFIG_IWLEGACY=m -CONFIG_IWL4965=m -CONFIG_IWL3945=m - -# -# iwl3945 / iwl4965 Debugging Options -# -# CONFIG_IWLEGACY_DEBUG is not set -CONFIG_IWLWIFI=m -CONFIG_IWLWIFI_LEDS=y -CONFIG_IWLDVM=m -CONFIG_IWLMVM=m -CONFIG_IWLWIFI_OPMODE_MODULAR=y -# CONFIG_IWLWIFI_BCAST_FILTERING is not set -# CONFIG_IWLWIFI_PCIE_RTPM is not set - -# -# Debugging Options -# -# CONFIG_IWLWIFI_DEBUG is not set -# CONFIG_IWLWIFI_DEVICE_TRACING is not set -CONFIG_WLAN_VENDOR_INTERSIL=y -CONFIG_HOSTAP=m -CONFIG_HOSTAP_FIRMWARE=y -# CONFIG_HOSTAP_FIRMWARE_NVRAM is not set -CONFIG_HOSTAP_PLX=m -CONFIG_HOSTAP_PCI=m -CONFIG_HOSTAP_CS=m -CONFIG_HERMES=m -# CONFIG_HERMES_PRISM is not set -CONFIG_HERMES_CACHE_FW_ON_INIT=y -CONFIG_PLX_HERMES=m -CONFIG_TMD_HERMES=m -CONFIG_NORTEL_HERMES=m -CONFIG_PCMCIA_HERMES=m -CONFIG_PCMCIA_SPECTRUM=m -CONFIG_ORINOCO_USB=m -CONFIG_P54_COMMON=m -CONFIG_P54_USB=m -CONFIG_P54_PCI=m -# CONFIG_P54_SPI is not set -CONFIG_P54_LEDS=y -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_LIBERTAS=m -CONFIG_LIBERTAS_USB=m -CONFIG_LIBERTAS_CS=m -CONFIG_LIBERTAS_SDIO=m -# CONFIG_LIBERTAS_SPI is not set -# CONFIG_LIBERTAS_DEBUG is not set -CONFIG_LIBERTAS_MESH=y -CONFIG_LIBERTAS_THINFIRM=m -# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set -CONFIG_LIBERTAS_THINFIRM_USB=m -CONFIG_MWIFIEX=m -CONFIG_MWIFIEX_SDIO=m -CONFIG_MWIFIEX_PCIE=m -CONFIG_MWIFIEX_USB=m -CONFIG_MWL8K=m -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_MT7601U=m -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_RT2X00=m -CONFIG_RT2400PCI=m -CONFIG_RT2500PCI=m -CONFIG_RT61PCI=m -CONFIG_RT2800PCI=m -CONFIG_RT2800PCI_RT33XX=y -CONFIG_RT2800PCI_RT35XX=y -CONFIG_RT2800PCI_RT53XX=y -CONFIG_RT2800PCI_RT3290=y -CONFIG_RT2500USB=m -CONFIG_RT73USB=m -CONFIG_RT2800USB=m -CONFIG_RT2800USB_RT33XX=y -CONFIG_RT2800USB_RT35XX=y -CONFIG_RT2800USB_RT3573=y -CONFIG_RT2800USB_RT53XX=y -CONFIG_RT2800USB_RT55XX=y -# CONFIG_RT2800USB_UNKNOWN is not set -CONFIG_RT2800_LIB=m -CONFIG_RT2800_LIB_MMIO=m -CONFIG_RT2X00_LIB_MMIO=m -CONFIG_RT2X00_LIB_PCI=m -CONFIG_RT2X00_LIB_USB=m -CONFIG_RT2X00_LIB=m -CONFIG_RT2X00_LIB_FIRMWARE=y -CONFIG_RT2X00_LIB_CRYPTO=y -CONFIG_RT2X00_LIB_LEDS=y -# CONFIG_RT2X00_DEBUG is not set -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_RTL8180=m -CONFIG_RTL8187=m -CONFIG_RTL8187_LEDS=y -CONFIG_RTL_CARDS=m -CONFIG_RTL8192CE=m -CONFIG_RTL8192SE=m -CONFIG_RTL8192DE=m -CONFIG_RTL8723AE=m -CONFIG_RTL8723BE=m -CONFIG_RTL8188EE=m -CONFIG_RTL8192EE=m -CONFIG_RTL8821AE=m -CONFIG_RTL8192CU=m -CONFIG_RTLWIFI=m -CONFIG_RTLWIFI_PCI=m -CONFIG_RTLWIFI_USB=m -# CONFIG_RTLWIFI_DEBUG is not set -CONFIG_RTL8192C_COMMON=m -CONFIG_RTL8723_COMMON=m -CONFIG_RTLBTCOEXIST=m -CONFIG_RTL8XXXU=m -# CONFIG_RTL8XXXU_UNTESTED is not set -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_RSI_91X=m -CONFIG_RSI_DEBUGFS=y -# CONFIG_RSI_SDIO is not set -CONFIG_RSI_USB=m -CONFIG_WLAN_VENDOR_ST=y -# CONFIG_CW1200 is not set -# CONFIG_WLAN_VENDOR_TI is not set -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_USB_ZD1201=m -CONFIG_ZD1211RW=m -# CONFIG_ZD1211RW_DEBUG is not set -CONFIG_PCMCIA_RAYCS=m -CONFIG_PCMCIA_WL3501=m -CONFIG_MAC80211_HWSIM=m -CONFIG_USB_NET_RNDIS_WLAN=m - -# -# WiMAX Wireless Broadband devices -# -CONFIG_WIMAX_I2400M=m -CONFIG_WIMAX_I2400M_USB=m -CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 -CONFIG_WAN=y -CONFIG_LANMEDIA=m -CONFIG_HDLC=m -CONFIG_HDLC_RAW=m -CONFIG_HDLC_RAW_ETH=m -CONFIG_HDLC_CISCO=m -CONFIG_HDLC_FR=m -CONFIG_HDLC_PPP=m -# CONFIG_HDLC_X25 is not set -CONFIG_PCI200SYN=m -CONFIG_WANXL=m -# CONFIG_PC300TOO is not set -CONFIG_FARSYNC=m -CONFIG_DSCC4=m -CONFIG_DSCC4_PCISYNC=y -CONFIG_DSCC4_PCI_RST=y -CONFIG_DLCI=m -CONFIG_DLCI_MAX=8 -# CONFIG_SBNI is not set -CONFIG_IEEE802154_DRIVERS=m -CONFIG_IEEE802154_FAKELB=m -CONFIG_IEEE802154_AT86RF230=m -# CONFIG_IEEE802154_AT86RF230_DEBUGFS is not set -CONFIG_IEEE802154_MRF24J40=m -CONFIG_IEEE802154_CC2520=m -CONFIG_IEEE802154_ATUSB=m -CONFIG_IEEE802154_ADF7242=m -CONFIG_XEN_NETDEV_FRONTEND=m -CONFIG_XEN_NETDEV_BACKEND=m -CONFIG_VMXNET3=m -CONFIG_FUJITSU_ES=m -CONFIG_HYPERV_NET=m -CONFIG_ISDN=y -# CONFIG_ISDN_I4L is not set -CONFIG_ISDN_CAPI=m -CONFIG_CAPI_TRACE=y -CONFIG_ISDN_CAPI_CAPI20=m -CONFIG_ISDN_CAPI_MIDDLEWARE=y - -# -# CAPI hardware drivers -# -CONFIG_CAPI_AVM=y -CONFIG_ISDN_DRV_AVMB1_B1PCI=m -CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y -CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m -CONFIG_ISDN_DRV_AVMB1_AVM_CS=m -CONFIG_ISDN_DRV_AVMB1_T1PCI=m -CONFIG_ISDN_DRV_AVMB1_C4=m -CONFIG_CAPI_EICON=y -CONFIG_ISDN_DIVAS=m -CONFIG_ISDN_DIVAS_BRIPCI=y -CONFIG_ISDN_DIVAS_PRIPCI=y -CONFIG_ISDN_DIVAS_DIVACAPI=m -CONFIG_ISDN_DIVAS_USERIDI=m -CONFIG_ISDN_DIVAS_MAINT=m -CONFIG_ISDN_DRV_GIGASET=m -CONFIG_GIGASET_CAPI=y -# CONFIG_GIGASET_DUMMYLL is not set -CONFIG_GIGASET_BASE=m -CONFIG_GIGASET_M105=m -CONFIG_GIGASET_M101=m -# CONFIG_GIGASET_DEBUG is not set -CONFIG_HYSDN=m -CONFIG_HYSDN_CAPI=y -CONFIG_MISDN=m -CONFIG_MISDN_DSP=m -CONFIG_MISDN_L1OIP=m - -# -# mISDN hardware drivers -# -CONFIG_MISDN_HFCPCI=m -CONFIG_MISDN_HFCMULTI=m -CONFIG_MISDN_HFCUSB=m -CONFIG_MISDN_AVMFRITZ=m -CONFIG_MISDN_SPEEDFAX=m -CONFIG_MISDN_INFINEON=m -CONFIG_MISDN_W6692=m -# CONFIG_MISDN_NETJET is not set -CONFIG_MISDN_IPAC=m -CONFIG_MISDN_ISAR=m -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=m -CONFIG_INPUT_POLLDEV=m -CONFIG_INPUT_SPARSEKMAP=m -CONFIG_INPUT_MATRIXKMAP=m - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -CONFIG_INPUT_JOYDEV=m -CONFIG_INPUT_EVDEV=m -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADC is not set -CONFIG_KEYBOARD_ADP5588=m -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -CONFIG_KEYBOARD_QT2160=m -CONFIG_KEYBOARD_LKKBD=m -CONFIG_KEYBOARD_GPIO=m -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -CONFIG_KEYBOARD_LM8323=m -# CONFIG_KEYBOARD_LM8333 is not set -CONFIG_KEYBOARD_MAX7359=m -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -CONFIG_KEYBOARD_NEWTON=m -CONFIG_KEYBOARD_OPENCORES=m -# CONFIG_KEYBOARD_SAMSUNG is not set -CONFIG_KEYBOARD_STOWAWAY=m -CONFIG_KEYBOARD_SUNKBD=m -# CONFIG_KEYBOARD_OMAP4 is not set -CONFIG_KEYBOARD_XTKBD=m -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=m -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_SERIAL=m -CONFIG_MOUSE_APPLETOUCH=m -CONFIG_MOUSE_BCM5974=m -CONFIG_MOUSE_CYAPA=m -CONFIG_MOUSE_ELAN_I2C=m -CONFIG_MOUSE_ELAN_I2C_I2C=y -CONFIG_MOUSE_ELAN_I2C_SMBUS=y -CONFIG_MOUSE_VSXXXAA=m -# CONFIG_MOUSE_GPIO is not set -CONFIG_MOUSE_SYNAPTICS_I2C=m -CONFIG_MOUSE_SYNAPTICS_USB=m -CONFIG_INPUT_JOYSTICK=y -CONFIG_JOYSTICK_ANALOG=m -CONFIG_JOYSTICK_A3D=m -CONFIG_JOYSTICK_ADI=m -CONFIG_JOYSTICK_COBRA=m -CONFIG_JOYSTICK_GF2K=m -CONFIG_JOYSTICK_GRIP=m -CONFIG_JOYSTICK_GRIP_MP=m -CONFIG_JOYSTICK_GUILLEMOT=m -CONFIG_JOYSTICK_INTERACT=m -CONFIG_JOYSTICK_SIDEWINDER=m -CONFIG_JOYSTICK_TMDC=m -CONFIG_JOYSTICK_IFORCE=m -CONFIG_JOYSTICK_IFORCE_USB=y -CONFIG_JOYSTICK_IFORCE_232=y -CONFIG_JOYSTICK_WARRIOR=m -CONFIG_JOYSTICK_MAGELLAN=m -CONFIG_JOYSTICK_SPACEORB=m -CONFIG_JOYSTICK_SPACEBALL=m -CONFIG_JOYSTICK_STINGER=m -CONFIG_JOYSTICK_TWIDJOY=m -CONFIG_JOYSTICK_ZHENHUA=m -CONFIG_JOYSTICK_DB9=m -CONFIG_JOYSTICK_GAMECON=m -CONFIG_JOYSTICK_TURBOGRAFX=m -# CONFIG_JOYSTICK_AS5011 is not set -CONFIG_JOYSTICK_JOYDUMP=m -CONFIG_JOYSTICK_XPAD=m -CONFIG_JOYSTICK_XPAD_FF=y -CONFIG_JOYSTICK_XPAD_LEDS=y -CONFIG_JOYSTICK_WALKERA0701=m -CONFIG_INPUT_TABLET=y -CONFIG_TABLET_USB_ACECAD=m -CONFIG_TABLET_USB_AIPTEK=m -CONFIG_TABLET_USB_GTCO=m -CONFIG_TABLET_USB_HANWANG=m -CONFIG_TABLET_USB_KBTAB=m -# CONFIG_TABLET_USB_PEGASUS is not set -CONFIG_TABLET_SERIAL_WACOM4=m -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -CONFIG_TOUCHSCREEN_ADS7846=m -CONFIG_TOUCHSCREEN_AD7877=m -CONFIG_TOUCHSCREEN_AD7879=m -CONFIG_TOUCHSCREEN_AD7879_I2C=m -# CONFIG_TOUCHSCREEN_AD7879_SPI is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -CONFIG_TOUCHSCREEN_ATMEL_MXT=m -# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -CONFIG_TOUCHSCREEN_DYNAPRO=m -CONFIG_TOUCHSCREEN_HAMPSHIRE=m -CONFIG_TOUCHSCREEN_EETI=m -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -CONFIG_TOUCHSCREEN_FUJITSU=m -CONFIG_TOUCHSCREEN_GOODIX=m -# CONFIG_TOUCHSCREEN_ILI210X is not set -CONFIG_TOUCHSCREEN_GUNZE=m -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -CONFIG_TOUCHSCREEN_ELO=m -CONFIG_TOUCHSCREEN_WACOM_W8001=m -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -CONFIG_TOUCHSCREEN_MCS5000=m -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -CONFIG_TOUCHSCREEN_MTOUCH=m -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -CONFIG_TOUCHSCREEN_INEXIO=m -CONFIG_TOUCHSCREEN_MK712=m -CONFIG_TOUCHSCREEN_PENMOUNT=m -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -CONFIG_TOUCHSCREEN_TOUCHRIGHT=m -CONFIG_TOUCHSCREEN_TOUCHWIN=m -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -CONFIG_TOUCHSCREEN_WM97XX=m -CONFIG_TOUCHSCREEN_WM9705=y -CONFIG_TOUCHSCREEN_WM9712=y -CONFIG_TOUCHSCREEN_WM9713=y -CONFIG_TOUCHSCREEN_USB_COMPOSITE=m -CONFIG_TOUCHSCREEN_USB_EGALAX=y -CONFIG_TOUCHSCREEN_USB_PANJIT=y -CONFIG_TOUCHSCREEN_USB_3M=y -CONFIG_TOUCHSCREEN_USB_ITM=y -CONFIG_TOUCHSCREEN_USB_ETURBO=y -CONFIG_TOUCHSCREEN_USB_GUNZE=y -CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y -CONFIG_TOUCHSCREEN_USB_IRTOUCH=y -CONFIG_TOUCHSCREEN_USB_IDEALTEK=y -CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y -CONFIG_TOUCHSCREEN_USB_GOTOP=y -CONFIG_TOUCHSCREEN_USB_JASTEC=y -CONFIG_TOUCHSCREEN_USB_ELO=y -CONFIG_TOUCHSCREEN_USB_E2I=y -CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y -CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y -CONFIG_TOUCHSCREEN_USB_NEXIO=y -CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y -CONFIG_TOUCHSCREEN_TOUCHIT213=m -CONFIG_TOUCHSCREEN_TSC_SERIO=m -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -CONFIG_TOUCHSCREEN_TSC2007=m -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -CONFIG_TOUCHSCREEN_SUR40=m -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -CONFIG_TOUCHSCREEN_TPS6507X=m -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_COLIBRI_VF50 is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_MPU3050 is not set -CONFIG_INPUT_APANEL=m -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_TILT_POLLED is not set -# CONFIG_INPUT_GPIO_DECODER is not set -CONFIG_INPUT_ATLAS_BTNS=m -CONFIG_INPUT_ATI_REMOTE2=m -CONFIG_INPUT_KEYSPAN_REMOTE=m -# CONFIG_INPUT_KXTJ9 is not set -CONFIG_INPUT_POWERMATE=m -CONFIG_INPUT_YEALINK=m -CONFIG_INPUT_CM109=m -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -CONFIG_INPUT_UINPUT=m -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y -CONFIG_INPUT_IDEAPAD_SLIDEBAR=m -CONFIG_INPUT_SOC_BUTTON_ARRAY=m -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=m -CONFIG_SERIO_CT82C710=m -CONFIG_SERIO_PARKBD=m -CONFIG_SERIO_PCIPS2=m -CONFIG_SERIO_LIBPS2=y -CONFIG_SERIO_RAW=m -CONFIG_SERIO_ALTERA_PS2=m -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -CONFIG_HYPERV_KEYBOARD=m -# CONFIG_USERIO is not set -CONFIG_GAMEPORT=m -CONFIG_GAMEPORT_NS558=m -CONFIG_GAMEPORT_L4=m -CONFIG_GAMEPORT_EMU10K1=m -CONFIG_GAMEPORT_FM801=m - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -CONFIG_ROCKETPORT=m -CONFIG_CYCLADES=m -# CONFIG_CYZ_INTR is not set -CONFIG_MOXA_INTELLIO=m -CONFIG_MOXA_SMARTIO=m -CONFIG_SYNCLINK=m -CONFIG_SYNCLINKMP=m -CONFIG_SYNCLINK_GT=m -CONFIG_NOZOMI=m -CONFIG_ISI=m -CONFIG_N_HDLC=m -CONFIG_N_GSM=m -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_CS=m -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -# CONFIG_SERIAL_8250_FSL is not set -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_JSM=m -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -CONFIG_SERIAL_RP2=m -CONFIG_SERIAL_RP2_NR_UARTS=32 -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -CONFIG_TTY_PRINTK=m -CONFIG_PRINTER=m -# CONFIG_LP_CONSOLE is not set -CONFIG_PPDEV=m -CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y -CONFIG_VIRTIO_CONSOLE=m -CONFIG_IPMI_HANDLER=m -# CONFIG_IPMI_PANIC_EVENT is not set -CONFIG_IPMI_DEVICE_INTERFACE=m -CONFIG_IPMI_SI=m -# CONFIG_IPMI_SSIF is not set -CONFIG_IPMI_WATCHDOG=m -CONFIG_IPMI_POWEROFF=m -CONFIG_HW_RANDOM=m -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=m -CONFIG_HW_RANDOM_AMD=m -CONFIG_HW_RANDOM_VIA=m -CONFIG_HW_RANDOM_VIRTIO=m -CONFIG_HW_RANDOM_TPM=m -CONFIG_NVRAM=m -CONFIG_R3964=m -CONFIG_APPLICOM=m - -# -# PCMCIA character devices -# -CONFIG_SYNCLINK_CS=m -CONFIG_CARDMAN_4000=m -CONFIG_CARDMAN_4040=m -CONFIG_IPWIRELESS=m -CONFIG_MWAVE=m -CONFIG_RAW_DRIVER=m -CONFIG_MAX_RAW_DEVS=256 -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -CONFIG_HANGCHECK_TIMER=m -CONFIG_TCG_TPM=m -CONFIG_TCG_TIS_CORE=m -CONFIG_TCG_TIS=m -# CONFIG_TCG_TIS_SPI is not set -CONFIG_TCG_TIS_I2C_ATMEL=m -CONFIG_TCG_TIS_I2C_INFINEON=m -CONFIG_TCG_TIS_I2C_NUVOTON=m -CONFIG_TCG_NSC=m -CONFIG_TCG_ATMEL=m -CONFIG_TCG_INFINEON=m -CONFIG_TCG_XEN=m -CONFIG_TCG_CRB=m -# CONFIG_TCG_VTPM_PROXY is not set -CONFIG_TCG_TIS_ST33ZP24=m -CONFIG_TCG_TIS_ST33ZP24_I2C=m -# CONFIG_TCG_TIS_ST33ZP24_SPI is not set -CONFIG_TELCLOCK=m -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=m -CONFIG_I2C_MUX=m - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -CONFIG_I2C_MUX_PCA9541=m -CONFIG_I2C_MUX_PCA954x=m -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=m -CONFIG_I2C_ALGOBIT=m -CONFIG_I2C_ALGOPCA=m - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=m -CONFIG_I2C_ALI1563=m -CONFIG_I2C_ALI15X3=m -CONFIG_I2C_AMD756=m -CONFIG_I2C_AMD756_S4882=m -CONFIG_I2C_AMD8111=m -CONFIG_I2C_I801=m -CONFIG_I2C_ISCH=m -CONFIG_I2C_ISMT=m -CONFIG_I2C_PIIX4=m -CONFIG_I2C_NFORCE2=m -CONFIG_I2C_NFORCE2_S4985=m -CONFIG_I2C_SIS5595=m -CONFIG_I2C_SIS630=m -CONFIG_I2C_SIS96X=m -CONFIG_I2C_VIA=m -CONFIG_I2C_VIAPRO=m - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=m - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=m -CONFIG_I2C_DESIGNWARE_PLATFORM=m -CONFIG_I2C_DESIGNWARE_PCI=m -# CONFIG_I2C_DESIGNWARE_BAYTRAIL is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_KEMPLD=m -CONFIG_I2C_OCORES=m -CONFIG_I2C_PCA_PLATFORM=m -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_RK3X is not set -CONFIG_I2C_SIMTEC=m -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -CONFIG_I2C_DIOLAN_U2C=m -CONFIG_I2C_PARPORT=m -CONFIG_I2C_PARPORT_LIGHT=m -CONFIG_I2C_ROBOTFUZZ_OSIF=m -CONFIG_I2C_TAOS_EVM=m -CONFIG_I2C_TINY_USB=m -CONFIG_I2C_VIPERBOARD=m - -# -# Other I2C/SMBus bus drivers -# -CONFIG_I2C_STUB=m -CONFIG_I2C_SLAVE=y -CONFIG_I2C_SLAVE_EEPROM=m -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -CONFIG_SPI_BITBANG=m -CONFIG_SPI_BUTTERFLY=m -# CONFIG_SPI_CADENCE is not set -CONFIG_SPI_DESIGNWARE=m -CONFIG_SPI_DW_PCI=m -CONFIG_SPI_DW_MMIO=m -CONFIG_SPI_GPIO=m -CONFIG_SPI_LM70_LLP=m -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -CONFIG_SPI_PXA2XX=m -CONFIG_SPI_PXA2XX_PCI=m -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=m -CONFIG_SPI_LOOPBACK_TEST=m -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set - -# -# PPS support -# -CONFIG_PPS=m -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -CONFIG_PPS_CLIENT_LDISC=m -CONFIG_PPS_CLIENT_PARPORT=m -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=m - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -CONFIG_PINCTRL=y - -# -# Pin controllers -# -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_SINGLE is not set -CONFIG_PINCTRL_UPBOARD=m -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -CONFIG_PINCTRL_INTEL=y -CONFIG_PINCTRL_BROXTON=y -CONFIG_PINCTRL_SUNRISEPOINT=y -CONFIG_GPIOLIB=y -CONFIG_OF_GPIO=y -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_MAX730X=m - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_ICH is not set -# CONFIG_GPIO_LYNXPOINT is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_ZX is not set - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH is not set -# CONFIG_GPIO_SCH311X is not set - -# -# I2C GPIO expanders -# -CONFIG_GPIO_ADP5588=m -CONFIG_GPIO_ADNP=m -CONFIG_GPIO_MAX7300=m -CONFIG_GPIO_MAX732X=m -CONFIG_GPIO_PCA953X=m -CONFIG_GPIO_PCF857X=m -CONFIG_GPIO_SX150X=y -CONFIG_GPIO_TPIC2810=m -CONFIG_GPIO_TS4900=m - -# -# MFD GPIO expanders -# -CONFIG_GPIO_KEMPLD=m - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -CONFIG_GPIO_ML_IOH=m -# CONFIG_GPIO_RDC321X is not set -# CONFIG_GPIO_SODAVILLE is not set - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set - -# -# SPI or I2C GPIO expanders -# -# CONFIG_GPIO_MCP23S08 is not set - -# -# USB GPIO expanders -# -CONFIG_GPIO_VIPERBOARD=m -CONFIG_W1=m -CONFIG_W1_CON=y - -# -# 1-wire Bus Masters -# -CONFIG_W1_MASTER_MATROX=m -CONFIG_W1_MASTER_DS2490=m -CONFIG_W1_MASTER_DS2482=m -CONFIG_W1_MASTER_DS1WM=m -CONFIG_W1_MASTER_GPIO=m - -# -# 1-wire Slaves -# -CONFIG_W1_SLAVE_THERM=m -CONFIG_W1_SLAVE_SMEM=m -CONFIG_W1_SLAVE_DS2408=m -CONFIG_W1_SLAVE_DS2408_READBACK=y -CONFIG_W1_SLAVE_DS2413=m -CONFIG_W1_SLAVE_DS2406=m -CONFIG_W1_SLAVE_DS2423=m -CONFIG_W1_SLAVE_DS2431=m -CONFIG_W1_SLAVE_DS2433=m -# CONFIG_W1_SLAVE_DS2433_CRC is not set -CONFIG_W1_SLAVE_DS2760=m -CONFIG_W1_SLAVE_DS2780=m -CONFIG_W1_SLAVE_DS2781=m -CONFIG_W1_SLAVE_DS28E04=m -CONFIG_W1_SLAVE_BQ27000=m -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2760 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -CONFIG_BATTERY_SBS=m -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -CONFIG_HWMON=y -CONFIG_HWMON_VID=m -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -CONFIG_SENSORS_ABITUGURU=m -CONFIG_SENSORS_ABITUGURU3=m -CONFIG_SENSORS_AD7314=m -CONFIG_SENSORS_AD7414=m -CONFIG_SENSORS_AD7418=m -CONFIG_SENSORS_ADM1021=m -CONFIG_SENSORS_ADM1025=m -CONFIG_SENSORS_ADM1026=m -CONFIG_SENSORS_ADM1029=m -CONFIG_SENSORS_ADM1031=m -CONFIG_SENSORS_ADM9240=m -CONFIG_SENSORS_ADT7X10=m -CONFIG_SENSORS_ADT7310=m -CONFIG_SENSORS_ADT7410=m -CONFIG_SENSORS_ADT7411=m -CONFIG_SENSORS_ADT7462=m -CONFIG_SENSORS_ADT7470=m -CONFIG_SENSORS_ADT7475=m -CONFIG_SENSORS_ASC7621=m -CONFIG_SENSORS_K8TEMP=m -CONFIG_SENSORS_K10TEMP=m -CONFIG_SENSORS_FAM15H_POWER=m -CONFIG_SENSORS_APPLESMC=m -CONFIG_SENSORS_ASB100=m -CONFIG_SENSORS_ATXP1=m -CONFIG_SENSORS_DS620=m -CONFIG_SENSORS_DS1621=m -CONFIG_SENSORS_DELL_SMM=m -CONFIG_SENSORS_I5K_AMB=m -CONFIG_SENSORS_F71805F=m -CONFIG_SENSORS_F71882FG=m -CONFIG_SENSORS_F75375S=m -CONFIG_SENSORS_FSCHMD=m -CONFIG_SENSORS_FTSTEUTATES=m -CONFIG_SENSORS_GL518SM=m -CONFIG_SENSORS_GL520SM=m -CONFIG_SENSORS_G760A=m -CONFIG_SENSORS_G762=m -CONFIG_SENSORS_GPIO_FAN=m -CONFIG_SENSORS_HIH6130=m -CONFIG_SENSORS_IBMAEM=m -CONFIG_SENSORS_IBMPEX=m -CONFIG_SENSORS_IIO_HWMON=m -CONFIG_SENSORS_I5500=m -CONFIG_SENSORS_CORETEMP=m -CONFIG_SENSORS_IT87=m -CONFIG_SENSORS_JC42=m -CONFIG_SENSORS_POWR1220=m -CONFIG_SENSORS_LINEAGE=m -CONFIG_SENSORS_LTC2945=m -CONFIG_SENSORS_LTC2990=m -CONFIG_SENSORS_LTC4151=m -CONFIG_SENSORS_LTC4215=m -CONFIG_SENSORS_LTC4222=m -CONFIG_SENSORS_LTC4245=m -CONFIG_SENSORS_LTC4260=m -CONFIG_SENSORS_LTC4261=m -CONFIG_SENSORS_MAX1111=m -CONFIG_SENSORS_MAX16065=m -CONFIG_SENSORS_MAX1619=m -CONFIG_SENSORS_MAX1668=m -CONFIG_SENSORS_MAX197=m -CONFIG_SENSORS_MAX31722=m -CONFIG_SENSORS_MAX6639=m -CONFIG_SENSORS_MAX6642=m -CONFIG_SENSORS_MAX6650=m -CONFIG_SENSORS_MAX6697=m -CONFIG_SENSORS_MAX31790=m -CONFIG_SENSORS_MCP3021=m -CONFIG_SENSORS_MENF21BMC_HWMON=m -CONFIG_SENSORS_ADCXX=m -CONFIG_SENSORS_LM63=m -CONFIG_SENSORS_LM70=m -CONFIG_SENSORS_LM73=m -CONFIG_SENSORS_LM75=m -CONFIG_SENSORS_LM77=m -CONFIG_SENSORS_LM78=m -CONFIG_SENSORS_LM80=m -CONFIG_SENSORS_LM83=m -CONFIG_SENSORS_LM85=m -CONFIG_SENSORS_LM87=m -CONFIG_SENSORS_LM90=m -CONFIG_SENSORS_LM92=m -CONFIG_SENSORS_LM93=m -CONFIG_SENSORS_LM95234=m -CONFIG_SENSORS_LM95241=m -CONFIG_SENSORS_LM95245=m -CONFIG_SENSORS_PC87360=m -CONFIG_SENSORS_PC87427=m -CONFIG_SENSORS_NTC_THERMISTOR=m -CONFIG_SENSORS_NCT6683=m -CONFIG_SENSORS_NCT6775=m -CONFIG_SENSORS_NCT7802=m -CONFIG_SENSORS_NCT7904=m -CONFIG_SENSORS_PCF8591=m -# CONFIG_PMBUS is not set -CONFIG_SENSORS_PWM_FAN=m -CONFIG_SENSORS_SHT15=m -CONFIG_SENSORS_SHT21=m -CONFIG_SENSORS_SHT3x=m -CONFIG_SENSORS_SHTC1=m -CONFIG_SENSORS_SIS5595=m -CONFIG_SENSORS_DME1737=m -CONFIG_SENSORS_EMC1403=m -CONFIG_SENSORS_EMC2103=m -CONFIG_SENSORS_EMC6W201=m -CONFIG_SENSORS_SMSC47M1=m -CONFIG_SENSORS_SMSC47M192=m -CONFIG_SENSORS_SMSC47B397=m -CONFIG_SENSORS_SCH56XX_COMMON=m -CONFIG_SENSORS_SCH5627=m -CONFIG_SENSORS_SCH5636=m -CONFIG_SENSORS_SMM665=m -CONFIG_SENSORS_ADC128D818=m -CONFIG_SENSORS_ADS1015=m -CONFIG_SENSORS_ADS7828=m -CONFIG_SENSORS_ADS7871=m -CONFIG_SENSORS_AMC6821=m -CONFIG_SENSORS_INA209=m -CONFIG_SENSORS_INA2XX=m -CONFIG_SENSORS_INA3221=m -CONFIG_SENSORS_TC74=m -CONFIG_SENSORS_THMC50=m -CONFIG_SENSORS_TMP102=m -CONFIG_SENSORS_TMP103=m -CONFIG_SENSORS_TMP401=m -CONFIG_SENSORS_TMP421=m -CONFIG_SENSORS_VIA_CPUTEMP=m -CONFIG_SENSORS_VIA686A=m -CONFIG_SENSORS_VT1211=m -CONFIG_SENSORS_VT8231=m -CONFIG_SENSORS_W83781D=m -CONFIG_SENSORS_W83791D=m -CONFIG_SENSORS_W83792D=m -CONFIG_SENSORS_W83793=m -CONFIG_SENSORS_W83795=m -# CONFIG_SENSORS_W83795_FANCTRL is not set -CONFIG_SENSORS_W83L785TS=m -CONFIG_SENSORS_W83L786NG=m -CONFIG_SENSORS_W83627HF=m -CONFIG_SENSORS_W83627EHF=m - -# -# ACPI drivers -# -CONFIG_SENSORS_ACPI_POWER=m -CONFIG_SENSORS_ATK0110=m -CONFIG_THERMAL=y -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CPU_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_QORIQ_THERMAL is not set -CONFIG_INTEL_POWERCLAMP=m -CONFIG_X86_PKG_TEMP_THERMAL=m -CONFIG_INTEL_SOC_DTS_IOSF_CORE=m -CONFIG_INTEL_SOC_DTS_THERMAL=m - -# -# ACPI INT340X thermal drivers -# -CONFIG_INT340X_THERMAL=m -CONFIG_ACPI_THERMAL_REL=m -# CONFIG_INT3406_THERMAL is not set -CONFIG_INTEL_PCH_THERMAL=m -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Device Drivers -# -CONFIG_SOFT_WATCHDOG=m -# CONFIG_GPIO_WATCHDOG is not set -CONFIG_MENF21BMC_WATCHDOG=m -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -CONFIG_ACQUIRE_WDT=m -CONFIG_ADVANTECH_WDT=m -CONFIG_ALIM1535_WDT=m -CONFIG_ALIM7101_WDT=m -CONFIG_F71808E_WDT=m -CONFIG_SP5100_TCO=m -CONFIG_SBC_FITPC2_WATCHDOG=m -CONFIG_EUROTECH_WDT=m -CONFIG_IB700_WDT=m -CONFIG_IBMASR=m -CONFIG_WAFER_WDT=m -CONFIG_I6300ESB_WDT=m -CONFIG_IE6XX_WDT=m -CONFIG_ITCO_WDT=m -CONFIG_ITCO_VENDOR_SUPPORT=y -CONFIG_IT8712F_WDT=m -CONFIG_IT87_WDT=m -CONFIG_HP_WATCHDOG=m -CONFIG_KEMPLD_WDT=m -CONFIG_HPWDT_NMI_DECODING=y -CONFIG_SC1200_WDT=m -CONFIG_PC87413_WDT=m -CONFIG_NV_TCO=m -CONFIG_60XX_WDT=m -CONFIG_CPU5_WDT=m -CONFIG_SMSC_SCH311X_WDT=m -CONFIG_SMSC37B787_WDT=m -CONFIG_VIA_WDT=m -CONFIG_W83627HF_WDT=m -CONFIG_W83877F_WDT=m -CONFIG_W83977F_WDT=m -CONFIG_MACHZ_WDT=m -CONFIG_SBC_EPX_C3_WATCHDOG=m -# CONFIG_INTEL_MEI_WDT is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_MEN_A21_WDT is not set -CONFIG_XEN_WDT=m - -# -# PCI-based Watchdog Cards -# -CONFIG_PCIPCWATCHDOG=m -CONFIG_WDTPCI=m - -# -# USB-based Watchdog Cards -# -CONFIG_USBPCWATCHDOG=m - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -CONFIG_SSB=m -CONFIG_SSB_SPROM=y -CONFIG_SSB_BLOCKIO=y -CONFIG_SSB_PCIHOST_POSSIBLE=y -CONFIG_SSB_PCIHOST=y -CONFIG_SSB_B43_PCI_BRIDGE=y -CONFIG_SSB_PCMCIAHOST_POSSIBLE=y -CONFIG_SSB_PCMCIAHOST=y -CONFIG_SSB_SDIOHOST_POSSIBLE=y -CONFIG_SSB_SDIOHOST=y -# CONFIG_SSB_SILENT is not set -# CONFIG_SSB_DEBUG is not set -CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y -CONFIG_SSB_DRIVER_PCICORE=y -# CONFIG_SSB_DRIVER_GPIO is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -CONFIG_BCMA=m -CONFIG_BCMA_BLOCKIO=y -CONFIG_BCMA_HOST_PCI_POSSIBLE=y -CONFIG_BCMA_HOST_PCI=y -# CONFIG_BCMA_HOST_SOC is not set -CONFIG_BCMA_DRIVER_PCI=y -# CONFIG_BCMA_DRIVER_GMAC_CMN is not set -# CONFIG_BCMA_DRIVER_GPIO is not set -# CONFIG_BCMA_DEBUG is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=m -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_EXYNOS_LPASS is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -CONFIG_LPC_ICH=m -CONFIG_LPC_SCH=m -# CONFIG_INTEL_SOC_PMIC is not set -CONFIG_MFD_INTEL_LPSS=m -CONFIG_MFD_INTEL_LPSS_ACPI=m -CONFIG_MFD_INTEL_LPSS_PCI=m -# CONFIG_MFD_JANZ_CMODIO is not set -CONFIG_MFD_KEMPLD=m -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -CONFIG_MFD_MENF21BMC=m -# CONFIG_EZX_PCAP is not set -CONFIG_MFD_VIPERBOARD=m -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_UCB1400_CORE is not set -# CONFIG_MFD_RDC321X is not set -CONFIG_MFD_RTSX_PCI=m -# CONFIG_MFD_RT5033 is not set -CONFIG_MFD_RTSX_USB=m -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -CONFIG_MFD_UPBOARD_FPGA=m -# CONFIG_MFD_INTEL_VUPORT is not set -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS6524X is not set -CONFIG_MEDIA_SUPPORT=m - -# -# Multimedia core support -# -CONFIG_MEDIA_CAMERA_SUPPORT=y -CONFIG_MEDIA_ANALOG_TV_SUPPORT=y -CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y -CONFIG_MEDIA_RADIO_SUPPORT=y -CONFIG_MEDIA_SDR_SUPPORT=y -CONFIG_MEDIA_RC_SUPPORT=y -CONFIG_MEDIA_CEC_EDID=y -CONFIG_MEDIA_CONTROLLER=y -# CONFIG_MEDIA_CONTROLLER_DVB is not set -CONFIG_VIDEO_DEV=m -# CONFIG_VIDEO_V4L2_SUBDEV_API is not set -CONFIG_VIDEO_V4L2=m -# CONFIG_VIDEO_ADV_DEBUG is not set -# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set -# CONFIG_VIDEO_PCI_SKELETON is not set -CONFIG_VIDEO_TUNER=m -CONFIG_VIDEOBUF_GEN=m -CONFIG_VIDEOBUF_DMA_SG=m -CONFIG_VIDEOBUF_VMALLOC=m -CONFIG_VIDEOBUF_DVB=m -CONFIG_VIDEOBUF2_CORE=m -CONFIG_VIDEOBUF2_MEMOPS=m -CONFIG_VIDEOBUF2_DMA_CONTIG=m -CONFIG_VIDEOBUF2_VMALLOC=m -CONFIG_VIDEOBUF2_DMA_SG=m -CONFIG_VIDEOBUF2_DVB=m -CONFIG_DVB_CORE=m -CONFIG_DVB_NET=y -CONFIG_TTPCI_EEPROM=m -CONFIG_DVB_MAX_ADAPTERS=8 -CONFIG_DVB_DYNAMIC_MINORS=y - -# -# Media drivers -# -CONFIG_RC_CORE=m -CONFIG_RC_MAP=m -CONFIG_RC_DECODERS=y -CONFIG_LIRC=m -CONFIG_IR_LIRC_CODEC=m -CONFIG_IR_NEC_DECODER=m -CONFIG_IR_RC5_DECODER=m -CONFIG_IR_RC6_DECODER=m -CONFIG_IR_JVC_DECODER=m -CONFIG_IR_SONY_DECODER=m -CONFIG_IR_SANYO_DECODER=m -CONFIG_IR_SHARP_DECODER=m -CONFIG_IR_MCE_KBD_DECODER=m -CONFIG_IR_XMP_DECODER=m -CONFIG_RC_DEVICES=y -CONFIG_RC_ATI_REMOTE=m -CONFIG_IR_ENE=m -# CONFIG_IR_HIX5HD2 is not set -CONFIG_IR_IMON=m -CONFIG_IR_MCEUSB=m -CONFIG_IR_ITE_CIR=m -CONFIG_IR_FINTEK=m -CONFIG_IR_NUVOTON=m -CONFIG_IR_REDRAT3=m -CONFIG_IR_STREAMZAP=m -CONFIG_IR_WINBOND_CIR=m -CONFIG_IR_IGORPLUGUSB=m -CONFIG_IR_IGUANA=m -CONFIG_IR_TTUSBIR=m -CONFIG_RC_LOOPBACK=m -# CONFIG_IR_GPIO_CIR is not set -CONFIG_MEDIA_USB_SUPPORT=y - -# -# Webcam devices -# -CONFIG_USB_VIDEO_CLASS=m -CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y -CONFIG_USB_GSPCA=m -CONFIG_USB_M5602=m -CONFIG_USB_STV06XX=m -CONFIG_USB_GL860=m -CONFIG_USB_GSPCA_BENQ=m -CONFIG_USB_GSPCA_CONEX=m -CONFIG_USB_GSPCA_CPIA1=m -CONFIG_USB_GSPCA_DTCS033=m -CONFIG_USB_GSPCA_ETOMS=m -CONFIG_USB_GSPCA_FINEPIX=m -CONFIG_USB_GSPCA_JEILINJ=m -CONFIG_USB_GSPCA_JL2005BCD=m -CONFIG_USB_GSPCA_KINECT=m -CONFIG_USB_GSPCA_KONICA=m -CONFIG_USB_GSPCA_MARS=m -CONFIG_USB_GSPCA_MR97310A=m -CONFIG_USB_GSPCA_NW80X=m -CONFIG_USB_GSPCA_OV519=m -CONFIG_USB_GSPCA_OV534=m -CONFIG_USB_GSPCA_OV534_9=m -CONFIG_USB_GSPCA_PAC207=m -CONFIG_USB_GSPCA_PAC7302=m -CONFIG_USB_GSPCA_PAC7311=m -CONFIG_USB_GSPCA_SE401=m -CONFIG_USB_GSPCA_SN9C2028=m -CONFIG_USB_GSPCA_SN9C20X=m -CONFIG_USB_GSPCA_SONIXB=m -CONFIG_USB_GSPCA_SONIXJ=m -CONFIG_USB_GSPCA_SPCA500=m -CONFIG_USB_GSPCA_SPCA501=m -CONFIG_USB_GSPCA_SPCA505=m -CONFIG_USB_GSPCA_SPCA506=m -CONFIG_USB_GSPCA_SPCA508=m -CONFIG_USB_GSPCA_SPCA561=m -CONFIG_USB_GSPCA_SPCA1528=m -CONFIG_USB_GSPCA_SQ905=m -CONFIG_USB_GSPCA_SQ905C=m -CONFIG_USB_GSPCA_SQ930X=m -CONFIG_USB_GSPCA_STK014=m -CONFIG_USB_GSPCA_STK1135=m -CONFIG_USB_GSPCA_STV0680=m -CONFIG_USB_GSPCA_SUNPLUS=m -CONFIG_USB_GSPCA_T613=m -CONFIG_USB_GSPCA_TOPRO=m -CONFIG_USB_GSPCA_TOUPTEK=m -CONFIG_USB_GSPCA_TV8532=m -CONFIG_USB_GSPCA_VC032X=m -CONFIG_USB_GSPCA_VICAM=m -CONFIG_USB_GSPCA_XIRLINK_CIT=m -CONFIG_USB_GSPCA_ZC3XX=m -CONFIG_USB_PWC=m -# CONFIG_USB_PWC_DEBUG is not set -CONFIG_USB_PWC_INPUT_EVDEV=y -CONFIG_VIDEO_CPIA2=m -CONFIG_USB_ZR364XX=m -CONFIG_USB_STKWEBCAM=m -CONFIG_USB_S2255=m -CONFIG_VIDEO_USBTV=m - -# -# Analog TV USB devices -# -CONFIG_VIDEO_PVRUSB2=m -CONFIG_VIDEO_PVRUSB2_SYSFS=y -CONFIG_VIDEO_PVRUSB2_DVB=y -# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set -CONFIG_VIDEO_HDPVR=m -CONFIG_VIDEO_USBVISION=m -CONFIG_VIDEO_STK1160_COMMON=m -CONFIG_VIDEO_STK1160_AC97=y -CONFIG_VIDEO_STK1160=m -# CONFIG_VIDEO_GO7007 is not set - -# -# Analog/digital TV USB devices -# -CONFIG_VIDEO_AU0828=m -CONFIG_VIDEO_AU0828_V4L2=y -CONFIG_VIDEO_AU0828_RC=y -CONFIG_VIDEO_CX231XX=m -CONFIG_VIDEO_CX231XX_RC=y -CONFIG_VIDEO_CX231XX_ALSA=m -CONFIG_VIDEO_CX231XX_DVB=m -CONFIG_VIDEO_TM6000=m -CONFIG_VIDEO_TM6000_ALSA=m -CONFIG_VIDEO_TM6000_DVB=m - -# -# Digital TV USB devices -# -CONFIG_DVB_USB=m -# CONFIG_DVB_USB_DEBUG is not set -CONFIG_DVB_USB_DIB3000MC=m -CONFIG_DVB_USB_A800=m -CONFIG_DVB_USB_DIBUSB_MB=m -CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y -CONFIG_DVB_USB_DIBUSB_MC=m -CONFIG_DVB_USB_DIB0700=m -CONFIG_DVB_USB_UMT_010=m -CONFIG_DVB_USB_CXUSB=m -CONFIG_DVB_USB_M920X=m -CONFIG_DVB_USB_DIGITV=m -CONFIG_DVB_USB_VP7045=m -CONFIG_DVB_USB_VP702X=m -CONFIG_DVB_USB_GP8PSK=m -CONFIG_DVB_USB_NOVA_T_USB2=m -CONFIG_DVB_USB_TTUSB2=m -CONFIG_DVB_USB_DTT200U=m -CONFIG_DVB_USB_OPERA1=m -CONFIG_DVB_USB_AF9005=m -CONFIG_DVB_USB_AF9005_REMOTE=m -CONFIG_DVB_USB_PCTV452E=m -CONFIG_DVB_USB_DW2102=m -CONFIG_DVB_USB_CINERGY_T2=m -CONFIG_DVB_USB_DTV5100=m -CONFIG_DVB_USB_FRIIO=m -CONFIG_DVB_USB_AZ6027=m -CONFIG_DVB_USB_TECHNISAT_USB2=m -CONFIG_DVB_USB_V2=m -CONFIG_DVB_USB_AF9015=m -CONFIG_DVB_USB_AF9035=m -CONFIG_DVB_USB_ANYSEE=m -CONFIG_DVB_USB_AU6610=m -CONFIG_DVB_USB_AZ6007=m -CONFIG_DVB_USB_CE6230=m -CONFIG_DVB_USB_EC168=m -CONFIG_DVB_USB_GL861=m -CONFIG_DVB_USB_LME2510=m -CONFIG_DVB_USB_MXL111SF=m -CONFIG_DVB_USB_RTL28XXU=m -CONFIG_DVB_USB_DVBSKY=m -CONFIG_DVB_TTUSB_BUDGET=m -CONFIG_DVB_TTUSB_DEC=m -CONFIG_SMS_USB_DRV=m -CONFIG_DVB_B2C2_FLEXCOP_USB=m -# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set -CONFIG_DVB_AS102=m - -# -# Webcam, TV (analog/digital) USB devices -# -CONFIG_VIDEO_EM28XX=m -CONFIG_VIDEO_EM28XX_V4L2=m -CONFIG_VIDEO_EM28XX_ALSA=m -CONFIG_VIDEO_EM28XX_DVB=m -CONFIG_VIDEO_EM28XX_RC=m - -# -# Software defined radio USB devices -# -CONFIG_USB_AIRSPY=m -CONFIG_USB_HACKRF=m -CONFIG_USB_MSI2500=m -CONFIG_MEDIA_PCI_SUPPORT=y - -# -# Media capture support -# -CONFIG_VIDEO_MEYE=m -CONFIG_VIDEO_SOLO6X10=m -# CONFIG_VIDEO_TW5864 is not set -CONFIG_VIDEO_TW68=m -# CONFIG_VIDEO_TW686X is not set -CONFIG_VIDEO_ZORAN=m -CONFIG_VIDEO_ZORAN_DC30=m -CONFIG_VIDEO_ZORAN_ZR36060=m -CONFIG_VIDEO_ZORAN_BUZ=m -CONFIG_VIDEO_ZORAN_DC10=m -CONFIG_VIDEO_ZORAN_LML33=m -CONFIG_VIDEO_ZORAN_LML33R10=m -CONFIG_VIDEO_ZORAN_AVS6EYES=m - -# -# Media capture/analog TV support -# -CONFIG_VIDEO_IVTV=m -CONFIG_VIDEO_IVTV_ALSA=m -CONFIG_VIDEO_FB_IVTV=m -CONFIG_VIDEO_HEXIUM_GEMINI=m -CONFIG_VIDEO_HEXIUM_ORION=m -CONFIG_VIDEO_MXB=m -CONFIG_VIDEO_DT3155=m - -# -# Media capture/analog/hybrid TV support -# -CONFIG_VIDEO_CX18=m -CONFIG_VIDEO_CX18_ALSA=m -CONFIG_VIDEO_CX23885=m -CONFIG_MEDIA_ALTERA_CI=m -# CONFIG_VIDEO_CX25821 is not set -CONFIG_VIDEO_CX88=m -CONFIG_VIDEO_CX88_ALSA=m -CONFIG_VIDEO_CX88_BLACKBIRD=m -CONFIG_VIDEO_CX88_DVB=m -CONFIG_VIDEO_CX88_ENABLE_VP3054=y -CONFIG_VIDEO_CX88_VP3054=m -CONFIG_VIDEO_CX88_MPEG=m -CONFIG_VIDEO_BT848=m -CONFIG_DVB_BT8XX=m -CONFIG_VIDEO_SAA7134=m -CONFIG_VIDEO_SAA7134_ALSA=m -CONFIG_VIDEO_SAA7134_RC=y -CONFIG_VIDEO_SAA7134_DVB=m -CONFIG_VIDEO_SAA7164=m - -# -# Media digital TV PCI Adapters -# -CONFIG_DVB_AV7110_IR=y -CONFIG_DVB_AV7110=m -CONFIG_DVB_AV7110_OSD=y -CONFIG_DVB_BUDGET_CORE=m -CONFIG_DVB_BUDGET=m -CONFIG_DVB_BUDGET_CI=m -CONFIG_DVB_BUDGET_AV=m -CONFIG_DVB_BUDGET_PATCH=m -CONFIG_DVB_B2C2_FLEXCOP_PCI=m -# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set -CONFIG_DVB_PLUTO2=m -CONFIG_DVB_DM1105=m -CONFIG_DVB_PT1=m -CONFIG_DVB_PT3=m -CONFIG_MANTIS_CORE=m -CONFIG_DVB_MANTIS=m -CONFIG_DVB_HOPPER=m -CONFIG_DVB_NGENE=m -CONFIG_DVB_DDBRIDGE=m -CONFIG_DVB_SMIPCIE=m -CONFIG_DVB_NETUP_UNIDVB=m -CONFIG_V4L_PLATFORM_DRIVERS=y -CONFIG_VIDEO_CAFE_CCIC=m -CONFIG_VIDEO_VIA_CAMERA=m -# CONFIG_SOC_CAMERA is not set -CONFIG_V4L_MEM2MEM_DRIVERS=y -# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set -# CONFIG_VIDEO_SH_VEU is not set -CONFIG_V4L_TEST_DRIVERS=y -CONFIG_VIDEO_VIVID=m -CONFIG_VIDEO_VIVID_MAX_DEVS=64 -# CONFIG_VIDEO_VIM2M is not set -# CONFIG_DVB_PLATFORM_DRIVERS is not set - -# -# Supported MMC/SDIO adapters -# -CONFIG_SMS_SDIO_DRV=m -CONFIG_RADIO_ADAPTERS=y -CONFIG_RADIO_TEA575X=m -CONFIG_RADIO_SI470X=y -CONFIG_USB_SI470X=m -# CONFIG_I2C_SI470X is not set -# CONFIG_RADIO_SI4713 is not set -CONFIG_USB_MR800=m -CONFIG_USB_DSBR=m -CONFIG_RADIO_MAXIRADIO=m -CONFIG_RADIO_SHARK=m -CONFIG_RADIO_SHARK2=m -CONFIG_USB_KEENE=m -CONFIG_USB_RAREMONO=m -CONFIG_USB_MA901=m -# CONFIG_RADIO_TEA5764 is not set -# CONFIG_RADIO_SAA7706H is not set -# CONFIG_RADIO_TEF6862 is not set -# CONFIG_RADIO_WL1273 is not set - -# -# Texas Instruments WL128x FM driver (ST based) -# - -# -# Supported FireWire (IEEE 1394) Adapters -# -CONFIG_DVB_FIREDTV=m -CONFIG_DVB_FIREDTV_INPUT=y -CONFIG_MEDIA_COMMON_OPTIONS=y - -# -# common driver options -# -CONFIG_VIDEO_CX2341X=m -CONFIG_VIDEO_TVEEPROM=m -CONFIG_CYPRESS_FIRMWARE=m -CONFIG_DVB_B2C2_FLEXCOP=m -CONFIG_VIDEO_SAA7146=m -CONFIG_VIDEO_SAA7146_VV=m -CONFIG_SMS_SIANO_MDTV=m -CONFIG_SMS_SIANO_RC=y -# CONFIG_SMS_SIANO_DEBUGFS is not set -CONFIG_VIDEO_V4L2_TPG=m - -# -# Media ancillary drivers (tuners, sensors, i2c, spi, frontends) -# -CONFIG_MEDIA_SUBDRV_AUTOSELECT=y -CONFIG_MEDIA_ATTACH=y -CONFIG_VIDEO_IR_I2C=m - -# -# Audio decoders, processors and mixers -# -CONFIG_VIDEO_TVAUDIO=m -CONFIG_VIDEO_TDA7432=m -CONFIG_VIDEO_TDA9840=m -CONFIG_VIDEO_TEA6415C=m -CONFIG_VIDEO_TEA6420=m -CONFIG_VIDEO_MSP3400=m -CONFIG_VIDEO_CS3308=m -CONFIG_VIDEO_CS5345=m -CONFIG_VIDEO_CS53L32A=m -CONFIG_VIDEO_WM8775=m -CONFIG_VIDEO_WM8739=m -CONFIG_VIDEO_VP27SMPX=m - -# -# RDS decoders -# -CONFIG_VIDEO_SAA6588=m - -# -# Video decoders -# -CONFIG_VIDEO_BT819=m -CONFIG_VIDEO_BT856=m -CONFIG_VIDEO_BT866=m -CONFIG_VIDEO_KS0127=m -CONFIG_VIDEO_SAA7110=m -CONFIG_VIDEO_SAA711X=m -CONFIG_VIDEO_TVP5150=m -CONFIG_VIDEO_VPX3220=m - -# -# Video and audio decoders -# -CONFIG_VIDEO_SAA717X=m -CONFIG_VIDEO_CX25840=m - -# -# Video encoders -# -CONFIG_VIDEO_SAA7127=m -CONFIG_VIDEO_SAA7185=m -CONFIG_VIDEO_ADV7170=m -CONFIG_VIDEO_ADV7175=m - -# -# Camera sensor devices -# -CONFIG_VIDEO_OV7670=m -CONFIG_VIDEO_MT9V011=m - -# -# Flash devices -# - -# -# Video improvement chips -# -CONFIG_VIDEO_UPD64031A=m -CONFIG_VIDEO_UPD64083=m - -# -# Audio/Video compression chips -# -CONFIG_VIDEO_SAA6752HS=m - -# -# Miscellaneous helper chips -# -CONFIG_VIDEO_M52790=m - -# -# Sensors used on soc_camera driver -# -CONFIG_MEDIA_TUNER=m -CONFIG_MEDIA_TUNER_SIMPLE=m -CONFIG_MEDIA_TUNER_TDA8290=m -CONFIG_MEDIA_TUNER_TDA827X=m -CONFIG_MEDIA_TUNER_TDA18271=m -CONFIG_MEDIA_TUNER_TDA9887=m -CONFIG_MEDIA_TUNER_TEA5761=m -CONFIG_MEDIA_TUNER_TEA5767=m -CONFIG_MEDIA_TUNER_MSI001=m -CONFIG_MEDIA_TUNER_MT20XX=m -CONFIG_MEDIA_TUNER_MT2060=m -CONFIG_MEDIA_TUNER_MT2063=m -CONFIG_MEDIA_TUNER_MT2266=m -CONFIG_MEDIA_TUNER_MT2131=m -CONFIG_MEDIA_TUNER_QT1010=m -CONFIG_MEDIA_TUNER_XC2028=m -CONFIG_MEDIA_TUNER_XC5000=m -CONFIG_MEDIA_TUNER_XC4000=m -CONFIG_MEDIA_TUNER_MXL5005S=m -CONFIG_MEDIA_TUNER_MXL5007T=m -CONFIG_MEDIA_TUNER_MC44S803=m -CONFIG_MEDIA_TUNER_MAX2165=m -CONFIG_MEDIA_TUNER_TDA18218=m -CONFIG_MEDIA_TUNER_FC0011=m -CONFIG_MEDIA_TUNER_FC0012=m -CONFIG_MEDIA_TUNER_FC0013=m -CONFIG_MEDIA_TUNER_TDA18212=m -CONFIG_MEDIA_TUNER_E4000=m -CONFIG_MEDIA_TUNER_FC2580=m -CONFIG_MEDIA_TUNER_M88RS6000T=m -CONFIG_MEDIA_TUNER_TUA9001=m -CONFIG_MEDIA_TUNER_SI2157=m -CONFIG_MEDIA_TUNER_IT913X=m -CONFIG_MEDIA_TUNER_R820T=m -CONFIG_MEDIA_TUNER_MXL301RF=m -CONFIG_MEDIA_TUNER_QM1D1C0042=m - -# -# Multistandard (satellite) frontends -# -CONFIG_DVB_STB0899=m -CONFIG_DVB_STB6100=m -CONFIG_DVB_STV090x=m -CONFIG_DVB_STV6110x=m -CONFIG_DVB_M88DS3103=m - -# -# Multistandard (cable + terrestrial) frontends -# -CONFIG_DVB_DRXK=m -CONFIG_DVB_TDA18271C2DD=m -CONFIG_DVB_SI2165=m -CONFIG_DVB_MN88472=m -CONFIG_DVB_MN88473=m - -# -# DVB-S (satellite) frontends -# -CONFIG_DVB_CX24110=m -CONFIG_DVB_CX24123=m -CONFIG_DVB_MT312=m -CONFIG_DVB_ZL10036=m -CONFIG_DVB_ZL10039=m -CONFIG_DVB_S5H1420=m -CONFIG_DVB_STV0288=m -CONFIG_DVB_STB6000=m -CONFIG_DVB_STV0299=m -CONFIG_DVB_STV6110=m -CONFIG_DVB_STV0900=m -CONFIG_DVB_TDA8083=m -CONFIG_DVB_TDA10086=m -CONFIG_DVB_TDA8261=m -CONFIG_DVB_VES1X93=m -CONFIG_DVB_TUNER_ITD1000=m -CONFIG_DVB_TUNER_CX24113=m -CONFIG_DVB_TDA826X=m -CONFIG_DVB_TUA6100=m -CONFIG_DVB_CX24116=m -CONFIG_DVB_CX24117=m -CONFIG_DVB_CX24120=m -CONFIG_DVB_SI21XX=m -CONFIG_DVB_TS2020=m -CONFIG_DVB_DS3000=m -CONFIG_DVB_MB86A16=m -CONFIG_DVB_TDA10071=m - -# -# DVB-T (terrestrial) frontends -# -CONFIG_DVB_SP8870=m -CONFIG_DVB_SP887X=m -CONFIG_DVB_CX22700=m -CONFIG_DVB_CX22702=m -CONFIG_DVB_DRXD=m -CONFIG_DVB_L64781=m -CONFIG_DVB_TDA1004X=m -CONFIG_DVB_NXT6000=m -CONFIG_DVB_MT352=m -CONFIG_DVB_ZL10353=m -CONFIG_DVB_DIB3000MB=m -CONFIG_DVB_DIB3000MC=m -CONFIG_DVB_DIB7000M=m -CONFIG_DVB_DIB7000P=m -CONFIG_DVB_TDA10048=m -CONFIG_DVB_AF9013=m -CONFIG_DVB_EC100=m -CONFIG_DVB_STV0367=m -CONFIG_DVB_CXD2820R=m -CONFIG_DVB_CXD2841ER=m -CONFIG_DVB_RTL2830=m -CONFIG_DVB_RTL2832=m -CONFIG_DVB_RTL2832_SDR=m -CONFIG_DVB_SI2168=m -CONFIG_DVB_AS102_FE=m -CONFIG_DVB_GP8PSK_FE=m - -# -# DVB-C (cable) frontends -# -CONFIG_DVB_VES1820=m -CONFIG_DVB_TDA10021=m -CONFIG_DVB_TDA10023=m -CONFIG_DVB_STV0297=m - -# -# ATSC (North American/Korean Terrestrial/Cable DTV) frontends -# -CONFIG_DVB_NXT200X=m -CONFIG_DVB_OR51211=m -CONFIG_DVB_OR51132=m -CONFIG_DVB_BCM3510=m -CONFIG_DVB_LGDT330X=m -CONFIG_DVB_LGDT3305=m -CONFIG_DVB_LGDT3306A=m -CONFIG_DVB_LG2160=m -CONFIG_DVB_S5H1409=m -CONFIG_DVB_AU8522=m -CONFIG_DVB_AU8522_DTV=m -CONFIG_DVB_AU8522_V4L=m -CONFIG_DVB_S5H1411=m - -# -# ISDB-T (terrestrial) frontends -# -CONFIG_DVB_S921=m -CONFIG_DVB_DIB8000=m -CONFIG_DVB_MB86A20S=m - -# -# ISDB-S (satellite) & ISDB-T (terrestrial) frontends -# -CONFIG_DVB_TC90522=m - -# -# Digital terrestrial only tuners/PLL -# -CONFIG_DVB_PLL=m -CONFIG_DVB_TUNER_DIB0070=m -CONFIG_DVB_TUNER_DIB0090=m - -# -# SEC control devices for DVB-S -# -CONFIG_DVB_DRX39XYJ=m -CONFIG_DVB_LNBH25=m -CONFIG_DVB_LNBP21=m -CONFIG_DVB_LNBP22=m -CONFIG_DVB_ISL6405=m -CONFIG_DVB_ISL6421=m -CONFIG_DVB_ISL6423=m -CONFIG_DVB_A8293=m -CONFIG_DVB_SP2=m -CONFIG_DVB_LGS8GXX=m -CONFIG_DVB_ATBM8830=m -CONFIG_DVB_TDA665x=m -CONFIG_DVB_IX2505V=m -CONFIG_DVB_M88RS2000=m -CONFIG_DVB_AF9033=m -CONFIG_DVB_HORUS3A=m -CONFIG_DVB_ASCOT2E=m -CONFIG_DVB_HELENE=m - -# -# Tools to develop new frontends -# -# CONFIG_DVB_DUMMY_FE is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -CONFIG_DRM=m -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -CONFIG_DRM_KMS_HELPER=m -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_LOAD_EDID_FIRMWARE=y -CONFIG_DRM_TTM=m - -# -# I2C encoder or helper chips -# -CONFIG_DRM_I2C_CH7006=m -CONFIG_DRM_I2C_SIL164=m -# CONFIG_DRM_I2C_NXP_TDA998X is not set -CONFIG_DRM_RADEON=m -# CONFIG_DRM_RADEON_USERPTR is not set -CONFIG_DRM_AMDGPU=m -# CONFIG_DRM_AMDGPU_SI is not set -# CONFIG_DRM_AMDGPU_CIK is not set -CONFIG_DRM_AMDGPU_USERPTR=y -# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_AMD_ACP is not set -CONFIG_DRM_NOUVEAU=m -CONFIG_NOUVEAU_DEBUG=5 -CONFIG_NOUVEAU_DEBUG_DEFAULT=3 -CONFIG_DRM_NOUVEAU_BACKLIGHT=y -CONFIG_DRM_I915=m -# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set -CONFIG_DRM_I915_USERPTR=y -# CONFIG_DRM_I915_GVT is not set - -# -# drm/i915 Debugging -# -# CONFIG_DRM_I915_WERROR is not set -# CONFIG_DRM_I915_DEBUG is not set -CONFIG_DRM_VGEM=m -CONFIG_DRM_VMWGFX=m -CONFIG_DRM_VMWGFX_FBCON=y -CONFIG_DRM_GMA500=m -CONFIG_DRM_GMA600=y -CONFIG_DRM_GMA3600=y -CONFIG_DRM_UDL=m -CONFIG_DRM_AST=m -CONFIG_DRM_MGAG200=m -CONFIG_DRM_CIRRUS_QEMU=m -CONFIG_DRM_QXL=m -CONFIG_DRM_BOCHS=m -CONFIG_DRM_VIRTIO_GPU=m -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_SIMPLE is not set -# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set -# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set -CONFIG_DRM_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_DUMB_VGA_DAC is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -CONFIG_HSA_AMD=m -# CONFIG_DRM_ARCPGU is not set -CONFIG_DRM_LEGACY=y -CONFIG_DRM_TDFX=m -CONFIG_DRM_R128=m -# CONFIG_DRM_I810 is not set -CONFIG_DRM_MGA=m -CONFIG_DRM_SIS=m -CONFIG_DRM_VIA=m -CONFIG_DRM_SAVAGE=m - -# -# Frame buffer Devices -# -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB_DDC=m -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -CONFIG_FB_HECUBA=m -CONFIG_FB_SVGALIB=m -# CONFIG_FB_MACMODES is not set -CONFIG_FB_BACKLIGHT=y -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -CONFIG_FB_CIRRUS=m -CONFIG_FB_PM2=m -CONFIG_FB_PM2_FIFO_DISCONNECT=y -CONFIG_FB_CYBER2000=m -CONFIG_FB_CYBER2000_DDC=y -CONFIG_FB_ARC=m -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=m -CONFIG_FB_UVESA=m -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -CONFIG_FB_N411=m -CONFIG_FB_HGA=m -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -CONFIG_FB_LE80578=m -CONFIG_FB_CARILLO_RANCH=m -# CONFIG_FB_INTEL is not set -CONFIG_FB_MATROX=m -CONFIG_FB_MATROX_MILLENIUM=y -CONFIG_FB_MATROX_MYSTIQUE=y -CONFIG_FB_MATROX_G=y -CONFIG_FB_MATROX_I2C=m -CONFIG_FB_MATROX_MAVEN=m -CONFIG_FB_RADEON=m -CONFIG_FB_RADEON_I2C=y -CONFIG_FB_RADEON_BACKLIGHT=y -# CONFIG_FB_RADEON_DEBUG is not set -CONFIG_FB_ATY128=m -CONFIG_FB_ATY128_BACKLIGHT=y -CONFIG_FB_ATY=m -CONFIG_FB_ATY_CT=y -# CONFIG_FB_ATY_GENERIC_LCD is not set -CONFIG_FB_ATY_GX=y -CONFIG_FB_ATY_BACKLIGHT=y -CONFIG_FB_S3=m -CONFIG_FB_S3_DDC=y -CONFIG_FB_SAVAGE=m -# CONFIG_FB_SAVAGE_I2C is not set -# CONFIG_FB_SAVAGE_ACCEL is not set -CONFIG_FB_SIS=m -CONFIG_FB_SIS_300=y -CONFIG_FB_SIS_315=y -CONFIG_FB_VIA=m -# CONFIG_FB_VIA_DIRECT_PROCFS is not set -CONFIG_FB_VIA_X_COMPATIBILITY=y -CONFIG_FB_NEOMAGIC=m -CONFIG_FB_KYRO=m -CONFIG_FB_3DFX=m -# CONFIG_FB_3DFX_ACCEL is not set -CONFIG_FB_3DFX_I2C=y -CONFIG_FB_VOODOO1=m -CONFIG_FB_VT8623=m -CONFIG_FB_TRIDENT=m -CONFIG_FB_ARK=m -CONFIG_FB_PM3=m -# CONFIG_FB_CARMINE is not set -CONFIG_FB_SMSCUFX=m -CONFIG_FB_UDL=m -# CONFIG_FB_IBM_GXT4500 is not set -CONFIG_FB_VIRTUAL=m -CONFIG_XEN_FBDEV_FRONTEND=y -# CONFIG_FB_METRONOME is not set -CONFIG_FB_MB862XX=m -CONFIG_FB_MB862XX_PCI_GDC=y -CONFIG_FB_MB862XX_I2C=y -# CONFIG_FB_BROADSHEET is not set -# CONFIG_FB_AUO_K190X is not set -CONFIG_FB_HYPERV=m -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -CONFIG_BACKLIGHT_LCD_SUPPORT=y -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set -# CONFIG_BACKLIGHT_PWM is not set -CONFIG_BACKLIGHT_APPLE=m -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -CONFIG_VGASTATE=m -CONFIG_HDMI=y - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_LOGO is not set -CONFIG_SOUND=m -CONFIG_SOUND_OSS_CORE=y -# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set -CONFIG_SND=m -CONFIG_SND_TIMER=m -CONFIG_SND_PCM=m -CONFIG_SND_PCM_ELD=y -CONFIG_SND_HWDEP=m -CONFIG_SND_RAWMIDI=m -CONFIG_SND_COMPRESS_OFFLOAD=m -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -CONFIG_SND_SEQUENCER=m -CONFIG_SND_SEQ_DUMMY=m -CONFIG_SND_OSSEMUL=y -CONFIG_SND_MIXER_OSS=m -CONFIG_SND_PCM_OSS=m -CONFIG_SND_PCM_OSS_PLUGINS=y -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_SEQUENCER_OSS is not set -CONFIG_SND_HRTIMER=m -CONFIG_SND_SEQ_HRTIMER_DEFAULT=y -CONFIG_SND_DYNAMIC_MINORS=y -CONFIG_SND_MAX_CARDS=32 -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -CONFIG_SND_VMASTER=y -CONFIG_SND_DMA_SGBUF=y -CONFIG_SND_RAWMIDI_SEQ=m -CONFIG_SND_OPL3_LIB_SEQ=m -# CONFIG_SND_OPL4_LIB_SEQ is not set -# CONFIG_SND_SBAWE_SEQ is not set -CONFIG_SND_EMU10K1_SEQ=m -CONFIG_SND_MPU401_UART=m -CONFIG_SND_OPL3_LIB=m -CONFIG_SND_VX_LIB=m -CONFIG_SND_AC97_CODEC=m -CONFIG_SND_DRIVERS=y -CONFIG_SND_DUMMY=m -CONFIG_SND_ALOOP=m -CONFIG_SND_VIRMIDI=m -CONFIG_SND_MTPAV=m -CONFIG_SND_MTS64=m -CONFIG_SND_SERIAL_U16550=m -CONFIG_SND_MPU401=m -CONFIG_SND_PORTMAN2X4=m -CONFIG_SND_AC97_POWER_SAVE=y -CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 -CONFIG_SND_SB_COMMON=m -CONFIG_SND_PCI=y -CONFIG_SND_AD1889=m -CONFIG_SND_ALS300=m -CONFIG_SND_ALS4000=m -CONFIG_SND_ALI5451=m -CONFIG_SND_ASIHPI=m -CONFIG_SND_ATIIXP=m -CONFIG_SND_ATIIXP_MODEM=m -CONFIG_SND_AU8810=m -CONFIG_SND_AU8820=m -CONFIG_SND_AU8830=m -# CONFIG_SND_AW2 is not set -CONFIG_SND_AZT3328=m -CONFIG_SND_BT87X=m -# CONFIG_SND_BT87X_OVERCLOCK is not set -CONFIG_SND_CA0106=m -CONFIG_SND_CMIPCI=m -CONFIG_SND_OXYGEN_LIB=m -CONFIG_SND_OXYGEN=m -CONFIG_SND_CS4281=m -CONFIG_SND_CS46XX=m -CONFIG_SND_CS46XX_NEW_DSP=y -CONFIG_SND_CTXFI=m -CONFIG_SND_DARLA20=m -CONFIG_SND_GINA20=m -CONFIG_SND_LAYLA20=m -CONFIG_SND_DARLA24=m -CONFIG_SND_GINA24=m -CONFIG_SND_LAYLA24=m -CONFIG_SND_MONA=m -CONFIG_SND_MIA=m -CONFIG_SND_ECHO3G=m -CONFIG_SND_INDIGO=m -CONFIG_SND_INDIGOIO=m -CONFIG_SND_INDIGODJ=m -CONFIG_SND_INDIGOIOX=m -CONFIG_SND_INDIGODJX=m -CONFIG_SND_EMU10K1=m -CONFIG_SND_EMU10K1X=m -CONFIG_SND_ENS1370=m -CONFIG_SND_ENS1371=m -CONFIG_SND_ES1938=m -CONFIG_SND_ES1968=m -CONFIG_SND_ES1968_INPUT=y -CONFIG_SND_ES1968_RADIO=y -CONFIG_SND_FM801=m -CONFIG_SND_FM801_TEA575X_BOOL=y -CONFIG_SND_HDSP=m -CONFIG_SND_HDSPM=m -CONFIG_SND_ICE1712=m -CONFIG_SND_ICE1724=m -CONFIG_SND_INTEL8X0=m -CONFIG_SND_INTEL8X0M=m -CONFIG_SND_KORG1212=m -CONFIG_SND_LOLA=m -CONFIG_SND_LX6464ES=m -CONFIG_SND_MAESTRO3=m -CONFIG_SND_MAESTRO3_INPUT=y -CONFIG_SND_MIXART=m -CONFIG_SND_NM256=m -CONFIG_SND_PCXHR=m -CONFIG_SND_RIPTIDE=m -CONFIG_SND_RME32=m -CONFIG_SND_RME96=m -CONFIG_SND_RME9652=m -CONFIG_SND_SONICVIBES=m -CONFIG_SND_TRIDENT=m -CONFIG_SND_VIA82XX=m -CONFIG_SND_VIA82XX_MODEM=m -CONFIG_SND_VIRTUOSO=m -CONFIG_SND_VX222=m -CONFIG_SND_YMFPCI=m - -# -# HD-Audio -# -CONFIG_SND_HDA=m -CONFIG_SND_HDA_INTEL=m -CONFIG_SND_HDA_HWDEP=y -CONFIG_SND_HDA_RECONFIG=y -CONFIG_SND_HDA_INPUT_BEEP=y -CONFIG_SND_HDA_INPUT_BEEP_MODE=1 -CONFIG_SND_HDA_PATCH_LOADER=y -CONFIG_SND_HDA_CODEC_REALTEK=m -CONFIG_SND_HDA_CODEC_ANALOG=m -CONFIG_SND_HDA_CODEC_SIGMATEL=m -CONFIG_SND_HDA_CODEC_VIA=m -CONFIG_SND_HDA_CODEC_HDMI=m -CONFIG_SND_HDA_CODEC_CIRRUS=m -CONFIG_SND_HDA_CODEC_CONEXANT=m -CONFIG_SND_HDA_CODEC_CA0110=m -CONFIG_SND_HDA_CODEC_CA0132=m -CONFIG_SND_HDA_CODEC_CA0132_DSP=y -CONFIG_SND_HDA_CODEC_CMEDIA=m -CONFIG_SND_HDA_CODEC_SI3054=m -CONFIG_SND_HDA_GENERIC=m -CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 -CONFIG_SND_HDA_CORE=m -CONFIG_SND_HDA_DSP_LOADER=y -CONFIG_SND_HDA_I915=y -CONFIG_SND_HDA_EXT_CORE=m -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -CONFIG_SND_USB_AUDIO=m -CONFIG_SND_USB_UA101=m -CONFIG_SND_USB_USX2Y=m -CONFIG_SND_USB_CAIAQ=m -CONFIG_SND_USB_CAIAQ_INPUT=y -CONFIG_SND_USB_US122L=m -CONFIG_SND_USB_6FIRE=m -CONFIG_SND_USB_HIFACE=m -CONFIG_SND_BCD2000=m -CONFIG_SND_USB_LINE6=m -CONFIG_SND_USB_POD=m -CONFIG_SND_USB_PODHD=m -CONFIG_SND_USB_TONEPORT=m -CONFIG_SND_USB_VARIAX=m -CONFIG_SND_FIREWIRE=y -CONFIG_SND_FIREWIRE_LIB=m -CONFIG_SND_DICE=m -CONFIG_SND_OXFW=m -CONFIG_SND_ISIGHT=m -CONFIG_SND_FIREWORKS=m -CONFIG_SND_BEBOB=m -CONFIG_SND_FIREWIRE_DIGI00X=m -CONFIG_SND_FIREWIRE_TASCAM=m -CONFIG_SND_PCMCIA=y -CONFIG_SND_VXPOCKET=m -CONFIG_SND_PDAUDIOCF=m -CONFIG_SND_SOC=m -CONFIG_SND_SOC_COMPRESS=y -CONFIG_SND_SOC_TOPOLOGY=y -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -# CONFIG_SND_SOC_FSL_ASRC is not set -# CONFIG_SND_SOC_FSL_SAI is not set -# CONFIG_SND_SOC_FSL_SSI is not set -# CONFIG_SND_SOC_FSL_SPDIF is not set -# CONFIG_SND_SOC_FSL_ESAI is not set -# CONFIG_SND_SOC_IMX_AUDMUX is not set -# CONFIG_SND_SOC_IMG is not set -CONFIG_SND_SST_MFLD_PLATFORM=m -CONFIG_SND_SST_IPC=m -CONFIG_SND_SST_IPC_ACPI=m -CONFIG_SND_SOC_INTEL_SST=m -CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m -CONFIG_SND_SOC_INTEL_SST_ACPI=m -CONFIG_SND_SOC_INTEL_SST_MATCH=m -CONFIG_SND_SOC_INTEL_HASWELL=m -CONFIG_SND_SOC_INTEL_HASWELL_MACH=m -# CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH is not set -# CONFIG_SND_SOC_INTEL_BXT_RT298_MACH is not set -CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m -CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m -CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m -CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m -CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m -CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m -CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m -CONFIG_SND_SOC_INTEL_SKYLAKE=m -CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m -CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m -CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m -# CONFIG_SND_SOC_XTFPGA_I2S is not set -CONFIG_SND_SOC_I2C_AND_SPI=m - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4554 is not set -# CONFIG_SND_SOC_AK4613 is not set -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -# CONFIG_SND_SOC_CS42XX8_I2C is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -CONFIG_SND_SOC_DMIC=m -# CONFIG_SND_SOC_ES8328 is not set -# CONFIG_SND_SOC_GTM601 is not set -CONFIG_SND_SOC_HDAC_HDMI=m -# CONFIG_SND_SOC_INNO_RK3036 is not set -CONFIG_SND_SOC_MAX98090=m -CONFIG_SND_SOC_MAX98357A=m -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM3168A_I2C is not set -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -CONFIG_SND_SOC_RL6231=m -CONFIG_SND_SOC_RL6347A=m -CONFIG_SND_SOC_RT286=m -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -CONFIG_SND_SOC_RT5640=m -CONFIG_SND_SOC_RT5645=m -CONFIG_SND_SOC_RT5651=m -CONFIG_SND_SOC_RT5663=m -CONFIG_SND_SOC_RT5670=m -CONFIG_SND_SOC_RT5677=m -CONFIG_SND_SOC_RT5677_SPI=m -# CONFIG_SND_SOC_SGTL5000 is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -# CONFIG_SND_SOC_SPDIF is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -CONFIG_SND_SOC_SSM4567=m -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS5086 is not set -# CONFIG_SND_SOC_TAS571X is not set -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -CONFIG_SND_SOC_TS3A227E=m -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8960 is not set -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_NAU8810 is not set -CONFIG_SND_SOC_NAU8825=m -# CONFIG_SND_SOC_TPA6130A2 is not set -# CONFIG_SND_SIMPLE_CARD is not set -# CONFIG_SND_SIMPLE_SCU_CARD is not set -# CONFIG_SOUND_PRIME is not set -CONFIG_AC97_BUS=m -CONFIG_SUPPORT_HDMI=y - -# -# HID support -# -CONFIG_HID=m -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -CONFIG_UHID=m -CONFIG_HID_GENERIC=m - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=m -CONFIG_HID_ACRUX=m -CONFIG_HID_ACRUX_FF=y -CONFIG_HID_APPLE=m -CONFIG_HID_APPLEIR=m -CONFIG_HID_ASUS=m -CONFIG_HID_AUREAL=m -CONFIG_HID_BELKIN=m -CONFIG_HID_BETOP_FF=m -CONFIG_HID_CHERRY=m -CONFIG_HID_CHICONY=m -CONFIG_HID_CORSAIR=m -CONFIG_HID_PRODIKEYS=m -CONFIG_HID_CMEDIA=m -CONFIG_HID_CP2112=m -CONFIG_HID_CYPRESS=m -CONFIG_HID_DRAGONRISE=m -CONFIG_DRAGONRISE_FF=y -CONFIG_HID_EMS_FF=m -CONFIG_HID_ELECOM=m -CONFIG_HID_ELO=m -CONFIG_HID_EZKEY=m -CONFIG_HID_GEMBIRD=m -# CONFIG_HID_GFRM is not set -CONFIG_HID_HOLTEK=m -CONFIG_HOLTEK_FF=y -# CONFIG_HID_GT683R is not set -CONFIG_HID_KEYTOUCH=m -CONFIG_HID_KYE=m -CONFIG_HID_UCLOGIC=m -CONFIG_HID_WALTOP=m -CONFIG_HID_GYRATION=m -CONFIG_HID_ICADE=m -CONFIG_HID_TWINHAN=m -CONFIG_HID_KENSINGTON=m -CONFIG_HID_LCPOWER=m -CONFIG_HID_LED=m -CONFIG_HID_LENOVO=m -CONFIG_HID_LOGITECH=m -CONFIG_HID_LOGITECH_DJ=m -CONFIG_HID_LOGITECH_HIDPP=m -CONFIG_LOGITECH_FF=y -CONFIG_LOGIRUMBLEPAD2_FF=y -CONFIG_LOGIG940_FF=y -CONFIG_LOGIWHEELS_FF=y -CONFIG_HID_MAGICMOUSE=m -CONFIG_HID_MICROSOFT=m -CONFIG_HID_MONTEREY=m -CONFIG_HID_MULTITOUCH=m -CONFIG_HID_NTRIG=m -CONFIG_HID_ORTEK=m -CONFIG_HID_PANTHERLORD=m -CONFIG_PANTHERLORD_FF=y -CONFIG_HID_PENMOUNT=m -CONFIG_HID_PETALYNX=m -CONFIG_HID_PICOLCD=m -CONFIG_HID_PICOLCD_FB=y -CONFIG_HID_PICOLCD_BACKLIGHT=y -CONFIG_HID_PICOLCD_LEDS=y -CONFIG_HID_PICOLCD_CIR=y -CONFIG_HID_PLANTRONICS=m -CONFIG_HID_PRIMAX=m -CONFIG_HID_ROCCAT=m -CONFIG_HID_SAITEK=m -CONFIG_HID_SAMSUNG=m -CONFIG_HID_SONY=m -CONFIG_SONY_FF=y -CONFIG_HID_SPEEDLINK=m -CONFIG_HID_STEELSERIES=m -CONFIG_HID_SUNPLUS=m -CONFIG_HID_RMI=m -CONFIG_HID_GREENASIA=m -CONFIG_GREENASIA_FF=y -CONFIG_HID_HYPERV_MOUSE=m -CONFIG_HID_SMARTJOYPLUS=m -CONFIG_SMARTJOYPLUS_FF=y -CONFIG_HID_TIVO=m -CONFIG_HID_TOPSEED=m -CONFIG_HID_THINGM=m -CONFIG_HID_THRUSTMASTER=m -CONFIG_THRUSTMASTER_FF=y -CONFIG_HID_WACOM=m -CONFIG_HID_WIIMOTE=m -CONFIG_HID_XINMO=m -CONFIG_HID_ZEROPLUS=m -CONFIG_ZEROPLUS_FF=y -CONFIG_HID_ZYDACRON=m -CONFIG_HID_SENSOR_HUB=m -# CONFIG_HID_SENSOR_CUSTOM_SENSOR is not set -CONFIG_HID_ALPS=m - -# -# USB HID support -# -CONFIG_USB_HID=m -CONFIG_HID_PID=y -CONFIG_USB_HIDDEV=y - -# -# USB HID Boot Protocol drivers -# -# CONFIG_USB_KBD is not set -# CONFIG_USB_MOUSE is not set - -# -# I2C HID support -# -CONFIG_I2C_HID=m - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=m -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=m -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -CONFIG_USB_OTG=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_OTG_FSM is not set -CONFIG_USB_LEDS_TRIGGER_USBPORT=m -CONFIG_USB_MON=m -CONFIG_USB_WUSB=m -CONFIG_USB_WUSB_CBAF=m -# CONFIG_USB_WUSB_CBAF_DEBUG is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=m -CONFIG_USB_XHCI_PCI=m -CONFIG_USB_XHCI_PLATFORM=m -CONFIG_USB_EHCI_HCD=m -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=m -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_ISP1362_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=m -CONFIG_USB_OHCI_HCD_PCI=m -# CONFIG_USB_OHCI_HCD_SSB is not set -# CONFIG_USB_OHCI_HCD_PLATFORM is not set -CONFIG_USB_UHCI_HCD=m -CONFIG_USB_U132_HCD=m -CONFIG_USB_SL811_HCD=m -# CONFIG_USB_SL811_HCD_ISO is not set -CONFIG_USB_SL811_CS=m -# CONFIG_USB_R8A66597_HCD is not set -CONFIG_USB_WHCI_HCD=m -CONFIG_USB_HWA_HCD=m -# CONFIG_USB_HCD_BCMA is not set -# CONFIG_USB_HCD_SSB is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -CONFIG_USB_ACM=m -CONFIG_USB_PRINTER=m -CONFIG_USB_WDM=m -CONFIG_USB_TMC=m - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=m -# CONFIG_USB_STORAGE_DEBUG is not set -CONFIG_USB_STORAGE_REALTEK=m -CONFIG_REALTEK_AUTOPM=y -CONFIG_USB_STORAGE_DATAFAB=m -CONFIG_USB_STORAGE_FREECOM=m -CONFIG_USB_STORAGE_ISD200=m -CONFIG_USB_STORAGE_USBAT=m -CONFIG_USB_STORAGE_SDDR09=m -CONFIG_USB_STORAGE_SDDR55=m -CONFIG_USB_STORAGE_JUMPSHOT=m -CONFIG_USB_STORAGE_ALAUDA=m -CONFIG_USB_STORAGE_ONETOUCH=m -CONFIG_USB_STORAGE_KARMA=m -CONFIG_USB_STORAGE_CYPRESS_ATACB=m -CONFIG_USB_STORAGE_ENE_UB6250=m -CONFIG_USB_UAS=m - -# -# USB Imaging devices -# -CONFIG_USB_MDC800=m -CONFIG_USB_MICROTEK=m -CONFIG_USBIP_CORE=m -CONFIG_USBIP_VHCI_HCD=m -CONFIG_USBIP_VHCI_HC_PORTS=8 -CONFIG_USBIP_VHCI_NR_HCS=1 -CONFIG_USBIP_HOST=m -# CONFIG_USBIP_VUDC is not set -# CONFIG_USBIP_DEBUG is not set -# CONFIG_USB_MUSB_HDRC is not set -CONFIG_USB_DWC3=m -# CONFIG_USB_DWC3_HOST is not set -# CONFIG_USB_DWC3_GADGET is not set -CONFIG_USB_DWC3_DUAL_ROLE=y - -# -# Platform Glue Driver Support -# -CONFIG_USB_DWC3_PCI=m -CONFIG_USB_DWC3_OF_SIMPLE=m -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_USS720=m -CONFIG_USB_SERIAL=m -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=m -CONFIG_USB_SERIAL_AIRCABLE=m -CONFIG_USB_SERIAL_ARK3116=m -CONFIG_USB_SERIAL_BELKIN=m -CONFIG_USB_SERIAL_CH341=m -CONFIG_USB_SERIAL_WHITEHEAT=m -CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m -CONFIG_USB_SERIAL_CP210X=m -CONFIG_USB_SERIAL_CYPRESS_M8=m -CONFIG_USB_SERIAL_EMPEG=m -CONFIG_USB_SERIAL_FTDI_SIO=m -CONFIG_USB_SERIAL_VISOR=m -CONFIG_USB_SERIAL_IPAQ=m -CONFIG_USB_SERIAL_IR=m -CONFIG_USB_SERIAL_EDGEPORT=m -CONFIG_USB_SERIAL_EDGEPORT_TI=m -CONFIG_USB_SERIAL_F81232=m -CONFIG_USB_SERIAL_GARMIN=m -CONFIG_USB_SERIAL_IPW=m -CONFIG_USB_SERIAL_IUU=m -CONFIG_USB_SERIAL_KEYSPAN_PDA=m -CONFIG_USB_SERIAL_KEYSPAN=m -CONFIG_USB_SERIAL_KLSI=m -CONFIG_USB_SERIAL_KOBIL_SCT=m -CONFIG_USB_SERIAL_MCT_U232=m -CONFIG_USB_SERIAL_METRO=m -CONFIG_USB_SERIAL_MOS7720=m -CONFIG_USB_SERIAL_MOS7715_PARPORT=y -CONFIG_USB_SERIAL_MOS7840=m -CONFIG_USB_SERIAL_MXUPORT=m -CONFIG_USB_SERIAL_NAVMAN=m -CONFIG_USB_SERIAL_PL2303=m -CONFIG_USB_SERIAL_OTI6858=m -CONFIG_USB_SERIAL_QCAUX=m -CONFIG_USB_SERIAL_QUALCOMM=m -CONFIG_USB_SERIAL_SPCP8X5=m -CONFIG_USB_SERIAL_SAFE=m -# CONFIG_USB_SERIAL_SAFE_PADDED is not set -CONFIG_USB_SERIAL_SIERRAWIRELESS=m -CONFIG_USB_SERIAL_SYMBOL=m -CONFIG_USB_SERIAL_TI=m -CONFIG_USB_SERIAL_CYBERJACK=m -CONFIG_USB_SERIAL_XIRCOM=m -CONFIG_USB_SERIAL_WWAN=m -CONFIG_USB_SERIAL_OPTION=m -CONFIG_USB_SERIAL_OMNINET=m -CONFIG_USB_SERIAL_OPTICON=m -CONFIG_USB_SERIAL_XSENS_MT=m -CONFIG_USB_SERIAL_WISHBONE=m -CONFIG_USB_SERIAL_SSU100=m -CONFIG_USB_SERIAL_QT2=m -CONFIG_USB_SERIAL_DEBUG=m - -# -# USB Miscellaneous drivers -# -CONFIG_USB_EMI62=m -CONFIG_USB_EMI26=m -CONFIG_USB_ADUTUX=m -CONFIG_USB_SEVSEG=m -CONFIG_USB_RIO500=m -CONFIG_USB_LEGOTOWER=m -CONFIG_USB_LCD=m -CONFIG_USB_CYPRESS_CY7C63=m -CONFIG_USB_CYTHERM=m -CONFIG_USB_IDMOUSE=m -CONFIG_USB_FTDI_ELAN=m -CONFIG_USB_APPLEDISPLAY=m -CONFIG_USB_SISUSBVGA=m -CONFIG_USB_SISUSBVGA_CON=y -CONFIG_USB_LD=m -CONFIG_USB_TRANCEVIBRATOR=m -CONFIG_USB_IOWARRIOR=m -CONFIG_USB_TEST=m -CONFIG_USB_EHSET_TEST_FIXTURE=m -CONFIG_USB_ISIGHTFW=m -CONFIG_USB_YUREX=m -CONFIG_USB_EZUSB_FX2=m -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -CONFIG_USB_CHAOSKEY=m -# CONFIG_UCSI is not set -CONFIG_USB_ATM=m -CONFIG_USB_SPEEDTOUCH=m -CONFIG_USB_CXACRU=m -CONFIG_USB_UEAGLEATM=m -CONFIG_USB_XUSBATM=m - -# -# USB Physical Layer drivers -# -# CONFIG_USB_PHY is not set -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -CONFIG_USB_PORTMUX=y -# CONFIG_INTEL_MUX_GPIO is not set -CONFIG_INTEL_MUX_DRCFG=m -CONFIG_USB_GADGET=m -# CONFIG_USB_GADGET_DEBUG is not set -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 -# CONFIG_U_SERIAL_CONSOLE is not set - -# -# USB Peripheral Controller -# -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_BDC_UDC is not set -# CONFIG_USB_AMD5536UDC is not set -# CONFIG_USB_NET2272 is not set -CONFIG_USB_NET2280=m -# CONFIG_USB_GOKU is not set -CONFIG_USB_EG20T=m -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_DUMMY_HCD is not set -CONFIG_USB_LIBCOMPOSITE=m -CONFIG_USB_F_ACM=m -CONFIG_USB_F_SS_LB=m -CONFIG_USB_U_SERIAL=m -CONFIG_USB_U_ETHER=m -CONFIG_USB_F_SERIAL=m -CONFIG_USB_F_OBEX=m -CONFIG_USB_F_NCM=m -CONFIG_USB_F_ECM=m -CONFIG_USB_F_PHONET=m -CONFIG_USB_F_EEM=m -CONFIG_USB_F_SUBSET=m -CONFIG_USB_F_RNDIS=m -CONFIG_USB_F_MASS_STORAGE=m -CONFIG_USB_F_FS=m -CONFIG_USB_F_UAC1=m -CONFIG_USB_F_UAC2=m -CONFIG_USB_F_UVC=m -CONFIG_USB_F_MIDI=m -CONFIG_USB_F_HID=m -CONFIG_USB_F_PRINTER=m -CONFIG_USB_F_TCM=m -CONFIG_USB_CONFIGFS=m -CONFIG_USB_CONFIGFS_SERIAL=y -CONFIG_USB_CONFIGFS_ACM=y -CONFIG_USB_CONFIGFS_OBEX=y -CONFIG_USB_CONFIGFS_NCM=y -CONFIG_USB_CONFIGFS_ECM=y -CONFIG_USB_CONFIGFS_ECM_SUBSET=y -CONFIG_USB_CONFIGFS_RNDIS=y -CONFIG_USB_CONFIGFS_EEM=y -CONFIG_USB_CONFIGFS_PHONET=y -CONFIG_USB_CONFIGFS_MASS_STORAGE=y -CONFIG_USB_CONFIGFS_F_LB_SS=y -CONFIG_USB_CONFIGFS_F_FS=y -CONFIG_USB_CONFIGFS_F_UAC1=y -CONFIG_USB_CONFIGFS_F_UAC2=y -CONFIG_USB_CONFIGFS_F_MIDI=y -CONFIG_USB_CONFIGFS_F_HID=y -CONFIG_USB_CONFIGFS_F_UVC=y -CONFIG_USB_CONFIGFS_F_PRINTER=y -# CONFIG_USB_CONFIGFS_F_TCM is not set -CONFIG_USB_ZERO=m -# CONFIG_USB_ZERO_HNPTEST is not set -CONFIG_USB_AUDIO=m -# CONFIG_GADGET_UAC1 is not set -CONFIG_USB_ETH=m -CONFIG_USB_ETH_RNDIS=y -# CONFIG_USB_ETH_EEM is not set -CONFIG_USB_G_NCM=m -CONFIG_USB_GADGETFS=m -CONFIG_USB_FUNCTIONFS=m -CONFIG_USB_FUNCTIONFS_ETH=y -CONFIG_USB_FUNCTIONFS_RNDIS=y -CONFIG_USB_FUNCTIONFS_GENERIC=y -CONFIG_USB_MASS_STORAGE=m -CONFIG_USB_GADGET_TARGET=m -CONFIG_USB_G_SERIAL=m -CONFIG_USB_MIDI_GADGET=m -CONFIG_USB_G_PRINTER=m -CONFIG_USB_CDC_COMPOSITE=m -CONFIG_USB_G_NOKIA=m -CONFIG_USB_G_ACM_MS=m -CONFIG_USB_G_MULTI=m -CONFIG_USB_G_MULTI_RNDIS=y -CONFIG_USB_G_MULTI_CDC=y -CONFIG_USB_G_HID=m -CONFIG_USB_G_DBGP=m -# CONFIG_USB_G_DBGP_PRINTK is not set -CONFIG_USB_G_DBGP_SERIAL=y -CONFIG_USB_G_WEBCAM=m -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_UWB=m -CONFIG_UWB_HWA=m -CONFIG_UWB_WHCI=m -CONFIG_UWB_I1480U=m -CONFIG_MMC=m -# CONFIG_MMC_DEBUG is not set -CONFIG_PWRSEQ_EMMC=m -CONFIG_PWRSEQ_SIMPLE=m - -# -# MMC/SD/SDIO Card Drivers -# -CONFIG_MMC_BLOCK=m -CONFIG_MMC_BLOCK_MINORS=256 -CONFIG_MMC_BLOCK_BOUNCE=y -CONFIG_SDIO_UART=m -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -CONFIG_MMC_SDHCI=m -CONFIG_MMC_SDHCI_PCI=m -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=m -# CONFIG_MMC_SDHCI_PLTFM is not set -CONFIG_MMC_WBSD=m -CONFIG_MMC_TIFM_SD=m -# CONFIG_MMC_SPI is not set -CONFIG_MMC_SDRICOH_CS=m -CONFIG_MMC_CB710=m -CONFIG_MMC_VIA_SDMMC=m -CONFIG_MMC_VUB300=m -CONFIG_MMC_USHC=m -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_REALTEK_PCI=m -CONFIG_MMC_REALTEK_USB=m -CONFIG_MMC_TOSHIBA_PCI=m -# CONFIG_MMC_MTK is not set -CONFIG_MEMSTICK=m -# CONFIG_MEMSTICK_DEBUG is not set - -# -# MemoryStick drivers -# -# CONFIG_MEMSTICK_UNSAFE_RESUME is not set -CONFIG_MSPRO_BLOCK=m -# CONFIG_MS_BLOCK is not set - -# -# MemoryStick Host Controller Drivers -# -CONFIG_MEMSTICK_TIFM_MS=m -CONFIG_MEMSTICK_JMICRON_38X=m -CONFIG_MEMSTICK_R592=m -CONFIG_MEMSTICK_REALTEK_PCI=m -CONFIG_MEMSTICK_REALTEK_USB=m -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set - -# -# LED drivers -# -CONFIG_LEDS_BCM6328=m -CONFIG_LEDS_BCM6358=m -CONFIG_LEDS_LM3530=m -CONFIG_LEDS_LM3642=m -CONFIG_LEDS_PCA9532=m -# CONFIG_LEDS_PCA9532_GPIO is not set -CONFIG_LEDS_GPIO=m -CONFIG_LEDS_LP3944=m -CONFIG_LEDS_LP3952=m -CONFIG_LEDS_LP55XX_COMMON=m -CONFIG_LEDS_LP5521=m -CONFIG_LEDS_LP5523=m -CONFIG_LEDS_LP5562=m -CONFIG_LEDS_LP8501=m -CONFIG_LEDS_LP8860=m -CONFIG_LEDS_CLEVO_MAIL=m -CONFIG_LEDS_PCA955X=m -CONFIG_LEDS_PCA963X=m -CONFIG_LEDS_DAC124S085=m -CONFIG_LEDS_PWM=m -# CONFIG_LEDS_REGULATOR is not set -CONFIG_LEDS_BD2802=m -CONFIG_LEDS_INTEL_SS4200=m -CONFIG_LEDS_LT3593=m -CONFIG_LEDS_DELL_NETBOOKS=m -CONFIG_LEDS_TCA6507=m -CONFIG_LEDS_TLC591XX=m -CONFIG_LEDS_LM355x=m -CONFIG_LEDS_MENF21BMC=m -CONFIG_LEDS_IS31FL319X=m -CONFIG_LEDS_IS31FL32XX=m - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -CONFIG_LEDS_BLINKM=m -CONFIG_LEDS_MLXCPLD=m -CONFIG_LEDS_UPBOARD=m - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -CONFIG_LEDS_TRIGGER_TIMER=m -CONFIG_LEDS_TRIGGER_ONESHOT=m -CONFIG_LEDS_TRIGGER_DISK=y -CONFIG_LEDS_TRIGGER_MTD=y -CONFIG_LEDS_TRIGGER_HEARTBEAT=m -CONFIG_LEDS_TRIGGER_BACKLIGHT=m -CONFIG_LEDS_TRIGGER_CPU=y -CONFIG_LEDS_TRIGGER_GPIO=m -CONFIG_LEDS_TRIGGER_DEFAULT_ON=m - -# -# iptables trigger is under Netfilter config (LED target) -# -CONFIG_LEDS_TRIGGER_TRANSIENT=m -CONFIG_LEDS_TRIGGER_CAMERA=m -CONFIG_LEDS_TRIGGER_PANIC=y -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y -CONFIG_INFINIBAND=m -CONFIG_INFINIBAND_USER_MAD=m -CONFIG_INFINIBAND_USER_ACCESS=m -CONFIG_INFINIBAND_USER_MEM=y -CONFIG_INFINIBAND_ON_DEMAND_PAGING=y -CONFIG_INFINIBAND_ADDR_TRANS=y -CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y -CONFIG_INFINIBAND_MTHCA=m -CONFIG_INFINIBAND_MTHCA_DEBUG=y -CONFIG_INFINIBAND_QIB=m -CONFIG_INFINIBAND_QIB_DCA=y -CONFIG_INFINIBAND_CXGB3=m -# CONFIG_INFINIBAND_CXGB3_DEBUG is not set -CONFIG_INFINIBAND_CXGB4=m -# CONFIG_INFINIBAND_I40IW is not set -CONFIG_MLX4_INFINIBAND=m -CONFIG_MLX5_INFINIBAND=m -CONFIG_INFINIBAND_NES=m -# CONFIG_INFINIBAND_NES_DEBUG is not set -CONFIG_INFINIBAND_OCRDMA=m -CONFIG_INFINIBAND_USNIC=m -CONFIG_INFINIBAND_IPOIB=m -CONFIG_INFINIBAND_IPOIB_CM=y -CONFIG_INFINIBAND_IPOIB_DEBUG=y -# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set -CONFIG_INFINIBAND_SRP=m -CONFIG_INFINIBAND_SRPT=m -CONFIG_INFINIBAND_ISER=m -CONFIG_INFINIBAND_ISERT=m -CONFIG_INFINIBAND_RDMAVT=m -# CONFIG_RDMA_RXE is not set -# CONFIG_INFINIBAND_HFI1 is not set -# CONFIG_INFINIBAND_QEDR is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_DECODE_MCE=m -CONFIG_EDAC_MM_EDAC=m -CONFIG_EDAC_AMD64=m -# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set -CONFIG_EDAC_E752X=m -CONFIG_EDAC_I82975X=m -CONFIG_EDAC_I3000=m -CONFIG_EDAC_I3200=m -CONFIG_EDAC_IE31200=m -CONFIG_EDAC_X38=m -CONFIG_EDAC_I5400=m -CONFIG_EDAC_I7CORE=m -CONFIG_EDAC_I5000=m -CONFIG_EDAC_I5100=m -CONFIG_EDAC_I7300=m -CONFIG_EDAC_SBRIDGE=m -# CONFIG_EDAC_SKX is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -CONFIG_RTC_DRV_ABB5ZES3=m -CONFIG_RTC_DRV_ABX80X=m -CONFIG_RTC_DRV_DS1307=m -# CONFIG_RTC_DRV_DS1307_HWMON is not set -# CONFIG_RTC_DRV_DS1307_CENTURY is not set -CONFIG_RTC_DRV_DS1374=m -# CONFIG_RTC_DRV_DS1374_WDT is not set -CONFIG_RTC_DRV_DS1672=m -CONFIG_RTC_DRV_HYM8563=m -CONFIG_RTC_DRV_MAX6900=m -CONFIG_RTC_DRV_RS5C372=m -CONFIG_RTC_DRV_ISL1208=m -CONFIG_RTC_DRV_ISL12022=m -CONFIG_RTC_DRV_X1205=m -CONFIG_RTC_DRV_PCF8523=m -CONFIG_RTC_DRV_PCF85063=m -CONFIG_RTC_DRV_PCF8563=m -CONFIG_RTC_DRV_PCF8583=m -CONFIG_RTC_DRV_M41T80=m -# CONFIG_RTC_DRV_M41T80_WDT is not set -CONFIG_RTC_DRV_BQ32K=m -CONFIG_RTC_DRV_S35390A=m -CONFIG_RTC_DRV_FM3130=m -CONFIG_RTC_DRV_RX8010=m -CONFIG_RTC_DRV_RX8581=m -CONFIG_RTC_DRV_RX8025=m -CONFIG_RTC_DRV_EM3027=m -CONFIG_RTC_DRV_RV8803=m - -# -# SPI RTC drivers -# -CONFIG_RTC_DRV_M41T93=m -CONFIG_RTC_DRV_M41T94=m -CONFIG_RTC_DRV_DS1302=m -CONFIG_RTC_DRV_DS1305=m -CONFIG_RTC_DRV_DS1343=m -CONFIG_RTC_DRV_DS1347=m -CONFIG_RTC_DRV_DS1390=m -CONFIG_RTC_DRV_MAX6916=m -CONFIG_RTC_DRV_R9701=m -CONFIG_RTC_DRV_RX4581=m -CONFIG_RTC_DRV_RX6110=m -CONFIG_RTC_DRV_RS5C348=m -CONFIG_RTC_DRV_MAX6902=m -CONFIG_RTC_DRV_PCF2123=m -CONFIG_RTC_DRV_MCP795=m -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -CONFIG_RTC_DRV_DS3232=m -CONFIG_RTC_DRV_PCF2127=m -CONFIG_RTC_DRV_RV3029C2=m -CONFIG_RTC_DRV_RV3029_HWMON=y - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -CONFIG_RTC_DRV_DS1286=m -CONFIG_RTC_DRV_DS1511=m -CONFIG_RTC_DRV_DS1553=m -CONFIG_RTC_DRV_DS1685_FAMILY=m -CONFIG_RTC_DRV_DS1685=y -# CONFIG_RTC_DRV_DS1689 is not set -# CONFIG_RTC_DRV_DS17285 is not set -# CONFIG_RTC_DRV_DS17485 is not set -# CONFIG_RTC_DRV_DS17885 is not set -# CONFIG_RTC_DS1685_PROC_REGS is not set -# CONFIG_RTC_DS1685_SYSFS_REGS is not set -CONFIG_RTC_DRV_DS1742=m -CONFIG_RTC_DRV_DS2404=m -CONFIG_RTC_DRV_STK17TA8=m -CONFIG_RTC_DRV_M48T86=m -CONFIG_RTC_DRV_M48T35=m -CONFIG_RTC_DRV_M48T59=m -CONFIG_RTC_DRV_MSM6242=m -CONFIG_RTC_DRV_BQ4802=m -CONFIG_RTC_DRV_RP5C01=m -CONFIG_RTC_DRV_V3020=m -CONFIG_RTC_DRV_ZYNQMP=m - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_SNVS is not set - -# -# HID Sensor RTC drivers -# -CONFIG_RTC_DRV_HID_SENSOR_TIME=m -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=m -CONFIG_DMA_ACPI=y -CONFIG_DMA_OF=y -# CONFIG_FSL_EDMA is not set -CONFIG_INTEL_IDMA64=m -CONFIG_INTEL_IOATDMA=m -CONFIG_INTEL_MIC_X100_DMA=m -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -CONFIG_DW_DMAC_CORE=m -CONFIG_DW_DMAC=m -# CONFIG_DW_DMAC_PCI is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set -CONFIG_DMA_ENGINE_RAID=y - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -CONFIG_DCA=m -# CONFIG_AUXDISPLAY is not set -CONFIG_UIO=m -CONFIG_UIO_CIF=m -# CONFIG_UIO_PDRV_GENIRQ is not set -# CONFIG_UIO_DMEM_GENIRQ is not set -CONFIG_UIO_AEC=m -CONFIG_UIO_SERCOS3=m -CONFIG_UIO_PCI_GENERIC=m -CONFIG_UIO_NETX=m -# CONFIG_UIO_PRUSS is not set -CONFIG_UIO_MF624=m -CONFIG_VFIO_IOMMU_TYPE1=m -CONFIG_VFIO_VIRQFD=m -CONFIG_VFIO=m -# CONFIG_VFIO_NOIOMMU is not set -CONFIG_VFIO_PCI=m -CONFIG_VFIO_PCI_VGA=y -CONFIG_VFIO_PCI_MMAP=y -CONFIG_VFIO_PCI_INTX=y -CONFIG_VFIO_PCI_IGD=y -CONFIG_IRQ_BYPASS_MANAGER=m -CONFIG_VIRT_DRIVERS=y -CONFIG_VIRTIO=m - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=m -CONFIG_VIRTIO_PCI_LEGACY=y -CONFIG_VIRTIO_BALLOON=m -CONFIG_VIRTIO_INPUT=m -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -CONFIG_HYPERV=m -CONFIG_HYPERV_UTILS=m -CONFIG_HYPERV_BALLOON=m - -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 -CONFIG_XEN_SCRUB_PAGES=y -CONFIG_XEN_DEV_EVTCHN=m -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=m -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=m -CONFIG_XEN_GRANT_DEV_ALLOC=m -CONFIG_SWIOTLB_XEN=y -CONFIG_XEN_TMEM=m -CONFIG_XEN_PCIDEV_BACKEND=m -CONFIG_XEN_SCSI_BACKEND=m -CONFIG_XEN_PRIVCMD=m -CONFIG_XEN_ACPI_PROCESSOR=m -CONFIG_XEN_MCE_LOG=y -CONFIG_XEN_HAVE_PVMMU=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -CONFIG_XEN_ACPI=y -CONFIG_XEN_SYMS=y -CONFIG_XEN_HAVE_VPMU=y -CONFIG_STAGING=y -# CONFIG_SLICOSS is not set -CONFIG_PRISM2_USB=m -CONFIG_COMEDI=m -# CONFIG_COMEDI_DEBUG is not set -CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 -CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 -CONFIG_COMEDI_MISC_DRIVERS=y -CONFIG_COMEDI_BOND=m -CONFIG_COMEDI_TEST=m -CONFIG_COMEDI_PARPORT=m -CONFIG_COMEDI_SERIAL2002=m -# CONFIG_COMEDI_ISA_DRIVERS is not set -CONFIG_COMEDI_PCI_DRIVERS=m -CONFIG_COMEDI_8255_PCI=m -CONFIG_COMEDI_ADDI_WATCHDOG=m -CONFIG_COMEDI_ADDI_APCI_1032=m -CONFIG_COMEDI_ADDI_APCI_1500=m -CONFIG_COMEDI_ADDI_APCI_1516=m -CONFIG_COMEDI_ADDI_APCI_1564=m -CONFIG_COMEDI_ADDI_APCI_16XX=m -CONFIG_COMEDI_ADDI_APCI_2032=m -CONFIG_COMEDI_ADDI_APCI_2200=m -CONFIG_COMEDI_ADDI_APCI_3120=m -CONFIG_COMEDI_ADDI_APCI_3501=m -CONFIG_COMEDI_ADDI_APCI_3XXX=m -CONFIG_COMEDI_ADL_PCI6208=m -CONFIG_COMEDI_ADL_PCI7X3X=m -CONFIG_COMEDI_ADL_PCI8164=m -CONFIG_COMEDI_ADL_PCI9111=m -CONFIG_COMEDI_ADL_PCI9118=m -CONFIG_COMEDI_ADV_PCI1710=m -# CONFIG_COMEDI_ADV_PCI1720 is not set -CONFIG_COMEDI_ADV_PCI1723=m -CONFIG_COMEDI_ADV_PCI1724=m -# CONFIG_COMEDI_ADV_PCI1760 is not set -CONFIG_COMEDI_ADV_PCI_DIO=m -CONFIG_COMEDI_AMPLC_DIO200_PCI=m -CONFIG_COMEDI_AMPLC_PC236_PCI=m -CONFIG_COMEDI_AMPLC_PC263_PCI=m -CONFIG_COMEDI_AMPLC_PCI224=m -CONFIG_COMEDI_AMPLC_PCI230=m -CONFIG_COMEDI_CONTEC_PCI_DIO=m -CONFIG_COMEDI_DAS08_PCI=m -CONFIG_COMEDI_DT3000=m -CONFIG_COMEDI_DYNA_PCI10XX=m -CONFIG_COMEDI_GSC_HPDI=m -CONFIG_COMEDI_MF6X4=m -CONFIG_COMEDI_ICP_MULTI=m -CONFIG_COMEDI_DAQBOARD2000=m -CONFIG_COMEDI_JR3_PCI=m -CONFIG_COMEDI_KE_COUNTER=m -CONFIG_COMEDI_CB_PCIDAS64=m -CONFIG_COMEDI_CB_PCIDAS=m -CONFIG_COMEDI_CB_PCIDDA=m -CONFIG_COMEDI_CB_PCIMDAS=m -CONFIG_COMEDI_CB_PCIMDDA=m -CONFIG_COMEDI_ME4000=m -CONFIG_COMEDI_ME_DAQ=m -CONFIG_COMEDI_NI_6527=m -CONFIG_COMEDI_NI_65XX=m -CONFIG_COMEDI_NI_660X=m -CONFIG_COMEDI_NI_670X=m -CONFIG_COMEDI_NI_LABPC_PCI=m -CONFIG_COMEDI_NI_PCIDIO=m -CONFIG_COMEDI_NI_PCIMIO=m -CONFIG_COMEDI_RTD520=m -CONFIG_COMEDI_S626=m -CONFIG_COMEDI_MITE=m -CONFIG_COMEDI_NI_TIOCMD=m -CONFIG_COMEDI_PCMCIA_DRIVERS=m -CONFIG_COMEDI_CB_DAS16_CS=m -CONFIG_COMEDI_DAS08_CS=m -CONFIG_COMEDI_NI_DAQ_700_CS=m -CONFIG_COMEDI_NI_DAQ_DIO24_CS=m -CONFIG_COMEDI_NI_LABPC_CS=m -CONFIG_COMEDI_NI_MIO_CS=m -CONFIG_COMEDI_QUATECH_DAQP_CS=m -CONFIG_COMEDI_USB_DRIVERS=m -CONFIG_COMEDI_DT9812=m -CONFIG_COMEDI_NI_USB6501=m -CONFIG_COMEDI_USBDUX=m -CONFIG_COMEDI_USBDUXFAST=m -CONFIG_COMEDI_USBDUXSIGMA=m -CONFIG_COMEDI_VMK80XX=m -CONFIG_COMEDI_8254=m -CONFIG_COMEDI_8255=m -CONFIG_COMEDI_8255_SA=m -CONFIG_COMEDI_KCOMEDILIB=m -CONFIG_COMEDI_AMPLC_DIO200=m -CONFIG_COMEDI_AMPLC_PC236=m -CONFIG_COMEDI_DAS08=m -CONFIG_COMEDI_NI_LABPC=m -CONFIG_COMEDI_NI_TIO=m -CONFIG_RTL8192U=m -CONFIG_RTLLIB=m -CONFIG_RTLLIB_CRYPTO_CCMP=m -CONFIG_RTLLIB_CRYPTO_TKIP=m -CONFIG_RTLLIB_CRYPTO_WEP=m -CONFIG_RTL8192E=m -CONFIG_R8712U=m -CONFIG_R8188EU=m -CONFIG_88EU_AP_MODE=y -CONFIG_RTS5208=m -# CONFIG_VT6655 is not set -CONFIG_VT6656=m - -# -# IIO staging drivers -# - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16203 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADIS16240 is not set -# CONFIG_SCA3000 is not set - -# -# Analog to digital converters -# -# CONFIG_AD7606 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7816 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7280 is not set - -# -# Analog digital bi-direction converters -# -# CONFIG_ADT7316 is not set - -# -# Capacitance to digital converters -# -# CONFIG_AD7150 is not set -# CONFIG_AD7152 is not set -# CONFIG_AD7746 is not set - -# -# Direct Digital Synthesis -# -# CONFIG_AD9832 is not set -# CONFIG_AD9834 is not set - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16060 is not set - -# -# Network Analyzer, Impedance Converters -# -# CONFIG_AD5933 is not set - -# -# Light sensors -# -CONFIG_SENSORS_ISL29018=m -# CONFIG_SENSORS_ISL29028 is not set -CONFIG_TSL2583=m -# CONFIG_TSL2x7x is not set - -# -# Active energy metering IC -# -# CONFIG_ADE7753 is not set -# CONFIG_ADE7754 is not set -# CONFIG_ADE7758 is not set -# CONFIG_ADE7759 is not set -# CONFIG_ADE7854 is not set - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# CONFIG_AD2S1210 is not set - -# -# Triggers - standalone -# -# CONFIG_FB_SM750 is not set -# CONFIG_FB_XGI is not set - -# -# Speakup console speech -# -CONFIG_SPEAKUP=m -CONFIG_SPEAKUP_SYNTH_ACNTSA=m -CONFIG_SPEAKUP_SYNTH_APOLLO=m -CONFIG_SPEAKUP_SYNTH_AUDPTR=m -CONFIG_SPEAKUP_SYNTH_BNS=m -CONFIG_SPEAKUP_SYNTH_DECTLK=m -CONFIG_SPEAKUP_SYNTH_DECEXT=m -CONFIG_SPEAKUP_SYNTH_LTLK=m -CONFIG_SPEAKUP_SYNTH_SOFT=m -CONFIG_SPEAKUP_SYNTH_SPKOUT=m -CONFIG_SPEAKUP_SYNTH_TXPRT=m -CONFIG_SPEAKUP_SYNTH_DUMMY=m -CONFIG_STAGING_MEDIA=y -# CONFIG_I2C_BCM2048 is not set -# CONFIG_MEDIA_CEC is not set -# CONFIG_DVB_CXD2099 is not set -CONFIG_LIRC_STAGING=y -CONFIG_LIRC_BT829=m -CONFIG_LIRC_IMON=m -# CONFIG_LIRC_PARALLEL is not set -CONFIG_LIRC_SASEM=m -CONFIG_LIRC_SERIAL=m -CONFIG_LIRC_SERIAL_TRANSMITTER=y -CONFIG_LIRC_SIR=m -CONFIG_LIRC_ZILOG=m - -# -# Android -# -# CONFIG_STAGING_BOARD is not set -# CONFIG_LTE_GDM724X is not set -# CONFIG_FIREWIRE_SERIAL is not set -# CONFIG_MTD_SPINAND_MT29F is not set -CONFIG_LNET=m -CONFIG_LNET_MAX_PAYLOAD=1048576 -# CONFIG_LNET_SELFTEST is not set -CONFIG_LUSTRE_FS=m -CONFIG_LUSTRE_OBD_MAX_IOCTL_BUFFER=8192 -# CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK is not set -# CONFIG_DGNC is not set -# CONFIG_GS_FPGABOOT is not set -# CONFIG_CRYPTO_SKEIN is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set -CONFIG_FB_TFT=m -CONFIG_FB_TFT_AGM1264K_FL=m -CONFIG_FB_TFT_BD663474=m -CONFIG_FB_TFT_HX8340BN=m -CONFIG_FB_TFT_HX8347D=m -CONFIG_FB_TFT_HX8353D=m -CONFIG_FB_TFT_HX8357D=m -CONFIG_FB_TFT_ILI9163=m -CONFIG_FB_TFT_ILI9320=m -CONFIG_FB_TFT_ILI9325=m -CONFIG_FB_TFT_ILI9340=m -CONFIG_FB_TFT_ILI9341=m -CONFIG_FB_TFT_ILI9481=m -CONFIG_FB_TFT_ILI9486=m -CONFIG_FB_TFT_PCD8544=m -CONFIG_FB_TFT_RA8875=m -CONFIG_FB_TFT_S6D02A1=m -CONFIG_FB_TFT_S6D1121=m -CONFIG_FB_TFT_SSD1289=m -CONFIG_FB_TFT_SSD1305=m -CONFIG_FB_TFT_SSD1306=m -CONFIG_FB_TFT_SSD1325=m -CONFIG_FB_TFT_SSD1331=m -CONFIG_FB_TFT_SSD1351=m -CONFIG_FB_TFT_ST7735R=m -CONFIG_FB_TFT_ST7789V=m -CONFIG_FB_TFT_TINYLCD=m -CONFIG_FB_TFT_TLS8204=m -CONFIG_FB_TFT_UC1611=m -CONFIG_FB_TFT_UC1701=m -CONFIG_FB_TFT_UPD161704=m -CONFIG_FB_TFT_WATTEROTT=m -CONFIG_FB_FLEX=m -CONFIG_FB_TFT_FBTFT_DEVICE=m -# CONFIG_WILC1000_SDIO is not set -# CONFIG_WILC1000_SPI is not set -# CONFIG_MOST is not set -# CONFIG_KS7010 is not set -# CONFIG_GREYBUS is not set -CONFIG_X86_PLATFORM_DEVICES=y -CONFIG_ACER_WMI=m -CONFIG_ACERHDF=m -CONFIG_ALIENWARE_WMI=m -CONFIG_ASUS_LAPTOP=m -CONFIG_DELL_SMBIOS=m -CONFIG_DELL_LAPTOP=m -CONFIG_DELL_WMI=m -CONFIG_DELL_WMI_AIO=m -CONFIG_DELL_SMO8800=m -CONFIG_DELL_RBTN=m -CONFIG_FUJITSU_LAPTOP=m -# CONFIG_FUJITSU_LAPTOP_DEBUG is not set -CONFIG_FUJITSU_TABLET=m -CONFIG_AMILO_RFKILL=m -CONFIG_HP_ACCEL=m -CONFIG_HP_WIRELESS=m -CONFIG_HP_WMI=m -CONFIG_MSI_LAPTOP=m -CONFIG_PANASONIC_LAPTOP=m -CONFIG_COMPAL_LAPTOP=m -CONFIG_SONY_LAPTOP=m -CONFIG_SONYPI_COMPAT=y -CONFIG_IDEAPAD_LAPTOP=m -CONFIG_THINKPAD_ACPI=m -CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y -# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set -# CONFIG_THINKPAD_ACPI_DEBUG is not set -# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set -CONFIG_THINKPAD_ACPI_VIDEO=y -CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y -CONFIG_SENSORS_HDAPS=m -# CONFIG_INTEL_MENLOW is not set -CONFIG_EEEPC_LAPTOP=m -CONFIG_ASUS_WMI=m -CONFIG_ASUS_NB_WMI=m -CONFIG_EEEPC_WMI=m -CONFIG_ASUS_WIRELESS=m -CONFIG_ACPI_WMI=m -CONFIG_MSI_WMI=m -CONFIG_TOPSTAR_LAPTOP=m -CONFIG_ACPI_TOSHIBA=m -CONFIG_TOSHIBA_BT_RFKILL=m -CONFIG_TOSHIBA_HAPS=m -# CONFIG_TOSHIBA_WMI is not set -CONFIG_ACPI_CMPC=m -# CONFIG_INTEL_HID_EVENT is not set -CONFIG_INTEL_VBTN=m -CONFIG_INTEL_IPS=m -# CONFIG_INTEL_PMC_CORE is not set -CONFIG_IBM_RTL=m -CONFIG_SAMSUNG_LAPTOP=m -CONFIG_MXM_WMI=m -CONFIG_INTEL_OAKTRAIL=m -CONFIG_SAMSUNG_Q10=m -CONFIG_APPLE_GMUX=m -CONFIG_INTEL_RST=m -CONFIG_INTEL_SMARTCONNECT=m -CONFIG_PVPANIC=m -CONFIG_INTEL_PMC_IPC=m -CONFIG_SURFACE_PRO3_BUTTON=m -# CONFIG_INTEL_PUNIT_IPC is not set -CONFIG_UPBOARD_LEGACY=y -CONFIG_CHROME_PLATFORMS=y -CONFIG_CHROMEOS_LAPTOP=m -CONFIG_CHROMEOS_PSTORE=m -CONFIG_CROS_KBD_LED_BACKLIGHT=m -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set - -# -# Hardware Spinlock drivers -# - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -CONFIG_IOMMU_IOVA=y -CONFIG_OF_IOMMU=y -CONFIG_AMD_IOMMU=y -CONFIG_AMD_IOMMU_V2=y -CONFIG_DMAR_TABLE=y -CONFIG_INTEL_IOMMU=y -CONFIG_INTEL_IOMMU_SVM=y -# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set -CONFIG_INTEL_IOMMU_FLOPPY_WA=y -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_STE_MODEM_RPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Broadcom SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -CONFIG_IIO=m -CONFIG_IIO_BUFFER=y -# CONFIG_IIO_BUFFER_CB is not set -CONFIG_IIO_KFIFO_BUF=m -CONFIG_IIO_TRIGGERED_BUFFER=m -# CONFIG_IIO_CONFIGFS is not set -CONFIG_IIO_TRIGGER=y -CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set -CONFIG_IIO_TRIGGERED_EVENT=m - -# -# Accelerometers -# -CONFIG_BMA180=m -CONFIG_BMA220=m -CONFIG_BMC150_ACCEL=m -CONFIG_BMC150_ACCEL_I2C=m -CONFIG_BMC150_ACCEL_SPI=m -CONFIG_DMARD06=m -CONFIG_DMARD09=m -CONFIG_HID_SENSOR_ACCEL_3D=m -CONFIG_IIO_ST_ACCEL_3AXIS=m -CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m -CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m -CONFIG_KXSD9=m -CONFIG_KXSD9_SPI=m -CONFIG_KXSD9_I2C=m -CONFIG_KXCJK1013=m -CONFIG_MC3230=m -CONFIG_MMA7455=m -CONFIG_MMA7455_I2C=m -CONFIG_MMA7455_SPI=m -CONFIG_MMA7660=m -CONFIG_MMA8452=m -CONFIG_MMA9551_CORE=m -CONFIG_MMA9551=m -CONFIG_MMA9553=m -CONFIG_MXC4005=m -CONFIG_MXC6255=m -CONFIG_STK8312=m -CONFIG_STK8BA50=m - -# -# Analog to digital converters -# -CONFIG_AD_SIGMA_DELTA=m -CONFIG_AD7266=m -CONFIG_AD7291=m -CONFIG_AD7298=m -CONFIG_AD7476=m -CONFIG_AD7791=m -CONFIG_AD7793=m -CONFIG_AD7887=m -CONFIG_AD7923=m -CONFIG_AD799X=m -# CONFIG_CC10001_ADC is not set -CONFIG_HI8435=m -CONFIG_INA2XX_ADC=m -CONFIG_LTC2485=m -CONFIG_MAX1027=m -CONFIG_MAX1363=m -CONFIG_MCP320X=m -CONFIG_MCP3422=m -CONFIG_NAU7802=m -CONFIG_TI_ADC081C=m -CONFIG_TI_ADC0832=m -CONFIG_TI_ADC12138=m -CONFIG_TI_ADC128S052=m -CONFIG_TI_ADC161S626=m -CONFIG_TI_ADS1015=m -CONFIG_TI_ADS8688=m -CONFIG_VF610_ADC=m -CONFIG_VIPERBOARD_ADC=m - -# -# Amplifiers -# -# CONFIG_AD8366 is not set - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_IAQCORE is not set -# CONFIG_VZ89X is not set - -# -# Hid Sensor IIO Common -# -CONFIG_HID_SENSOR_IIO_COMMON=m -CONFIG_HID_SENSOR_IIO_TRIGGER=m -CONFIG_IIO_MS_SENSORS_I2C=m - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -CONFIG_IIO_ST_SENSORS_I2C=m -CONFIG_IIO_ST_SENSORS_SPI=m -CONFIG_IIO_ST_SENSORS_CORE=m - -# -# Digital to analog converters -# -CONFIG_AD5064=m -CONFIG_AD5360=m -CONFIG_AD5380=m -CONFIG_AD5421=m -CONFIG_AD5446=m -CONFIG_AD5449=m -CONFIG_AD5592R_BASE=m -CONFIG_AD5592R=m -CONFIG_AD5593R=m -CONFIG_AD5504=m -CONFIG_AD5624R_SPI=m -CONFIG_AD5686=m -CONFIG_AD5755=m -CONFIG_AD5761=m -CONFIG_AD5764=m -CONFIG_AD5791=m -CONFIG_AD7303=m -CONFIG_AD8801=m -CONFIG_M62332=m -CONFIG_MAX517=m -CONFIG_MAX5821=m -CONFIG_MCP4725=m -CONFIG_MCP4922=m -CONFIG_VF610_DAC=m - -# -# IIO dummy driver -# - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS450 is not set -CONFIG_BMG160=m -CONFIG_BMG160_I2C=m -CONFIG_BMG160_SPI=m -CONFIG_HID_SENSOR_GYRO_3D=m -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -CONFIG_KMX61=m -CONFIG_INV_MPU6050_IIO=m -CONFIG_INV_MPU6050_I2C=m -# CONFIG_INV_MPU6050_SPI is not set - -# -# Light sensors -# -CONFIG_ACPI_ALS=m -# CONFIG_ADJD_S311 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_BH1750 is not set -CONFIG_BH1780=m -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_ISL29125 is not set -CONFIG_HID_SENSOR_ALS=m -CONFIG_HID_SENSOR_PROX=m -CONFIG_JSA1212=m -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_MAX44000 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -CONFIG_SENSORS_TSL2563=m -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VEML6070 is not set - -# -# Magnetometer sensors -# -CONFIG_AK8974=m -CONFIG_AK8975=m -CONFIG_AK09911=m -CONFIG_BMC150_MAGN=m -CONFIG_BMC150_MAGN_I2C=m -CONFIG_BMC150_MAGN_SPI=m -CONFIG_MAG3110=m -CONFIG_HID_SENSOR_MAGNETOMETER_3D=m -CONFIG_MMC35240=m -CONFIG_IIO_ST_MAGN_3AXIS=m -CONFIG_IIO_ST_MAGN_I2C_3AXIS=m -CONFIG_IIO_ST_MAGN_SPI_3AXIS=m -CONFIG_SENSORS_HMC5843=m -CONFIG_SENSORS_HMC5843_I2C=m -CONFIG_SENSORS_HMC5843_SPI=m - -# -# Inclinometer sensors -# -CONFIG_HID_SENSOR_INCLINOMETER_3D=m -CONFIG_HID_SENSOR_DEVICE_ROTATION=m - -# -# Triggers - standalone -# -# CONFIG_IIO_INTERRUPT_TRIGGER is not set -# CONFIG_IIO_SYSFS_TRIGGER is not set - -# -# Digital potentiometers -# -CONFIG_DS1803=m -CONFIG_MAX5487=m -CONFIG_MCP4131=m -CONFIG_MCP4531=m -CONFIG_TPL0102=m - -# -# Pressure sensors -# -CONFIG_BMP280=m -CONFIG_BMP280_I2C=m -CONFIG_BMP280_SPI=m -CONFIG_HID_SENSOR_PRESS=m -CONFIG_HP03=m -CONFIG_MPL115=m -CONFIG_MPL115_I2C=m -CONFIG_MPL115_SPI=m -CONFIG_MPL3115=m -CONFIG_MS5611=m -CONFIG_MS5611_I2C=m -CONFIG_MS5611_SPI=m -CONFIG_MS5637=m -CONFIG_IIO_ST_PRESS=m -CONFIG_IIO_ST_PRESS_I2C=m -CONFIG_IIO_ST_PRESS_SPI=m -CONFIG_T5403=m -CONFIG_HP206C=m -CONFIG_ZPA2326=m -CONFIG_ZPA2326_I2C=m -CONFIG_ZPA2326_SPI=m - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set - -# -# Proximity sensors -# -# CONFIG_LIDAR_LITE_V2 is not set -CONFIG_SX9500=m - -# -# Temperature sensors -# -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_TMP006 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_FSL_FTM is not set -CONFIG_PWM_LPSS=m -CONFIG_PWM_LPSS_PCI=m -CONFIG_PWM_LPSS_PLATFORM=m -CONFIG_PWM_PCA9685=m -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -CONFIG_POWERCAP=y -CONFIG_INTEL_RAPL=m -# CONFIG_MCB is not set - -# -# Performance monitor support -# -CONFIG_RAS=y -# CONFIG_MCE_AMD_INJ is not set -CONFIG_THUNDERBOLT=m - -# -# Android -# -# CONFIG_ANDROID is not set -CONFIG_LIBNVDIMM=m -CONFIG_BLK_DEV_PMEM=m -CONFIG_ND_BLK=m -CONFIG_ND_CLAIM=y -CONFIG_ND_BTT=m -CONFIG_BTT=y -CONFIG_ND_PFN=m -CONFIG_NVDIMM_PFN=y -CONFIG_NVDIMM_DAX=y -CONFIG_DEV_DAX=m -CONFIG_DEV_DAX_PMEM=m -CONFIG_NR_DEV_DAX=32768 -CONFIG_NVMEM=m -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set - -# -# FPGA Configuration Support -# -# CONFIG_FPGA is not set - -# -# Firmware Drivers -# -CONFIG_EDD=m -# CONFIG_EDD_OFF is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DELL_RBU=m -CONFIG_DCDBAS=m -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -CONFIG_ISCSI_IBFT_FIND=y -CONFIG_ISCSI_IBFT=m -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=m -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=m -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -CONFIG_UEFI_CPER=y - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=m -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -CONFIG_EXT4_ENCRYPTION=y -CONFIG_EXT4_FS_ENCRYPTION=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=m -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=m -CONFIG_REISERFS_FS=m -# CONFIG_REISERFS_CHECK is not set -# CONFIG_REISERFS_PROC_INFO is not set -CONFIG_REISERFS_FS_XATTR=y -CONFIG_REISERFS_FS_POSIX_ACL=y -CONFIG_REISERFS_FS_SECURITY=y -CONFIG_JFS_FS=m -CONFIG_JFS_POSIX_ACL=y -CONFIG_JFS_SECURITY=y -# CONFIG_JFS_DEBUG is not set -# CONFIG_JFS_STATISTICS is not set -CONFIG_XFS_FS=m -CONFIG_XFS_QUOTA=y -CONFIG_XFS_POSIX_ACL=y -CONFIG_XFS_RT=y -# CONFIG_XFS_WARN is not set -# CONFIG_XFS_DEBUG is not set -CONFIG_GFS2_FS=m -CONFIG_GFS2_FS_LOCKING_DLM=y -CONFIG_OCFS2_FS=m -CONFIG_OCFS2_FS_O2CB=m -CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m -CONFIG_OCFS2_FS_STATS=y -CONFIG_OCFS2_DEBUG_MASKLOG=y -# CONFIG_OCFS2_DEBUG_FS is not set -CONFIG_BTRFS_FS=m -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -CONFIG_NILFS2_FS=m -CONFIG_F2FS_FS=m -CONFIG_F2FS_STAT_FS=y -CONFIG_F2FS_FS_XATTR=y -CONFIG_F2FS_FS_POSIX_ACL=y -CONFIG_F2FS_FS_SECURITY=y -# CONFIG_F2FS_CHECK_FS is not set -CONFIG_F2FS_FS_ENCRYPTION=y -# CONFIG_F2FS_IO_TRACE is not set -# CONFIG_F2FS_FAULT_INJECTION is not set -CONFIG_FS_DAX=y -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -CONFIG_FS_ENCRYPTION=m -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -CONFIG_QUOTA_TREE=m -CONFIG_QFMT_V1=m -CONFIG_QFMT_V2=m -CONFIG_QUOTACTL=y -CONFIG_QUOTACTL_COMPAT=y -CONFIG_AUTOFS4_FS=m -CONFIG_FUSE_FS=m -CONFIG_CUSE=m -CONFIG_OVERLAY_FS=m - -# -# Caches -# -CONFIG_FSCACHE=m -CONFIG_FSCACHE_STATS=y -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -CONFIG_CACHEFILES=m -# CONFIG_CACHEFILES_DEBUG is not set -# CONFIG_CACHEFILES_HISTOGRAM is not set - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=m -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -CONFIG_UDF_FS=m -CONFIG_UDF_NLS=y - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=m -CONFIG_MSDOS_FS=m -CONFIG_VFAT_FS=m -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="ascii" -CONFIG_FAT_DEFAULT_UTF8=y -CONFIG_NTFS_FS=m -# CONFIG_NTFS_DEBUG is not set -# CONFIG_NTFS_RW is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=m -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -CONFIG_ADFS_FS=m -# CONFIG_ADFS_FS_RW is not set -CONFIG_AFFS_FS=m -CONFIG_ECRYPT_FS=m -CONFIG_ECRYPT_FS_MESSAGING=y -CONFIG_HFS_FS=m -CONFIG_HFSPLUS_FS=m -# CONFIG_HFSPLUS_FS_POSIX_ACL is not set -CONFIG_BEFS_FS=m -# CONFIG_BEFS_DEBUG is not set -CONFIG_BFS_FS=m -CONFIG_EFS_FS=m -CONFIG_JFFS2_FS=m -CONFIG_JFFS2_FS_DEBUG=0 -CONFIG_JFFS2_FS_WRITEBUFFER=y -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set -CONFIG_JFFS2_SUMMARY=y -CONFIG_JFFS2_FS_XATTR=y -CONFIG_JFFS2_FS_POSIX_ACL=y -CONFIG_JFFS2_FS_SECURITY=y -CONFIG_JFFS2_COMPRESSION_OPTIONS=y -CONFIG_JFFS2_ZLIB=y -CONFIG_JFFS2_LZO=y -CONFIG_JFFS2_RTIME=y -# CONFIG_JFFS2_RUBIN is not set -# CONFIG_JFFS2_CMODE_NONE is not set -CONFIG_JFFS2_CMODE_PRIORITY=y -# CONFIG_JFFS2_CMODE_SIZE is not set -# CONFIG_JFFS2_CMODE_FAVOURLZO is not set -CONFIG_UBIFS_FS=m -CONFIG_UBIFS_FS_ADVANCED_COMPR=y -CONFIG_UBIFS_FS_LZO=y -CONFIG_UBIFS_FS_ZLIB=y -# CONFIG_UBIFS_ATIME_SUPPORT is not set -# CONFIG_LOGFS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=m -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -CONFIG_SQUASHFS_XATTR=y -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -CONFIG_SQUASHFS_LZO=y -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -CONFIG_VXFS_FS=m -CONFIG_MINIX_FS=m -CONFIG_OMFS_FS=m -# CONFIG_HPFS_FS is not set -CONFIG_QNX4FS_FS=m -CONFIG_QNX6FS_FS=m -# CONFIG_QNX6FS_DEBUG is not set -CONFIG_ROMFS_FS=m -# CONFIG_ROMFS_BACKED_BY_BLOCK is not set -# CONFIG_ROMFS_BACKED_BY_MTD is not set -CONFIG_ROMFS_BACKED_BY_BOTH=y -CONFIG_ROMFS_ON_BLOCK=y -CONFIG_ROMFS_ON_MTD=y -CONFIG_PSTORE=y -CONFIG_PSTORE_ZLIB_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -CONFIG_PSTORE_RAM=m -CONFIG_SYSV_FS=m -CONFIG_UFS_FS=m -# CONFIG_UFS_FS_WRITE is not set -# CONFIG_UFS_DEBUG is not set -CONFIG_EXOFS_FS=m -# CONFIG_EXOFS_DEBUG is not set -CONFIG_ORE=m -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=m -CONFIG_NFS_V2=m -CONFIG_NFS_V3=m -CONFIG_NFS_V3_ACL=y -CONFIG_NFS_V4=m -CONFIG_NFS_SWAP=y -CONFIG_NFS_V4_1=y -CONFIG_NFS_V4_2=y -CONFIG_PNFS_FILE_LAYOUT=m -CONFIG_PNFS_BLOCK=m -CONFIG_PNFS_OBJLAYOUT=m -CONFIG_PNFS_FLEXFILE_LAYOUT=m -CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" -# CONFIG_NFS_V4_1_MIGRATION is not set -CONFIG_NFS_V4_SECURITY_LABEL=y -CONFIG_NFS_FSCACHE=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y -CONFIG_NFS_DEBUG=y -CONFIG_NFSD=m -CONFIG_NFSD_V2_ACL=y -CONFIG_NFSD_V3=y -CONFIG_NFSD_V3_ACL=y -CONFIG_NFSD_V4=y -CONFIG_NFSD_PNFS=y -CONFIG_NFSD_BLOCKLAYOUT=y -# CONFIG_NFSD_SCSILAYOUT is not set -# CONFIG_NFSD_FLEXFILELAYOUT is not set -CONFIG_NFSD_V4_SECURITY_LABEL=y -# CONFIG_NFSD_FAULT_INJECTION is not set -CONFIG_GRACE_PERIOD=m -CONFIG_LOCKD=m -CONFIG_LOCKD_V4=y -CONFIG_NFS_ACL_SUPPORT=m -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=m -CONFIG_SUNRPC_GSS=m -CONFIG_SUNRPC_BACKCHANNEL=y -CONFIG_SUNRPC_SWAP=y -CONFIG_RPCSEC_GSS_KRB5=m -CONFIG_SUNRPC_DEBUG=y -CONFIG_SUNRPC_XPRT_RDMA=m -CONFIG_CEPH_FS=m -CONFIG_CEPH_FSCACHE=y -CONFIG_CEPH_FS_POSIX_ACL=y -CONFIG_CIFS=m -# CONFIG_CIFS_STATS is not set -CONFIG_CIFS_WEAK_PW_HASH=y -CONFIG_CIFS_UPCALL=y -CONFIG_CIFS_XATTR=y -CONFIG_CIFS_POSIX=y -CONFIG_CIFS_ACL=y -CONFIG_CIFS_DEBUG=y -# CONFIG_CIFS_DEBUG2 is not set -CONFIG_CIFS_DFS_UPCALL=y -CONFIG_CIFS_SMB2=y -# CONFIG_CIFS_SMB311 is not set -CONFIG_CIFS_FSCACHE=y -CONFIG_NCP_FS=m -CONFIG_NCPFS_PACKET_SIGNING=y -CONFIG_NCPFS_IOCTL_LOCKING=y -CONFIG_NCPFS_STRONG=y -CONFIG_NCPFS_NFS_NS=y -CONFIG_NCPFS_OS2_NS=y -# CONFIG_NCPFS_SMALLDOS is not set -CONFIG_NCPFS_NLS=y -CONFIG_NCPFS_EXTRAS=y -CONFIG_CODA_FS=m -CONFIG_AFS_FS=m -# CONFIG_AFS_DEBUG is not set -CONFIG_AFS_FSCACHE=y -CONFIG_9P_FS=m -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -CONFIG_9P_FS_SECURITY=y -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=m -CONFIG_NLS_CODEPAGE_737=m -CONFIG_NLS_CODEPAGE_775=m -CONFIG_NLS_CODEPAGE_850=m -CONFIG_NLS_CODEPAGE_852=m -CONFIG_NLS_CODEPAGE_855=m -CONFIG_NLS_CODEPAGE_857=m -CONFIG_NLS_CODEPAGE_860=m -CONFIG_NLS_CODEPAGE_861=m -CONFIG_NLS_CODEPAGE_862=m -CONFIG_NLS_CODEPAGE_863=m -CONFIG_NLS_CODEPAGE_864=m -CONFIG_NLS_CODEPAGE_865=m -CONFIG_NLS_CODEPAGE_866=m -CONFIG_NLS_CODEPAGE_869=m -CONFIG_NLS_CODEPAGE_936=m -CONFIG_NLS_CODEPAGE_950=m -CONFIG_NLS_CODEPAGE_932=m -CONFIG_NLS_CODEPAGE_949=m -CONFIG_NLS_CODEPAGE_874=m -CONFIG_NLS_ISO8859_8=m -CONFIG_NLS_CODEPAGE_1250=m -CONFIG_NLS_CODEPAGE_1251=m -CONFIG_NLS_ASCII=m -CONFIG_NLS_ISO8859_1=m -CONFIG_NLS_ISO8859_2=m -CONFIG_NLS_ISO8859_3=m -CONFIG_NLS_ISO8859_4=m -CONFIG_NLS_ISO8859_5=m -CONFIG_NLS_ISO8859_6=m -CONFIG_NLS_ISO8859_7=m -CONFIG_NLS_ISO8859_9=m -CONFIG_NLS_ISO8859_13=m -CONFIG_NLS_ISO8859_14=m -CONFIG_NLS_ISO8859_15=m -CONFIG_NLS_KOI8_R=m -CONFIG_NLS_KOI8_U=m -CONFIG_NLS_MAC_ROMAN=m -CONFIG_NLS_MAC_CELTIC=m -CONFIG_NLS_MAC_CENTEURO=m -CONFIG_NLS_MAC_CROATIAN=m -CONFIG_NLS_MAC_CYRILLIC=m -CONFIG_NLS_MAC_GAELIC=m -CONFIG_NLS_MAC_GREEK=m -CONFIG_NLS_MAC_ICELAND=m -CONFIG_NLS_MAC_INUIT=m -CONFIG_NLS_MAC_ROMANIAN=m -CONFIG_NLS_MAC_TURKISH=m -CONFIG_NLS_UTF8=m -CONFIG_DLM=m -CONFIG_DLM_DEBUG=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -# CONFIG_FRAME_POINTER is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -CONFIG_PAGE_POISONING=y -CONFIG_PAGE_POISONING_NO_SANITY=y -# CONFIG_PAGE_POISONING_ZERO is not set -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KMEMCHECK=y -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -CONFIG_LOCKUP_DETECTOR=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y -# CONFIG_DEBUG_TIMEKEEPING is not set -# CONFIG_TIMER_STATS is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -CONFIG_STACKTRACE=y -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_SPARSE_RCU_POINTER is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -CONFIG_NOTIFIER_ERROR_INJECTION=m -CONFIG_CPU_NOTIFIER_ERROR_INJECT=m -CONFIG_PM_NOTIFIER_ERROR_INJECT=m -# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y -CONFIG_BLK_DEV_IO_TRACE=y -CONFIG_KPROBE_EVENT=y -CONFIG_UPROBE_EVENT=y -CONFIG_BPF_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_MMIOTRACE_TEST is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_TRACE_ENUM_MAP_FILE is not set -CONFIG_TRACING_EVENTS_GPIO=y - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_KPROBES_SANITY_TEST is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_ASYNC_RAID6_TEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_TEST_LKM is not set -CONFIG_TEST_USER_COPY=m -CONFIG_TEST_BPF=m -CONFIG_TEST_FIRMWARE=m -# CONFIG_TEST_UDELAY is not set -CONFIG_MEMTEST=y -CONFIG_TEST_STATIC_KEYS=m -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -CONFIG_EARLY_PRINTK_EFI=y -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_DEBUG_WX=y -CONFIG_DEBUG_SET_MODULE_RONX=y -# CONFIG_DEBUG_NX_TEST is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_TRUSTED_KEYS is not set -CONFIG_ENCRYPTED_KEYS=m -# CONFIG_KEY_DH_OPERATIONS is not set -CONFIG_SECURITY_DMESG_RESTRICT=y -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -CONFIG_SECURITY_NETWORK=y -CONFIG_SECURITY_NETWORK_XFRM=y -CONFIG_SECURITY_PATH=y -# CONFIG_INTEL_TXT is not set -CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HAVE_ARCH_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -CONFIG_SECURITY_SELINUX=y -# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set -# CONFIG_SECURITY_SELINUX_DISABLE is not set -CONFIG_SECURITY_SELINUX_DEVELOP=y -CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 -# CONFIG_SECURITY_SMACK is not set -CONFIG_SECURITY_TOMOYO=y -CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 -CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 -# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set -CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" -CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" -CONFIG_SECURITY_APPARMOR=y -CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1 -CONFIG_SECURITY_APPARMOR_HASH=y -CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y -# CONFIG_SECURITY_LOADPIN is not set -CONFIG_SECURITY_YAMA=y -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set -# CONFIG_DEFAULT_SECURITY_SELINUX is not set -# CONFIG_DEFAULT_SECURITY_TOMOYO is not set -# CONFIG_DEFAULT_SECURITY_APPARMOR is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_XOR_BLOCKS=m -CONFIG_ASYNC_CORE=m -CONFIG_ASYNC_MEMCPY=m -CONFIG_ASYNC_XOR=m -CONFIG_ASYNC_PQ=m -CONFIG_ASYNC_RAID6_RECOV=m -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_FIPS=y -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=m -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=m -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=m -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=m -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_KPP=m -CONFIG_CRYPTO_RSA=y -CONFIG_CRYPTO_DH=m -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -CONFIG_CRYPTO_GF128MUL=m -CONFIG_CRYPTO_NULL=m -CONFIG_CRYPTO_NULL2=y -CONFIG_CRYPTO_PCRYPT=m -CONFIG_CRYPTO_WORKQUEUE=y -CONFIG_CRYPTO_CRYPTD=m -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=m -CONFIG_CRYPTO_TEST=m -CONFIG_CRYPTO_ABLK_HELPER=m -CONFIG_CRYPTO_GLUE_HELPER_X86=m - -# -# Authenticated Encryption with Associated Data -# -CONFIG_CRYPTO_CCM=m -CONFIG_CRYPTO_GCM=m -CONFIG_CRYPTO_CHACHA20POLY1305=m -CONFIG_CRYPTO_SEQIV=m -CONFIG_CRYPTO_ECHAINIV=m - -# -# Block modes -# -CONFIG_CRYPTO_CBC=m -CONFIG_CRYPTO_CTR=m -CONFIG_CRYPTO_CTS=m -CONFIG_CRYPTO_ECB=m -CONFIG_CRYPTO_LRW=m -CONFIG_CRYPTO_PCBC=m -CONFIG_CRYPTO_XTS=m -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -CONFIG_CRYPTO_CMAC=m -CONFIG_CRYPTO_HMAC=m -CONFIG_CRYPTO_XCBC=m -CONFIG_CRYPTO_VMAC=m - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=m -CONFIG_CRYPTO_CRC32C_INTEL=m -CONFIG_CRYPTO_CRC32=m -CONFIG_CRYPTO_CRC32_PCLMUL=m -CONFIG_CRYPTO_CRCT10DIF=y -CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m -CONFIG_CRYPTO_GHASH=m -CONFIG_CRYPTO_POLY1305=m -CONFIG_CRYPTO_POLY1305_X86_64=m -CONFIG_CRYPTO_MD4=m -CONFIG_CRYPTO_MD5=y -CONFIG_CRYPTO_MICHAEL_MIC=m -CONFIG_CRYPTO_RMD128=m -CONFIG_CRYPTO_RMD160=m -CONFIG_CRYPTO_RMD256=m -CONFIG_CRYPTO_RMD320=m -CONFIG_CRYPTO_SHA1=y -CONFIG_CRYPTO_SHA1_SSSE3=m -CONFIG_CRYPTO_SHA256_SSSE3=m -CONFIG_CRYPTO_SHA512_SSSE3=m -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=m -# CONFIG_CRYPTO_SHA3 is not set -CONFIG_CRYPTO_TGR192=m -CONFIG_CRYPTO_WP512=m -CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -CONFIG_CRYPTO_AES_X86_64=m -CONFIG_CRYPTO_AES_NI_INTEL=m -CONFIG_CRYPTO_ANUBIS=m -CONFIG_CRYPTO_ARC4=m -CONFIG_CRYPTO_BLOWFISH=m -CONFIG_CRYPTO_BLOWFISH_COMMON=m -CONFIG_CRYPTO_BLOWFISH_X86_64=m -CONFIG_CRYPTO_CAMELLIA=m -CONFIG_CRYPTO_CAMELLIA_X86_64=m -CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m -CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m -CONFIG_CRYPTO_CAST_COMMON=m -CONFIG_CRYPTO_CAST5=m -CONFIG_CRYPTO_CAST5_AVX_X86_64=m -CONFIG_CRYPTO_CAST6=m -CONFIG_CRYPTO_CAST6_AVX_X86_64=m -CONFIG_CRYPTO_DES=m -CONFIG_CRYPTO_DES3_EDE_X86_64=m -CONFIG_CRYPTO_FCRYPT=m -CONFIG_CRYPTO_KHAZAD=m -CONFIG_CRYPTO_SALSA20=m -CONFIG_CRYPTO_SALSA20_X86_64=m -CONFIG_CRYPTO_CHACHA20=m -CONFIG_CRYPTO_CHACHA20_X86_64=m -CONFIG_CRYPTO_SEED=m -CONFIG_CRYPTO_SERPENT=m -CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m -CONFIG_CRYPTO_SERPENT_AVX_X86_64=m -CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m -CONFIG_CRYPTO_TEA=m -CONFIG_CRYPTO_TWOFISH=m -CONFIG_CRYPTO_TWOFISH_COMMON=m -CONFIG_CRYPTO_TWOFISH_X86_64=m -CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m -CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=m -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -CONFIG_CRYPTO_LZ4=m -CONFIG_CRYPTO_LZ4HC=m - -# -# Random Number Generation -# -CONFIG_CRYPTO_ANSI_CPRNG=m -CONFIG_CRYPTO_DRBG_MENU=m -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=m -CONFIG_CRYPTO_JITTERENTROPY=m -CONFIG_CRYPTO_USER_API=m -CONFIG_CRYPTO_USER_API_HASH=m -CONFIG_CRYPTO_USER_API_SKCIPHER=m -# CONFIG_CRYPTO_USER_API_RNG is not set -CONFIG_CRYPTO_USER_API_AEAD=m -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_PADLOCK=m -CONFIG_CRYPTO_DEV_PADLOCK_AES=m -CONFIG_CRYPTO_DEV_PADLOCK_SHA=m -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=m -CONFIG_CRYPTO_DEV_CCP_CRYPTO=m -CONFIG_CRYPTO_DEV_QAT=m -CONFIG_CRYPTO_DEV_QAT_DH895xCC=m -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_CHELSIO is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -CONFIG_PKCS7_MESSAGE_PARSER=y -# CONFIG_PKCS7_TEST_KEY is not set -CONFIG_SIGNED_PE_FILE_VERIFICATION=y - -# -# Certificates for signature checking -# -CONFIG_MODULE_SIG_KEY="" -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -CONFIG_HAVE_KVM=y -CONFIG_HAVE_KVM_IRQCHIP=y -CONFIG_HAVE_KVM_IRQFD=y -CONFIG_HAVE_KVM_IRQ_ROUTING=y -CONFIG_HAVE_KVM_EVENTFD=y -CONFIG_KVM_MMIO=y -CONFIG_KVM_ASYNC_PF=y -CONFIG_HAVE_KVM_MSI=y -CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y -CONFIG_KVM_VFIO=y -CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y -CONFIG_KVM_COMPAT=y -CONFIG_HAVE_KVM_IRQ_BYPASS=y -CONFIG_VIRTUALIZATION=y -CONFIG_KVM=m -CONFIG_KVM_INTEL=m -CONFIG_KVM_AMD=m -# CONFIG_KVM_MMU_AUDIT is not set -CONFIG_KVM_DEVICE_ASSIGNMENT=y -CONFIG_VHOST_NET=m -CONFIG_VHOST_SCSI=m -CONFIG_VHOST_VSOCK=m -CONFIG_VHOST=m -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_RAID6_PQ=m -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_CRC_CCITT=m -CONFIG_CRC16=m -CONFIG_CRC_T10DIF=y -CONFIG_CRC_ITU_T=m -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -CONFIG_CRC7=m -CONFIG_LIBCRC32C=m -CONFIG_CRC8=m -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_COMPRESS=m -CONFIG_LZ4HC_COMPRESS=m -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_REED_SOLOMON=m -CONFIG_REED_SOLOMON_ENC8=y -CONFIG_REED_SOLOMON_DEC8=y -CONFIG_REED_SOLOMON_DEC16=y -CONFIG_BCH=m -CONFIG_TEXTSEARCH=y -CONFIG_TEXTSEARCH_KMP=m -CONFIG_TEXTSEARCH_BM=m -CONFIG_TEXTSEARCH_FSM=m -CONFIG_BTREE=y -CONFIG_INTERVAL_TREE=y -CONFIG_RADIX_TREE_MULTIORDER=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_CHECK_SIGNATURE=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_LRU_CACHE=m -CONFIG_CLZ_TAB=y -CONFIG_CORDIC=m -# CONFIG_DDR is not set -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_MMIO_FLUSH=y -CONFIG_SBITMAP=y diff --git a/mainboards/aeeon/i11/cpuflash-5.17.0.config b/mainboards/aeeon/i11/cpuflash-5.17.0.config deleted file mode 100644 index 4be858bd..00000000 --- a/mainboards/aeeon/i11/cpuflash-5.17.0.config +++ /dev/null @@ -1,4192 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.17.0-rc1 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -CONFIG_PREEMPT_BUILD=y -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -CONFIG_PREEMPT_COUNT=y -CONFIG_PREEMPTION=y -CONFIG_PREEMPT_DYNAMIC=y -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RCU=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_CLUSTER=y -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -# CONFIG_STRICT_SIGALTSTACK_SIZE is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_ACPI_PFRUT is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_AMD_PSTATE is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_PAGE_SIZE_LESS_THAN_64KB=y -CONFIG_PAGE_SIZE_LESS_THAN_256KB=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y -CONFIG_DYNAMIC_SIGFRAME=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_UNINLINE_SPIN_UNLOCK=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y -# CONFIG_ANON_VMA_NAME is not set - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_NET_EGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -CONFIG_NETFILTER_EGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_FD=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_DEVTMPFS_SAFE is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -CONFIG_NET_VENDOR_ASIX=y -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -CONFIG_NET_VENDOR_ENGLEDER=y -# CONFIG_TSNEP is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -CONFIG_ICE_HWTS=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -CONFIG_NET_VENDOR_VERTEXCOM=y -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CYPRESS_SF is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -CONFIG_SERIAL_8250_PERICOM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set - -# -# Intel pinctrl drivers -# -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set -# end of Intel pinctrl drivers - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_GPIO_SIM is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_MAX77976 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6620 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_NZXT_SMART2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SBRMI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA238 is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# CONFIG_INTEL_MENLOW is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX20086 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTQ2134 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_RTQ6752 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set - -# -# CEC support -# -# CONFIG_MEDIA_CEC_SUPPORT is not set -# end of CEC support - -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DEBUG_MODESET_LOCK is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_XIAOMI is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LETSKETCH is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NINTENDO is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set - -# -# Simple LED drivers -# -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IDXD_COMPAT is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_AMD_PTDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ASUS_TF103C_DOCK is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_SAR_INT1092 is not set -# CONFIG_INTEL_SKL_INT3472 is not set -# CONFIG_INTEL_PMC_CORE is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_ISHTP_ECLITE is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set -# CONFIG_INTEL_VSEC is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_BARCO_P50_GPIO is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -# CONFIG_SIEMENS_SIMATIC_IPC is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_LAN966X is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set - -# -# PHY drivers for Broadcom platforms -# -# CONFIG_BCM_KONA_USB2_PHY is not set -# end of PHY drivers for Broadcom platforms - -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_NETFS_SUPPORT=y -# CONFIG_NETFS_STATS is not set -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -# end of Crypto library routines - -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -# CONFIG_XZ_DEC_MICROLZMA is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Networking Debugging -# -# CONFIG_NET_DEV_REFCNT_TRACKER is not set -# CONFIG_NET_NS_REFCNT_TRACKER is not set -# end of Networking Debugging - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_TABLE_CHECK is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set -CONFIG_DEBUG_PREEMPT=y - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_BUILDTIME_MCOUNT_SORT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_PREEMPT_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_FTRACE_SORT_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y -CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config b/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config deleted file mode 100644 index a99f12df..00000000 --- a/mainboards/aeeon/i11/cpuflash-5.4.0-rc6.config +++ /dev/null @@ -1,3872 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -CONFIG_INITRAMFS_COMPRESSION=".xz" -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set -CONFIG_X86_THERMAL_VECTOR=y - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_DPTF_POWER is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_NETDEV is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -CONFIG_NET_VENDOR_HP=y -# CONFIG_HP100 is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y - -# -# MII PHY device drivers -# -CONFIG_ADIN_PHY=y -CONFIG_AMD_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -CONFIG_FIXED_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -CONFIG_NATIONAL_PHY=y -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -CONFIG_PINCTRL_INTEL=y -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_ICH is not set -# CONFIG_GPIO_LYNXPOINT is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -CONFIG_BACKLIGHT_GENERIC=y -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_DCDBAS is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_DELL_RBU is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_INTEL_INT0002_VGPIO is not set -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_PMC_CORE is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_INTEL_PMC_IPC is not set -# CONFIG_SURFACE_PRO3_BUTTON is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_MLX_PLATFORM is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_PCENGINES_APU2 is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_UACCESS_MCSAFE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -# CONFIG_PAGE_POISONING_NO_SANITY is not set -# CONFIG_PAGE_POISONING_ZERO is not set -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -CONFIG_DEBUG_WX=y -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.4.0.config b/mainboards/aeeon/i11/cpuflash-5.4.0.config deleted file mode 100644 index 36b482e8..00000000 --- a/mainboards/aeeon/i11/cpuflash-5.4.0.config +++ /dev/null @@ -1,4204 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_INITRAMFS_COMPRESSION=".gz" -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -CONFIG_SLAB_FREELIST_RANDOM=y -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_PROFILING=y -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -CONFIG_X86_INTEL_LPSS=y -CONFIG_X86_AMD_PLATFORM_DEVICE=y -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -CONFIG_PARAVIRT_XXL=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -CONFIG_X86_HV_CALLBACK_VECTOR=y -CONFIG_XEN=y -CONFIG_XEN_PV=y -CONFIG_XEN_PV_SMP=y -CONFIG_XEN_DOM0=y -CONFIG_XEN_PVHVM=y -CONFIG_XEN_PVHVM_SMP=y -CONFIG_XEN_512GB=y -CONFIG_XEN_SAVE_RESTORE=y -# CONFIG_XEN_DEBUG_FS is not set -CONFIG_XEN_PVH=y -CONFIG_KVM_GUEST=y -CONFIG_ARCH_CPUIDLE_HALTPOLL=y -CONFIG_PVH=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -# CONFIG_JAILHOUSE_GUEST is not set -# CONFIG_ACRN_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -CONFIG_CALGARY_IOMMU=y -CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -CONFIG_X86_MCE_AMD=y -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set -CONFIG_X86_THERMAL_VECTOR=y - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -CONFIG_MICROCODE_OLD_INTERFACE=y -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_NUMA=y -CONFIG_AMD_NUMA=y -CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NODES_SPAN_OTHER_NODES=y -CONFIG_NUMA_EMU=y -CONFIG_NODES_SHIFT=6 -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -CONFIG_X86_INTEL_MPX=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -CONFIG_CRASH_DUMP=y -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_COMPAT_VDSO is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_USE_PERCPU_NUMA_NODE_ID=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_NUMA=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_HMAT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_DPTF_POWER is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_X86_PM_TIMER=y -CONFIG_SFI=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set -CONFIG_HALTPOLL_CPUIDLE=y -# end of CPU Idle - -CONFIG_INTEL_IDLE=y -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_XEN=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -CONFIG_IA32_EMULATION=y -CONFIG_X86_X32=y -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_HAVE_BOOTMEM_INFO_NODE=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_MEMORY_HOTREMOVE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -CONFIG_MEM_SOFT_DIRTY=y -CONFIG_ZPOOL=y -CONFIG_ZBUD=y -# CONFIG_Z3FOLD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ZONE_DEVICE=y -# CONFIG_DEVICE_PRIVATE is not set -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -CONFIG_XFRM_SUB_POLICY=y -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -CONFIG_NET_FOU=y -CONFIG_NET_FOU_IP_TUNNELS=y -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -CONFIG_TCP_CONG_ADVANCED=y -CONFIG_TCP_CONG_BIC=y -CONFIG_TCP_CONG_CUBIC=y -CONFIG_TCP_CONG_WESTWOOD=y -CONFIG_TCP_CONG_HTCP=y -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -# CONFIG_DEFAULT_BIC is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_HTCP is not set -# CONFIG_DEFAULT_WESTWOOD is not set -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_FOU=y -CONFIG_IPV6_FOU_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETLABEL is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_XEN is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_XEN_PCIDEV_FRONTEND=y -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -# CONFIG_PCI_P2PDMA is not set -CONFIG_PCI_LABEL=y -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -CONFIG_HOTPLUG_PCI_CPCI=y -# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set -# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_SYS_HYPERVISOR=y -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -CONFIG_INTEL_MEI=y -CONFIG_INTEL_MEI_ME=y -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_MDIO=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_E100=y -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -CONFIG_IXGB=y -CONFIG_IXGBE=y -CONFIG_IXGBE_HWMON=y -CONFIG_IXGBEVF=y -CONFIG_I40E=y -CONFIG_IAVF=y -CONFIG_I40EVF=y -CONFIG_ICE=y -CONFIG_FM10K=y -CONFIG_IGC=y -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y - -# -# MII PHY device drivers -# -CONFIG_ADIN_PHY=y -CONFIG_AMD_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -CONFIG_FIXED_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -CONFIG_NATIONAL_PHY=y -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_XEN_NETDEV_FRONTEND is not set -# CONFIG_XEN_NETDEV_BACKEND is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -CONFIG_INPUT_SPARSEKMAP=y -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -# CONFIG_KEYBOARD_APPLESPI is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PSXPAD_SPI is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -CONFIG_PINCTRL_INTEL=y -CONFIG_PINCTRL_BROXTON=y -CONFIG_PINCTRL_CANNONLAKE=y -CONFIG_PINCTRL_CEDARFORK=y -CONFIG_PINCTRL_DENVERTON=y -CONFIG_PINCTRL_GEMINILAKE=y -CONFIG_PINCTRL_ICELAKE=y -CONFIG_PINCTRL_LEWISBURG=y -CONFIG_PINCTRL_SUNRISEPOINT=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -CONFIG_GPIO_ICH=y -CONFIG_GPIO_LYNXPOINT=y -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -CONFIG_GPIO_SCH=y -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_INTEL_MEI_WDT is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set -# CONFIG_XEN_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -CONFIG_LPC_ICH=y -CONFIG_LPC_SCH=y -# CONFIG_INTEL_SOC_PMIC_BXTWC is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# CONFIG_DRM_XEN is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -CONFIG_XEN_FBDEV_FRONTEND=y -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_APU is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_DECODE_MCE=y -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_AMD64 is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# end of Microsoft Hyper-V guest support - -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 -CONFIG_XEN_SCRUB_PAGES_DEFAULT=y -CONFIG_XEN_DEV_EVTCHN=y -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=y -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=y -CONFIG_XEN_GRANT_DEV_ALLOC=y -# CONFIG_XEN_GRANT_DMA_ALLOC is not set -CONFIG_SWIOTLB_XEN=y -CONFIG_XEN_PCIDEV_BACKEND=y -# CONFIG_XEN_PVCALLS_FRONTEND is not set -# CONFIG_XEN_PVCALLS_BACKEND is not set -CONFIG_XEN_PRIVCMD=y -CONFIG_XEN_ACPI_PROCESSOR=y -CONFIG_XEN_MCE_LOG=y -CONFIG_XEN_HAVE_PVMMU=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -CONFIG_XEN_ACPI=y -CONFIG_XEN_SYMS=y -CONFIG_XEN_HAVE_VPMU=y -# end of Xen driver support - -# CONFIG_GREYBUS is not set -CONFIG_STAGING=y -# CONFIG_COMEDI is not set -# CONFIG_FB_SM750 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_STAGING_MEDIA is not set - -# -# Android -# -# end of Android - -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_PI433 is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_USB_WUSB_CBAF is not set -# CONFIG_UWB is not set -# CONFIG_QLGE is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_DCDBAS is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_DELL_RBU is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -CONFIG_INTEL_INT0002_VGPIO=y -CONFIG_INTEL_HID_EVENT=y -CONFIG_INTEL_VBTN=y -CONFIG_INTEL_IPS=y -CONFIG_INTEL_PMC_CORE=y -# CONFIG_IBM_RTL is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_APPLE_GMUX is not set -CONFIG_INTEL_RST=y -CONFIG_INTEL_SMARTCONNECT=y -CONFIG_INTEL_PMC_IPC=y -# CONFIG_SURFACE_PRO3_BUTTON is not set -CONFIG_INTEL_PUNIT_IPC=y -CONFIG_INTEL_TELEMETRY=y -# CONFIG_MLX_PLATFORM is not set -CONFIG_INTEL_TURBO_MAX_3=y -# CONFIG_I2C_MULTI_INSTANTIATE is not set -CONFIG_INTEL_ATOMISP2_PM=y -# CONFIG_PCENGINES_APU2 is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_INTEL_RAPL is not set -# CONFIG_IDLE_INJECT is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -CONFIG_QUOTACTL_COMPAT=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -CONFIG_SECURITY_DMESG_RESTRICT=y -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -CONFIG_SECURITY_NETWORK=y -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_SECURITY_NETWORK_XFRM=y -CONFIG_SECURITY_PATH=y -CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_SECURITY_SELINUX=y -# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set -# CONFIG_SECURITY_SELINUX_DISABLE is not set -CONFIG_SECURITY_SELINUX_DEVELOP=y -CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 -# CONFIG_SECURITY_SMACK is not set -CONFIG_SECURITY_TOMOYO=y -CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 -CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 -# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set -CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" -CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" -# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set -CONFIG_SECURITY_APPARMOR=y -CONFIG_SECURITY_APPARMOR_HASH=y -CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y -# CONFIG_SECURITY_APPARMOR_DEBUG is not set -CONFIG_SECURITY_YAMA=y -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set -# CONFIG_DEFAULT_SECURITY_SELINUX is not set -# CONFIG_DEFAULT_SECURITY_TOMOYO is not set -# CONFIG_DEFAULT_SECURITY_APPARMOR is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_IOMMU_HELPER=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_UACCESS_MCSAFE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -CONFIG_PAGE_POISONING_NO_SANITY=y -# CONFIG_PAGE_POISONING_ZERO is not set -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -CONFIG_MEMTEST=y -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -CONFIG_DEBUG_WX=y -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.4.65.config b/mainboards/aeeon/i11/cpuflash-5.4.65.config deleted file mode 100644 index 974a2702..00000000 --- a/mainboards/aeeon/i11/cpuflash-5.4.65.config +++ /dev/null @@ -1,4212 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.65 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_VERSION_SIGNATURE="" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_INITRAMFS_COMPRESSION=".gz" -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -CONFIG_SLAB_FREELIST_RANDOM=y -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_PROFILING=y -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -CONFIG_X86_INTEL_LPSS=y -CONFIG_X86_AMD_PLATFORM_DEVICE=y -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -CONFIG_PARAVIRT_XXL=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -CONFIG_X86_HV_CALLBACK_VECTOR=y -CONFIG_XEN=y -CONFIG_XEN_PV=y -CONFIG_XEN_PV_SMP=y -CONFIG_XEN_DOM0=y -CONFIG_XEN_PVHVM=y -CONFIG_XEN_PVHVM_SMP=y -CONFIG_XEN_512GB=y -CONFIG_XEN_SAVE_RESTORE=y -# CONFIG_XEN_DEBUG_FS is not set -CONFIG_XEN_PVH=y -CONFIG_KVM_GUEST=y -CONFIG_ARCH_CPUIDLE_HALTPOLL=y -CONFIG_PVH=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -# CONFIG_JAILHOUSE_GUEST is not set -# CONFIG_ACRN_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -CONFIG_CALGARY_IOMMU=y -CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -CONFIG_X86_MCE_AMD=y -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set -CONFIG_X86_THERMAL_VECTOR=y - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -CONFIG_MICROCODE_OLD_INTERFACE=y -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_NUMA=y -CONFIG_AMD_NUMA=y -CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NODES_SPAN_OTHER_NODES=y -CONFIG_NUMA_EMU=y -CONFIG_NODES_SHIFT=6 -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -CONFIG_X86_INTEL_MPX=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -CONFIG_CRASH_DUMP=y -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_COMPAT_VDSO is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_USE_PERCPU_NUMA_NODE_ID=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_NUMA=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_HMAT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_DPTF_POWER is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_X86_PM_TIMER=y -CONFIG_SFI=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set -CONFIG_HALTPOLL_CPUIDLE=y -# end of CPU Idle - -CONFIG_INTEL_IDLE=y -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_XEN=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -CONFIG_IA32_EMULATION=y -CONFIG_X86_X32=y -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_HAVE_BOOTMEM_INFO_NODE=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_MEMORY_HOTREMOVE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -CONFIG_MEM_SOFT_DIRTY=y -CONFIG_ZPOOL=y -CONFIG_ZBUD=y -# CONFIG_Z3FOLD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ZONE_DEVICE=y -# CONFIG_DEVICE_PRIVATE is not set -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -CONFIG_XFRM_SUB_POLICY=y -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -CONFIG_NET_FOU=y -CONFIG_NET_FOU_IP_TUNNELS=y -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -CONFIG_TCP_CONG_ADVANCED=y -CONFIG_TCP_CONG_BIC=y -CONFIG_TCP_CONG_CUBIC=y -CONFIG_TCP_CONG_WESTWOOD=y -CONFIG_TCP_CONG_HTCP=y -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -# CONFIG_DEFAULT_BIC is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_HTCP is not set -# CONFIG_DEFAULT_WESTWOOD is not set -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_FOU=y -CONFIG_IPV6_FOU_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETLABEL is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_XEN is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_XEN_PCIDEV_FRONTEND=y -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -# CONFIG_PCI_P2PDMA is not set -CONFIG_PCI_LABEL=y -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -CONFIG_HOTPLUG_PCI_CPCI=y -# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set -# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_SYS_HYPERVISOR=y -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -CONFIG_INTEL_MEI=y -CONFIG_INTEL_MEI_ME=y -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_MDIO=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_E100=y -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -CONFIG_IXGB=y -CONFIG_IXGBE=y -CONFIG_IXGBE_HWMON=y -CONFIG_IXGBEVF=y -CONFIG_I40E=y -CONFIG_IAVF=y -CONFIG_I40EVF=y -CONFIG_ICE=y -CONFIG_FM10K=y -CONFIG_IGC=y -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y - -# -# MII PHY device drivers -# -CONFIG_ADIN_PHY=y -CONFIG_AMD_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -CONFIG_FIXED_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -CONFIG_NATIONAL_PHY=y -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_XEN_NETDEV_FRONTEND is not set -# CONFIG_XEN_NETDEV_BACKEND is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -CONFIG_INPUT_SPARSEKMAP=y -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -# CONFIG_KEYBOARD_APPLESPI is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PSXPAD_SPI is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -CONFIG_SPI_DYNAMIC=y -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -CONFIG_PINCTRL_INTEL=y -CONFIG_PINCTRL_BROXTON=y -CONFIG_PINCTRL_CANNONLAKE=y -CONFIG_PINCTRL_CEDARFORK=y -CONFIG_PINCTRL_DENVERTON=y -CONFIG_PINCTRL_GEMINILAKE=y -CONFIG_PINCTRL_ICELAKE=y -CONFIG_PINCTRL_LEWISBURG=y -CONFIG_PINCTRL_SUNRISEPOINT=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -CONFIG_GPIO_ICH=y -CONFIG_GPIO_LYNXPOINT=y -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -CONFIG_GPIO_SCH=y -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_INTEL_MEI_WDT is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set -# CONFIG_XEN_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -CONFIG_LPC_ICH=y -CONFIG_LPC_SCH=y -# CONFIG_INTEL_SOC_PMIC_BXTWC is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_UPBOARD_FPGA is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# CONFIG_DRM_XEN is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -CONFIG_XEN_FBDEV_FRONTEND=y -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_APU is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_DECODE_MCE=y -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_AMD64 is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_AM1805 is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# end of Microsoft Hyper-V guest support - -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 -CONFIG_XEN_SCRUB_PAGES_DEFAULT=y -CONFIG_XEN_DEV_EVTCHN=y -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=y -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=y -CONFIG_XEN_GRANT_DEV_ALLOC=y -# CONFIG_XEN_GRANT_DMA_ALLOC is not set -CONFIG_SWIOTLB_XEN=y -CONFIG_XEN_PCIDEV_BACKEND=y -# CONFIG_XEN_PVCALLS_FRONTEND is not set -# CONFIG_XEN_PVCALLS_BACKEND is not set -CONFIG_XEN_PRIVCMD=y -CONFIG_XEN_ACPI_PROCESSOR=y -CONFIG_XEN_MCE_LOG=y -CONFIG_XEN_HAVE_PVMMU=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -CONFIG_XEN_ACPI=y -CONFIG_XEN_SYMS=y -CONFIG_XEN_HAVE_VPMU=y -# end of Xen driver support - -# CONFIG_GREYBUS is not set -CONFIG_STAGING=y -# CONFIG_COMEDI is not set -# CONFIG_FB_SM750 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_STAGING_MEDIA is not set - -# -# Android -# -# end of Android - -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_PI433 is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_USB_WUSB_CBAF is not set -# CONFIG_UWB is not set -# CONFIG_QLGE is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_DCDBAS is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DELL_UART_BACKLIGHT is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -CONFIG_INTEL_INT0002_VGPIO=y -CONFIG_INTEL_HID_EVENT=y -CONFIG_INTEL_VBTN=y -CONFIG_INTEL_IPS=y -CONFIG_INTEL_PMC_CORE=y -# CONFIG_IBM_RTL is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_APPLE_GMUX is not set -CONFIG_INTEL_RST=y -CONFIG_INTEL_SMARTCONNECT=y -CONFIG_INTEL_PMC_IPC=y -# CONFIG_SURFACE_PRO3_BUTTON is not set -CONFIG_INTEL_PUNIT_IPC=y -CONFIG_INTEL_TELEMETRY=y -CONFIG_INTEL_TURBO_MAX_3=y -# CONFIG_I2C_MULTI_INSTANTIATE is not set -CONFIG_INTEL_ATOMISP2_PM=y -# CONFIG_PCENGINES_APU2 is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -CONFIG_UPBOARD_LEGACY=y -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_INTEL_RAPL is not set -# CONFIG_IDLE_INJECT is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# Ubuntu Supplied Third-Party Device Drivers -# -# CONFIG_HIO is not set -# end of Ubuntu Supplied Third-Party Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -CONFIG_QUOTACTL_COMPAT=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set -# CONFIG_SHIFT_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -# CONFIG_AUFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -CONFIG_SECURITY_DMESG_RESTRICT=y -# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -CONFIG_SECURITY_NETWORK=y -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_SECURITY_NETWORK_XFRM=y -CONFIG_SECURITY_PATH=y -CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_SECURITY_SELINUX=y -# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set -# CONFIG_SECURITY_SELINUX_DISABLE is not set -CONFIG_SECURITY_SELINUX_DEVELOP=y -CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 -# CONFIG_SECURITY_SMACK is not set -CONFIG_SECURITY_TOMOYO=y -CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 -CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 -# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set -CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" -CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" -# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set -CONFIG_SECURITY_APPARMOR=y -CONFIG_SECURITY_APPARMOR_HASH=y -CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y -# CONFIG_SECURITY_APPARMOR_DEBUG is not set -CONFIG_SECURITY_YAMA=y -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set -# CONFIG_DEFAULT_SECURITY_SELINUX is not set -# CONFIG_DEFAULT_SECURITY_TOMOYO is not set -# CONFIG_DEFAULT_SECURITY_APPARMOR is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_IOMMU_HELPER=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_UACCESS_MCSAFE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -CONFIG_PAGE_POISONING_NO_SANITY=y -# CONFIG_PAGE_POISONING_ZERO is not set -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -CONFIG_MEMTEST=y -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -CONFIG_DEBUG_WX=y -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-5.6.0.config b/mainboards/aeeon/i11/cpuflash-5.6.0.config deleted file mode 100644 index 4037658e..00000000 --- a/mainboards/aeeon/i11/cpuflash-5.6.0.config +++ /dev/null @@ -1,4114 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.15.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SBRMI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# CONFIG_INTEL_MENLOW is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTQ2134 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_RTQ6752 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IDXD_COMPAT is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_AMD_PTDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config b/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config deleted file mode 100644 index 6e74223e..00000000 --- a/mainboards/aeeon/i11/cpuflash-ubuntu-bionic-up.config +++ /dev/null @@ -1,4212 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.65 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_VERSION_SIGNATURE="" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_NUMA_BALANCING=y -# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -CONFIG_USER_NS=y -CONFIG_PID_NS=y -CONFIG_NET_NS=y -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_INITRAMFS_COMPRESSION=".gz" -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -CONFIG_SLAB_FREELIST_RANDOM=y -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_PROFILING=y -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -CONFIG_X86_INTEL_LPSS=y -CONFIG_X86_AMD_PLATFORM_DEVICE=y -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -CONFIG_PARAVIRT_XXL=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -CONFIG_X86_HV_CALLBACK_VECTOR=y -CONFIG_XEN=y -CONFIG_XEN_PV=y -CONFIG_XEN_PV_SMP=y -CONFIG_XEN_DOM0=y -CONFIG_XEN_PVHVM=y -CONFIG_XEN_PVHVM_SMP=y -CONFIG_XEN_512GB=y -CONFIG_XEN_SAVE_RESTORE=y -# CONFIG_XEN_DEBUG_FS is not set -CONFIG_XEN_PVH=y -CONFIG_KVM_GUEST=y -CONFIG_ARCH_CPUIDLE_HALTPOLL=y -CONFIG_PVH=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -# CONFIG_JAILHOUSE_GUEST is not set -# CONFIG_ACRN_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -CONFIG_CALGARY_IOMMU=y -CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -CONFIG_X86_MCE_AMD=y -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set -CONFIG_X86_THERMAL_VECTOR=y - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -CONFIG_MICROCODE_OLD_INTERFACE=y -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_NUMA=y -CONFIG_AMD_NUMA=y -CONFIG_X86_64_ACPI_NUMA=y -CONFIG_NODES_SPAN_OTHER_NODES=y -CONFIG_NUMA_EMU=y -CONFIG_NODES_SHIFT=6 -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -CONFIG_X86_INTEL_MPX=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -CONFIG_CRASH_DUMP=y -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_COMPAT_VDSO is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0" -CONFIG_CMDLINE_OVERRIDE=y -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_USE_PERCPU_NUMA_NODE_ID=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_NUMA=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_HMAT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_DPTF_POWER is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_X86_PM_TIMER=y -CONFIG_SFI=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set -CONFIG_HALTPOLL_CPUIDLE=y -# end of CPU Idle - -CONFIG_INTEL_IDLE=y -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_XEN=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -CONFIG_IA32_EMULATION=y -CONFIG_X86_X32=y -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -CONFIG_DMI_SYSFS=y -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -CONFIG_64BIT_TIME=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_NEED_MULTIPLE_NODES=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_HAVE_BOOTMEM_INFO_NODE=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_MEMORY_HOTREMOVE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -CONFIG_MEM_SOFT_DIRTY=y -CONFIG_ZPOOL=y -CONFIG_ZBUD=y -# CONFIG_Z3FOLD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ZONE_DEVICE=y -# CONFIG_DEVICE_PRIVATE is not set -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -CONFIG_XFRM_SUB_POLICY=y -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -CONFIG_IP_FIB_TRIE_STATS=y -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -CONFIG_IP_MROUTE_MULTIPLE_TABLES=y -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -CONFIG_NET_FOU=y -CONFIG_NET_FOU_IP_TUNNELS=y -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -CONFIG_TCP_CONG_ADVANCED=y -CONFIG_TCP_CONG_BIC=y -CONFIG_TCP_CONG_CUBIC=y -CONFIG_TCP_CONG_WESTWOOD=y -CONFIG_TCP_CONG_HTCP=y -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -# CONFIG_DEFAULT_BIC is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_HTCP is not set -# CONFIG_DEFAULT_WESTWOOD is not set -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_FOU=y -CONFIG_IPV6_FOU_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETLABEL is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_XEN is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_XEN_PCIDEV_FRONTEND=y -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -# CONFIG_PCI_P2PDMA is not set -CONFIG_PCI_LABEL=y -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -CONFIG_HOTPLUG_PCI_CPCI=y -# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set -# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_SYS_HYPERVISOR=y -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -CONFIG_INTEL_MEI=y -CONFIG_INTEL_MEI_ME=y -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_MDIO=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_E100=y -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -CONFIG_IXGB=y -CONFIG_IXGBE=y -CONFIG_IXGBE_HWMON=y -CONFIG_IXGBEVF=y -CONFIG_I40E=y -CONFIG_IAVF=y -CONFIG_I40EVF=y -CONFIG_ICE=y -CONFIG_FM10K=y -CONFIG_IGC=y -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y - -# -# MII PHY device drivers -# -CONFIG_ADIN_PHY=y -CONFIG_AMD_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -CONFIG_FIXED_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -CONFIG_NATIONAL_PHY=y -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_XEN_NETDEV_FRONTEND is not set -# CONFIG_XEN_NETDEV_BACKEND is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -CONFIG_INPUT_SPARSEKMAP=y -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -# CONFIG_KEYBOARD_APPLESPI is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PSXPAD_SPI is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -CONFIG_HVC_DRIVER=y -CONFIG_HVC_IRQ=y -CONFIG_HVC_XEN=y -CONFIG_HVC_XEN_FRONTEND=y -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -CONFIG_SPI_DYNAMIC=y -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -CONFIG_PINCTRL_INTEL=y -CONFIG_PINCTRL_BROXTON=y -CONFIG_PINCTRL_CANNONLAKE=y -CONFIG_PINCTRL_CEDARFORK=y -CONFIG_PINCTRL_DENVERTON=y -CONFIG_PINCTRL_GEMINILAKE=y -CONFIG_PINCTRL_ICELAKE=y -CONFIG_PINCTRL_LEWISBURG=y -CONFIG_PINCTRL_SUNRISEPOINT=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -CONFIG_GPIO_ICH=y -CONFIG_GPIO_LYNXPOINT=y -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -CONFIG_GPIO_SCH=y -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_INTEL_MEI_WDT is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set -# CONFIG_XEN_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -CONFIG_LPC_ICH=y -CONFIG_LPC_SCH=y -# CONFIG_INTEL_SOC_PMIC_BXTWC is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_UPBOARD_FPGA is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# CONFIG_DRM_XEN is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -CONFIG_XEN_FBDEV_FRONTEND=y -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_GENERIC is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_PM8941_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_APU is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_DECODE_MCE=y -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_AMD64 is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_AM1805 is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# end of Microsoft Hyper-V guest support - -# -# Xen driver support -# -CONFIG_XEN_BALLOON=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y -CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 -CONFIG_XEN_SCRUB_PAGES_DEFAULT=y -CONFIG_XEN_DEV_EVTCHN=y -CONFIG_XEN_BACKEND=y -CONFIG_XENFS=y -CONFIG_XEN_COMPAT_XENFS=y -CONFIG_XEN_SYS_HYPERVISOR=y -CONFIG_XEN_XENBUS_FRONTEND=y -CONFIG_XEN_GNTDEV=y -CONFIG_XEN_GRANT_DEV_ALLOC=y -# CONFIG_XEN_GRANT_DMA_ALLOC is not set -CONFIG_SWIOTLB_XEN=y -CONFIG_XEN_PCIDEV_BACKEND=y -# CONFIG_XEN_PVCALLS_FRONTEND is not set -# CONFIG_XEN_PVCALLS_BACKEND is not set -CONFIG_XEN_PRIVCMD=y -CONFIG_XEN_ACPI_PROCESSOR=y -CONFIG_XEN_MCE_LOG=y -CONFIG_XEN_HAVE_PVMMU=y -CONFIG_XEN_EFI=y -CONFIG_XEN_AUTO_XLATE=y -CONFIG_XEN_ACPI=y -CONFIG_XEN_SYMS=y -CONFIG_XEN_HAVE_VPMU=y -# end of Xen driver support - -# CONFIG_GREYBUS is not set -CONFIG_STAGING=y -# CONFIG_COMEDI is not set -# CONFIG_FB_SM750 is not set - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_STAGING_MEDIA is not set - -# -# Android -# -# end of Android - -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_PI433 is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_USB_WUSB_CBAF is not set -# CONFIG_UWB is not set -# CONFIG_QLGE is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_DCDBAS is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DELL_UART_BACKLIGHT is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -CONFIG_INTEL_INT0002_VGPIO=y -CONFIG_INTEL_HID_EVENT=y -CONFIG_INTEL_VBTN=y -CONFIG_INTEL_IPS=y -CONFIG_INTEL_PMC_CORE=y -# CONFIG_IBM_RTL is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_APPLE_GMUX is not set -CONFIG_INTEL_RST=y -CONFIG_INTEL_SMARTCONNECT=y -CONFIG_INTEL_PMC_IPC=y -# CONFIG_SURFACE_PRO3_BUTTON is not set -CONFIG_INTEL_PUNIT_IPC=y -CONFIG_INTEL_TELEMETRY=y -CONFIG_INTEL_TURBO_MAX_3=y -# CONFIG_I2C_MULTI_INSTANTIATE is not set -CONFIG_INTEL_ATOMISP2_PM=y -# CONFIG_PCENGINES_APU2 is not set - -# -# Intel Speed Select Technology interface support -# -# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set -# end of Intel Speed Select Technology interface support - -CONFIG_UPBOARD_LEGACY=y -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_INTEL_RAPL is not set -# CONFIG_IDLE_INJECT is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# Ubuntu Supplied Third-Party Device Drivers -# -# CONFIG_HIO is not set -# end of Ubuntu Supplied Third-Party Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -CONFIG_QUOTACTL_COMPAT=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set -# CONFIG_SHIFT_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -# CONFIG_AUFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -CONFIG_SECURITY_DMESG_RESTRICT=y -# CONFIG_SECURITY_PERF_EVENTS_RESTRICT is not set -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -CONFIG_SECURITY_NETWORK=y -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_SECURITY_NETWORK_XFRM=y -CONFIG_SECURITY_PATH=y -CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_SECURITY_SELINUX=y -# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set -# CONFIG_SECURITY_SELINUX_DISABLE is not set -CONFIG_SECURITY_SELINUX_DEVELOP=y -CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 -# CONFIG_SECURITY_SMACK is not set -CONFIG_SECURITY_TOMOYO=y -CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 -CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 -# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set -CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" -CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" -# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set -CONFIG_SECURITY_APPARMOR=y -CONFIG_SECURITY_APPARMOR_HASH=y -CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y -# CONFIG_SECURITY_APPARMOR_DEBUG is not set -CONFIG_SECURITY_YAMA=y -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set -# CONFIG_DEFAULT_SECURITY_SELINUX is not set -# CONFIG_DEFAULT_SECURITY_TOMOYO is not set -# CONFIG_DEFAULT_SECURITY_APPARMOR is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_IOMMU_HELPER=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_UACCESS_MCSAFE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -CONFIG_PAGE_POISONING_NO_SANITY=y -# CONFIG_PAGE_POISONING_ZERO is not set -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -CONFIG_SCHED_STACK_END_CHECK=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_STACK_TRACER=y -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_FTRACE_MCOUNT_RECORD=y -# CONFIG_FTRACE_STARTUP_TEST is not set -CONFIG_MMIOTRACE=y -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -CONFIG_MEMTEST=y -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -CONFIG_IO_STRICT_DEVMEM=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -CONFIG_X86_PTDUMP_CORE=y -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -CONFIG_DEBUG_WX=y -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/cpuflash.config b/mainboards/aeeon/i11/cpuflash.config deleted file mode 100644 index 4037658e..00000000 --- a/mainboards/aeeon/i11/cpuflash.config +++ /dev/null @@ -1,4114 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.15.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -CONFIG_AUDIT=y -CONFIG_HAVE_ARCH_AUDITSYSCALL=y -CONFIG_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y -CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set -# CONFIG_SCHED_CORE is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RUDE_RCU=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -# CONFIG_CGROUP_HUGETLB is not set -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -# CONFIG_UTS_NS is not set -# CONFIG_TIME_NS is not set -# CONFIG_IPC_NS is not set -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -# CONFIG_NET_NS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_HAVE_ARCH_USERFAULTFD_WP=y -CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -CONFIG_X86_MCE=y -# CONFIG_X86_MCELOG_LEGACY is not set -CONFIG_X86_MCE_INTEL=y -# CONFIG_X86_MCE_AMD is not set -CONFIG_X86_MCE_THRESHOLD=y -# CONFIG_X86_MCE_INJECT is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -# CONFIG_MICROCODE_AMD is not set -# CONFIG_MICROCODE_OLD_INTERFACE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -# CONFIG_ARCH_MEMORY_PROBE is not set -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_UMIP=y -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0 earlyprintk=pciserial,force,1:0.0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_VIDEO is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_MEMORY=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -# CONFIG_ACPI_APEI_EINJ is not set -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_DPTF is not set -CONFIG_ACPI_EXTLOG=y -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -CONFIG_ACPI_PRMT=y - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG=y -CONFIG_MEMORY_HOTPLUG_SPARSE=y -# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -# CONFIG_MEMORY_HOTREMOVE is not set -CONFIG_MHP_MEMMAP_ON_MEMORY=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y -CONFIG_NET_INGRESS=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -CONFIG_XFRM_MIGRATE=y -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -CONFIG_INET_DIAG_DESTROY=y -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -CONFIG_IPV6_ROUTER_PREF=y -CONFIG_IPV6_ROUTE_INFO=y -CONFIG_IPV6_OPTIMISTIC_DAD=y -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -CONFIG_IPV6_MIP6=y -# CONFIG_IPV6_ILA is not set -CONFIG_INET6_TUNNEL=y -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -CONFIG_IPV6_SIT_6RD=y -CONFIG_IPV6_NDISC_NODETYPE=y -CONFIG_IPV6_TUNNEL=y -CONFIG_IPV6_MULTIPLE_TABLES=y -CONFIG_IPV6_SUBTREES=y -CONFIG_IPV6_MROUTE=y -CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y -CONFIG_IPV6_PIMSM_V2=y -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -CONFIG_NETWORK_SECMARK=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -CONFIG_NETFILTER=y -CONFIG_NETFILTER_ADVANCED=y - -# -# Core Netfilter Configuration -# -CONFIG_NETFILTER_INGRESS=y -# CONFIG_NETFILTER_NETLINK_ACCT is not set -# CONFIG_NETFILTER_NETLINK_QUEUE is not set -# CONFIG_NETFILTER_NETLINK_LOG is not set -# CONFIG_NETFILTER_NETLINK_OSF is not set -# CONFIG_NF_CONNTRACK is not set -# CONFIG_NF_LOG_SYSLOG is not set -# CONFIG_NF_TABLES is not set -# CONFIG_NETFILTER_XTABLES is not set -# end of Core Netfilter Configuration - -# CONFIG_IP_SET is not set -# CONFIG_IP_VS is not set - -# -# IP: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV4 is not set -# CONFIG_NF_TPROXY_IPV4 is not set -# CONFIG_NF_DUP_IPV4 is not set -# CONFIG_NF_LOG_ARP is not set -# CONFIG_NF_LOG_IPV4 is not set -# CONFIG_NF_REJECT_IPV4 is not set -# CONFIG_IP_NF_IPTABLES is not set -# CONFIG_IP_NF_ARPTABLES is not set -# end of IP: Netfilter Configuration - -# -# IPv6: Netfilter Configuration -# -# CONFIG_NF_SOCKET_IPV6 is not set -# CONFIG_NF_TPROXY_IPV6 is not set -# CONFIG_NF_DUP_IPV6 is not set -# CONFIG_NF_REJECT_IPV6 is not set -# CONFIG_NF_LOG_IPV6 is not set -# CONFIG_IP6_NF_IPTABLES is not set -# end of IPv6: Netfilter Configuration - -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -CONFIG_FIB_RULES=y -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_NET_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -CONFIG_HOTPLUG_PCI_PCIE=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -CONFIG_PCIE_DPC=y -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_EDR is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -CONFIG_PCI_REALLOC_ENABLE_AUTO=y -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_PF_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -CONFIG_PCI_IOV=y -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -CONFIG_AUXILIARY_BUS=y -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_X86=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_BCM_VK is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -CONFIG_E1000E_HWTS=y -CONFIG_IGB=y -CONFIG_IGB_HWMON=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -CONFIG_I40E=y -# CONFIG_I40EVF is not set -CONFIG_ICE=y -# CONFIG_FM10K is not set -CONFIG_IGC=y -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_LED_TRIGGER_PHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -CONFIG_ADIN_PHY=y -CONFIG_AQUANTIA_PHY=y -CONFIG_AX88796B_PHY=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM54140_PHY is not set -CONFIG_BCM7XXX_PHY=y -# CONFIG_BCM84881_PHY is not set -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_CICADA_PHY=y -CONFIG_CORTINA_PHY=y -CONFIG_DAVICOM_PHY=y -CONFIG_ICPLUS_PHY=y -CONFIG_LXT_PHY=y -CONFIG_INTEL_XWAY_PHY=y -CONFIG_LSI_ET1011C_PHY=y -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -CONFIG_MICROCHIP_T1_PHY=y -CONFIG_MICROSEMI_PHY=y -# CONFIG_MOTORCOMM_PHY is not set -CONFIG_NATIONAL_PHY=y -# CONFIG_NXP_C45_TJA11XX_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -CONFIG_QSEMI_PHY=y -CONFIG_REALTEK_PHY=y -CONFIG_RENESAS_PHY=y -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -CONFIG_STE10XP=y -CONFIG_TERANETICS_PHY=y -CONFIG_DP83822_PHY=y -CONFIG_DP83TC811_PHY=y -CONFIG_DP83848_PHY=y -CONFIG_DP83867_PHY=y -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -CONFIG_XILINX_GMII2RGMII=y -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BCM_UNIMAC=y -CONFIG_MDIO_CAVIUM=y -CONFIG_MDIO_GPIO=y -# CONFIG_MDIO_MVUSB is not set -CONFIG_MDIO_MSCC_MIIM=y -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_USB_RTL8153_ECM is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -CONFIG_INPUT_MOUSEDEV=y -CONFIG_INPUT_MOUSEDEV_PSAUX=y -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -CONFIG_MOUSE_PS2_ELANTECH=y -CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y -CONFIG_MOUSE_PS2_SENTELIC=y -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -# CONFIG_JOYSTICK_QWIIC is not set -# CONFIG_JOYSTICK_FSIA6B is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_ILITEK is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MSG2638 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_IQS626A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -CONFIG_SERIAL_8250_FINTEK=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_VIA=y -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -CONFIG_HPET=y -CONFIG_HPET_MMAP=y -CONFIG_HPET_MMAP_DEFAULT=y -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# CONFIG_XILLYUSB is not set -# CONFIG_RANDOM_TRUST_CPU is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_BAYTRAIL=y -CONFIG_PINCTRL_CHERRYVIEW=y -# CONFIG_PINCTRL_LYNXPOINT is not set -CONFIG_PINCTRL_INTEL=y -# CONFIG_PINCTRL_ALDERLAKE is not set -CONFIG_PINCTRL_BROXTON=y -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_CEDARFORK is not set -# CONFIG_PINCTRL_DENVERTON is not set -# CONFIG_PINCTRL_ELKHARTLAKE is not set -# CONFIG_PINCTRL_EMMITSBURG is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_ICELAKE is not set -# CONFIG_PINCTRL_JASPERLAKE is not set -# CONFIG_PINCTRL_LAKEFIELD is not set -# CONFIG_PINCTRL_LEWISBURG is not set -CONFIG_PINCTRL_SUNRISEPOINT=y -# CONFIG_PINCTRL_TIGERLAKE is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_VX855 is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# Port-mapped I/O GPIO drivers -# -# CONFIG_GPIO_F7188X is not set -# CONFIG_GPIO_IT87 is not set -# CONFIG_GPIO_SCH311X is not set -# CONFIG_GPIO_WINBOND is not set -# CONFIG_GPIO_WS16C48 is not set -# end of Port-mapped I/O GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_AMD8111 is not set -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_ML_IOH is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_BATTERY_GOLDFISH is not set -# CONFIG_BATTERY_RT5033 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SBRMI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHT4x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_FAIR_SHARE=y -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_DEVFREQ_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -CONFIG_X86_THERMAL_VECTOR=y -CONFIG_X86_PKG_TEMP_THERMAL=y -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_INTEL_TCC_COOLING is not set -# CONFIG_INTEL_MENLOW is not set -# end of Intel thermal drivers - -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_TQMX86_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMC_BXT is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTQ2134 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_RTQ6752 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -CONFIG_AGP_SIS=y -CONFIG_AGP_VIA=y -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -CONFIG_VGA_SWITCHEROO=y -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_INTEL is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_VIA is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -CONFIG_BACKLIGHT_CLASS_DEVICE=y -# CONFIG_BACKLIGHT_KTD253 is not set -# CONFIG_BACKLIGHT_PWM is not set -# CONFIG_BACKLIGHT_APPLE is not set -# CONFIG_BACKLIGHT_QCOM_WLED is not set -# CONFIG_BACKLIGHT_SAHARA is not set -# CONFIG_BACKLIGHT_ADP8860 is not set -# CONFIG_BACKLIGHT_ADP8870 is not set -# CONFIG_BACKLIGHT_LM3630A is not set -# CONFIG_BACKLIGHT_LM3639 is not set -# CONFIG_BACKLIGHT_LP855X is not set -# CONFIG_BACKLIGHT_GPIO is not set -# CONFIG_BACKLIGHT_LV5207LP is not set -# CONFIG_BACKLIGHT_BD6107 is not set -# CONFIG_BACKLIGHT_ARCXCNN is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -CONFIG_HID_BATTERY_STRENGTH=y -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CP2112 is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_FT260 is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_ACPI is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -CONFIG_INTEL_ISH_HID=y -# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set -# end of Intel ISH HID support - -# -# AMD SFH HID Support -# -# CONFIG_AMD_SFH_HID is not set -# end of AMD SFH HID Support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -# CONFIG_USB_SERIAL_FTDI_SIO is not set -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_XR is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -CONFIG_ACCESSIBILITY=y -CONFIG_A11Y_BRAILLE_CONSOLE=y - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -# CONFIG_EDAC_GHES is not set -# CONFIG_EDAC_E752X is not set -# CONFIG_EDAC_I82975X is not set -# CONFIG_EDAC_I3000 is not set -# CONFIG_EDAC_I3200 is not set -# CONFIG_EDAC_IE31200 is not set -# CONFIG_EDAC_X38 is not set -# CONFIG_EDAC_I5400 is not set -# CONFIG_EDAC_I7CORE is not set -# CONFIG_EDAC_I5000 is not set -# CONFIG_EDAC_I5100 is not set -# CONFIG_EDAC_I7300 is not set -# CONFIG_EDAC_SBRIDGE is not set -# CONFIG_EDAC_SKX is not set -# CONFIG_EDAC_I10NM is not set -# CONFIG_EDAC_PND2 is not set -# CONFIG_EDAC_IGEN6 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IDXD_COMPAT is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_PLX_DMA is not set -# CONFIG_AMD_PTDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_INTEL_LDMA is not set - -# -# DMA Clients -# -CONFIG_ASYNC_TX_DMA=y -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACPI_WMI is not set -# CONFIG_ACERHDF is not set -# CONFIG_ACER_WIRELESS is not set -# CONFIG_AMD_PMC is not set -# CONFIG_ADV_SWBUTTON is not set -# CONFIG_APPLE_GMUX is not set -# CONFIG_ASUS_LAPTOP is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_EEEPC_LAPTOP is not set -# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set -# CONFIG_FUJITSU_LAPTOP is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_WIRELESS_HOTKEY is not set -# CONFIG_IBM_RTL is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_THINKPAD_ACPI is not set -# CONFIG_X86_PLATFORM_DRIVERS_INTEL is not set -# CONFIG_PCENGINES_APU2 is not set -# CONFIG_SAMSUNG_LAPTOP is not set -# CONFIG_SAMSUNG_Q10 is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_ACPI_CMPC is not set -# CONFIG_PANASONIC_LAPTOP is not set -# CONFIG_SYSTEM76_ACPI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_SCU_PCI is not set -# CONFIG_INTEL_SCU_PLATFORM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -# CONFIG_SURFACE_PLATFORMS is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -# CONFIG_EXTCON is not set -CONFIG_MEMORY=y -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_DWC is not set -# CONFIG_PWM_LPSS_PCI is not set -# CONFIG_PWM_LPSS_PLATFORM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -CONFIG_POWERCAP=y -# CONFIG_IDLE_INJECT is not set -# CONFIG_DTPM is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_RAS_CEC is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_EXPORTFS_BLOCK_OPS=y -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y -# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_PSTORE=y -CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 -CONFIG_PSTORE_DEFLATE_COMPRESS=y -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -CONFIG_PSTORE_COMPRESS=y -CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y -CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_FTRACE is not set -# CONFIG_PSTORE_RAM is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -CONFIG_HARDENED_USERCOPY=y -CONFIG_HARDENED_USERCOPY_FALLBACK=y -# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set -# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -CONFIG_CRYPTO_DEV_CCP=y -CONFIG_CRYPTO_DEV_CCP_DD=y -CONFIG_CRYPTO_DEV_SP_CCP=y -CONFIG_CRYPTO_DEV_CCP_CRYPTO=y -CONFIG_CRYPTO_DEV_SP_PSP=y -# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -CONFIG_PLDMFW=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DYNAMIC_DEBUG=y -CONFIG_DYNAMIC_DEBUG_CORE=y -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -CONFIG_PAGE_EXTENSION=y -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_PAGE_POISONING=y -# CONFIG_DEBUG_PAGE_REF is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -CONFIG_SCHED_STACK_END_CHECK=y -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -CONFIG_DEBUG_MEMORY_INIT=y -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -CONFIG_HARDLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -CONFIG_SCHED_INFO=y -CONFIG_SCHEDSTATS=y -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -CONFIG_DEBUG_LIST=y -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACER_MAX_TRACE=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_BOOTTIME_TRACING is not set -CONFIG_FUNCTION_TRACER=y -CONFIG_FUNCTION_GRAPH_TRACER=y -CONFIG_DYNAMIC_FTRACE=y -CONFIG_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y -# CONFIG_FUNCTION_PROFILER is not set -CONFIG_STACK_TRACER=y -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_OSNOISE_TRACER is not set -# CONFIG_TIMERLAT_TRACER is not set -CONFIG_MMIOTRACE=y -CONFIG_FTRACE_SYSCALLS=y -CONFIG_TRACER_SNAPSHOT=y -# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -CONFIG_UPROBE_EVENTS=y -CONFIG_BPF_EVENTS=y -CONFIG_DYNAMIC_EVENTS=y -CONFIG_PROBE_EVENTS=y -CONFIG_FTRACE_MCOUNT_RECORD=y -CONFIG_FTRACE_MCOUNT_USE_CC=y -# CONFIG_SYNTH_EVENTS is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACE_EVENT_INJECT is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -# CONFIG_FTRACE_RECORD_RECURSION is not set -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/flash.config b/mainboards/aeeon/i11/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/aeeon/i11/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/i11/sshd.config b/mainboards/aeeon/i11/sshd.config deleted file mode 100644 index 6f0aa188..00000000 --- a/mainboards/aeeon/i11/sshd.config +++ /dev/null @@ -1,2718 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From 85b277da4b1f59c9101117e4192b02d8fe6fee60 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 098/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/aeeon/upxtreme/.gitignore | 6 - mainboards/aeeon/upxtreme/Makefile | 271 -- mainboards/aeeon/upxtreme/class_key | 27 - mainboards/aeeon/upxtreme/class_key.pub | 1 - mainboards/aeeon/upxtreme/classhostkey | 27 - mainboards/aeeon/upxtreme/classhostkey.pub | 1 - mainboards/aeeon/upxtreme/cpu.config | 2978 -------------------- mainboards/aeeon/upxtreme/cpuflash.config | 2163 -------------- mainboards/aeeon/upxtreme/flash.config | 2080 -------------- mainboards/aeeon/upxtreme/sshd.config | 2718 ------------------ 10 files changed, 10272 deletions(-) delete mode 100644 mainboards/aeeon/upxtreme/.gitignore delete mode 100644 mainboards/aeeon/upxtreme/Makefile delete mode 100644 mainboards/aeeon/upxtreme/class_key delete mode 100644 mainboards/aeeon/upxtreme/class_key.pub delete mode 100644 mainboards/aeeon/upxtreme/classhostkey delete mode 100644 mainboards/aeeon/upxtreme/classhostkey.pub delete mode 100644 mainboards/aeeon/upxtreme/cpu.config delete mode 100644 mainboards/aeeon/upxtreme/cpuflash.config delete mode 100644 mainboards/aeeon/upxtreme/flash.config delete mode 100644 mainboards/aeeon/upxtreme/sshd.config diff --git a/mainboards/aeeon/upxtreme/.gitignore b/mainboards/aeeon/upxtreme/.gitignore deleted file mode 100644 index 06162ec4..00000000 --- a/mainboards/aeeon/upxtreme/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.cpio -linux -*.gz -*kernel -pxelinux.cfg - diff --git a/mainboards/aeeon/upxtreme/Makefile b/mainboards/aeeon/upxtreme/Makefile deleted file mode 100644 index c3118859..00000000 --- a/mainboards/aeeon/upxtreme/Makefile +++ /dev/null @@ -1,271 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell cpuflashkernel \ - save $@ - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: image.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -build=bb -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/aeeon/upxtreme/class_key b/mainboards/aeeon/upxtreme/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/aeeon/upxtreme/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/aeeon/upxtreme/class_key.pub b/mainboards/aeeon/upxtreme/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/aeeon/upxtreme/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/aeeon/upxtreme/classhostkey b/mainboards/aeeon/upxtreme/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/aeeon/upxtreme/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/aeeon/upxtreme/classhostkey.pub b/mainboards/aeeon/upxtreme/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/aeeon/upxtreme/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/aeeon/upxtreme/cpu.config b/mainboards/aeeon/upxtreme/cpu.config deleted file mode 100644 index cf830d38..00000000 --- a/mainboards/aeeon/upxtreme/cpu.config +++ /dev/null @@ -1,2978 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp console=tty0 earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=y -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VGASTATE=y - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PLATFORM is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_TIFM_SD is not set -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/cpuflash.config b/mainboards/aeeon/upxtreme/cpuflash.config deleted file mode 100644 index bd979c52..00000000 --- a/mainboards/aeeon/upxtreme/cpuflash.config +++ /dev/null @@ -1,2163 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.15.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y - -# -# BPF subsystem -# -# CONFIG_BPF_SYSCALL is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_RD_ZSTD=y -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_KCMP is not set -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_NR_GPIO=1024 -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_PERF_EVENTS_AMD_UNCORE=y -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_X86_SGX is not set -# CONFIG_EFI is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -# CONFIG_ACPI_FPDT is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_ACPI_DPTF is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_GENERIC_ENTRY=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_ARCH_WANTS_NO_INSTR=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_ARCH_SUPPORTS_LTO_CLANG=y -CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y -# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_HAVE_PREEMPT_DYNAMIC=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_HAS_ELFCORE_COMPAT=y -CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set -CONFIG_ZONE_DMA32=y -# CONFIG_PERCPU_STATS is not set - -# -# GUP_TEST needs to have DEBUG_FS enabled -# -CONFIG_ARCH_HAS_PTE_SPECIAL=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_NET_SELFTESTS=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_CXL_BUS is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_SYSFB=y -# CONFIG_SYSFB_SIMPLEFB is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_DW_XDATA_PCIE is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -CONFIG_NET_VENDOR_MICROSOFT=y -# CONFIG_JME is not set -CONFIG_NET_VENDOR_LITEX=y -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_MOTORCOMM_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_ACPI_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_VIRTIO is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_INTEL_PMT is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ATC260X_I2C is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_SURFACE_PLATFORMS=y -# CONFIG_SURFACE_3_POWER_OPREGION is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_4XXX is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZSTD_DECOMPRESS=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_STACK_VALIDATION=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y -# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_HAVE_ARCH_KFENCE=y -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_OBJTOOL_MCOUNT=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/flash.config b/mainboards/aeeon/upxtreme/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/aeeon/upxtreme/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/aeeon/upxtreme/sshd.config b/mainboards/aeeon/upxtreme/sshd.config deleted file mode 100644 index 6f0aa188..00000000 --- a/mainboards/aeeon/upxtreme/sshd.config +++ /dev/null @@ -1,2718 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From cf447e193a1ee39c01f526597400d029e70784de Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 099/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/amd/rome/5.5-rc3.config | 1937 ----------------- mainboards/amd/rome/Makefile | 484 ----- mainboards/amd/rome/class_key | 27 - mainboards/amd/rome/class_key.pub | 1 - mainboards/amd/rome/classhostkey | 27 - mainboards/amd/rome/classhostkey.pub | 1 - mainboards/amd/rome/cpu-linux.config | 2260 -------------------- mainboards/amd/rome/flash.config | 2080 ------------------- mainboards/amd/rome/flashkernel.config | 2286 --------------------- mainboards/amd/rome/sshd-linux.config | 2624 ------------------------ 10 files changed, 11727 deletions(-) delete mode 100644 mainboards/amd/rome/5.5-rc3.config delete mode 100644 mainboards/amd/rome/Makefile delete mode 100644 mainboards/amd/rome/class_key delete mode 100644 mainboards/amd/rome/class_key.pub delete mode 100644 mainboards/amd/rome/classhostkey delete mode 100644 mainboards/amd/rome/classhostkey.pub delete mode 100644 mainboards/amd/rome/cpu-linux.config delete mode 100644 mainboards/amd/rome/flash.config delete mode 100644 mainboards/amd/rome/flashkernel.config delete mode 100644 mainboards/amd/rome/sshd-linux.config diff --git a/mainboards/amd/rome/5.5-rc3.config b/mainboards/amd/rome/5.5-rc3.config deleted file mode 100644 index 5bef512f..00000000 --- a/mainboards/amd/rome/5.5-rc3.config +++ /dev/null @@ -1,1937 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrd=0xff968000,2482781" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -# CONFIG_UNIX98_PTYS is not set -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/Makefile b/mainboards/amd/rome/Makefile deleted file mode 100644 index c9a7ebb7..00000000 --- a/mainboards/amd/rome/Makefile +++ /dev/null @@ -1,484 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -# sshdkernel and cpukernel are very similar, -# so doing builds in this order minimizes kernel -# change between them. -default: flash sshdkernel cpukernel - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -tiny.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 FullShell flashkernel \ - save $@ - echo DO NOT \ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=2560 conv=notrunc - -dxeremove.bin: image.bin Makefile - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove Shell_Full \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - remove DxeIpm.* \ - remove .*Tcg.* \ - remove NvmeInt13 \ - remove Aint13 \ - remove LegacyRegion \ - remove xGbEI2cMasterDxe \ - remove NvmeSmm \ - remove KbcEmul \ - remove IdeBusBoard \ - remove Setup \ - remove SerialMuxControl \ - remove BmcLanConfig \ - remove SecureBootDXE \ - remove SmmHddSecurity \ - remove HttpBootDxe \ - remove HttpDxe \ - remove DnsDxe \ - remove HttpUtilitiesDxe \ - remove TlsDxe \ - remove CsmBlockIo \ - remove CsmVideo \ - comment testing \ - comment huashan_shock_and_awe_undo_later \ - remove FchHuashanMultiFchSmm \ - remove FchHuashanSmmInit \ - remove FchHuashanMultiFchDxe \ - comment FchHuashanDxe \ - comment end_huashan_shock_and_awe \ - comment misc_shock_and_awe \ - comment end_misc_shock_and_awe \ - comment debug_shock_and_awe \ - remove DebugPortTableDxe \ - remove AmdIdsDebugPrintDxe \ - comment end_debug_shock_and_awe \ - comment config_shock_and_awe \ - remove AmdFwConfigSmmSsp \ - remove TlsAuthConfigDxe \ - remove AmdFwConfigDxe \ - comment end_config_shock_and_awe \ - comment smm_shock_and_awe \ - comment remove_all_smm_it_warm_resets_continuously \ - comment StatusCodeSmm \ - comment RuntimeSmm \ - comment SmmPciRbIo \ - comment LegacySmmSredir \ - comment SmmS3SaveState \ - comment SmmBmcElog \ - comment SmmIpmiBmcInitialize \ - comment CpuSmm \ - remove AmdCpmInitSmm \ - comment AmdPlatformJedecNvdimmSmm \ - comment AmdHotPlugSspSmm \ - remove AmdPlatformRasSspSmm \ - remove AmdPlatformRasZpSmm \ - comment AmdSpiLockSmm \ - remove AmdCpmGpioInitSmm \ - comment BctBaseSmmSSP \ - remove AmdRasSspSmm \ - comment AmdSmmCommunication \ - comment FchSmmDispatcher \ - comment AmdFabricSspSmm \ - comment AmdCcxVhSmm \ - comment AmdPspSmmV2Ssp \ - comment AmdPspP2CmboxV2SspSmmBuffer \ - comment AmdApcbSmmV3 \ - comment AmdMemPprSmmDriverSsp \ - comment PiSmmCommunicationSmm \ - comment SmmChildDispatcher2 \ - comment SbRunSmm \ - comment SmmLockBox \ - comment CpuIo2Smm \ - comment NvramSmm \ - comment FlashDriverSmm \ - comment PiSmmCore \ - comment AmdSmmControl \ - comment PiSmmIpl \ - comment SmBusSmm \ - comment TcgSmm \ - comment end_smm_shock_and_awe \ - comment tpm_shock_and_awe \ - remove TpmClearOnRollbackSmm \ - remove Tpm20Acpi \ - remove Tpm20PlatformDxe \ - remove CrbTpm20Acpi \ - remove Tpm20PlatformDxe \ - remove TpmSmbiosDxe \ - remove end_tpm_shock_and_awe \ - comment smbios_shock_and_awe \ - remove SmmSmbiosElog \ - remove Smbios \ - remove SmbiosDmiEdit \ - remove SmbiosElog \ - remove SmbiosBoard \ - remove SmbiosElogSetupScreen \ - remove AmdSmbiosDxe \ - remove AmdMemSmbiosV2RvDxe \ - remove CpuSmbiosDriver \ - comment end_smbios_shock_and_awe \ - comment S3Save_do_not_comment_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment RomLayoutDxe \ - comment DxeCore \ - comment DataHubDxe \ - comment DevicePathDxe \ - comment EnglishDxe \ - comment HiiDatabase \ - comment SecurityStubDxe \ - comment CpuIo2Dxe \ - comment CpuDxe \ - comment NbDxe \ - comment SbDxe \ - comment AmdMemSspSp3Dxe \ - comment AmdMemRestoreDxe \ - comment AmdApcbDxeV3 \ - comment AmdPspDxeV2Ssp \ - comment AmdHstiV2 \ - comment ApobSspDxe \ - comment AmdCcxVhDxe \ - comment AmdFabricSspDxe \ - comment AmdSocSp3RmDxe \ - comment AmdErrorLogDxe \ - comment AmdNbioAlibDxe \ - comment AmdNbioBaseSspDxe \ - comment SmuV11Dxe \ - comment AmdNbioPcieDxe \ - remove AmdNbioIOMMUDxe \ - comment FchSmbusDxe \ - remove AmdLegacyInterrupt \ - comment AmdAcpiDxe \ - comment AmdVersionDxe \ - remove AmdRasSspApeiDxe \ - remove AmdRasSspDxe \ - comment JedecNvdimmDxe \ - comment CbsSetupDxeSSP \ - comment CbsBaseDxeSSP \ - comment AmdPbsSetupDxe \ - remove RasOemDimmMap \ - comment ServerHotplugDxe \ - comment Pca9535aDxe \ - comment Pca9545aDxe \ - comment Sff8472Dxe \ - comment SlinkManager \ - comment SlinkEndpointDriver \ - comment AmdBoardIdDxe \ - remove AmdCpmGpioInitDxe \ - comment AmdSpiLockDxe \ - comment AmdI2cMasterDxe \ - remove AmdCpmPcieInitDxe \ - comment ApicInfoDataDxe \ - remove AmdPlatformRasZpDxe \ - remove AmdPlatformRasSspDxe \ - remove AmdCpmInitDxe \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment AcpiS3SaveDxe \ - comment LegacySredir \ - comment OA3 \ - comment PciRootBridge \ - comment PciDynamicSetup \ - comment PciDxeInit \ - comment ExportHiiDb \ - comment DpcDxe \ - comment CsmDxe \ - comment EventLogsSetupPage \ - comment HardwareSignatureEntry \ - comment HddSecurity \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeDynamicSetup \ - comment AmiBoardInfo2 \ - comment AmiSerialUart0 \ - comment AmiSerialUart1 \ - comment OpalSecurity \ - comment CsmRt32 \ - comment RsdpPlus \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment PspPlatform \ - comment PspDxe \ - comment AcpiUpdateCpuInfo \ - comment CheckCrbVsRom \ - comment RuntimeDxe \ - comment CpuIoDxe \ - comment SbRun \ - comment Cf9Reset \ - comment BmcElog \ - comment SecFlashUpdDXE \ - comment SmiFlashDxe \ - comment PCIePTCPkg \ - comment ConSplitter \ - comment GraphicsConsole \ - comment SlinkRootBridgeDriver \ - remove IdeBusSrc \ - remove PciBus \ - remove PlatformToDriver \ - remove TerminalSrc \ - remove SerialIo \ - remove Nvme \ - comment ResetSmi \ - comment PeriodicSmiControl \ - remove PowerButton \ - comment AcpiModeEnable \ - comment AmdPspP2CmboxV2Ssp \ - remove JedecNvdimm \ - remove BiosCfgTool \ - remove CryptoSMM \ - remove BmcAcpi \ - comment OA3_SMM \ - comment SmiVariable \ - comment Ofbd \ - remove SecSMIFlash \ - remove SmiFlash \ - comment StatusCodeDxe \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - remove SbCmos \ - remove SmBusDxe \ - remove DxeSelStatusCode \ - comment DxeFrb \ - remove CmosDxe \ - comment CrbSpiOpCode \ - comment tested_fails_if_removed \ - comment CapsuleRuntimeDxe \ - comment Bds \ - comment needed_for_linuxboot_dont_remove \ - comment FullShell \ - save $@ - -sshdkernel: sshd.cpio.lzma sshd-linux.config - cp sshd-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu-linux.config - cp cpu-linux.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/io \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -oflashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="rush" \ - github.com/u-root/u-root/cmds/exp/rush \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/io \ - github.com/u-root/u-root/cmds/core/cat - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flashkernel.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - echo TODO get 5.10 - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/amd/rome/class_key b/mainboards/amd/rome/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/amd/rome/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/amd/rome/class_key.pub b/mainboards/amd/rome/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/amd/rome/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/amd/rome/classhostkey b/mainboards/amd/rome/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/amd/rome/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/amd/rome/classhostkey.pub b/mainboards/amd/rome/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/amd/rome/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/amd/rome/cpu-linux.config b/mainboards/amd/rome/cpu-linux.config deleted file mode 100644 index 7297ece2..00000000 --- a/mainboards/amd/rome/cpu-linux.config +++ /dev/null @@ -1,2260 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -CONFIG_MICROCODE=y -CONFIG_MICROCODE_INTEL=y -CONFIG_MICROCODE_AMD=y -# CONFIG_MICROCODE_OLD_INTERFACE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="pci=earlydump,nobios,assign-busses,realloc,pcie_scan_all noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200,keep debug_level=0x2 acpi.debug_layer=0xFFFFFFFF acpi=strict acpi_force_table_verification hpet=verbose 8250.force_polling=1 8250.buggy_uart=1 memmap=256M$0xe0000000" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AX88796B_PHY=y -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -CONFIG_USB_RTL8150=y -CONFIG_USB_RTL8152=y -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -# CONFIG_USB_NET_CDC_NCM is not set -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -# CONFIG_USB_NET_NET1080 is not set -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -# CONFIG_USB_NET_CDC_SUBSET is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/flash.config b/mainboards/amd/rome/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/amd/rome/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/flashkernel.config b/mainboards/amd/rome/flashkernel.config deleted file mode 100644 index e42a050b..00000000 --- a/mainboards/amd/rome/flashkernel.config +++ /dev/null @@ -1,2286 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="pci=realloc noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 console=tty0" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -# CONFIG_USB_NET_CDC_NCM is not set -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -# CONFIG_USB_NET_DM9601 is not set -# CONFIG_USB_NET_SR9700 is not set -# CONFIG_USB_NET_SR9800 is not set -# CONFIG_USB_NET_SMSC75XX is not set -# CONFIG_USB_NET_SMSC95XX is not set -# CONFIG_USB_NET_GL620A is not set -# CONFIG_USB_NET_NET1080 is not set -# CONFIG_USB_NET_PLUSB is not set -# CONFIG_USB_NET_MCS7830 is not set -# CONFIG_USB_NET_RNDIS_HOST is not set -# CONFIG_USB_NET_CDC_SUBSET is not set -# CONFIG_USB_NET_ZAURUS is not set -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/amd/rome/sshd-linux.config b/mainboards/amd/rome/sshd-linux.config deleted file mode 100644 index 94a64923..00000000 --- a/mainboards/amd/rome/sshd-linux.config +++ /dev/null @@ -1,2624 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From 8a48d3eabf07c29d1a1d8233671fc456808afa8b Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 100/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/bytedance/g220a/Makefile | 55 - .../bytedance/g220a/config_g220a.config | 3740 ----------------- 2 files changed, 3795 deletions(-) delete mode 100644 mainboards/bytedance/g220a/Makefile delete mode 100644 mainboards/bytedance/g220a/config_g220a.config diff --git a/mainboards/bytedance/g220a/Makefile b/mainboards/bytedance/g220a/Makefile deleted file mode 100644 index 4d86bc19..00000000 --- a/mainboards/bytedance/g220a/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, testflashkernel and housekeeping - -flashkernel: config_g220a.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - cp flashinitramfs.cpio.lzma linux/ -# echo CONFIG_CMDLINE_BOOL=y >> linux/.config -# echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config -# stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -fetch: getkernel geturoot getfiano - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -testflashkernel: flashkernel - echo ^C will exit qemu! be careful! - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma -monitor /dev/null - -housekeeping: - rm -rf flashinitramfs.cpio \ - flashinitramfs.cpio.lzma \ - flashkernel \ - diff --git a/mainboards/bytedance/g220a/config_g220a.config b/mainboards/bytedance/g220a/config_g220a.config deleted file mode 100644 index 7999ea36..00000000 --- a/mainboards/bytedance/g220a/config_g220a.config +++ /dev/null @@ -1,3740 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.19.127 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# CONFIG_PREEMPT_NONE is not set -CONFIG_PREEMPT_VOLUNTARY=y -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_BSD_PROCESS_ACCT=y -# CONFIG_BSD_PROCESS_ACCT_V3 is not set -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=18 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -CONFIG_TRACEPOINTS=y -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -# CONFIG_PARAVIRT is not set -# CONFIG_JAILHOUSE_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -CONFIG_HPET_EMULATE_RTC=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -CONFIG_X86_16BIT=y -CONFIG_X86_ESPFIX64=y -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -# CONFIG_MTRR_SANITIZER is not set -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -CONFIG_EFI_MIXED=y -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_VERIFY_SIG is not set -CONFIG_CRASH_DUMP=y -CONFIG_KEXEC_JUMP=y -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_DYNAMIC_MEMORY_LAYOUT=y -CONFIG_RANDOMIZE_MEMORY=y -CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=serial,ttyS0,115200 console=tty console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -CONFIG_MODIFY_LDT_SYSCALL=y -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y - -# -# Power management and ACPI options -# -CONFIG_ARCH_HIBERNATION_HEADER=y -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -CONFIG_HIBERNATE_CALLBACKS=y -CONFIG_HIBERNATION=y -CONFIG_PM_STD_PARTITION="" -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_BGRT=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_X86_PM_TIMER=y -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -CONFIG_CPU_FREQ_GOV_USERSPACE=y -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -CONFIG_X86_ACPI_CPUFREQ=y -CONFIG_X86_ACPI_CPUFREQ_CPB=y -# CONFIG_X86_POWERNOW_K8 is not set -# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -# CONFIG_CPU_IDLE_GOV_LADDER is not set -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_PCI_DOMAINS=y -CONFIG_MMCONF_FAM10H=y -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_STUB is not set -CONFIG_PCI_ATS=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -CONFIG_PCI_PRI=y -CONFIG_PCI_PASID=y -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_HAVE_GENERIC_GUP=y - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set - -# -# Tegra firmware driver -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_UPROBES=y -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -CONFIG_MODULE_FORCE_UNLOAD=y -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_RDMA=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -CONFIG_VIRT_TO_BUS=y -CONFIG_MMU_NOTIFIER=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -CONFIG_XFRM=y -CONFIG_XFRM_ALGO=y -CONFIG_XFRM_USER=y -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -# CONFIG_SMC is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_MULTIPATH=y -CONFIG_IP_ROUTE_VERBOSE=y -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -CONFIG_IP_PNP_RARP=y -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -CONFIG_IP_MROUTE_COMMON=y -CONFIG_IP_MROUTE=y -# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set -CONFIG_IP_PIMSM_V1=y -CONFIG_IP_PIMSM_V2=y -CONFIG_SYN_COOKIES=y -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=m -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_XFRM_MODE_TRANSPORT=y -CONFIG_INET_XFRM_MODE_TUNNEL=y -CONFIG_INET_XFRM_MODE_BEET=y -# CONFIG_INET_DIAG is not set -CONFIG_TCP_CONG_ADVANCED=y -# CONFIG_TCP_CONG_BIC is not set -CONFIG_TCP_CONG_CUBIC=y -# CONFIG_TCP_CONG_WESTWOOD is not set -# CONFIG_TCP_CONG_HTCP is not set -# CONFIG_TCP_CONG_HSTCP is not set -# CONFIG_TCP_CONG_HYBLA is not set -# CONFIG_TCP_CONG_VEGAS is not set -# CONFIG_TCP_CONG_NV is not set -# CONFIG_TCP_CONG_SCALABLE is not set -# CONFIG_TCP_CONG_LP is not set -# CONFIG_TCP_CONG_VENO is not set -# CONFIG_TCP_CONG_YEAH is not set -# CONFIG_TCP_CONG_ILLINOIS is not set -# CONFIG_TCP_CONG_DCTCP is not set -# CONFIG_TCP_CONG_CDG is not set -# CONFIG_TCP_CONG_BBR is not set -CONFIG_DEFAULT_CUBIC=y -# CONFIG_DEFAULT_RENO is not set -CONFIG_DEFAULT_TCP_CONG="cubic" -CONFIG_TCP_MD5SIG=y -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -CONFIG_INET6_AH=y -CONFIG_INET6_ESP=y -# CONFIG_INET6_ESP_OFFLOAD is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -CONFIG_INET6_XFRM_MODE_TRANSPORT=y -CONFIG_INET6_XFRM_MODE_TUNNEL=y -CONFIG_INET6_XFRM_MODE_BEET=y -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -CONFIG_NETWORK_SECMARK=y -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_INGRESS is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -CONFIG_NET_EMATCH=y -CONFIG_NET_EMATCH_STACK=32 -# CONFIG_NET_EMATCH_CMP is not set -# CONFIG_NET_EMATCH_NBYTE is not set -# CONFIG_NET_EMATCH_U32 is not set -# CONFIG_NET_EMATCH_META is not set -# CONFIG_NET_EMATCH_TEXT is not set -CONFIG_NET_CLS_ACT=y -# CONFIG_NET_ACT_POLICE is not set -# CONFIG_NET_ACT_GACT is not set -# CONFIG_NET_ACT_MIRRED is not set -# CONFIG_NET_ACT_SAMPLE is not set -# CONFIG_NET_ACT_NAT is not set -# CONFIG_NET_ACT_PEDIT is not set -# CONFIG_NET_ACT_SIMP is not set -# CONFIG_NET_ACT_SKBEDIT is not set -# CONFIG_NET_ACT_CSUM is not set -# CONFIG_NET_ACT_VLAN is not set -# CONFIG_NET_ACT_BPF is not set -# CONFIG_NET_ACT_SKBMOD is not set -# CONFIG_NET_ACT_IFE is not set -# CONFIG_NET_ACT_TUNNEL_KEY is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_NET_DROP_MONITOR is not set -CONFIG_HAMRADIO=y - -# -# Packet Radio protocols -# -# CONFIG_AX25 is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set - -# -# Bus devices -# -CONFIG_CONNECTOR=y -CONFIG_PROC_EVENTS=y -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -CONFIG_CDROM=y -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y -CONFIG_NVME_MULTIPATH=y -CONFIG_NVME_FABRICS=y -CONFIG_NVME_RDMA=y -CONFIG_NVME_FC=y -CONFIG_NVME_TARGET=y -# CONFIG_NVME_TARGET_LOOP is not set -CONFIG_NVME_TARGET_RDMA=y -CONFIG_NVME_TARGET_FC=y -# CONFIG_NVME_TARGET_FCLOOP is not set - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_MQ_DEFAULT=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -CONFIG_BLK_DEV_SR=y -CONFIG_BLK_DEV_SR_VENDOR=y -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -CONFIG_SCSI_SPI_ATTRS=y -# CONFIG_SCSI_FC_ATTRS is not set -CONFIG_SCSI_ISCSI_ATTRS=m -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -CONFIG_SCSI_SRP_ATTRS=m -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -# CONFIG_SATA_ZPODD is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_ATA_PIIX is not set -# CONFIG_SATA_DWC is not set -# CONFIG_SATA_MV is not set -# CONFIG_SATA_NV is not set -# CONFIG_SATA_PROMISE is not set -# CONFIG_SATA_SIL is not set -# CONFIG_SATA_SIS is not set -# CONFIG_SATA_SVW is not set -# CONFIG_SATA_ULI is not set -# CONFIG_SATA_VIA is not set -# CONFIG_SATA_VITESSE is not set - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -# CONFIG_PATA_HPT3X3 is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -# CONFIG_PATA_SIS is not set -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -# CONFIG_ATA_GENERIC is not set -# CONFIG_PATA_LEGACY is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_IFB is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_3COM=y -# CONFIG_VORTEX is not set -# CONFIG_TYPHOON is not set -CONFIG_NET_VENDOR_ADAPTEC=y -# CONFIG_ADAPTEC_STARFIRE is not set -CONFIG_NET_VENDOR_AGERE=y -# CONFIG_ET131X is not set -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_SLICOSS is not set -CONFIG_NET_VENDOR_ALTEON=y -# CONFIG_ACENIC is not set -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -# CONFIG_ENA_ETHERNET is not set -CONFIG_NET_VENDOR_AMD=y -# CONFIG_AMD8111_ETH is not set -# CONFIG_PCNET32 is not set -# CONFIG_AMD_XGBE is not set -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_AQTION is not set -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_ATHEROS=y -# CONFIG_ATL2 is not set -# CONFIG_ATL1 is not set -# CONFIG_ATL1E is not set -# CONFIG_ATL1C is not set -# CONFIG_ALX is not set -CONFIG_NET_VENDOR_AURORA=y -# CONFIG_AURORA_NB8800 is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -# CONFIG_TIGON3 is not set -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -CONFIG_NET_VENDOR_BROCADE=y -# CONFIG_BNA is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_THUNDER_NIC_PF is not set -# CONFIG_THUNDER_NIC_VF is not set -# CONFIG_THUNDER_NIC_BGX is not set -# CONFIG_THUNDER_NIC_RGX is not set -# CONFIG_CAVIUM_PTP is not set -# CONFIG_LIQUIDIO is not set -# CONFIG_LIQUIDIO_VF is not set -CONFIG_NET_VENDOR_CHELSIO=y -# CONFIG_CHELSIO_T1 is not set -# CONFIG_CHELSIO_T3 is not set -# CONFIG_CHELSIO_T4 is not set -# CONFIG_CHELSIO_T4VF is not set -CONFIG_NET_VENDOR_CISCO=y -# CONFIG_ENIC is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_DEC=y -CONFIG_NET_TULIP=y -# CONFIG_DE2104X is not set -# CONFIG_TULIP is not set -# CONFIG_DE4X5 is not set -# CONFIG_WINBOND_840 is not set -# CONFIG_DM9102 is not set -# CONFIG_ULI526X is not set -CONFIG_NET_VENDOR_DLINK=y -# CONFIG_DL2K is not set -# CONFIG_SUNDANCE is not set -CONFIG_NET_VENDOR_EMULEX=y -CONFIG_BE2NET=m -CONFIG_BE2NET_HWMON=y -CONFIG_BE2NET_BE2=y -CONFIG_BE2NET_BE3=y -CONFIG_BE2NET_LANCER=y -CONFIG_BE2NET_SKYHAWK=y -CONFIG_NET_VENDOR_EZCHIP=y -CONFIG_NET_VENDOR_HP=y -# CONFIG_HP100 is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_HINIC is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -# CONFIG_IGB is not set -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_JME is not set -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -# CONFIG_SKGE is not set -# CONFIG_SKY2 is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLX4_EN is not set -CONFIG_MLX4_CORE=m -CONFIG_MLX4_DEBUG=y -CONFIG_MLX4_CORE_GEN2=y -# CONFIG_MLX5_CORE is not set -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851_MLL is not set -# CONFIG_KSZ884X_PCI is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_MYRI=y -# CONFIG_MYRI10GE is not set -# CONFIG_FEALNX is not set -CONFIG_NET_VENDOR_NATSEMI=y -# CONFIG_NATSEMI is not set -# CONFIG_NS83820 is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -CONFIG_NET_VENDOR_NETRONOME=y -# CONFIG_NFP is not set -CONFIG_NET_VENDOR_NI=y -CONFIG_NET_VENDOR_8390=y -# CONFIG_NE2K_PCI is not set -CONFIG_NET_VENDOR_NVIDIA=y -CONFIG_FORCEDETH=y -CONFIG_NET_VENDOR_OKI=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_QLOGIC=y -# CONFIG_QLA3XXX is not set -# CONFIG_QLCNIC is not set -# CONFIG_QLGE is not set -# CONFIG_NETXEN_NIC is not set -# CONFIG_QED is not set -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RDC=y -# CONFIG_R6040 is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -CONFIG_8139TOO=y -CONFIG_8139TOO_PIO=y -# CONFIG_8139TOO_TUNE_TWISTER is not set -# CONFIG_8139TOO_8129 is not set -# CONFIG_8139_OLD_RX_RESET is not set -CONFIG_R8169=y -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_SFC is not set -# CONFIG_SFC_FALCON is not set -CONFIG_NET_VENDOR_SILAN=y -# CONFIG_SC92031 is not set -CONFIG_NET_VENDOR_SIS=y -# CONFIG_SIS900 is not set -# CONFIG_SIS190 is not set -CONFIG_NET_VENDOR_SMSC=y -# CONFIG_EPIC100 is not set -# CONFIG_SMSC911X is not set -# CONFIG_SMSC9420 is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -# CONFIG_STMMAC_ETH is not set -CONFIG_NET_VENDOR_SUN=y -# CONFIG_HAPPYMEAL is not set -# CONFIG_SUNGEM is not set -# CONFIG_CASSINI is not set -# CONFIG_NIU is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_TEHUTI=y -# CONFIG_TEHUTI is not set -CONFIG_NET_VENDOR_TI=y -# CONFIG_TI_CPSW_ALE is not set -# CONFIG_TLAN is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_RHINE is not set -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_FDDI=y -# CONFIG_DEFXX is not set -# CONFIG_SKFP is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y -# CONFIG_LED_TRIGGER_PHY is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -CONFIG_INPUT_POLLDEV=y -CONFIG_INPUT_SPARSEKMAP=y -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_LIFEBOOK=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_PS2_VMMOUSE is not set -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -CONFIG_INPUT_JOYSTICK=y -# CONFIG_JOYSTICK_ANALOG is not set -# CONFIG_JOYSTICK_A3D is not set -# CONFIG_JOYSTICK_ADI is not set -# CONFIG_JOYSTICK_COBRA is not set -# CONFIG_JOYSTICK_GF2K is not set -# CONFIG_JOYSTICK_GRIP is not set -# CONFIG_JOYSTICK_GRIP_MP is not set -# CONFIG_JOYSTICK_GUILLEMOT is not set -# CONFIG_JOYSTICK_INTERACT is not set -# CONFIG_JOYSTICK_SIDEWINDER is not set -# CONFIG_JOYSTICK_TMDC is not set -# CONFIG_JOYSTICK_IFORCE is not set -# CONFIG_JOYSTICK_WARRIOR is not set -# CONFIG_JOYSTICK_MAGELLAN is not set -# CONFIG_JOYSTICK_SPACEORB is not set -# CONFIG_JOYSTICK_SPACEBALL is not set -# CONFIG_JOYSTICK_STINGER is not set -# CONFIG_JOYSTICK_TWIDJOY is not set -# CONFIG_JOYSTICK_ZHENHUA is not set -# CONFIG_JOYSTICK_AS5011 is not set -# CONFIG_JOYSTICK_JOYDUMP is not set -# CONFIG_JOYSTICK_XPAD is not set -# CONFIG_JOYSTICK_PXRC is not set -CONFIG_INPUT_TABLET=y -# CONFIG_TABLET_USB_ACECAD is not set -# CONFIG_TABLET_USB_AIPTEK is not set -# CONFIG_TABLET_USB_GTCO is not set -# CONFIG_TABLET_USB_HANWANG is not set -# CONFIG_TABLET_USB_KBTAB is not set -# CONFIG_TABLET_USB_PEGASUS is not set -# CONFIG_TABLET_SERIAL_WACOM4 is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_PCSPKR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_APANEL is not set -# CONFIG_INPUT_ATLAS_BTNS is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -CONFIG_SERIAL_NONSTANDARD=y -# CONFIG_ROCKETPORT is not set -# CONFIG_CYCLADES is not set -# CONFIG_MOXA_INTELLIO is not set -# CONFIG_MOXA_SMARTIO is not set -# CONFIG_SYNCLINK is not set -# CONFIG_SYNCLINKMP is not set -# CONFIG_SYNCLINK_GT is not set -# CONFIG_NOZOMI is not set -# CONFIG_ISI is not set -# CONFIG_N_HDLC is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -CONFIG_SERIAL_8250_DETECT_IRQ=y -CONFIG_SERIAL_8250_RSA=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -CONFIG_SERIAL_8250_MID=y -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -# CONFIG_HW_RANDOM_AMD is not set -CONFIG_HW_RANDOM_VIA=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_HPET=y -# CONFIG_HPET_MMAP is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# CONFIG_RANDOM_TRUST_CPU is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=m - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -CONFIG_I2C_I801=y -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_ABITUGURU is not set -# CONFIG_SENSORS_ABITUGURU3 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_K8TEMP is not set -# CONFIG_SENSORS_K10TEMP is not set -# CONFIG_SENSORS_FAM15H_POWER is not set -# CONFIG_SENSORS_APPLESMC is not set -# CONFIG_SENSORS_ASB100 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_DELL_SMM is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FSCHMD is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_I5500 is not set -# CONFIG_SENSORS_CORETEMP is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS1015 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VIA_CPUTEMP is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_ATK0110 is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -CONFIG_THERMAL_GOV_USER_SPACE=y -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -CONFIG_WATCHDOG=y -# CONFIG_WATCHDOG_CORE is not set -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ACQUIRE_WDT is not set -# CONFIG_ADVANTECH_WDT is not set -# CONFIG_ALIM1535_WDT is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_EBC_C384_WDT is not set -# CONFIG_F71808E_WDT is not set -# CONFIG_SP5100_TCO is not set -# CONFIG_SBC_FITPC2_WATCHDOG is not set -# CONFIG_EUROTECH_WDT is not set -# CONFIG_IB700_WDT is not set -# CONFIG_IBMASR is not set -# CONFIG_WAFER_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_IE6XX_WDT is not set -# CONFIG_ITCO_WDT is not set -# CONFIG_IT8712F_WDT is not set -# CONFIG_IT87_WDT is not set -# CONFIG_HP_WATCHDOG is not set -# CONFIG_SC1200_WDT is not set -# CONFIG_PC87413_WDT is not set -# CONFIG_NV_TCO is not set -# CONFIG_60XX_WDT is not set -# CONFIG_CPU5_WDT is not set -# CONFIG_SMSC_SCH311X_WDT is not set -# CONFIG_SMSC37B787_WDT is not set -# CONFIG_VIA_WDT is not set -# CONFIG_W83627HF_WDT is not set -# CONFIG_W83877F_WDT is not set -# CONFIG_W83977F_WDT is not set -# CONFIG_MACHZ_WDT is not set -# CONFIG_SBC_EPX_C3_WATCHDOG is not set -# CONFIG_NI903X_WDT is not set -# CONFIG_NIC7018_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set - -# -# Watchdog Pretimeout Governors -# -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_AGP=y -CONFIG_AGP_AMD64=y -CONFIG_AGP_INTEL=y -# CONFIG_AGP_SIS is not set -# CONFIG_AGP_VIA is not set -CONFIG_INTEL_GTT=y -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ACP (Audio CoProcessor) Configuration -# - -# -# AMD Library routines -# -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -# CONFIG_FB_UVESA is not set -# CONFIG_FB_VESA is not set -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_BROADSHEET is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -CONFIG_VGACON_SOFT_SCROLLBACK=y -CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 -# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -CONFIG_LOGO=y -# CONFIG_LOGO_LINUX_MONO is not set -# CONFIG_LOGO_LINUX_VGA16 is not set -CONFIG_LOGO_LINUX_CLUT224=y -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_CMEDIA is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GOOGLE_HAMMER is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -CONFIG_HID_GYRATION=y -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_DJ is not set -# CONFIG_HID_LOGITECH_HIDPP is not set -CONFIG_LOGITECH_FF=y -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -CONFIG_LOGIWHEELS_FF=y -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -CONFIG_HID_NTRIG=y -# CONFIG_HID_ORTEK is not set -CONFIG_HID_PANTHERLORD=y -CONFIG_PANTHERLORD_FF=y -# CONFIG_HID_PENMOUNT is not set -CONFIG_HID_PETALYNX=y -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -CONFIG_HID_SAMSUNG=y -CONFIG_HID_SONY=y -# CONFIG_SONY_FF is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -CONFIG_HID_SUNPLUS=y -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -CONFIG_HID_TOPSEED=y -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# USB HID support -# -CONFIG_USB_HID=y -CONFIG_HID_PID=y -CONFIG_USB_HIDDEV=y - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_MON=y -# CONFIG_USB_WUSB_CBAF is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PLATFORM is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_HCD_PLATFORM is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -# CONFIG_USB_OHCI_HCD_PLATFORM is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -CONFIG_USB_PRINTER=y -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_APU is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_INTEL_SS4200 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_MLXCPLD is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_NIC78BX is not set - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_INFINIBAND=y -CONFIG_INFINIBAND_USER_MAD=m -CONFIG_INFINIBAND_USER_ACCESS=m -# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set -CONFIG_INFINIBAND_USER_MEM=y -CONFIG_INFINIBAND_ON_DEMAND_PAGING=y -CONFIG_INFINIBAND_ADDR_TRANS=y -CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y -CONFIG_INFINIBAND_MTHCA=m -CONFIG_INFINIBAND_MTHCA_DEBUG=y -CONFIG_INFINIBAND_QIB=m -CONFIG_MLX4_INFINIBAND=m -CONFIG_INFINIBAND_NES=m -# CONFIG_INFINIBAND_NES_DEBUG is not set -CONFIG_INFINIBAND_OCRDMA=m -CONFIG_INFINIBAND_IPOIB=m -CONFIG_INFINIBAND_IPOIB_CM=y -CONFIG_INFINIBAND_IPOIB_DEBUG=y -CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y -CONFIG_INFINIBAND_SRP=m -CONFIG_INFINIBAND_ISER=m -CONFIG_INFINIBAND_OPA_VNIC=m -CONFIG_INFINIBAND_RDMAVT=m -CONFIG_RDMA_RXE=m -CONFIG_INFINIBAND_HFI1=m -# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set -# CONFIG_SDMA_VERBOSITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -# CONFIG_EDAC is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -CONFIG_RTC_CLASS=y -# CONFIG_RTC_HCTOSYS is not set -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABX80X is not set -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV8803 is not set - -# -# SPI RTC drivers -# -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -CONFIG_RTC_DRV_CMOS=y -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_FTRTC010 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_ACPI=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_INTEL_IOATDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -CONFIG_DW_DMAC_CORE=y -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -CONFIG_HSU_DMA=y - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# CONFIG_STAGING is not set -CONFIG_X86_PLATFORM_DEVICES=y -# CONFIG_ACER_WIRELESS is not set -# CONFIG_ACERHDF is not set -# CONFIG_DELL_SMBIOS is not set -# CONFIG_DELL_SMO8800 is not set -# CONFIG_FUJITSU_TABLET is not set -# CONFIG_GPD_POCKET_FAN is not set -# CONFIG_HP_ACCEL is not set -# CONFIG_HP_WIRELESS is not set -# CONFIG_SENSORS_HDAPS is not set -# CONFIG_INTEL_MENLOW is not set -# CONFIG_ASUS_WIRELESS is not set -# CONFIG_ACPI_WMI is not set -# CONFIG_TOPSTAR_LAPTOP is not set -# CONFIG_TOSHIBA_BT_RFKILL is not set -# CONFIG_TOSHIBA_HAPS is not set -# CONFIG_INTEL_HID_EVENT is not set -# CONFIG_INTEL_VBTN is not set -# CONFIG_INTEL_IPS is not set -# CONFIG_INTEL_PMC_CORE is not set -# CONFIG_IBM_RTL is not set -# CONFIG_INTEL_RST is not set -# CONFIG_INTEL_SMARTCONNECT is not set -# CONFIG_PVPANIC is not set -# CONFIG_INTEL_PMC_IPC is not set -# CONFIG_SURFACE_PRO3_BUTTON is not set -# CONFIG_INTEL_PUNIT_IPC is not set -# CONFIG_MLX_PLATFORM is not set -# CONFIG_INTEL_TURBO_MAX_3 is not set -# CONFIG_I2C_MULTI_INSTANTIATE is not set -# CONFIG_INTEL_ATOMISP2_PM is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# NXP/Freescale QorIQ SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -CONFIG_RAS=y -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_ENCRYPTION is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -CONFIG_XFS_FS=y -# CONFIG_XFS_QUOTA is not set -# CONFIG_XFS_POSIX_ACL is not set -# CONFIG_XFS_RT is not set -# CONFIG_XFS_ONLINE_SCRUB is not set -# CONFIG_XFS_WARN is not set -# CONFIG_XFS_DEBUG is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -CONFIG_QUOTA=y -CONFIG_QUOTA_NETLINK_INTERFACE=y -# CONFIG_PRINT_QUOTA_WARNING is not set -# CONFIG_QUOTA_DEBUG is not set -CONFIG_QUOTA_TREE=y -# CONFIG_QFMT_V1 is not set -CONFIG_QFMT_V2=y -CONFIG_QUOTACTL=y -CONFIG_AUTOFS4_FS=y -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_VMCORE=y -# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -CONFIG_NFS_V3_ACL=y -CONFIG_NFS_V4=y -# CONFIG_NFS_SWAP is not set -# CONFIG_NFS_V4_1 is not set -CONFIG_ROOT_NFS=y -# CONFIG_NFS_USE_LEGACY_DNS is not set -CONFIG_NFS_USE_KERNEL_DNS=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_ACL_SUPPORT=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -CONFIG_SUNRPC_GSS=y -# CONFIG_SUNRPC_DEBUG is not set -CONFIG_SUNRPC_XPRT_RDMA=m -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_GF128MUL=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -CONFIG_CRYPTO_CCM=y -CONFIG_CRYPTO_GCM=y -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128L is not set -# CONFIG_CRYPTO_AEGIS256 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_AEGIS128L_AESNI_SSE2 is not set -# CONFIG_CRYPTO_AEGIS256_AESNI_SSE2 is not set -# CONFIG_CRYPTO_MORUS640 is not set -# CONFIG_CRYPTO_MORUS640_SSE2 is not set -# CONFIG_CRYPTO_MORUS1280 is not set -# CONFIG_CRYPTO_MORUS1280_SSE2 is not set -# CONFIG_CRYPTO_MORUS1280_AVX2 is not set -CONFIG_CRYPTO_SEQIV=y -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -CONFIG_CRYPTO_CTR=y -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -CONFIG_CRYPTO_CMAC=y -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -CONFIG_CRYPTO_CRC32=m -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -CONFIG_CRYPTO_GHASH=y -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=y -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -CONFIG_PKCS7_MESSAGE_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_BITREVERSE=y -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DIRECT_OPS=y -CONFIG_DMA_VIRT_OPS=y -CONFIG_SWIOTLB=y -CONFIG_SGL_ALLOC=y -CONFIG_CHECK_SIGNATURE=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_UNUSED_SYMBOLS is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_STACK_VALIDATION=y -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set - -# -# Debug Lockups and Hangs -# -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_INFO=y -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -CONFIG_DEBUG_BUGVERBOSE=y - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_NOP_TRACER=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_EVENT_TRACING=y -CONFIG_CONTEXT_SWITCH_TRACER=y -CONFIG_TRACING=y -CONFIG_GENERIC_TRACER=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_FUNCTION_TRACER is not set -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_FTRACE_SYSCALLS is not set -# CONFIG_TRACER_SNAPSHOT is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -# CONFIG_STACK_TRACER is not set -CONFIG_BLK_DEV_IO_TRACE=y -CONFIG_UPROBE_EVENTS=y -CONFIG_PROBE_EVENTS=y -# CONFIG_FTRACE_STARTUP_TEST is not set -# CONFIG_MMIOTRACE is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_RING_BUFFER_BENCHMARK is not set -# CONFIG_RING_BUFFER_STARTUP_TEST is not set -# CONFIG_PREEMPTIRQ_DELAY_TEST is not set -# CONFIG_TRACE_EVAL_MAP_FILE is not set -CONFIG_PROVIDE_OHCI1394_DMA_INIT=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_EARLY_PRINTK_USB=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -CONFIG_EARLY_PRINTK_DBGP=y -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_PUNIT_ATOM_DEBUG is not set -CONFIG_UNWINDER_ORC=y -# CONFIG_UNWINDER_FRAME_POINTER is not set From 03ce8a4a0558b335de812af9e34f4f5b48265756 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 101/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/cubie/board/.gitignore | 1 - mainboards/cubie/board/Makefile | 48 - mainboards/cubie/board/RUNKEA | 2 - mainboards/cubie/board/config-5.4.0 | 4578 ----------------------- mainboards/cubie/board/cpu.config-5.4.0 | 4578 ----------------------- mainboards/cubie/board/kea6.conf | 58 - mainboards/cubie/board/nbp | 4 - 7 files changed, 9269 deletions(-) delete mode 100644 mainboards/cubie/board/.gitignore delete mode 100644 mainboards/cubie/board/Makefile delete mode 100755 mainboards/cubie/board/RUNKEA delete mode 100644 mainboards/cubie/board/config-5.4.0 delete mode 100644 mainboards/cubie/board/cpu.config-5.4.0 delete mode 100644 mainboards/cubie/board/kea6.conf delete mode 100755 mainboards/cubie/board/nbp diff --git a/mainboards/cubie/board/.gitignore b/mainboards/cubie/board/.gitignore deleted file mode 100644 index e1097b41..00000000 --- a/mainboards/cubie/board/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/linux diff --git a/mainboards/cubie/board/Makefile b/mainboards/cubie/board/Makefile deleted file mode 100644 index 09454754..00000000 --- a/mainboards/cubie/board/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -VER=5.4.0 -default: build - -build: uCore flashkernel - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio: - GOARCH=arm u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - -uCore: netbooturoot - mkimage -A arm -n 'u-root for Allwinner A10' -d uroot.cpio -T ramdisk uCore - -qemu: uCore flashkernel - qemu-system-arm -kernel flashkernel -machine cubieboard -serial stdio -initrd uCore -append 'console=ttyAM0 earlyprintk=ttyAM0,115200,keep' -display none - echo NO - exit 0 - -netbooturoot: - GOARCH=arm u-root \ - -o uroot.cpio \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - -files ~/.ssh/cpu_rsa:id_rsa \ - -files ~/.ssh/authorized_keys:authorized_keys \ - all - -flashkernel: - cp config-$(VER) linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make -j32) - mkimage -C none -A arm -n 'kernel for Allwinner A10' -d linux/arch/arm/boot/zImage -T kernel -a 0x40008000 -e 0x40008000 kernel - cp linux/arch/arm/boot/zImage flashkernel - -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone https://github.com/linux-sunxi/linux-sunxi.git -b sunxi-next --depth=1 linux - (cd linux && make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- sunxi_defconfig) - -geturoot: - go get -u github.com/u-root/u-root - -packages: - sudo apt install gcc-arm-linux-gnueabihf - sudo apt install u-boot-tools diff --git a/mainboards/cubie/board/RUNKEA b/mainboards/cubie/board/RUNKEA deleted file mode 100755 index c2f8663f..00000000 --- a/mainboards/cubie/board/RUNKEA +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -sudo kea-dhcp6 -d -d -d -c kea6.conf diff --git a/mainboards/cubie/board/config-5.4.0 b/mainboards/cubie/board/config-5.4.0 deleted file mode 100644 index 63655833..00000000 --- a/mainboards/cubie/board/config-5.4.0 +++ /dev/null @@ -1,4578 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.12.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y -CONFIG_GENERIC_IRQ_IPI=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_SCHED_THERMAL_PRESSURE=y -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_CGROUP_PIDS is not set -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_CGROUP_PERF is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_RD_ZSTD=y -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_KCMP=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_ARM_HAS_SG_CHAIN=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARM_PATCH_PHYS_VIRT=y -CONFIG_GENERIC_BUG=y -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_OMAP1 is not set - -# -# Multiple platform selection -# - -# -# CPU Core family selection -# -# CONFIG_ARCH_MULTI_V6 is not set -CONFIG_ARCH_MULTI_V7=y -CONFIG_ARCH_MULTI_V6_V7=y -# end of Multiple platform selection - -# CONFIG_ARCH_VIRT is not set -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_ARTPEC is not set -# CONFIG_ARCH_ASPEED is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCM is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_DIGICOLOR is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_KEYSTONE is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MILBEAUT is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_MSTARV7 is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_NPCM is not set - -# -# TI OMAP/AM/DM/DRA Family -# -# CONFIG_ARCH_OMAP3 is not set -# CONFIG_ARCH_OMAP4 is not set -# CONFIG_SOC_OMAP5 is not set -# CONFIG_SOC_AM33XX is not set -# CONFIG_SOC_AM43XX is not set -# CONFIG_SOC_DRA7XX is not set -# end of TI OMAP/AM/DM/DRA Family - -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_RDA is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_REALVIEW is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_SOCFPGA is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_STI is not set -# CONFIG_ARCH_STM32 is not set -CONFIG_ARCH_SUNXI=y -CONFIG_MACH_SUN4I=y -CONFIG_MACH_SUN5I=y -CONFIG_MACH_SUN6I=y -CONFIG_MACH_SUN7I=y -CONFIG_MACH_SUN8I=y -CONFIG_MACH_SUN9I=y -CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZYNQ is not set - -# -# Processor Type -# -CONFIG_CPU_V7=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v6K=y -CONFIG_CPU_32v7=y -CONFIG_CPU_ABRT_EV7=y -CONFIG_CPU_PABRT_V7=y -CONFIG_CPU_CACHE_V7=y -CONFIG_CPU_CACHE_VIPT=y -CONFIG_CPU_COPY_V6=y -CONFIG_CPU_TLB_V7=y -CONFIG_CPU_HAS_ASID=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y - -# -# Processor Features -# -# CONFIG_ARM_LPAE is not set -CONFIG_ARM_THUMB=y -# CONFIG_ARM_THUMBEE is not set -CONFIG_ARM_VIRT_EXT=y -CONFIG_SWP_EMULATE=y -# CONFIG_CPU_BIG_ENDIAN is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_CPU_SPECTRE=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_KUSER_HELPERS=y -CONFIG_VDSO=y -CONFIG_OUTER_CACHE=y -CONFIG_OUTER_CACHE_SYNC=y -CONFIG_MIGHT_HAVE_CACHE_L2X0=y -CONFIG_CACHE_L2X0=y -# CONFIG_CACHE_L2X0_PMU is not set -# CONFIG_PL310_ERRATA_588369 is not set -# CONFIG_PL310_ERRATA_727915 is not set -# CONFIG_PL310_ERRATA_753970 is not set -# CONFIG_PL310_ERRATA_769419 is not set -CONFIG_ARM_L1_CACHE_SHIFT_6=y -CONFIG_ARM_L1_CACHE_SHIFT=6 -CONFIG_ARM_DMA_MEM_BUFFERABLE=y -CONFIG_ARM_HEAVY_MB=y -CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y -CONFIG_DEBUG_ALIGN_RODATA=y -# CONFIG_ARM_ERRATA_430973 is not set -CONFIG_ARM_ERRATA_643719=y -# CONFIG_ARM_ERRATA_720789 is not set -# CONFIG_ARM_ERRATA_754322 is not set -# CONFIG_ARM_ERRATA_754327 is not set -# CONFIG_ARM_ERRATA_764369 is not set -# CONFIG_ARM_ERRATA_775420 is not set -# CONFIG_ARM_ERRATA_798181 is not set -# CONFIG_ARM_ERRATA_773022 is not set -# CONFIG_ARM_ERRATA_818325_852422 is not set -# CONFIG_ARM_ERRATA_821420 is not set -# CONFIG_ARM_ERRATA_825619 is not set -# CONFIG_ARM_ERRATA_857271 is not set -# CONFIG_ARM_ERRATA_852421 is not set -# CONFIG_ARM_ERRATA_852423 is not set -# CONFIG_ARM_ERRATA_857272 is not set -# end of System Type - -# -# Bus support -# -# CONFIG_ARM_ERRATA_814220 is not set -# end of Bus support - -# -# Kernel Features -# -CONFIG_HAVE_SMP=y -CONFIG_SMP=y -CONFIG_SMP_ON_UP=y -CONFIG_ARM_CPU_TOPOLOGY=y -# CONFIG_SCHED_MC is not set -# CONFIG_SCHED_SMT is not set -CONFIG_HAVE_ARM_ARCH_TIMER=y -# CONFIG_MCPM is not set -# CONFIG_BIG_LITTLE is not set -CONFIG_VMSPLIT_3G=y -# CONFIG_VMSPLIT_3G_OPT is not set -# CONFIG_VMSPLIT_2G is not set -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0xC0000000 -CONFIG_NR_CPUS=8 -CONFIG_HOTPLUG_CPU=y -CONFIG_ARM_PSCI=y -CONFIG_ARCH_NR_GPIO=416 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_SCHED_HRTICK=y -# CONFIG_THUMB2_KERNEL is not set -CONFIG_ARM_PATCH_IDIV=y -CONFIG_AEABI=y -# CONFIG_OABI_COMPAT is not set -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_HIGHMEM=y -CONFIG_HIGHPTE=y -CONFIG_CPU_SW_DOMAIN_PAN=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARM_MODULE_PLTS=y -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_ALIGNMENT_TRAP=y -# CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# CONFIG_XEN is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -CONFIG_ATAGS=y -# CONFIG_DEPRECATED_PARAM_STRUCT is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -CONFIG_ARM_APPENDED_DTB=y -CONFIG_ARM_ATAG_DTB_COMPAT=y -CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y -# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set -CONFIG_CMDLINE="" -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# CONFIG_EFI is not set -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -CONFIG_VFP=y -CONFIG_VFPv3=y -CONFIG_NEON=y -# CONFIG_KERNEL_MODE_NEON is not set -# end of Floating point emulation - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -# CONFIG_APM_EMULATION is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARM_CPU_SUSPEND=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_TRUSTED_FOUNDATIONS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_ARM_PSCI_FW=y -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y -CONFIG_ARM_SMCCC_SOC_ID=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_ARM_CRYPTO is not set -CONFIG_AS_VFP_VMRS_FPINST=y - -# -# General architecture-dependent options -# -CONFIG_SET_FS=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=8 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_PHYS_TO_DMA=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_HAVE_ARCH_PFN_VALID=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -# CONFIG_BINFMT_ELF_FDPIC is not set -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_KMAP_LOCAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -CONFIG_CAN=y -CONFIG_CAN_RAW=y -CONFIG_CAN_BCM=y -CONFIG_CAN_GW=y -# CONFIG_CAN_J1939 is not set -# CONFIG_CAN_ISOTP is not set - -# -# CAN Device Drivers -# -# CONFIG_CAN_VCAN is not set -# CONFIG_CAN_VXCAN is not set -# CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=y -CONFIG_CAN_CALC_BITTIMING=y -# CONFIG_CAN_FLEXCAN is not set -# CONFIG_CAN_GRCAN is not set -CONFIG_CAN_SUN4I=y -# CONFIG_CAN_TI_HECC is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -# CONFIG_CAN_RCAR is not set -# CONFIG_CAN_RCAR_CANFD is not set -# CONFIG_CAN_SJA1000 is not set -# CONFIG_CAN_SOFTING is not set - -# -# CAN SPI interfaces -# -# CONFIG_CAN_HI311X is not set -# CONFIG_CAN_MCP251X is not set -# CONFIG_CAN_MCP251XFD is not set -# end of CAN SPI interfaces - -# -# CAN USB interfaces -# -# CONFIG_CAN_8DEV_USB is not set -# CONFIG_CAN_EMS_USB is not set -# CONFIG_CAN_ESD_USB2 is not set -# CONFIG_CAN_GS_USB is not set -# CONFIG_CAN_KVASER_USB is not set -# CONFIG_CAN_MCBA_USB is not set -# CONFIG_CAN_PEAK_USB is not set -# CONFIG_CAN_UCAN is not set -# end of CAN USB interfaces - -# CONFIG_CAN_DEBUG_DEVICES is not set -# end of CAN Device Drivers - -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_SOC_BUS=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_ARM_CCI=y -CONFIG_ARM_CCI400_COMMON=y -CONFIG_ARM_CCI400_PORT_CTRL=y -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_SUN50I_DE2_BUS is not set -CONFIG_SUNXI_RSB=y -# CONFIG_VEXPRESS_CONFIG is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_FORCE=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_AHCI_CEVA is not set -CONFIG_AHCI_SUNXI=y -# CONFIG_AHCI_QORIQ is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_SATA_DWC is not set - -# -# PATA SFF controllers with BMDMA -# - -# -# PIO-only SFF controllers -# - -# -# Generic fallback / legacy drivers -# -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set - -# -# Distributed Switch Architecture drivers -# -# CONFIG_NET_DSA_MV88E6XXX_PTP is not set -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -CONFIG_NET_VENDOR_ALLWINNER=y -CONFIG_SUN4I_EMAC=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_NET_VENDOR_CIRRUS is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HISILICON=y -# CONFIG_HIX5HD2_GMAC is not set -# CONFIG_HISI_FEMAC is not set -# CONFIG_HIP04_ETH is not set -# CONFIG_HNS_DSAF is not set -# CONFIG_HNS_ENET is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -CONFIG_DWMAC_SUNXI=y -CONFIG_DWMAC_SUN8I=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_SUN4I=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADC is not set -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -CONFIG_KEYBOARD_SUN4I_LRADC=y -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -CONFIG_TOUCHSCREEN_SUN4I=y -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -CONFIG_INPUT_AXP20X_PEK=y -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_SUN4I_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=8 -CONFIG_SERIAL_8250_RUNTIME_UARTS=8 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_EM is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_SUN6I_P2WI=y -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_MASTER=y -# CONFIG_SPI_MEM is not set - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -CONFIG_SPI_SUN4I=y -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_LOOPBACK_TEST is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_PINCTRL_SUNXI=y -CONFIG_PINCTRL_SUN4I_A10=y -CONFIG_PINCTRL_SUN5I=y -CONFIG_PINCTRL_SUN6I_A31=y -CONFIG_PINCTRL_SUN6I_A31_R=y -CONFIG_PINCTRL_SUN8I_A23=y -CONFIG_PINCTRL_SUN8I_A33=y -CONFIG_PINCTRL_SUN8I_A83T=y -CONFIG_PINCTRL_SUN8I_A83T_R=y -CONFIG_PINCTRL_SUN8I_A23_R=y -CONFIG_PINCTRL_SUN8I_H3=y -CONFIG_PINCTRL_SUN8I_H3_R=y -CONFIG_PINCTRL_SUN8I_V3S=y -CONFIG_PINCTRL_SUN9I_A80=y -CONFIG_PINCTRL_SUN9I_A80_R=y -# CONFIG_PINCTRL_SUN50I_A64 is not set -# CONFIG_PINCTRL_SUN50I_A64_R is not set -# CONFIG_PINCTRL_SUN50I_A100 is not set -# CONFIG_PINCTRL_SUN50I_A100_R is not set -# CONFIG_PINCTRL_SUN50I_H5 is not set -# CONFIG_PINCTRL_SUN50I_H6 is not set -# CONFIG_PINCTRL_SUN50I_H6_R is not set -# CONFIG_PINCTRL_SUN50I_H616 is not set -# CONFIG_PINCTRL_SUN50I_H616_R is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_MPC8XXX is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_ZEVIO is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_HTC_EGPIO is not set -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -CONFIG_CHARGER_AXP20X=y -CONFIG_BATTERY_AXP20X=y -CONFIG_AXP20X_POWER=y -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DRIVETEMP is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -CONFIG_CPU_THERMAL=y -CONFIG_CPU_FREQ_THERMAL=y -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_SUN8I_THERMAL is not set -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_FTWDT010_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -CONFIG_SUNXI_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ARM_SMC_WATCHDOG is not set -# CONFIG_MEN_A21_WDT is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -CONFIG_MFD_AC100=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_AXP20X_RSB=y -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -CONFIG_REGULATOR_AXP20X=y -# CONFIG_REGULATOR_DA9121 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_FAN53880 is not set -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PF8X00 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_REGULATOR_VCTRL is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -# CONFIG_LIRC is not set -# CONFIG_RC_DECODERS is not set -CONFIG_RC_DEVICES=y -# CONFIG_RC_ATI_REMOTE is not set -# CONFIG_IR_HIX5HD2 is not set -# CONFIG_IR_IMON is not set -# CONFIG_IR_IMON_RAW is not set -# CONFIG_IR_MCEUSB is not set -# CONFIG_IR_REDRAT3 is not set -# CONFIG_IR_STREAMZAP is not set -# CONFIG_IR_IGORPLUGUSB is not set -# CONFIG_IR_IGUANA is not set -# CONFIG_IR_TTUSBIR is not set -# CONFIG_RC_LOOPBACK is not set -# CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=y -# CONFIG_IR_SERIAL is not set -# CONFIG_IR_SIR is not set -# CONFIG_RC_XBOX_DVD is not set -# CONFIG_IR_TOY is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -CONFIG_MEDIA_SUPPORT=y -CONFIG_MEDIA_SUPPORT_FILTER=y -CONFIG_MEDIA_SUBDRV_AUTOSELECT=y - -# -# Media device types -# -# CONFIG_MEDIA_CAMERA_SUPPORT is not set -# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set -# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set -# CONFIG_MEDIA_RADIO_SUPPORT is not set -# CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_PLATFORM_SUPPORT is not set -# CONFIG_MEDIA_TEST_SUPPORT is not set -# end of Media device types - -# -# Media drivers -# - -# -# Drivers filtered as selected at 'Filter media drivers' -# -# CONFIG_MEDIA_USB_SUPPORT is not set -# end of Media drivers - -CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV=y - -# -# Media ancillary drivers -# - -# -# Media SPI Adapters -# -# end of Media SPI Adapters -# end of Media ancillary drivers - -# -# Graphics support -# -# CONFIG_IMX_IPUV3_CORE is not set -CONFIG_DRM=y -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_GEM_CMA_HELPER=y -CONFIG_DRM_KMS_CMA_HELPER=y - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_HDLCD is not set -# CONFIG_DRM_MALI_DISPLAY is not set -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_EXYNOS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_ARMADA is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_SUN4I=y -CONFIG_DRM_SUN4I_HDMI=y -# CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=y -CONFIG_DRM_SUN6I_DSI=y -# CONFIG_DRM_SUN8I_DW_HDMI is not set -CONFIG_DRM_SUN8I_MIXER=y -CONFIG_DRM_SUN8I_TCON_TOP=y -# CONFIG_DRM_OMAP is not set -# CONFIG_DRM_TILCDC is not set -# CONFIG_DRM_VIRTIO_GPU is not set -# CONFIG_DRM_FSL_DCU is not set -# CONFIG_DRM_STM is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set -# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set -# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set -# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_STI is not set -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_PL111 is not set -# CONFIG_DRM_TVE200 is not set -# CONFIG_DRM_LIMA is not set -# CONFIG_DRM_PANFROST is not set -# CONFIG_DRM_MCDE is not set -# CONFIG_DRM_TIDSS is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -CONFIG_FB_SIMPLE=y -# CONFIG_FB_SSD1307 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VIDEOMODE_HELPERS=y -CONFIG_HDMI=y - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -CONFIG_SOUND=y -CONFIG_SND=y -CONFIG_SND_TIMER=y -CONFIG_SND_PCM=y -CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -# CONFIG_SND_OSSEMUL is not set -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_HRTIMER is not set -# CONFIG_SND_DYNAMIC_MINORS is not set -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -# CONFIG_SND_SEQUENCER is not set -CONFIG_SND_DRIVERS=y -# CONFIG_SND_DUMMY is not set -# CONFIG_SND_ALOOP is not set -# CONFIG_SND_MTPAV is not set -# CONFIG_SND_SERIAL_U16550 is not set -# CONFIG_SND_MPU401 is not set - -# -# HD-Audio -# -# end of HD-Audio - -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_ARM=y -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -# CONFIG_SND_USB_AUDIO is not set -# CONFIG_SND_USB_UA101 is not set -# CONFIG_SND_USB_CAIAQ is not set -# CONFIG_SND_USB_6FIRE is not set -# CONFIG_SND_USB_HIFACE is not set -# CONFIG_SND_BCD2000 is not set -# CONFIG_SND_USB_POD is not set -# CONFIG_SND_USB_PODHD is not set -# CONFIG_SND_USB_TONEPORT is not set -# CONFIG_SND_USB_VARIAX is not set -CONFIG_SND_SOC=y -CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y -# CONFIG_SND_SOC_ADI is not set -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -# CONFIG_SND_SOC_FSL_ASRC is not set -# CONFIG_SND_SOC_FSL_SAI is not set -# CONFIG_SND_SOC_FSL_AUDMIX is not set -# CONFIG_SND_SOC_FSL_SSI is not set -# CONFIG_SND_SOC_FSL_SPDIF is not set -# CONFIG_SND_SOC_FSL_ESAI is not set -# CONFIG_SND_SOC_FSL_MICFIL is not set -# CONFIG_SND_SOC_FSL_XCVR is not set -# CONFIG_SND_SOC_IMX_AUDMUX is not set -# end of SoC Audio for Freescale CPUs - -# CONFIG_SND_I2S_HI6210_I2S is not set -# CONFIG_SND_SOC_IMG is not set -# CONFIG_SND_SOC_MTK_BTCVSD is not set -# CONFIG_SND_SOC_SOF_TOPLEVEL is not set - -# -# STMicroelectronics STM32 SOC audio support -# -# end of STMicroelectronics STM32 SOC audio support - -# -# Allwinner SoC Audio support -# -CONFIG_SND_SUN4I_CODEC=y -# CONFIG_SND_SUN8I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC_ANALOG is not set -# CONFIG_SND_SUN4I_I2S is not set -# CONFIG_SND_SUN4I_SPDIF is not set -# end of Allwinner SoC Audio support - -# CONFIG_SND_SOC_XILINX_I2S is not set -# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set -# CONFIG_SND_SOC_XILINX_SPDIF is not set -# CONFIG_SND_SOC_XTFPGA_I2S is not set -CONFIG_SND_SOC_I2C_AND_SPI=y - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1372_I2C is not set -# CONFIG_SND_SOC_ADAU1372_SPI is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU1761_I2C is not set -# CONFIG_SND_SOC_ADAU1761_SPI is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_ADAU7118_HW is not set -# CONFIG_SND_SOC_ADAU7118_I2C is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4118 is not set -# CONFIG_SND_SOC_AK4458 is not set -# CONFIG_SND_SOC_AK4554 is not set -# CONFIG_SND_SOC_AK4613 is not set -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -# CONFIG_SND_SOC_AK5558 is not set -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BD28623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS35L34 is not set -# CONFIG_SND_SOC_CS35L35 is not set -# CONFIG_SND_SOC_CS35L36 is not set -# CONFIG_SND_SOC_CS42L42 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4234 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -# CONFIG_SND_SOC_CS42XX8_I2C is not set -# CONFIG_SND_SOC_CS43130 is not set -# CONFIG_SND_SOC_CS4341 is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -# CONFIG_SND_SOC_CX2072X is not set -# CONFIG_SND_SOC_DA7213 is not set -# CONFIG_SND_SOC_DMIC is not set -# CONFIG_SND_SOC_ES7134 is not set -# CONFIG_SND_SOC_ES7241 is not set -# CONFIG_SND_SOC_ES8316 is not set -# CONFIG_SND_SOC_ES8328_I2C is not set -# CONFIG_SND_SOC_ES8328_SPI is not set -# CONFIG_SND_SOC_GTM601 is not set -# CONFIG_SND_SOC_INNO_RK3036 is not set -# CONFIG_SND_SOC_MAX98088 is not set -# CONFIG_SND_SOC_MAX98357A is not set -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9867 is not set -# CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373_I2C is not set -# CONFIG_SND_SOC_MAX98390 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM1789_I2C is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM186X_I2C is not set -# CONFIG_SND_SOC_PCM186X_SPI is not set -# CONFIG_SND_SOC_PCM3060_I2C is not set -# CONFIG_SND_SOC_PCM3060_SPI is not set -# CONFIG_SND_SOC_PCM3168A_I2C is not set -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM5102A is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -# CONFIG_SND_SOC_RK3328 is not set -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -# CONFIG_SND_SOC_RT5659 is not set -# CONFIG_SND_SOC_SGTL5000 is not set -# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set -# CONFIG_SND_SOC_SIMPLE_MUX is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -# CONFIG_SND_SOC_SPDIF is not set -# CONFIG_SND_SOC_SSM2305 is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -# CONFIG_SND_SOC_SSM4567 is not set -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS2562 is not set -# CONFIG_SND_SOC_TAS2764 is not set -# CONFIG_SND_SOC_TAS2770 is not set -# CONFIG_SND_SOC_TAS5086 is not set -# CONFIG_SND_SOC_TAS571X is not set -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TAS6424 is not set -# CONFIG_SND_SOC_TDA7419 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set -# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -# CONFIG_SND_SOC_TLV320ADCX140 is not set -# CONFIG_SND_SOC_TS3A227E is not set -# CONFIG_SND_SOC_TSCS42XX is not set -# CONFIG_SND_SOC_TSCS454 is not set -# CONFIG_SND_SOC_UDA1334 is not set -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -# CONFIG_SND_SOC_WM8524 is not set -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8782 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8904 is not set -# CONFIG_SND_SOC_WM8960 is not set -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_ZL38060 is not set -# CONFIG_SND_SOC_ZX_AUD96P22 is not set -# CONFIG_SND_SOC_MAX9759 is not set -# CONFIG_SND_SOC_MT6351 is not set -# CONFIG_SND_SOC_MT6358 is not set -# CONFIG_SND_SOC_MT6660 is not set -# CONFIG_SND_SOC_NAU8315 is not set -# CONFIG_SND_SOC_NAU8540 is not set -# CONFIG_SND_SOC_NAU8810 is not set -# CONFIG_SND_SOC_NAU8822 is not set -# CONFIG_SND_SOC_NAU8824 is not set -# CONFIG_SND_SOC_TPA6130A2 is not set -# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set -# CONFIG_SND_SOC_LPASS_VA_MACRO is not set -# CONFIG_SND_SOC_LPASS_RX_MACRO is not set -# CONFIG_SND_SOC_LPASS_TX_MACRO is not set -# end of CODEC drivers - -# CONFIG_SND_SIMPLE_CARD is not set -# CONFIG_SND_AUDIO_GRAPH_CARD is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_PRODIKEYS is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_HIDPP is not set -# CONFIG_LOGITECH_FF is not set -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -# CONFIG_LOGIWHEELS_FF is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_XHCI_HCD is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_STORAGE is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# -CONFIG_USB_MUSB_SUNXI=y - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_AM335X_PHY_USB is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 - -# -# USB Peripheral Controller -# -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -# CONFIG_USB_SNP_UDC_PLAT is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_BDC_UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_MAX3420_UDC is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -# CONFIG_USB_CONFIGFS is not set - -# -# USB Gadget precomposed configurations -# -# CONFIG_USB_ZERO is not set -# CONFIG_USB_AUDIO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_MASS_STORAGE is not set -# CONFIG_USB_G_SERIAL is not set -# CONFIG_USB_MIDI_GADGET is not set -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set -# CONFIG_USB_RAW_GADGET is not set -# end of USB Gadget precomposed configurations - -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -CONFIG_LEDS_TRIGGER_DEFAULT_ON=y - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set - -# -# LED Blink -# -# CONFIG_LEDS_BLINK is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -# CONFIG_RTC_INTF_SYSFS is not set -# CONFIG_RTC_INTF_PROC is not set -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_AC100=y -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_SUN6I=y -CONFIG_RTC_DRV_SUNXI=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DMA_SUN4I=y -CONFIG_DMA_SUN6I=y -# CONFIG_DW_AXI_DMAC is not set -# CONFIG_FSL_EDMA is not set -# CONFIG_FSL_QDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_NBPFAXI_DMA is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN4I_A10_CCU=y -CONFIG_SUN5I_CCU=y -CONFIG_SUN6I_A31_CCU=y -CONFIG_SUN8I_A23_CCU=y -CONFIG_SUN8I_A33_CCU=y -CONFIG_SUN8I_A83T_CCU=y -CONFIG_SUN8I_H3_CCU=y -CONFIG_SUN8I_V3S_CCU=y -CONFIG_SUN8I_DE2_CCU=y -CONFIG_SUN8I_R40_CCU=y -CONFIG_SUN9I_A80_CCU=y -CONFIG_SUN8I_R_CCU=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_SUN4I_TIMER=y -CONFIG_SUN5I_HSTIMER=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_QUICC_ENGINE is not set -# CONFIG_FSL_RCPM is not set -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SUNXI_MBUS=y -CONFIG_SUNXI_SRAM=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -# CONFIG_EXTCON_USB_GPIO is not set -# CONFIG_EXTCON_USBC_TUSB320 is not set -# CONFIG_MEMORY is not set -CONFIG_IIO=y -# CONFIG_IIO_BUFFER is not set -# CONFIG_IIO_CONFIGFS is not set -# CONFIG_IIO_TRIGGER is not set -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set -# CONFIG_IIO_TRIGGERED_EVENT is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMA400 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7091R5 is not set -# CONFIG_AD7124 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7292 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -# CONFIG_AD9467 is not set -# CONFIG_ADI_AXI_ADC is not set -CONFIG_AXP20X_ADC=y -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_INA2XX_ADC is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2496 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1241 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_SUN4I_GPADC is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# CONFIG_HMC425 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_ATLAS_EZO_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_SCD30_CORE is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5766 is not set -# CONFIG_AD5770R is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS290 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HDC2010 is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16475 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_FXOS8700_I2C is not set -# CONFIG_FXOS8700_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_ICM42600_I2C is not set -# CONFIG_INV_ICM42600_SPI is not set -# CONFIG_INV_MPU6050_I2C is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ADJD_S311 is not set -# CONFIG_ADUX1020 is not set -# CONFIG_AL3010 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_AS73211 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP002 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6030 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# CONFIG_YAMAHA_YAS530 is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Linear and angular position sensors -# -# end of Linear and angular position sensors - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DLHL60D is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_ICP10100 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_PING is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9310 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VCNL3020 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_LTC2983 is not set -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_SUN4I=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_ARCH_HAS_RESET_CONTROLLER=y -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_SUN4I_USB=y -CONFIG_PHY_SUN6I_MIPI_DPHY=y -CONFIG_PHY_SUN9I_USB=y -# CONFIG_PHY_SUN50I_USB3 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -CONFIG_ARM_PMU=y -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -CONFIG_NVMEM_SUNXI_SID=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -CONFIG_MEMFD_CREATE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_ALLWINNER=y -CONFIG_CRYPTO_DEV_SUN4I_SS=y -# CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set -# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set -# CONFIG_CRYPTO_DEV_SUN8I_CE is not set -# CONFIG_CRYPTO_DEV_SUN8I_SS is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_DMA_OPS=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_32=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set - -# -# Debug kernel data structures -# -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# end of RCU Debugging - -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set -# CONFIG_STRICT_DEVMEM is not set - -# -# arm Debugging -# -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_CORESIGHT is not set -# end of arm Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_BITOPS is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_BLACKHOLE_DEV is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_TEST_FREE_PAGES is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/cubie/board/cpu.config-5.4.0 b/mainboards/cubie/board/cpu.config-5.4.0 deleted file mode 100644 index 63655833..00000000 --- a/mainboards/cubie/board/cpu.config-5.4.0 +++ /dev/null @@ -1,4578 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.12.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y -CONFIG_GENERIC_IRQ_IPI=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -CONFIG_NO_HZ=y -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -CONFIG_SCHED_THERMAL_PRESSURE=y -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -# CONFIG_CGROUP_SCHED is not set -# CONFIG_CGROUP_PIDS is not set -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_CGROUP_PERF is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -CONFIG_RD_BZIP2=y -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=y -CONFIG_RD_LZ4=y -CONFIG_RD_ZSTD=y -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_BPF=y -# CONFIG_EXPERT is not set -CONFIG_UID16=y -CONFIG_MULTIUSER=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_KCMP=y -CONFIG_RSEQ=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_ARM_HAS_SG_CHAIN=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_HAVE_PROC_CPU=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARM_PATCH_PHYS_VIRT=y -CONFIG_GENERIC_BUG=y -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARCH_MULTIPLATFORM=y -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_IOP32X is not set -# CONFIG_ARCH_IXP4XX is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_PXA is not set -# CONFIG_ARCH_RPC is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_OMAP1 is not set - -# -# Multiple platform selection -# - -# -# CPU Core family selection -# -# CONFIG_ARCH_MULTI_V6 is not set -CONFIG_ARCH_MULTI_V7=y -CONFIG_ARCH_MULTI_V6_V7=y -# end of Multiple platform selection - -# CONFIG_ARCH_VIRT is not set -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_ARTPEC is not set -# CONFIG_ARCH_ASPEED is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_BCM is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_DIGICOLOR is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_HIGHBANK is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_KEYSTONE is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MILBEAUT is not set -# CONFIG_ARCH_MMP is not set -# CONFIG_ARCH_MSTARV7 is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_NPCM is not set - -# -# TI OMAP/AM/DM/DRA Family -# -# CONFIG_ARCH_OMAP3 is not set -# CONFIG_ARCH_OMAP4 is not set -# CONFIG_SOC_OMAP5 is not set -# CONFIG_SOC_AM33XX is not set -# CONFIG_SOC_AM43XX is not set -# CONFIG_SOC_DRA7XX is not set -# end of TI OMAP/AM/DM/DRA Family - -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_RDA is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_REALVIEW is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S5PV210 is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_SOCFPGA is not set -# CONFIG_PLAT_SPEAR is not set -# CONFIG_ARCH_STI is not set -# CONFIG_ARCH_STM32 is not set -CONFIG_ARCH_SUNXI=y -CONFIG_MACH_SUN4I=y -CONFIG_MACH_SUN5I=y -CONFIG_MACH_SUN6I=y -CONFIG_MACH_SUN7I=y -CONFIG_MACH_SUN8I=y -CONFIG_MACH_SUN9I=y -CONFIG_ARCH_SUNXI_MC_SMP=y -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_U8500 is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_WM8850 is not set -# CONFIG_ARCH_ZYNQ is not set - -# -# Processor Type -# -CONFIG_CPU_V7=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v6K=y -CONFIG_CPU_32v7=y -CONFIG_CPU_ABRT_EV7=y -CONFIG_CPU_PABRT_V7=y -CONFIG_CPU_CACHE_V7=y -CONFIG_CPU_CACHE_VIPT=y -CONFIG_CPU_COPY_V6=y -CONFIG_CPU_TLB_V7=y -CONFIG_CPU_HAS_ASID=y -CONFIG_CPU_CP15=y -CONFIG_CPU_CP15_MMU=y - -# -# Processor Features -# -# CONFIG_ARM_LPAE is not set -CONFIG_ARM_THUMB=y -# CONFIG_ARM_THUMBEE is not set -CONFIG_ARM_VIRT_EXT=y -CONFIG_SWP_EMULATE=y -# CONFIG_CPU_BIG_ENDIAN is not set -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_CPU_SPECTRE=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_KUSER_HELPERS=y -CONFIG_VDSO=y -CONFIG_OUTER_CACHE=y -CONFIG_OUTER_CACHE_SYNC=y -CONFIG_MIGHT_HAVE_CACHE_L2X0=y -CONFIG_CACHE_L2X0=y -# CONFIG_CACHE_L2X0_PMU is not set -# CONFIG_PL310_ERRATA_588369 is not set -# CONFIG_PL310_ERRATA_727915 is not set -# CONFIG_PL310_ERRATA_753970 is not set -# CONFIG_PL310_ERRATA_769419 is not set -CONFIG_ARM_L1_CACHE_SHIFT_6=y -CONFIG_ARM_L1_CACHE_SHIFT=6 -CONFIG_ARM_DMA_MEM_BUFFERABLE=y -CONFIG_ARM_HEAVY_MB=y -CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y -CONFIG_DEBUG_ALIGN_RODATA=y -# CONFIG_ARM_ERRATA_430973 is not set -CONFIG_ARM_ERRATA_643719=y -# CONFIG_ARM_ERRATA_720789 is not set -# CONFIG_ARM_ERRATA_754322 is not set -# CONFIG_ARM_ERRATA_754327 is not set -# CONFIG_ARM_ERRATA_764369 is not set -# CONFIG_ARM_ERRATA_775420 is not set -# CONFIG_ARM_ERRATA_798181 is not set -# CONFIG_ARM_ERRATA_773022 is not set -# CONFIG_ARM_ERRATA_818325_852422 is not set -# CONFIG_ARM_ERRATA_821420 is not set -# CONFIG_ARM_ERRATA_825619 is not set -# CONFIG_ARM_ERRATA_857271 is not set -# CONFIG_ARM_ERRATA_852421 is not set -# CONFIG_ARM_ERRATA_852423 is not set -# CONFIG_ARM_ERRATA_857272 is not set -# end of System Type - -# -# Bus support -# -# CONFIG_ARM_ERRATA_814220 is not set -# end of Bus support - -# -# Kernel Features -# -CONFIG_HAVE_SMP=y -CONFIG_SMP=y -CONFIG_SMP_ON_UP=y -CONFIG_ARM_CPU_TOPOLOGY=y -# CONFIG_SCHED_MC is not set -# CONFIG_SCHED_SMT is not set -CONFIG_HAVE_ARM_ARCH_TIMER=y -# CONFIG_MCPM is not set -# CONFIG_BIG_LITTLE is not set -CONFIG_VMSPLIT_3G=y -# CONFIG_VMSPLIT_3G_OPT is not set -# CONFIG_VMSPLIT_2G is not set -# CONFIG_VMSPLIT_1G is not set -CONFIG_PAGE_OFFSET=0xC0000000 -CONFIG_NR_CPUS=8 -CONFIG_HOTPLUG_CPU=y -CONFIG_ARM_PSCI=y -CONFIG_ARCH_NR_GPIO=416 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_SCHED_HRTICK=y -# CONFIG_THUMB2_KERNEL is not set -CONFIG_ARM_PATCH_IDIV=y -CONFIG_AEABI=y -# CONFIG_OABI_COMPAT is not set -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_HIGHMEM=y -CONFIG_HIGHPTE=y -CONFIG_CPU_SW_DOMAIN_PAN=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARM_MODULE_PLTS=y -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_ALIGNMENT_TRAP=y -# CONFIG_UACCESS_WITH_MEMCPY is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# CONFIG_XEN is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -CONFIG_ATAGS=y -# CONFIG_DEPRECATED_PARAM_STRUCT is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -CONFIG_ARM_APPENDED_DTB=y -CONFIG_ARM_ATAG_DTB_COMPAT=y -CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y -# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set -CONFIG_CMDLINE="" -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# CONFIG_EFI is not set -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -# CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -CONFIG_VFP=y -CONFIG_VFPv3=y -CONFIG_NEON=y -# CONFIG_KERNEL_MODE_NEON is not set -# end of Floating point emulation - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -# CONFIG_APM_EMULATION is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARM_CPU_SUSPEND=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_TRUSTED_FOUNDATIONS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_ARM_PSCI_FW=y -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y -CONFIG_ARM_SMCCC_SOC_ID=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_ARM_CRYPTO is not set -CONFIG_AS_VFP_VMRS_FPINST=y - -# -# General architecture-dependent options -# -CONFIG_SET_FS=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=8 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -CONFIG_COMPAT_32BIT_TIME=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_PHYS_TO_DMA=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y -CONFIG_HAVE_ARCH_PFN_VALID=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -CONFIG_MODULE_UNLOAD=y -# CONFIG_MODULE_FORCE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -# CONFIG_BINFMT_ELF_FDPIC is not set -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_KMAP_LOCAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -CONFIG_CAN=y -CONFIG_CAN_RAW=y -CONFIG_CAN_BCM=y -CONFIG_CAN_GW=y -# CONFIG_CAN_J1939 is not set -# CONFIG_CAN_ISOTP is not set - -# -# CAN Device Drivers -# -# CONFIG_CAN_VCAN is not set -# CONFIG_CAN_VXCAN is not set -# CONFIG_CAN_SLCAN is not set -CONFIG_CAN_DEV=y -CONFIG_CAN_CALC_BITTIMING=y -# CONFIG_CAN_FLEXCAN is not set -# CONFIG_CAN_GRCAN is not set -CONFIG_CAN_SUN4I=y -# CONFIG_CAN_TI_HECC is not set -# CONFIG_CAN_C_CAN is not set -# CONFIG_CAN_CC770 is not set -# CONFIG_CAN_IFI_CANFD is not set -# CONFIG_CAN_M_CAN is not set -# CONFIG_CAN_RCAR is not set -# CONFIG_CAN_RCAR_CANFD is not set -# CONFIG_CAN_SJA1000 is not set -# CONFIG_CAN_SOFTING is not set - -# -# CAN SPI interfaces -# -# CONFIG_CAN_HI311X is not set -# CONFIG_CAN_MCP251X is not set -# CONFIG_CAN_MCP251XFD is not set -# end of CAN SPI interfaces - -# -# CAN USB interfaces -# -# CONFIG_CAN_8DEV_USB is not set -# CONFIG_CAN_EMS_USB is not set -# CONFIG_CAN_ESD_USB2 is not set -# CONFIG_CAN_GS_USB is not set -# CONFIG_CAN_KVASER_USB is not set -# CONFIG_CAN_MCBA_USB is not set -# CONFIG_CAN_PEAK_USB is not set -# CONFIG_CAN_UCAN is not set -# end of CAN USB interfaces - -# CONFIG_CAN_DEBUG_DEVICES is not set -# end of CAN Device Drivers - -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_SOC_BUS=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_ARM_CCI=y -CONFIG_ARM_CCI400_COMMON=y -CONFIG_ARM_CCI400_PORT_CTRL=y -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_SUN50I_DE2_BUS is not set -CONFIG_SUNXI_RSB=y -# CONFIG_VEXPRESS_CONFIG is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_FORCE=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_AHCI_CEVA is not set -CONFIG_AHCI_SUNXI=y -# CONFIG_AHCI_QORIQ is not set -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -# CONFIG_SATA_DWC is not set - -# -# PATA SFF controllers with BMDMA -# - -# -# PIO-only SFF controllers -# - -# -# Generic fallback / legacy drivers -# -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set - -# -# Distributed Switch Architecture drivers -# -# CONFIG_NET_DSA_MV88E6XXX_PTP is not set -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -CONFIG_NET_VENDOR_ALLWINNER=y -CONFIG_SUN4I_EMAC=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_NET_VENDOR_CIRRUS is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DM9000 is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_FARADAY is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HISILICON=y -# CONFIG_HIX5HD2_GMAC is not set -# CONFIG_HISI_FEMAC is not set -# CONFIG_HIP04_ETH is not set -# CONFIG_HNS_DSAF is not set -# CONFIG_HNS_ENET is not set -CONFIG_NET_VENDOR_HUAWEI=y -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -CONFIG_NET_VENDOR_SOLARFLARE=y -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -CONFIG_DWMAC_SUNXI=y -CONFIG_DWMAC_SUN8I=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_SUN4I=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set -# CONFIG_WAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -CONFIG_INPUT_FF_MEMLESS=y -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADC is not set -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -CONFIG_KEYBOARD_SUN4I_LRADC=y -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -CONFIG_TOUCHSCREEN_SUN4I=y -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -CONFIG_INPUT_AXP20X_PEK=y -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_DA7280_HAPTICS is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_SUN4I_PS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=8 -CONFIG_SERIAL_8250_RUNTIME_UARTS=8 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_EM is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_SUN6I_P2WI=y -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_MASTER=y -# CONFIG_SPI_MEM is not set - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -CONFIG_SPI_SUN4I=y -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_LOOPBACK_TEST is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_PINCTRL_SUNXI=y -CONFIG_PINCTRL_SUN4I_A10=y -CONFIG_PINCTRL_SUN5I=y -CONFIG_PINCTRL_SUN6I_A31=y -CONFIG_PINCTRL_SUN6I_A31_R=y -CONFIG_PINCTRL_SUN8I_A23=y -CONFIG_PINCTRL_SUN8I_A33=y -CONFIG_PINCTRL_SUN8I_A83T=y -CONFIG_PINCTRL_SUN8I_A83T_R=y -CONFIG_PINCTRL_SUN8I_A23_R=y -CONFIG_PINCTRL_SUN8I_H3=y -CONFIG_PINCTRL_SUN8I_H3_R=y -CONFIG_PINCTRL_SUN8I_V3S=y -CONFIG_PINCTRL_SUN9I_A80=y -CONFIG_PINCTRL_SUN9I_A80_R=y -# CONFIG_PINCTRL_SUN50I_A64 is not set -# CONFIG_PINCTRL_SUN50I_A64_R is not set -# CONFIG_PINCTRL_SUN50I_A100 is not set -# CONFIG_PINCTRL_SUN50I_A100_R is not set -# CONFIG_PINCTRL_SUN50I_H5 is not set -# CONFIG_PINCTRL_SUN50I_H6 is not set -# CONFIG_PINCTRL_SUN50I_H6_R is not set -# CONFIG_PINCTRL_SUN50I_H616 is not set -# CONFIG_PINCTRL_SUN50I_H616_R is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_MPC8XXX is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_ZEVIO is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_HTC_EGPIO is not set -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -CONFIG_CHARGER_AXP20X=y -CONFIG_BATTERY_AXP20X=y -CONFIG_AXP20X_POWER=y -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_LTC4162L is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_BQ256XX is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DRIVETEMP is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -CONFIG_CPU_THERMAL=y -CONFIG_CPU_FREQ_THERMAL=y -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_SUN8I_THERMAL is not set -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_FTWDT010_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -CONFIG_SUNXI_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_ARM_SMC_WATCHDOG is not set -# CONFIG_MEN_A21_WDT is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -CONFIG_MFD_AC100=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -CONFIG_MFD_AXP20X_RSB=y -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_ASIC3 is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -CONFIG_REGULATOR_AXP20X=y -# CONFIG_REGULATOR_DA9121 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_FAN53880 is not set -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PF8X00 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_PWM is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_REGULATOR_VCTRL is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -# CONFIG_LIRC is not set -# CONFIG_RC_DECODERS is not set -CONFIG_RC_DEVICES=y -# CONFIG_RC_ATI_REMOTE is not set -# CONFIG_IR_HIX5HD2 is not set -# CONFIG_IR_IMON is not set -# CONFIG_IR_IMON_RAW is not set -# CONFIG_IR_MCEUSB is not set -# CONFIG_IR_REDRAT3 is not set -# CONFIG_IR_STREAMZAP is not set -# CONFIG_IR_IGORPLUGUSB is not set -# CONFIG_IR_IGUANA is not set -# CONFIG_IR_TTUSBIR is not set -# CONFIG_RC_LOOPBACK is not set -# CONFIG_IR_GPIO_CIR is not set -CONFIG_IR_SUNXI=y -# CONFIG_IR_SERIAL is not set -# CONFIG_IR_SIR is not set -# CONFIG_RC_XBOX_DVD is not set -# CONFIG_IR_TOY is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -CONFIG_MEDIA_SUPPORT=y -CONFIG_MEDIA_SUPPORT_FILTER=y -CONFIG_MEDIA_SUBDRV_AUTOSELECT=y - -# -# Media device types -# -# CONFIG_MEDIA_CAMERA_SUPPORT is not set -# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set -# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set -# CONFIG_MEDIA_RADIO_SUPPORT is not set -# CONFIG_MEDIA_SDR_SUPPORT is not set -# CONFIG_MEDIA_PLATFORM_SUPPORT is not set -# CONFIG_MEDIA_TEST_SUPPORT is not set -# end of Media device types - -# -# Media drivers -# - -# -# Drivers filtered as selected at 'Filter media drivers' -# -# CONFIG_MEDIA_USB_SUPPORT is not set -# end of Media drivers - -CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV=y - -# -# Media ancillary drivers -# - -# -# Media SPI Adapters -# -# end of Media SPI Adapters -# end of Media ancillary drivers - -# -# Graphics support -# -# CONFIG_IMX_IPUV3_CORE is not set -CONFIG_DRM=y -CONFIG_DRM_MIPI_DSI=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set -CONFIG_DRM_GEM_CMA_HELPER=y -CONFIG_DRM_KMS_CMA_HELPER=y - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_HDLCD is not set -# CONFIG_DRM_MALI_DISPLAY is not set -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_EXYNOS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_ARMADA is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_SUN4I=y -CONFIG_DRM_SUN4I_HDMI=y -# CONFIG_DRM_SUN4I_HDMI_CEC is not set -CONFIG_DRM_SUN4I_BACKEND=y -CONFIG_DRM_SUN6I_DSI=y -# CONFIG_DRM_SUN8I_DW_HDMI is not set -CONFIG_DRM_SUN8I_MIXER=y -CONFIG_DRM_SUN8I_TCON_TOP=y -# CONFIG_DRM_OMAP is not set -# CONFIG_DRM_TILCDC is not set -# CONFIG_DRM_VIRTIO_GPU is not set -# CONFIG_DRM_FSL_DCU is not set -# CONFIG_DRM_STM is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set -# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set -# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set -# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_STI is not set -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_PL111 is not set -# CONFIG_DRM_TVE200 is not set -# CONFIG_DRM_LIMA is not set -# CONFIG_DRM_PANFROST is not set -# CONFIG_DRM_MCDE is not set -# CONFIG_DRM_TIDSS is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -CONFIG_FB_SIMPLE=y -# CONFIG_FB_SSD1307 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_VIDEOMODE_HELPERS=y -CONFIG_HDMI=y - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -CONFIG_SOUND=y -CONFIG_SND=y -CONFIG_SND_TIMER=y -CONFIG_SND_PCM=y -CONFIG_SND_DMAENGINE_PCM=y -CONFIG_SND_JACK=y -CONFIG_SND_JACK_INPUT_DEV=y -# CONFIG_SND_OSSEMUL is not set -CONFIG_SND_PCM_TIMER=y -# CONFIG_SND_HRTIMER is not set -# CONFIG_SND_DYNAMIC_MINORS is not set -CONFIG_SND_SUPPORT_OLD_API=y -CONFIG_SND_PROC_FS=y -CONFIG_SND_VERBOSE_PROCFS=y -# CONFIG_SND_VERBOSE_PRINTK is not set -# CONFIG_SND_DEBUG is not set -# CONFIG_SND_SEQUENCER is not set -CONFIG_SND_DRIVERS=y -# CONFIG_SND_DUMMY is not set -# CONFIG_SND_ALOOP is not set -# CONFIG_SND_MTPAV is not set -# CONFIG_SND_SERIAL_U16550 is not set -# CONFIG_SND_MPU401 is not set - -# -# HD-Audio -# -# end of HD-Audio - -CONFIG_SND_HDA_PREALLOC_SIZE=64 -CONFIG_SND_ARM=y -CONFIG_SND_SPI=y -CONFIG_SND_USB=y -# CONFIG_SND_USB_AUDIO is not set -# CONFIG_SND_USB_UA101 is not set -# CONFIG_SND_USB_CAIAQ is not set -# CONFIG_SND_USB_6FIRE is not set -# CONFIG_SND_USB_HIFACE is not set -# CONFIG_SND_BCD2000 is not set -# CONFIG_SND_USB_POD is not set -# CONFIG_SND_USB_PODHD is not set -# CONFIG_SND_USB_TONEPORT is not set -# CONFIG_SND_USB_VARIAX is not set -CONFIG_SND_SOC=y -CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y -# CONFIG_SND_SOC_ADI is not set -# CONFIG_SND_SOC_AMD_ACP is not set -# CONFIG_SND_ATMEL_SOC is not set -# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set -# CONFIG_SND_DESIGNWARE_I2S is not set - -# -# SoC Audio for Freescale CPUs -# - -# -# Common SoC Audio options for Freescale CPUs: -# -# CONFIG_SND_SOC_FSL_ASRC is not set -# CONFIG_SND_SOC_FSL_SAI is not set -# CONFIG_SND_SOC_FSL_AUDMIX is not set -# CONFIG_SND_SOC_FSL_SSI is not set -# CONFIG_SND_SOC_FSL_SPDIF is not set -# CONFIG_SND_SOC_FSL_ESAI is not set -# CONFIG_SND_SOC_FSL_MICFIL is not set -# CONFIG_SND_SOC_FSL_XCVR is not set -# CONFIG_SND_SOC_IMX_AUDMUX is not set -# end of SoC Audio for Freescale CPUs - -# CONFIG_SND_I2S_HI6210_I2S is not set -# CONFIG_SND_SOC_IMG is not set -# CONFIG_SND_SOC_MTK_BTCVSD is not set -# CONFIG_SND_SOC_SOF_TOPLEVEL is not set - -# -# STMicroelectronics STM32 SOC audio support -# -# end of STMicroelectronics STM32 SOC audio support - -# -# Allwinner SoC Audio support -# -CONFIG_SND_SUN4I_CODEC=y -# CONFIG_SND_SUN8I_CODEC is not set -# CONFIG_SND_SUN8I_CODEC_ANALOG is not set -# CONFIG_SND_SUN4I_I2S is not set -# CONFIG_SND_SUN4I_SPDIF is not set -# end of Allwinner SoC Audio support - -# CONFIG_SND_SOC_XILINX_I2S is not set -# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set -# CONFIG_SND_SOC_XILINX_SPDIF is not set -# CONFIG_SND_SOC_XTFPGA_I2S is not set -CONFIG_SND_SOC_I2C_AND_SPI=y - -# -# CODEC drivers -# -# CONFIG_SND_SOC_AC97_CODEC is not set -# CONFIG_SND_SOC_ADAU1372_I2C is not set -# CONFIG_SND_SOC_ADAU1372_SPI is not set -# CONFIG_SND_SOC_ADAU1701 is not set -# CONFIG_SND_SOC_ADAU1761_I2C is not set -# CONFIG_SND_SOC_ADAU1761_SPI is not set -# CONFIG_SND_SOC_ADAU7002 is not set -# CONFIG_SND_SOC_ADAU7118_HW is not set -# CONFIG_SND_SOC_ADAU7118_I2C is not set -# CONFIG_SND_SOC_AK4104 is not set -# CONFIG_SND_SOC_AK4118 is not set -# CONFIG_SND_SOC_AK4458 is not set -# CONFIG_SND_SOC_AK4554 is not set -# CONFIG_SND_SOC_AK4613 is not set -# CONFIG_SND_SOC_AK4642 is not set -# CONFIG_SND_SOC_AK5386 is not set -# CONFIG_SND_SOC_AK5558 is not set -# CONFIG_SND_SOC_ALC5623 is not set -# CONFIG_SND_SOC_BD28623 is not set -# CONFIG_SND_SOC_BT_SCO is not set -# CONFIG_SND_SOC_CS35L32 is not set -# CONFIG_SND_SOC_CS35L33 is not set -# CONFIG_SND_SOC_CS35L34 is not set -# CONFIG_SND_SOC_CS35L35 is not set -# CONFIG_SND_SOC_CS35L36 is not set -# CONFIG_SND_SOC_CS42L42 is not set -# CONFIG_SND_SOC_CS42L51_I2C is not set -# CONFIG_SND_SOC_CS42L52 is not set -# CONFIG_SND_SOC_CS42L56 is not set -# CONFIG_SND_SOC_CS42L73 is not set -# CONFIG_SND_SOC_CS4234 is not set -# CONFIG_SND_SOC_CS4265 is not set -# CONFIG_SND_SOC_CS4270 is not set -# CONFIG_SND_SOC_CS4271_I2C is not set -# CONFIG_SND_SOC_CS4271_SPI is not set -# CONFIG_SND_SOC_CS42XX8_I2C is not set -# CONFIG_SND_SOC_CS43130 is not set -# CONFIG_SND_SOC_CS4341 is not set -# CONFIG_SND_SOC_CS4349 is not set -# CONFIG_SND_SOC_CS53L30 is not set -# CONFIG_SND_SOC_CX2072X is not set -# CONFIG_SND_SOC_DA7213 is not set -# CONFIG_SND_SOC_DMIC is not set -# CONFIG_SND_SOC_ES7134 is not set -# CONFIG_SND_SOC_ES7241 is not set -# CONFIG_SND_SOC_ES8316 is not set -# CONFIG_SND_SOC_ES8328_I2C is not set -# CONFIG_SND_SOC_ES8328_SPI is not set -# CONFIG_SND_SOC_GTM601 is not set -# CONFIG_SND_SOC_INNO_RK3036 is not set -# CONFIG_SND_SOC_MAX98088 is not set -# CONFIG_SND_SOC_MAX98357A is not set -# CONFIG_SND_SOC_MAX98504 is not set -# CONFIG_SND_SOC_MAX9867 is not set -# CONFIG_SND_SOC_MAX98927 is not set -# CONFIG_SND_SOC_MAX98373_I2C is not set -# CONFIG_SND_SOC_MAX98390 is not set -# CONFIG_SND_SOC_MAX9860 is not set -# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set -# CONFIG_SND_SOC_PCM1681 is not set -# CONFIG_SND_SOC_PCM1789_I2C is not set -# CONFIG_SND_SOC_PCM179X_I2C is not set -# CONFIG_SND_SOC_PCM179X_SPI is not set -# CONFIG_SND_SOC_PCM186X_I2C is not set -# CONFIG_SND_SOC_PCM186X_SPI is not set -# CONFIG_SND_SOC_PCM3060_I2C is not set -# CONFIG_SND_SOC_PCM3060_SPI is not set -# CONFIG_SND_SOC_PCM3168A_I2C is not set -# CONFIG_SND_SOC_PCM3168A_SPI is not set -# CONFIG_SND_SOC_PCM5102A is not set -# CONFIG_SND_SOC_PCM512x_I2C is not set -# CONFIG_SND_SOC_PCM512x_SPI is not set -# CONFIG_SND_SOC_RK3328 is not set -# CONFIG_SND_SOC_RT5616 is not set -# CONFIG_SND_SOC_RT5631 is not set -# CONFIG_SND_SOC_RT5659 is not set -# CONFIG_SND_SOC_SGTL5000 is not set -# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set -# CONFIG_SND_SOC_SIMPLE_MUX is not set -# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set -# CONFIG_SND_SOC_SPDIF is not set -# CONFIG_SND_SOC_SSM2305 is not set -# CONFIG_SND_SOC_SSM2602_SPI is not set -# CONFIG_SND_SOC_SSM2602_I2C is not set -# CONFIG_SND_SOC_SSM4567 is not set -# CONFIG_SND_SOC_STA32X is not set -# CONFIG_SND_SOC_STA350 is not set -# CONFIG_SND_SOC_STI_SAS is not set -# CONFIG_SND_SOC_TAS2552 is not set -# CONFIG_SND_SOC_TAS2562 is not set -# CONFIG_SND_SOC_TAS2764 is not set -# CONFIG_SND_SOC_TAS2770 is not set -# CONFIG_SND_SOC_TAS5086 is not set -# CONFIG_SND_SOC_TAS571X is not set -# CONFIG_SND_SOC_TAS5720 is not set -# CONFIG_SND_SOC_TAS6424 is not set -# CONFIG_SND_SOC_TDA7419 is not set -# CONFIG_SND_SOC_TFA9879 is not set -# CONFIG_SND_SOC_TLV320AIC23_I2C is not set -# CONFIG_SND_SOC_TLV320AIC23_SPI is not set -# CONFIG_SND_SOC_TLV320AIC31XX is not set -# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set -# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set -# CONFIG_SND_SOC_TLV320AIC3X is not set -# CONFIG_SND_SOC_TLV320ADCX140 is not set -# CONFIG_SND_SOC_TS3A227E is not set -# CONFIG_SND_SOC_TSCS42XX is not set -# CONFIG_SND_SOC_TSCS454 is not set -# CONFIG_SND_SOC_UDA1334 is not set -# CONFIG_SND_SOC_WM8510 is not set -# CONFIG_SND_SOC_WM8523 is not set -# CONFIG_SND_SOC_WM8524 is not set -# CONFIG_SND_SOC_WM8580 is not set -# CONFIG_SND_SOC_WM8711 is not set -# CONFIG_SND_SOC_WM8728 is not set -# CONFIG_SND_SOC_WM8731 is not set -# CONFIG_SND_SOC_WM8737 is not set -# CONFIG_SND_SOC_WM8741 is not set -# CONFIG_SND_SOC_WM8750 is not set -# CONFIG_SND_SOC_WM8753 is not set -# CONFIG_SND_SOC_WM8770 is not set -# CONFIG_SND_SOC_WM8776 is not set -# CONFIG_SND_SOC_WM8782 is not set -# CONFIG_SND_SOC_WM8804_I2C is not set -# CONFIG_SND_SOC_WM8804_SPI is not set -# CONFIG_SND_SOC_WM8903 is not set -# CONFIG_SND_SOC_WM8904 is not set -# CONFIG_SND_SOC_WM8960 is not set -# CONFIG_SND_SOC_WM8962 is not set -# CONFIG_SND_SOC_WM8974 is not set -# CONFIG_SND_SOC_WM8978 is not set -# CONFIG_SND_SOC_WM8985 is not set -# CONFIG_SND_SOC_ZL38060 is not set -# CONFIG_SND_SOC_ZX_AUD96P22 is not set -# CONFIG_SND_SOC_MAX9759 is not set -# CONFIG_SND_SOC_MT6351 is not set -# CONFIG_SND_SOC_MT6358 is not set -# CONFIG_SND_SOC_MT6660 is not set -# CONFIG_SND_SOC_NAU8315 is not set -# CONFIG_SND_SOC_NAU8540 is not set -# CONFIG_SND_SOC_NAU8810 is not set -# CONFIG_SND_SOC_NAU8822 is not set -# CONFIG_SND_SOC_NAU8824 is not set -# CONFIG_SND_SOC_TPA6130A2 is not set -# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set -# CONFIG_SND_SOC_LPASS_VA_MACRO is not set -# CONFIG_SND_SOC_LPASS_RX_MACRO is not set -# CONFIG_SND_SOC_LPASS_TX_MACRO is not set -# end of CODEC drivers - -# CONFIG_SND_SIMPLE_CARD is not set -# CONFIG_SND_AUDIO_GRAPH_CARD is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -CONFIG_HID_A4TECH=y -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -CONFIG_HID_APPLE=y -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -CONFIG_HID_BELKIN=y -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -CONFIG_HID_CHERRY=y -CONFIG_HID_CHICONY=y -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_PRODIKEYS is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -CONFIG_HID_CYPRESS=y -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -CONFIG_HID_EZKEY=y -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -CONFIG_HID_ITE=y -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -CONFIG_HID_KENSINGTON=y -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -CONFIG_HID_LOGITECH=y -# CONFIG_HID_LOGITECH_HIDPP is not set -# CONFIG_LOGITECH_FF is not set -# CONFIG_LOGIRUMBLEPAD2_FF is not set -# CONFIG_LOGIG940_FF is not set -# CONFIG_LOGIWHEELS_FF is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -CONFIG_HID_REDRAGON=y -CONFIG_HID_MICROSOFT=y -CONFIG_HID_MONTEREY=y -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -# CONFIG_USB_XHCI_HCD is not set -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -# CONFIG_USB_STORAGE is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS_SUPPORT is not set -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# -CONFIG_USB_MUSB_SUNXI=y - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_AM335X_PHY_USB is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 - -# -# USB Peripheral Controller -# -# CONFIG_USB_FUSB300 is not set -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -# CONFIG_USB_SNP_UDC_PLAT is not set -# CONFIG_USB_M66592 is not set -# CONFIG_USB_BDC_UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_MAX3420_UDC is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -# CONFIG_USB_CONFIGFS is not set - -# -# USB Gadget precomposed configurations -# -# CONFIG_USB_ZERO is not set -# CONFIG_USB_AUDIO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_MASS_STORAGE is not set -# CONFIG_USB_G_SERIAL is not set -# CONFIG_USB_MIDI_GADGET is not set -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set -# CONFIG_USB_RAW_GADGET is not set -# end of USB Gadget precomposed configurations - -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_DISK is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -CONFIG_LEDS_TRIGGER_DEFAULT_ON=y - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set - -# -# LED Blink -# -# CONFIG_LEDS_BLINK is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -# CONFIG_RTC_INTF_SYSFS is not set -# CONFIG_RTC_INTF_PROC is not set -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_AC100=y -# CONFIG_RTC_DRV_DS1307 is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -# CONFIG_RTC_DRV_PCF85363 is not set -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -# CONFIG_RTC_DRV_RX8581 is not set -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_CMOS is not set -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_SUN6I=y -CONFIG_RTC_DRV_SUNXI=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DMA_SUN4I=y -CONFIG_DMA_SUN6I=y -# CONFIG_DW_AXI_DMAC is not set -# CONFIG_FSL_EDMA is not set -# CONFIG_FSL_QDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_NBPFAXI_DMA is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN4I_A10_CCU=y -CONFIG_SUN5I_CCU=y -CONFIG_SUN6I_A31_CCU=y -CONFIG_SUN8I_A23_CCU=y -CONFIG_SUN8I_A33_CCU=y -CONFIG_SUN8I_A83T_CCU=y -CONFIG_SUN8I_H3_CCU=y -CONFIG_SUN8I_V3S_CCU=y -CONFIG_SUN8I_DE2_CCU=y -CONFIG_SUN8I_R40_CCU=y -CONFIG_SUN9I_A80_CCU=y -CONFIG_SUN8I_R_CCU=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_SUN4I_TIMER=y -CONFIG_SUN5I_HSTIMER=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_QUICC_ENGINE is not set -# CONFIG_FSL_RCPM is not set -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SUNXI_MBUS=y -CONFIG_SUNXI_SRAM=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -# CONFIG_EXTCON_USB_GPIO is not set -# CONFIG_EXTCON_USBC_TUSB320 is not set -# CONFIG_MEMORY is not set -CONFIG_IIO=y -# CONFIG_IIO_BUFFER is not set -# CONFIG_IIO_CONFIGFS is not set -# CONFIG_IIO_TRIGGER is not set -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set -# CONFIG_IIO_TRIGGERED_EVENT is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMA400 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7091R5 is not set -# CONFIG_AD7124 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7292 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -# CONFIG_AD9467 is not set -# CONFIG_ADI_AXI_ADC is not set -CONFIG_AXP20X_ADC=y -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_INA2XX_ADC is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2496 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1241 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_SUN4I_GPADC is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# CONFIG_HMC425 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_ATLAS_EZO_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_SCD30_CORE is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5766 is not set -# CONFIG_AD5770R is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS290 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HDC2010 is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16475 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_FXOS8700_I2C is not set -# CONFIG_FXOS8700_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_ICM42600_I2C is not set -# CONFIG_INV_ICM42600_SPI is not set -# CONFIG_INV_MPU6050_I2C is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ADJD_S311 is not set -# CONFIG_ADUX1020 is not set -# CONFIG_AL3010 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_AS73211 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP002 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6030 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# CONFIG_YAMAHA_YAS530 is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Linear and angular position sensors -# -# end of Linear and angular position sensors - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DLHL60D is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_ICP10100 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_PING is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9310 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VCNL3020 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_LTC2983 is not set -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -CONFIG_PWM_SUN4I=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_ARCH_HAS_RESET_CONTROLLER=y -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_SUN4I_USB=y -CONFIG_PHY_SUN6I_MIPI_DPHY=y -CONFIG_PHY_SUN9I_USB=y -# CONFIG_PHY_SUN50I_USB3 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -CONFIG_ARM_PMU=y -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -CONFIG_NVMEM_SUNXI_SID=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -CONFIG_MEMFD_CREATE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_ALLWINNER=y -CONFIG_CRYPTO_DEV_SUN4I_SS=y -# CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set -# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set -# CONFIG_CRYPTO_DEV_SUN8I_CE is not set -# CONFIG_CRYPTO_DEV_SUN8I_SS is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_CRC_CCITT=y -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_DMA_OPS=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_32=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -# CONFIG_DEBUG_KERNEL is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -CONFIG_DEBUG_MEMORY_INIT=y -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set - -# -# Debug kernel data structures -# -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# -# RCU Debugging -# -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# end of RCU Debugging - -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set -# CONFIG_STRICT_DEVMEM is not set - -# -# arm Debugging -# -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_CORESIGHT is not set -# end of arm Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_BITOPS is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_BLACKHOLE_DEV is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_TEST_FREE_PAGES is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/cubie/board/kea6.conf b/mainboards/cubie/board/kea6.conf deleted file mode 100644 index faff15cd..00000000 --- a/mainboards/cubie/board/kea6.conf +++ /dev/null @@ -1,58 +0,0 @@ -{ -# DHCPv6 configuration starts on the next line -"Dhcp6": { - -# First we set up global values - "valid-lifetime": 4000, - "renew-timer": 1000, - "rebind-timer": 2000, - "preferred-lifetime": 3000, - -# Next we setup the interfaces to be used by the server. - "interfaces-config": { - "interfaces": [ "enx00e04c6800ee"] - }, - -# And we specify the type of lease database - "lease-database": { - "type": "memfile", - "persist": true, - "name": "./kea/dhcp6.leases" - }, - -# Finally, we list the subnets from which we will be leasing addresses. - "subnet6": [ - { - "rapid-commit": true, - "subnet": "2001:db8:0:1::/56", - "id": 1024, - "interface": "enx00e04c6800ee", - "pools": [ - { - "pool": "2001:db8:0:1::10-2001:db8:0:1::ffff" - } - ] - } - ], - - "option-data": [ - { - "name": "dns-servers", - "code": 23, - "csv-format": true, - "space": "dhcp6", - "data": "2001:4860:4860::8888, 2001:4860:4860::8844" - }, - { - "name": "bootfile-url", - "code": 59, - "csv-format": true, - "space": "dhcp6", - "data": "http://[2001:db8:0:1::128]:80/nbp" - } - ] -# DHCPv6 configuration ends with the next line -} - -} - diff --git a/mainboards/cubie/board/nbp b/mainboards/cubie/board/nbp deleted file mode 100755 index c02f090d..00000000 --- a/mainboards/cubie/board/nbp +++ /dev/null @@ -1,4 +0,0 @@ -#!ipxe -kernel http://[2001:db8:0:1::128]:80/uImage -initrd http://[2001:db8:0:1::128]:80/uCore -boot From faa2b2bac902ada422479b81023816c8aea9ea77 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 102/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/digitalloggers/atomicpi/.gitignore | 8 - .../atomicpi/50-cloud-init.yaml | 23 - .../digitalloggers/atomicpi/CHOOSEKERNEL | 11 - mainboards/digitalloggers/atomicpi/Makefile | 301 -- mainboards/digitalloggers/atomicpi/READROM | 1 - mainboards/digitalloggers/atomicpi/TESTOVMF | 9 - mainboards/digitalloggers/atomicpi/UTKDEMO | 36 - mainboards/digitalloggers/atomicpi/VERIFYROM | 1 - mainboards/digitalloggers/atomicpi/WRITEROM | 1 - mainboards/digitalloggers/atomicpi/class_key | 27 - .../digitalloggers/atomicpi/class_key.pub | 1 - .../digitalloggers/atomicpi/classhostkey | 27 - .../digitalloggers/atomicpi/classhostkey.pub | 1 - mainboards/digitalloggers/atomicpi/cpu.config | 2654 ---------------- .../digitalloggers/atomicpi/cpu.config-5.10 | 2710 ----------------- .../digitalloggers/atomicpi/cpu.config-5.4 | 2635 ---------------- .../digitalloggers/atomicpi/cpuflash.config | 2650 ---------------- .../atomicpi/dhcpd.config.192.168.0.1 | 22 - .../digitalloggers/atomicpi/edk2bdsdxe.ffs | Bin 97774 -> 0 bytes .../digitalloggers/atomicpi/edk2shell.ffs | Bin 262512 -> 0 bytes .../digitalloggers/atomicpi/flash.config | 1934 ------------ .../digitalloggers/atomicpi/grub/grub.cfg | 14 - .../atomicpi/grubnetx64.efi.signed | Bin 1001336 -> 0 bytes .../atomicpi/linuxboot-linux.netboot.config | 1699 ----------- .../atomicpi/linuxboot-linux.tiny.config | 1922 ------------ .../digitalloggers/atomicpi/loopprint0.asm | 116 - mainboards/digitalloggers/atomicpi/netconsole | 2 - .../atomicpi/pxelinux.cfg/C0A80002 | 27 - .../atomicpi/pxelinux.cfg/default | 27 - .../atomicpi/pxelinux.cfg_default | 27 - .../digitalloggers/atomicpi/sshd.config | 2624 ---------------- mainboards/digitalloggers/atomicpi/tftpserve | 18 - 32 files changed, 19528 deletions(-) delete mode 100644 mainboards/digitalloggers/atomicpi/.gitignore delete mode 100644 mainboards/digitalloggers/atomicpi/50-cloud-init.yaml delete mode 100755 mainboards/digitalloggers/atomicpi/CHOOSEKERNEL delete mode 100644 mainboards/digitalloggers/atomicpi/Makefile delete mode 100755 mainboards/digitalloggers/atomicpi/READROM delete mode 100755 mainboards/digitalloggers/atomicpi/TESTOVMF delete mode 100755 mainboards/digitalloggers/atomicpi/UTKDEMO delete mode 100755 mainboards/digitalloggers/atomicpi/VERIFYROM delete mode 100755 mainboards/digitalloggers/atomicpi/WRITEROM delete mode 100644 mainboards/digitalloggers/atomicpi/class_key delete mode 100644 mainboards/digitalloggers/atomicpi/class_key.pub delete mode 100644 mainboards/digitalloggers/atomicpi/classhostkey delete mode 100644 mainboards/digitalloggers/atomicpi/classhostkey.pub delete mode 100644 mainboards/digitalloggers/atomicpi/cpu.config delete mode 100644 mainboards/digitalloggers/atomicpi/cpu.config-5.10 delete mode 100644 mainboards/digitalloggers/atomicpi/cpu.config-5.4 delete mode 100644 mainboards/digitalloggers/atomicpi/cpuflash.config delete mode 100644 mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 delete mode 100644 mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs delete mode 100644 mainboards/digitalloggers/atomicpi/edk2shell.ffs delete mode 100644 mainboards/digitalloggers/atomicpi/flash.config delete mode 100644 mainboards/digitalloggers/atomicpi/grub/grub.cfg delete mode 100644 mainboards/digitalloggers/atomicpi/grubnetx64.efi.signed delete mode 100644 mainboards/digitalloggers/atomicpi/linuxboot-linux.netboot.config delete mode 100644 mainboards/digitalloggers/atomicpi/linuxboot-linux.tiny.config delete mode 100644 mainboards/digitalloggers/atomicpi/loopprint0.asm delete mode 100755 mainboards/digitalloggers/atomicpi/netconsole delete mode 100644 mainboards/digitalloggers/atomicpi/pxelinux.cfg/C0A80002 delete mode 100644 mainboards/digitalloggers/atomicpi/pxelinux.cfg/default delete mode 100644 mainboards/digitalloggers/atomicpi/pxelinux.cfg_default delete mode 100644 mainboards/digitalloggers/atomicpi/sshd.config delete mode 100755 mainboards/digitalloggers/atomicpi/tftpserve diff --git a/mainboards/digitalloggers/atomicpi/.gitignore b/mainboards/digitalloggers/atomicpi/.gitignore deleted file mode 100644 index 64430c1b..00000000 --- a/mainboards/digitalloggers/atomicpi/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -/*.cpio -/*.lzma -/linux -/*kernel -cpukernel-5.10 -cpukernel-5.4 -linux-5.10 -linux-5.4 diff --git a/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml b/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml deleted file mode 100644 index 3fb18bc5..00000000 --- a/mainboards/digitalloggers/atomicpi/50-cloud-init.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# This file is generated from information provided by -# the datasource. Changes to it will not persist across an instance. -# To disable cloud-init's network configuration capabilities, write a file -# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: -# network: {config: disabled} -network: - ethernets: - ens33: - addresses: [] - dhcp4: true - enx00e04c68017a: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enxa0cec8cbc29b: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enx00e04c6800ee: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - enx00e04c680a0f: - addresses: [192.168.0.1/24, "2001:db8:0:1::129/56"] - dhcp4: false - version: 2 diff --git a/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL b/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL deleted file mode 100755 index 1836c6cf..00000000 --- a/mainboards/digitalloggers/atomicpi/CHOOSEKERNEL +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -utk \ - -xzPath \ - /usr/bin/xz \ - upimagewithup2dxeremovemore.bin \ - replace_pe32 \ - Shell_Full \ - $1 \ - save \ - /tmp/xxx.bin diff --git a/mainboards/digitalloggers/atomicpi/Makefile b/mainboards/digitalloggers/atomicpi/Makefile deleted file mode 100644 index 87870c8a..00000000 --- a/mainboards/digitalloggers/atomicpi/Makefile +++ /dev/null @@ -1,301 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: edk2.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -cpu.bin: edk2.bin cpuflashkernel cpu.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell cpuflashkernel \ - save $@ - NOT GOING dd if=cpu.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: hap.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel-5.4: cpu.cpio.lzma cpu.config-5.4 - cp cpu.config-5.4 linux-5.4/.config - (cd linux-5.4 && make oldconfig && make -j32) - cp linux-5.4/arch/x86/boot/bzImage $@ - -cpukernel-5.10: cpu.cpio.lzma cpu.config-5.10 - cp cpu.config-5.10 linux-5.10/.config - (cd linux-5.10 && make oldconfig && make -j32) - cp linux-5.10/arch/x86/boot/bzImage $@ - -dutkernel-5.10: dut.cpio.lzma dut.config-5.10 - cp dut.config-5.10 linux-5.10/.config - (cd linux-5.10 && make oldconfig && make -j32) - cp linux-5.10/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -dut.cpio.lzma: Makefile - u-root -o dut.cpio -build=bb -initcmd=dut -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrdmem=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - -getlinux-5.4: - rm -rf linux-5.4 - git clone --depth=1 -b v5.4 --single-branch https://github.com/torvalds/linux linux-5.4 - -getlinux-5.10: - rm -rf linux-5.10 - git clone --depth=1 -b v5.10 --single-branch https://github.com/torvalds/linux linux-5.10 - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/digitalloggers/atomicpi/READROM b/mainboards/digitalloggers/atomicpi/READROM deleted file mode 100755 index ec91a4aa..00000000 --- a/mainboards/digitalloggers/atomicpi/READROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -r $* diff --git a/mainboards/digitalloggers/atomicpi/TESTOVMF b/mainboards/digitalloggers/atomicpi/TESTOVMF deleted file mode 100755 index fc07122c..00000000 --- a/mainboards/digitalloggers/atomicpi/TESTOVMF +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -set -e -rm -f /tmp/xxx.bin -utk -xzPath /usr/bin/xz \ - /mnt/hgfs/rminnich/Downloads/OVMF.fd \ - remove BdsDxe insert_dxe up2bds.ffs \ - remove Shell insert_dxe up2shellfull.ffs \ - save /tmp/xxx.fd -/usr/bin/qemu-system-x86_64 -nographic -net none -bios /tmp/xxx.fd diff --git a/mainboards/digitalloggers/atomicpi/UTKDEMO b/mainboards/digitalloggers/atomicpi/UTKDEMO deleted file mode 100755 index f539b4b4..00000000 --- a/mainboards/digitalloggers/atomicpi/UTKDEMO +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -set -e -echo "Make sure me_cleaner.py is in our path" -which me_cleaner.py -echo "Make sure utk is in our path" -which utk -echo "Make sure guid2english is in our path" -which guid2english -echo "Let's go!" -touch image.bin -read -p "Hit return to see the original UEFI image structure" -utk image.bin table | guid2english | less -echo "Cut the ME area down to a smaller area" -make tighten.bin -read -p "hit to see the changed UEFI structure" i -utk tighten.bin table | guid2english | less -read -p "hit return to continue to setting HAP bit" i -chmod +w hap.bin -make hap.bin -# read -p "hit return to continue" i -# utk hap.bin table | guid2english | less -read -p "hit return to remove DXEs" i -chmod +w dxeremove.bin -make dxeremove.bin -# read -p "hit return to see the post-removal table" i -# utk dxeremove.bin table | guid2english | less -read -p "Hit return to add BdsDxe and UEFIShellDxe built from source" i -make edk2.bin -read -p "hit return to see the new UEFI image" i -utk edk2.bin table | guid2english | less -read -p "hit return to Replace shell binary with kernel and add initramfs" i -make tiny.bin -read -p "hit return to see the final image" i -utk tiny.bin table | guid2english | less -read -p "to see how the kernel finds the initrd hit return" i -grep initrd= linux/.config diff --git a/mainboards/digitalloggers/atomicpi/VERIFYROM b/mainboards/digitalloggers/atomicpi/VERIFYROM deleted file mode 100755 index caf96f64..00000000 --- a/mainboards/digitalloggers/atomicpi/VERIFYROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -v $* diff --git a/mainboards/digitalloggers/atomicpi/WRITEROM b/mainboards/digitalloggers/atomicpi/WRITEROM deleted file mode 100755 index cbcd7557..00000000 --- a/mainboards/digitalloggers/atomicpi/WRITEROM +++ /dev/null @@ -1 +0,0 @@ -sudo flashrom -p dediprog:voltage=1.8 -w $* diff --git a/mainboards/digitalloggers/atomicpi/class_key b/mainboards/digitalloggers/atomicpi/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/digitalloggers/atomicpi/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/digitalloggers/atomicpi/class_key.pub b/mainboards/digitalloggers/atomicpi/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/digitalloggers/atomicpi/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/digitalloggers/atomicpi/classhostkey b/mainboards/digitalloggers/atomicpi/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/digitalloggers/atomicpi/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/digitalloggers/atomicpi/classhostkey.pub b/mainboards/digitalloggers/atomicpi/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/digitalloggers/atomicpi/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/digitalloggers/atomicpi/cpu.config b/mainboards/digitalloggers/atomicpi/cpu.config deleted file mode 100644 index 40b7a35e..00000000 --- a/mainboards/digitalloggers/atomicpi/cpu.config +++ /dev/null @@ -1,2654 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/cpu.config-5.10 b/mainboards/digitalloggers/atomicpi/cpu.config-5.10 deleted file mode 100644 index 2dee19aa..00000000 --- a/mainboards/digitalloggers/atomicpi/cpu.config-5.10 +++ /dev/null @@ -1,2710 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.10.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_HAVE_KERNEL_ZSTD=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -# CONFIG_KERNEL_ZSTD is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y -CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_ACPI_DPTF is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -# CONFIG_EFI_CUSTOM_SSDT_OVERLAYS is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_GENERIC_ENTRY=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -# CONFIG_STATIC_CALL_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -CONFIG_HAVE_STATIC_CALL=y -CONFIG_HAVE_STATIC_CALL_INLINE=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_PATA_TIMINGS=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_FORCE=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLIB=y -# CONFIG_FIXED_PHY is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set - -# -# MDIO Multiplexers -# - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_DEVPORT is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_LGM_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_COPY_MC=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -CONFIG_SYMBOLIC_ERRNAME=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_ARCH_KCSAN=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/cpu.config-5.4 b/mainboards/digitalloggers/atomicpi/cpu.config-5.4 deleted file mode 100644 index 255263e0..00000000 --- a/mainboards/digitalloggers/atomicpi/cpu.config-5.4 +++ /dev/null @@ -1,2635 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_SYSCTL_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/cpuflash.config b/mainboards/digitalloggers/atomicpi/cpuflash.config deleted file mode 100644 index e2fccc12..00000000 --- a/mainboards/digitalloggers/atomicpi/cpuflash.config +++ /dev/null @@ -1,2650 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc6 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff968000,0x200000" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -CONFIG_EFI_DISABLE_PCI_DMA=y -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 b/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 deleted file mode 100644 index 37bed9ed..00000000 --- a/mainboards/digitalloggers/atomicpi/dhcpd.config.192.168.0.1 +++ /dev/null @@ -1,22 +0,0 @@ -allow booting; -allow bootp; -option option-128 code 128 = string; -option option-129 code 129 = text; -next-server 192.168.0.1; -filename "grubnetx64.efi.signed"; -option domain-name "coreboot.org"; -option domain-name-servers ns1.google.com, ns2.google.com; -default-lease-time 600; -max-lease-time 7200; -ddns-update-style none; -authoritative; -default-lease-time 600; -max-lease-time 7200; -log-facility local7; -subnet 192.168.0.0 netmask 255.255.255.0 { - option routers 192.168.0.1; - # Specify the subnet-mask - option subnet-mask 255.255.255.0; - # Specify the range of leased IP addresses - range 192.168.0.2 192.168.0.128; -} diff --git a/mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs b/mainboards/digitalloggers/atomicpi/edk2bdsdxe.ffs deleted file mode 100644 index 69c06169d234caa679f42435557fdd48fe6ccaf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 97774 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

_y%vd@xXc@U=Lg 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Ô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 z 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 xz;@FMb7*@BPqitmpeXb?Hig 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

)c;na}qnT;}r& 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

xVN`VMW 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%0D3-3^c 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 Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 103/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/hpe/dl360gen10/Makefile | 154 - mainboards/hpe/dl360gen10/Makefile.rej | 11 - mainboards/hpe/dl360gen10/README.md | 10 - mainboards/hpe/dl360gen10/config-4.14.111 | 2400 -------------- mainboards/hpe/dl360gen10/config-5.15.0 | 2945 ------------------ mainboards/hpe/dl360gen10/config-5.4.0 | 2945 ------------------ mainboards/hpe/dl360gen10/updateInitramfs.sh | 18 - 7 files changed, 8483 deletions(-) delete mode 100644 mainboards/hpe/dl360gen10/Makefile delete mode 100644 mainboards/hpe/dl360gen10/Makefile.rej delete mode 100644 mainboards/hpe/dl360gen10/README.md delete mode 100644 mainboards/hpe/dl360gen10/config-4.14.111 delete mode 100644 mainboards/hpe/dl360gen10/config-5.15.0 delete mode 100644 mainboards/hpe/dl360gen10/config-5.4.0 delete mode 100755 mainboards/hpe/dl360gen10/updateInitramfs.sh diff --git a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile deleted file mode 100644 index d37bc40c..00000000 --- a/mainboards/hpe/dl360gen10/Makefile +++ /dev/null @@ -1,154 +0,0 @@ -MAJOR ?= 5 -STABLE = $(MAJOR).15 -CONFIG ?= $(MAJOR).15.0 -KEYPATH ?= "" - -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - ROM.bin \ - remove TraceHubStatusCodeHandlerRuntimeDxe \ - remove TraceHubStatusCodeHandlerSmm \ - remove StatusCodeHandlerRuntimeDxeUsb \ - remove DataHubDxe \ - remove HpBootMenuApp \ - remove TxtDxe \ - remove HstiIhvProviderDxe \ - remove LegacyRegion2 \ - remove EbcDxe \ - remove LegacyInterrupt \ - remove PciHotPlug \ - remove HwpLvtSmm \ - remove IsPlatformSupportWhea \ - remove WheaSupport \ - remove WheaErrorInj \ - remove WheaPlatformBoot \ - remove WheaErrorLog \ - remove LastBootErrorLog \ - remove McBankErrorInjection \ - remove OpaPlatCfg \ - remove DataHubStdErrDxe \ - remove HpLogStdErrToMem \ - remove HpBiosLogToAhsDxe \ - remove HpBiosLogToAhsSmm \ - remove ServerConfigLock \ - remove ServerConfigLockDxe \ - remove IntelligentProvisioningApp \ - remove ErrorInformationApp \ - remove ImlViewApp \ - remove EmbeddedDiagsApp \ - remove HpPlotPciRebootTestDriver \ - remove HpNvDimmDxe \ - remove HpNvDimmBlkIoDxe \ - remove NvDimmFwUpdate \ - remove HpType10NvdimmPowerMonitorDxe \ - remove FirmwarePerformanceSmm \ - remove HpType10NvdimmCommonDataDxe \ - remove HpNvDimmMemScan \ - remove HpNvDimmTelemetryDxe \ - remove BackupRestore \ - remove HpBackupRestoreDxe \ - remove HpSecureErase \ - remove HpSecureEraseDxe \ - remove TerminalDxe \ - remove IsaSerialDxe \ - remove LegacyBiosDxe \ - remove HpLegacyBootDxe \ - remove LegacyBiosPlatform \ - remove HpPostCodeWorkerDxe \ - remove HpPostCodeWorkerSmm \ - replace_pe32 Shell flashkernel \ - save image.bin - -flashkernel: uroot injectkeys bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - u-root -build=bb -uinitcmd="hostname dl360Gen10" \ - github.com/u-root/u-root/cmds/core/hostname \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/id \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/sshd \ - github.com/u-root/u-root/cmds/core/scp \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/rsdp \ - github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux/ - -uroot: - u-root -build=bb -uinitcmd="hostname dl360Gen10" \ - github.com/u-root/u-root/cmds/core/hostname \ - github.com/u-root/u-root/cmds/core/dd \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/id \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/more \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/sshd \ - github.com/u-root/u-root/cmds/core/scp \ - github.com/u-root/u-root/cmds/core/dmesg \ - github.com/u-root/u-root/cmds/core/grep \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/rsdp \ - github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -injectkeys: - echo "FIXME: 'injectkeys' got lost; see Makefile.rej!" - -bzImage: - cp config-$(CONFIG) linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v$(MAJOR).x/linux-$(STABLE).tar.xz - xzcat kernel.xz | tar x - mv linux-$(STABLE) linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - @echo If you plan to flash to hardware, - @echo you will need to get a rom imagei - @echo and put it in rom.bin - @echo you can get it via wget, flashrom, whatever. - @echo If you are not targeting hardware, you can - @echo make flashkernel - @echo and run that kernel via qemu - -geturoot: - go get -u github.com/u-root/u-root - diff --git a/mainboards/hpe/dl360gen10/Makefile.rej b/mainboards/hpe/dl360gen10/Makefile.rej deleted file mode 100644 index 8952b2ad..00000000 --- a/mainboards/hpe/dl360gen10/Makefile.rej +++ /dev/null @@ -1,11 +0,0 @@ -diff a/mainboards/hpe/dl360gen10/Makefile b/mainboards/hpe/dl360gen10/Makefile (rejected hunks) -@@ -122,6 +122,9 @@ uroot: - github.com/u-root/u-root/cmds/boot/* - - cp /tmp/initramfs.linux_amd64.cpio . -+ lzma -k -f initramfs.linux_amd64.cpio -+ ls -l initramfs* -+ cp *lzma linux/ - - injectkeys: - ifneq ($(KEYPATH),"") diff --git a/mainboards/hpe/dl360gen10/README.md b/mainboards/hpe/dl360gen10/README.md deleted file mode 100644 index 30f91895..00000000 --- a/mainboards/hpe/dl360gen10/README.md +++ /dev/null @@ -1,10 +0,0 @@ -Copyright 2020 Hewlett Packard Enterprise Development LP. - -Initial support for DL360 Gen 10 -Maintainer: jean-marie.verdun@hpe.com / vejmarie - -"Code" inspired from the intel default motherboard - -Can be tested by using the public HPE Continuous Integration platform available at https://osfci.tech - -Feel free to contribute ! diff --git a/mainboards/hpe/dl360gen10/config-4.14.111 b/mainboards/hpe/dl360gen10/config-4.14.111 deleted file mode 100644 index e81b7fa3..00000000 --- a/mainboards/hpe/dl360gen10/config-4.14.111 +++ /dev/null @@ -1,2400 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/hpe/dl360gen10/config-5.15.0 b/mainboards/hpe/dl360gen10/config-5.15.0 deleted file mode 100644 index 4b2260ad..00000000 --- a/mainboards/hpe/dl360gen10/config-5.15.0 +++ /dev/null @@ -1,2945 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_ZPODD=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=3 -CONFIG_SATA_AHCI_PLATFORM=y -CONFIG_SATA_INIC162X=y -CONFIG_SATA_ACARD_AHCI=y -CONFIG_SATA_SIL24=y -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -CONFIG_ATA_PIIX=y -CONFIG_SATA_DWC=y -# CONFIG_SATA_DWC_OLD_DMA is not set -# CONFIG_SATA_DWC_DEBUG is not set -CONFIG_SATA_MV=y -CONFIG_SATA_NV=y -CONFIG_SATA_PROMISE=y -CONFIG_SATA_SIL=y -CONFIG_SATA_SIS=y -CONFIG_SATA_SVW=y -CONFIG_SATA_ULI=y -CONFIG_SATA_VIA=y -CONFIG_SATA_VITESSE=y - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -CONFIG_PATA_HPT3X3=y -# CONFIG_PATA_HPT3X3_DMA is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -CONFIG_PATA_SIS=y -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_PCMCIA is not set -# CONFIG_PATA_PLATFORM is not set -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -CONFIG_ATA_GENERIC=y -# CONFIG_PATA_LEGACY is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -# CONFIG_USB_NET_DRIVERS is not set -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_CONN_GPIO=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_LEDS_TRIGGER_USBPORT=y -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -CONFIG_USB_C67X00_HCD=y -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -CONFIG_USB_EHCI_FSL=y -CONFIG_USB_EHCI_HCD_PLATFORM=y -CONFIG_USB_OXU210HP_HCD=y -CONFIG_USB_ISP116X_HCD=y -CONFIG_USB_FOTG210_HCD=y -CONFIG_USB_OXU210HP_HCD=m -CONFIG_USB_MAX3421_HCD=m -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -CONFIG_USB_U132_HCD=m -CONFIG_USB_SL811_HCD=y -CONFIG_USB_SL811_HCD_ISO=y -CONFIG_USB_SL811_CS=m -CONFIG_USB_R8A66597_HCD=m -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set -CONFIG_USB_HCD_BCMA=m -CONFIG_USB_HCD_SSB=m - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -CONFIG_USB_STORAGE_REALTEK=y -CONFIG_REALTEK_AUTOPM=y -CONFIG_USB_STORAGE_DATAFAB=y -CONFIG_USB_STORAGE_FREECOM=y -CONFIG_USB_STORAGE_ISD200=y -CONFIG_USB_STORAGE_USBAT=y -CONFIG_USB_STORAGE_SDDR09=y -CONFIG_USB_STORAGE_SDDR55=y -CONFIG_USB_STORAGE_JUMPSHOT=y -CONFIG_USB_STORAGE_ALAUDA=y -CONFIG_USB_STORAGE_ONETOUCH=y -CONFIG_USB_STORAGE_KARMA=y -CONFIG_USB_STORAGE_CYPRESS_ATACB=y -CONFIG_USB_STORAGE_ENE_UB6250=y -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set - -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set - -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_UDF_FS=y -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/hpe/dl360gen10/config-5.4.0 b/mainboards/hpe/dl360gen10/config-5.4.0 deleted file mode 100644 index 4b2260ad..00000000 --- a/mainboards/hpe/dl360gen10/config-5.4.0 +++ /dev/null @@ -1,2945 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_ZPODD=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=3 -CONFIG_SATA_AHCI_PLATFORM=y -CONFIG_SATA_INIC162X=y -CONFIG_SATA_ACARD_AHCI=y -CONFIG_SATA_SIL24=y -CONFIG_ATA_SFF=y - -# -# SFF controllers with custom DMA interface -# -# CONFIG_PDC_ADMA is not set -# CONFIG_SATA_QSTOR is not set -# CONFIG_SATA_SX4 is not set -CONFIG_ATA_BMDMA=y - -# -# SATA SFF controllers with BMDMA -# -CONFIG_ATA_PIIX=y -CONFIG_SATA_DWC=y -# CONFIG_SATA_DWC_OLD_DMA is not set -# CONFIG_SATA_DWC_DEBUG is not set -CONFIG_SATA_MV=y -CONFIG_SATA_NV=y -CONFIG_SATA_PROMISE=y -CONFIG_SATA_SIL=y -CONFIG_SATA_SIS=y -CONFIG_SATA_SVW=y -CONFIG_SATA_ULI=y -CONFIG_SATA_VIA=y -CONFIG_SATA_VITESSE=y - -# -# PATA SFF controllers with BMDMA -# -# CONFIG_PATA_ALI is not set -# CONFIG_PATA_AMD is not set -# CONFIG_PATA_ARTOP is not set -# CONFIG_PATA_ATIIXP is not set -# CONFIG_PATA_ATP867X is not set -# CONFIG_PATA_CMD64X is not set -# CONFIG_PATA_CYPRESS is not set -# CONFIG_PATA_EFAR is not set -# CONFIG_PATA_HPT366 is not set -# CONFIG_PATA_HPT37X is not set -# CONFIG_PATA_HPT3X2N is not set -CONFIG_PATA_HPT3X3=y -# CONFIG_PATA_HPT3X3_DMA is not set -# CONFIG_PATA_IT8213 is not set -# CONFIG_PATA_IT821X is not set -# CONFIG_PATA_JMICRON is not set -# CONFIG_PATA_MARVELL is not set -# CONFIG_PATA_NETCELL is not set -# CONFIG_PATA_NINJA32 is not set -# CONFIG_PATA_NS87415 is not set -# CONFIG_PATA_OLDPIIX is not set -# CONFIG_PATA_OPTIDMA is not set -# CONFIG_PATA_PDC2027X is not set -# CONFIG_PATA_PDC_OLD is not set -# CONFIG_PATA_RADISYS is not set -# CONFIG_PATA_RDC is not set -# CONFIG_PATA_SCH is not set -# CONFIG_PATA_SERVERWORKS is not set -# CONFIG_PATA_SIL680 is not set -CONFIG_PATA_SIS=y -# CONFIG_PATA_TOSHIBA is not set -# CONFIG_PATA_TRIFLEX is not set -# CONFIG_PATA_VIA is not set -# CONFIG_PATA_WINBOND is not set - -# -# PIO-only SFF controllers -# -# CONFIG_PATA_CMD640_PCI is not set -# CONFIG_PATA_MPIIX is not set -# CONFIG_PATA_NS87410 is not set -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_PCMCIA is not set -# CONFIG_PATA_PLATFORM is not set -# CONFIG_PATA_RZ1000 is not set - -# -# Generic fallback / legacy drivers -# -# CONFIG_PATA_ACPI is not set -CONFIG_ATA_GENERIC=y -# CONFIG_PATA_LEGACY is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -# CONFIG_USB_NET_DRIVERS is not set -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_LED_TRIG=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_CONN_GPIO=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_LEDS_TRIGGER_USBPORT=y -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -CONFIG_USB_C67X00_HCD=y -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -CONFIG_USB_EHCI_FSL=y -CONFIG_USB_EHCI_HCD_PLATFORM=y -CONFIG_USB_OXU210HP_HCD=y -CONFIG_USB_ISP116X_HCD=y -CONFIG_USB_FOTG210_HCD=y -CONFIG_USB_OXU210HP_HCD=m -CONFIG_USB_MAX3421_HCD=m -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -CONFIG_USB_UHCI_HCD=y -CONFIG_USB_U132_HCD=m -CONFIG_USB_SL811_HCD=y -CONFIG_USB_SL811_HCD_ISO=y -CONFIG_USB_SL811_CS=m -CONFIG_USB_R8A66597_HCD=m -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set -CONFIG_USB_HCD_BCMA=m -CONFIG_USB_HCD_SSB=m - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -CONFIG_USB_STORAGE_REALTEK=y -CONFIG_REALTEK_AUTOPM=y -CONFIG_USB_STORAGE_DATAFAB=y -CONFIG_USB_STORAGE_FREECOM=y -CONFIG_USB_STORAGE_ISD200=y -CONFIG_USB_STORAGE_USBAT=y -CONFIG_USB_STORAGE_SDDR09=y -CONFIG_USB_STORAGE_SDDR55=y -CONFIG_USB_STORAGE_JUMPSHOT=y -CONFIG_USB_STORAGE_ALAUDA=y -CONFIG_USB_STORAGE_ONETOUCH=y -CONFIG_USB_STORAGE_KARMA=y -CONFIG_USB_STORAGE_CYPRESS_ATACB=y -CONFIG_USB_STORAGE_ENE_UB6250=y -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set - -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set - -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_UDF_FS=y -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/hpe/dl360gen10/updateInitramfs.sh b/mainboards/hpe/dl360gen10/updateInitramfs.sh deleted file mode 100755 index 9a2df8f0..00000000 --- a/mainboards/hpe/dl360gen10/updateInitramfs.sh +++ /dev/null @@ -1,18 +0,0 @@ -rm -r tmp -mkdir tmp -cp initramfs.linux_amd64.cpio tmp -cd tmp -sudo cpio -idv < initramfs.linux_amd64.cpio -sudo mkdir etc/sshd -cd etc/sshd -sudo ssh-keygen -t rsa -P "$2" -f id_rsa 2>&1 >/dev/null -test -f "$1" && sudo cp $1 authorized_keys -cd ../.. -rm initramfs.linux_amd64.cpio -rm /tmp/initramfs.linux_amd64.cpio -sudo find . 2>/dev/null | sudo cpio -o -H newc -R root:root | xz -9 --format=lzma > /tmp/initramfs.linux_amd64.cpio.lzma -cd .. -sudo rm -r tmp -cp /tmp/initramfs.linux_amd64.cpio.lzma . -cp *lzma linux -exit 0 From 36f3d42dade41f310676383b0b015a4ed1b85502 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 104/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/intel/generic/.gitignore | 9 - mainboards/intel/generic/Makefile | 103 - mainboards/intel/generic/config-4.14.111 | 2400 ------------------ mainboards/intel/generic/config-5.15.0 | 2678 --------------------- mainboards/intel/generic/config-5.4.0 | 2678 --------------------- mainboards/intel/generic/config-5.7 | 2718 --------------------- mainboards/intel/generic/cpu.config | 2811 ---------------------- 7 files changed, 13397 deletions(-) delete mode 100644 mainboards/intel/generic/.gitignore delete mode 100644 mainboards/intel/generic/Makefile delete mode 100644 mainboards/intel/generic/config-4.14.111 delete mode 100644 mainboards/intel/generic/config-5.15.0 delete mode 100644 mainboards/intel/generic/config-5.4.0 delete mode 100644 mainboards/intel/generic/config-5.7 delete mode 100644 mainboards/intel/generic/cpu.config diff --git a/mainboards/intel/generic/.gitignore b/mainboards/intel/generic/.gitignore deleted file mode 100644 index 16580d9f..00000000 --- a/mainboards/intel/generic/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -image.bin -initramfs.linux_amd64.cpio -initramfs.linux_amd64.cpio.lzma -kernel -kernel.xz -linux -*kernel -*cpio -sr630.bin diff --git a/mainboards/intel/generic/Makefile b/mainboards/intel/generic/Makefile deleted file mode 100644 index 191281b2..00000000 --- a/mainboards/intel/generic/Makefile +++ /dev/null @@ -1,103 +0,0 @@ -MAJOR ?= 5 -STABLE = $(MAJOR).15 -CONFIG ?= $(MAJOR).15.0 -default: build - -build: - echo fetch, uroot, kernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - ROM.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netboot: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -netbooturoot: - u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -uroot: - u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-$(CONFIG) linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v$(MAJOR).x/linux-$(STABLE).tar.xz - xzcat kernel.xz | tar x - mv linux-$(STABLE) linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - @echo If you plan to flash to hardware, - @echo you will need to get a rom image - @echo and put it in rom.bin - @echo you can get it via wget, flashrom, whatever. - @echo If you are not targeting hardware, you can - @echo make flashkernel - @echo and run that kernel via qemu - -geturoot: - go get -u github.com/u-root/u-root - diff --git a/mainboards/intel/generic/config-4.14.111 b/mainboards/intel/generic/config-4.14.111 deleted file mode 100644 index e81b7fa3..00000000 --- a/mainboards/intel/generic/config-4.14.111 +++ /dev/null @@ -1,2400 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/intel/generic/config-5.15.0 b/mainboards/intel/generic/config-5.15.0 deleted file mode 100644 index 30428dae..00000000 --- a/mainboards/intel/generic/config-5.15.0 +++ /dev/null @@ -1,2678 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/intel/generic/config-5.4.0 b/mainboards/intel/generic/config-5.4.0 deleted file mode 100644 index 30428dae..00000000 --- a/mainboards/intel/generic/config-5.4.0 +++ /dev/null @@ -1,2678 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_HEADER_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_INTEL_UMIP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support - -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of Kernel hacking diff --git a/mainboards/intel/generic/config-5.7 b/mainboards/intel/generic/config-5.7 deleted file mode 100644 index 7666e5c1..00000000 --- a/mainboards/intel/generic/config-5.7 +++ /dev/null @@ -1,2718 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_GOOGLE=y -# CONFIG_GVE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_LAN743X is not set -CONFIG_NET_VENDOR_MICROSEMI=y -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -CONFIG_NET_VENDOR_NETERION=y -# CONFIG_S2IO is not set -# CONFIG_VXGE is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PACKET_ENGINES=y -# CONFIG_HAMACHI is not set -# CONFIG_YELLOWFIN is not set -CONFIG_NET_VENDOR_PENSANDO=y -# CONFIG_IONIC is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -CONFIG_NET_VENDOR_SOCIONEXT=y -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_NET is not set -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/generic/cpu.config b/mainboards/intel/generic/cpu.config deleted file mode 100644 index 4d9926ce..00000000 --- a/mainboards/intel/generic/cpu.config +++ /dev/null @@ -1,2811 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_KMEM=y -CONFIG_BLK_CGROUP=y -CONFIG_CGROUP_WRITEBACK=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -# CONFIG_CFS_BANDWIDTH is not set -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -CONFIG_CGROUP_RDMA=y -CONFIG_CGROUP_FREEZER=y -CONFIG_CGROUP_HUGETLB=y -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -CONFIG_CGROUP_DEBUG=y -CONFIG_SOCK_CGROUP_DATA=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_SLUB_MEMCG_SYSFS_ON is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_PROFILING=y -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -CONFIG_X86_UMIP=y -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 console=tty0" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_DEV_THROTTLING is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_CGROUP_IOLATENCY is not set -# CONFIG_BLK_CGROUP_IOCOST is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PAGE_REPORTING=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -# CONFIG_NET_SCH_FQ_CODEL is not set -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -CONFIG_NET_CLS=y -CONFIG_NET_CLS_BASIC=y -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -CONFIG_NET_CLS_CGROUP=y -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -CONFIG_CGROUP_NET_CLASSID=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -CONFIG_IGBVF=y -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -# CONFIG_CONSOLE_TRANSLATIONS is not set -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -CONFIG_TTY_PRINTK_LEVEL=6 -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y -CONFIG_NVRAM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -CONFIG_TCG_TPM=y -CONFIG_HW_RANDOM_TPM=y -# CONFIG_TCG_TIS is not set -# CONFIG_TCG_TIS_I2C_ATMEL is not set -# CONFIG_TCG_TIS_I2C_INFINEON is not set -# CONFIG_TCG_TIS_I2C_NUVOTON is not set -# CONFIG_TCG_NSC is not set -# CONFIG_TCG_ATMEL is not set -# CONFIG_TCG_INFINEON is not set -# CONFIG_TCG_CRB is not set -# CONFIG_TCG_VTPM_PROXY is not set -# CONFIG_TCG_TIS_ST33ZP24_I2C is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -CONFIG_SECURITYFS=y -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -CONFIG_SYMBOLIC_ERRNAME=y -# CONFIG_DEBUG_BUGVERBOSE is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From ad41eb3e06a45360c8e47b4e69b8d64256c02c5a Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 105/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/intel/hw/.gitignore | 7 - mainboards/intel/hw/Makefile | 335 --- mainboards/intel/hw/corebootflash.config | 2590 -------------------- mainboards/intel/hw/cpu.config | 2479 -------------------- mainboards/intel/hw/cpuflash.config | 2480 -------------------- mainboards/intel/hw/etc/README | 3 - mainboards/intel/hw/flash.config | 2721 ---------------------- mainboards/intel/hw/insert.go | 57 - mainboards/intel/hw/src/uinit/main.go | 79 - 9 files changed, 10751 deletions(-) delete mode 100644 mainboards/intel/hw/.gitignore delete mode 100644 mainboards/intel/hw/Makefile delete mode 100644 mainboards/intel/hw/corebootflash.config delete mode 100644 mainboards/intel/hw/cpu.config delete mode 100644 mainboards/intel/hw/cpuflash.config delete mode 100644 mainboards/intel/hw/etc/README delete mode 100644 mainboards/intel/hw/flash.config delete mode 100644 mainboards/intel/hw/insert.go delete mode 100644 mainboards/intel/hw/src/uinit/main.go diff --git a/mainboards/intel/hw/.gitignore b/mainboards/intel/hw/.gitignore deleted file mode 100644 index 4325a44d..00000000 --- a/mainboards/intel/hw/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/*.bin -/*.lzma -/*.cpio -/flashkernel -/linux -/bootcmds -/etc diff --git a/mainboards/intel/hw/Makefile b/mainboards/intel/hw/Makefile deleted file mode 100644 index f8e4036d..00000000 --- a/mainboards/intel/hw/Makefile +++ /dev/null @@ -1,335 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest -# This now includes a uinit as an example of how to write them. -# We also show an example of using the em100 -# -# New to this board class, uniquely, is coreboot support. To use coreboot, -# make coreboot -# To fire up the em100 -# make em100 -# -# you need to supply the coreboot.rom anda corebootem100.map -default: flash - -coreboot: coreboot2x.rom - -coreboot.rom: corebootflashkernel coreboot.rom - - cbfstool coreboot.rom remove -n fallback/payload - cbfstool coreboot.rom add-payload -n fallback/payload -f corebootflashkernel - -coreboot2x.rom: coreboot.rom - cat coreboot.rom coreboot.rom > coreboot2x.rom - -corebootem100: coreboot - em100 -p float --stop --set MX25L25635F --start -Tt -b -M corebootem100.map -d coreboot2x.rom - -em100: flash - em100 -p float --stop --set MX25L25635F -d flashpxeboot.bin --start - -flash: flashpxeboot.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma insert.go - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 flashkernel \ - save $@ - go run insert.go flashpxeboot.bin flashinitramfs.cpio.lzma 2785280 5603328 - -cpu.bin: dxeremove.bin cpuflashkernel cpu.cpio.lzma insert.go - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 .*Shell cpuflashkernel \ - save $@ - go run insert.go cpu.bin cpu.cpio.lzma 2785280 5603328 - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: tighten.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - remove Ahci.* \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment AMITSE \ - comment AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - comment Bds \ - comment below_still_unknown \ - remove Button.* \ - comment CrbTpm20Acpi \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - comment FlashDriver_do_not_remove_efi_panics \ - comment FlashDriver_do_not_remove_efi_panics \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - comment leavefornow \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - comment S3Save_do_not_remove_gets_error \ - comment S3Save_do_not_remove_gets_error \ - comment S3Save_do_not_remove_gets_error \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - comment Tcg2Dxe \ - comment TcgDxe \ - comment TcgDxeplatform \ - comment TcgMor \ - comment TcgPlatformSetupPolicy \ - comment TcgSmm \ - remove Tcp.* \ - remove TcpDxe \ - comment testremove \ - comment testremove \ - remove TimestampDxe \ - comment Tpm20PlatformDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - save $@ - chmod a-w $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile src/uinit/main.go bootcmds - GOPATH=`go env GOPATH`:$(PWD) u-root -o $@ -build=bb \ - -files bootcmds \ - -files etc \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - uinit \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/boot/fbnetboot \ - github.com/u-root/u-root/cmds/boot/fitboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/cp \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/echo \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/mkdir \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/unmount \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/exp/fixrsdp \ - github.com/u-root/cpu/cmds/cpud - -cbinitramfs.cpio.lzma: cbinitramfs.cpio - lzma -f -k $< - -cbinitramfs.cpio: Makefile src/uinit/main.go bootcmds - GOPATH=`go env GOPATH`:$(PWD) u-root -o $@ -build=bb \ - uinit \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/boot/fitboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/cp \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/echo \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/mkdir \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/unmount \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/exp/fixrsdp \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -corebootflashkernel: corebootflash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - touch bootcmds - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unzip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/intel/hw/corebootflash.config b/mainboards/intel/hw/corebootflash.config deleted file mode 100644 index 2661d6d7..00000000 --- a/mainboards/intel/hw/corebootflash.config +++ /dev/null @@ -1,2590 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=640 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_FAN is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -# CONFIG_ACPI_THERMAL is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=128 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/cpu.config b/mainboards/intel/hw/cpu.config deleted file mode 100644 index d83ec814..00000000 --- a/mainboards/intel/hw/cpu.config +++ /dev/null @@ -1,2479 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=8 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y diff --git a/mainboards/intel/hw/cpuflash.config b/mainboards/intel/hw/cpuflash.config deleted file mode 100644 index 610eed27..00000000 --- a/mainboards/intel/hw/cpuflash.config +++ /dev/null @@ -1,2480 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=8 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -CONFIG_NVME_CORE=y -CONFIG_BLK_DEV_NVME=y -# CONFIG_NVME_MULTIPATH is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/etc/README b/mainboards/intel/hw/etc/README deleted file mode 100644 index f94ef5b0..00000000 --- a/mainboards/intel/hw/etc/README +++ /dev/null @@ -1,3 +0,0 @@ -Add files to this directory which you wish included in -the ROM image. Such files might include utilities -such as Intel's NIC utilities. diff --git a/mainboards/intel/hw/flash.config b/mainboards/intel/hw/flash.config deleted file mode 100644 index 19ffc2cd..00000000 --- a/mainboards/intel/hw/flash.config +++ /dev/null @@ -1,2721 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -CONFIG_X86_CHECK_BIOS_CORRUPTION=y -CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y -CONFIG_X86_RESERVE_LOW=640 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp noefi earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000 acpi_enforce_resources=lax" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_FAN is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -# CONFIG_ACPI_THERMAL is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -CONFIG_ACPI_CONFIGFS=y -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -CONFIG_EFI_FAKE_MEMMAP=y -CONFIG_EFI_MAX_FAKE_MEM=128 -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -# CONFIG_CFG80211 is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -CONFIG_EEPROM_EE1004=y -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_BUSLOGIC is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_I825XX is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_ICE is not set -# CONFIG_FM10K is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_MDIO_DEVICE is not set -# CONFIG_PHYLIB is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_SMBUS=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -CONFIG_I2C_ALI1535=y -CONFIG_I2C_ALI1563=y -CONFIG_I2C_ALI15X3=y -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -CONFIG_I2C_I801=y -CONFIG_I2C_ISCH=y -CONFIG_I2C_ISMT=y -CONFIG_I2C_PIIX4=y -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -CONFIG_I2C_SCMI=y - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -CONFIG_I2C_XILINX=y - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -# CONFIG_I2C_DEBUG_ALGO is not set -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -CONFIG_SPI_DEBUG=y -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -CONFIG_LPC_SCH=y -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -# CONFIG_USB_XHCI_PLATFORM is not set -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/intel/hw/insert.go b/mainboards/intel/hw/insert.go deleted file mode 100644 index 308896d6..00000000 --- a/mainboards/intel/hw/insert.go +++ /dev/null @@ -1,57 +0,0 @@ -// insert an initramfs, checking sizes. - -package main - -import ( - "io/ioutil" - "log" - "os" - "strconv" -) - -func main() { - // Arguments are simple: - // image file - // initramfs file - // offset in target - // size limit - if len(os.Args) != 5 { - log.Fatalf("Usage: %s image initramfs offset max-allowed-initramfs-size", os.Args[0]) - } - - image, initramfs, offset, size := os.Args[1], os.Args[2], os.Args[3], os.Args[4] - - img, err := ioutil.ReadFile(image) - if err != nil { - log.Fatal(err) - } - ramfs, err := ioutil.ReadFile(initramfs) - if err != nil { - log.Fatal(err) - } - off, err := strconv.ParseUint(offset, 0, 24) - if err != nil { - log.Fatal(err) - } - sz, err := strconv.ParseUint(size, 0, 24) - if err != nil { - log.Fatal(err) - } - - if uint64(len(ramfs)) > sz { - log.Fatalf("Size of %q (%d) > allowed size (%d)", initramfs, len(ramfs), sz) - } - if off > uint64(len(img)) { - log.Fatalf("Off (%d) is > image size (%d)", off, len(img)) - } - if off+sz > uint64(len(img)) { - log.Fatalf("Off (%d) is > image size (%d)", off, len(img)) - } - - copy(img[off:], ramfs[:]) - log.Printf("Inserted %q, %d bytes actual size, with max allowed size of %d, at offset %d bytes, into %q, %d bytes", - initramfs, len(ramfs), sz, off, image, len(img)) - if err := ioutil.WriteFile(image, img, 0666); err != nil { - log.Fatal(err) - } -} diff --git a/mainboards/intel/hw/src/uinit/main.go b/mainboards/intel/hw/src/uinit/main.go deleted file mode 100644 index f83628b3..00000000 --- a/mainboards/intel/hw/src/uinit/main.go +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright 2020 the u-root Authors. All rights reserved -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// This is an example uinit for a board which has special requirements. -// First, it fixes the RSDP so that it will be found by whatever -// kernel comes next. Next, it mounts in this case (e.g.) /dev/sda5. -// Finally, it reads /bootcmds, a file which contains 0 or more -// commands, one per line. -// debug prints are on by default but can be turned off via -// -d=false -// The location of the command file is controlled by -cmd switch. -package main - -import ( - "flag" - "io/ioutil" - "log" - "os" - "os/exec" - "strings" - "time" - - "github.com/u-root/u-root/pkg/shlex" -) - -var ( - bootcmd = flag.String("bootcmd", "/bootcmds", "File containing boot command line") - debug = flag.Bool("d", true, "Print debug statement") - v = func(string, ...interface{}) {} -) - -func main() { - flag.Parse() - if *debug { - v = log.Printf - } - var bootcmds = []*exec.Cmd{ - exec.Command("fixrsdp"), - exec.Command("mount", "/dev/sda6", "/mnt"), - } - - for _, c := range bootcmds { - v("Run %v", c) - c.Stdout, c.Stderr = os.Stdout, os.Stderr - if err := c.Run(); err != nil { - log.Printf("cmd '%q' fails: %v", c, err) - } - } - - log.Print("-----> Hit ^C within 10 seconds to stop booting") - time.Sleep(10 * time.Second) - if cmds, err := ioutil.ReadFile(*bootcmd); err != nil { - log.Printf("Can not open %q: %v; will not attempt to boot", *bootcmd, err) - } else { - bootcmds = []*exec.Cmd{} - lines := strings.Split(string(cmds), "\n") - for _, l := range lines { - if len(l) == 0 { - break - } - f := shlex.Argv(l) - var args []string - if len(f) > 1 { - args = f[1:] - } - v("Add command %q %q", f[0], args) - bootcmds = append(bootcmds, exec.Command(f[0], args...)) - } - } - for _, c := range bootcmds { - v("Run %v", c) - c.Stdout, c.Stderr = os.Stdout, os.Stderr - if err := c.Run(); err != nil { - log.Fatalf("cmd '%q' fails: %v", c, err) - } - } - -} From 8460a4051cd2304727937c4c6b85af43b4eecbc2 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 106/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/intel/minplatform/Makefile | 55 - .../minplatform/linuxboot-linux.tiny.config | 1922 ----------------- 2 files changed, 1977 deletions(-) delete mode 100644 mainboards/intel/minplatform/Makefile delete mode 100644 mainboards/intel/minplatform/linuxboot-linux.tiny.config diff --git a/mainboards/intel/minplatform/Makefile b/mainboards/intel/minplatform/Makefile deleted file mode 100644 index 2439b51b..00000000 --- a/mainboards/intel/minplatform/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, testflashkernel and housekeeping - -flashkernel: linuxboot-linux.tiny.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - cp flashinitramfs.cpio.lzma linux/ - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/console \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - github.com/u-root/u-root/cmds/exp/console \ - -fetch: getkernel geturoot getfiano - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -testflashkernel: flashkernel - echo ^C will exit qemu! be careful! - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma -monitor /dev/null - -housekeeping: - rm -rf flashinitramfs.cpio \ - flashinitramfs.cpio.lzma \ - flashkernel \ - diff --git a/mainboards/intel/minplatform/linuxboot-linux.tiny.config b/mainboards/intel/minplatform/linuxboot-linux.tiny.config deleted file mode 100644 index 32e79ac9..00000000 --- a/mainboards/intel/minplatform/linuxboot-linux.tiny.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="flashinitramfs.cpio.lzma" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 From 0a0fe3961711c8e2394753f72d99462509d1f335 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 107/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/intel/s2600/Makefile | 242 -- mainboards/intel/s2600/flashkernel.config | 1922 ------------ .../intel/s2600/linuxboot-linux.tiny.config | 1922 ------------ mainboards/intel/s2600/netbootkernel.config | 2639 ----------------- 4 files changed, 6725 deletions(-) delete mode 100644 mainboards/intel/s2600/Makefile delete mode 100644 mainboards/intel/s2600/flashkernel.config delete mode 100644 mainboards/intel/s2600/linuxboot-linux.tiny.config delete mode 100644 mainboards/intel/s2600/netbootkernel.config diff --git a/mainboards/intel/s2600/Makefile b/mainboards/intel/s2600/Makefile deleted file mode 100644 index 46c0b9d9..00000000 --- a/mainboards/intel/s2600/Makefile +++ /dev/null @@ -1,242 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i ../../class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flash cpukernel - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -tiny.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 Shell flashkernel \ - save $@ - dd if=flashinitramfs.cpio.lzma of=$@ bs=4096 seek=360 conv=notrunc - -dxeremove.bin: hap.bin - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - remove Ahci.* \ - remove AMITSE \ - remove AMITSE.* \ - remove Arp.* \ - remove Ata.* \ - remove Bds \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - chmod a-w $@ - -hap.bin: image.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma netbootkernel.config - cp netbootkernel.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -# at the moment, the kernel used for the cpu command and the sshdkernel -# are the same. -cpukernel: sshdkernel - cp sshdkernel $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - go run github.com/u-root/u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files ../../class_key.pub:authorized_keys \ - -files ../../classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: linuxboot-linux.tiny.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - stat -c 'CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/ initrd=0xff968000,%s"' flashinitramfs.cpio.lzma >> linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/intel/s2600/flashkernel.config b/mainboards/intel/s2600/flashkernel.config deleted file mode 100644 index f0d37eab..00000000 --- a/mainboards/intel/s2600/flashkernel.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y diff --git a/mainboards/intel/s2600/linuxboot-linux.tiny.config b/mainboards/intel/s2600/linuxboot-linux.tiny.config deleted file mode 100644 index f0d37eab..00000000 --- a/mainboards/intel/s2600/linuxboot-linux.tiny.config +++ /dev/null @@ -1,1922 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70400 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=4 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y diff --git a/mainboards/intel/s2600/netbootkernel.config b/mainboards/intel/s2600/netbootkernel.config deleted file mode 100644 index 70fae893..00000000 --- a/mainboards/intel/s2600/netbootkernel.config +++ /dev/null @@ -1,2639 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.6.0-rc7 Kernel Configuration -# - -# -# Compiler: gcc (Debian 9.2.1-19) 9.2.1 20191109 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=90201 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_VARS=y -CONFIG_EFI_ESRT=y -# CONFIG_EFI_RUNTIME_MAP is not set -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_ATA_VERBOSE_ERROR=y -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -# CONFIG_LDISC_AUTOLOAD is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_DEVPORT is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -CONFIG_FB_EFI=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From bf0c59238dd5af734b604bb53a54579ba790a04b Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 108/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/lenovo/hr630/.gitignore | 7 - mainboards/lenovo/hr630/Makefile | 413 ---- mainboards/lenovo/hr630/config-4.14.111 | 2385 ----------------------- mainboards/lenovo/hr630/config-5.15.0 | 2385 ----------------------- 4 files changed, 5190 deletions(-) delete mode 100644 mainboards/lenovo/hr630/.gitignore delete mode 100644 mainboards/lenovo/hr630/Makefile delete mode 100644 mainboards/lenovo/hr630/config-4.14.111 delete mode 100644 mainboards/lenovo/hr630/config-5.15.0 diff --git a/mainboards/lenovo/hr630/.gitignore b/mainboards/lenovo/hr630/.gitignore deleted file mode 100644 index a69180a2..00000000 --- a/mainboards/lenovo/hr630/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -image.bin -initramfs.linux_amd64.cpio -initramfs.linux_amd64.cpio.lzma -kernel -kernel.xz -linux -sr630.bin diff --git a/mainboards/lenovo/hr630/Makefile b/mainboards/lenovo/hr630/Makefile deleted file mode 100644 index 83dee93e..00000000 --- a/mainboards/lenovo/hr630/Makefile +++ /dev/null @@ -1,413 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - echo note: for this to work you need to plug in power - echo also .... flashrom will not work you need sf100 on windows - sudo flashrom -p dediprog -r sr630.bin - -writerom: image.bin - sudo flashrom -p dediprog -w sr630.bin - -uroot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-5.15.0 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz - xzcat kernel.xz | tar x - mv linux-5.15 linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK sr630.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - utk sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/lenovo/hr630/config-4.14.111 b/mainboards/lenovo/hr630/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/lenovo/hr630/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/hr630/config-5.15.0 b/mainboards/lenovo/hr630/config-5.15.0 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/lenovo/hr630/config-5.15.0 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set From 35b0b81242b961b8f1019f29ca49e4d8e1ad934a Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 109/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/lenovo/sr630/Makefile | 411 ------ mainboards/lenovo/sr630/config-4.14.111 | 1654 ----------------------- mainboards/lenovo/sr630/config-5.15.0 | 1654 ----------------------- 3 files changed, 3719 deletions(-) delete mode 100644 mainboards/lenovo/sr630/Makefile delete mode 100644 mainboards/lenovo/sr630/config-4.14.111 delete mode 100644 mainboards/lenovo/sr630/config-5.15.0 diff --git a/mainboards/lenovo/sr630/Makefile b/mainboards/lenovo/sr630/Makefile deleted file mode 100644 index 15616779..00000000 --- a/mainboards/lenovo/sr630/Makefile +++ /dev/null @@ -1,411 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - utk \ - -xzPath /usr/bin/xz \ - sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - echo note: for this to work you need to plug in power - echo also .... flashrom will not work you need sf100 on windows - sudo flashrom -p dediprog -r sr630.bin - -writerom: image.bin - sudo flashrom -p dediprog -w sr630.bin - -uroot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/exp/rush github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-5.15.0 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk -getrom: - echo you can put a wget here - echo and unxip it - echo and cp it to sr630.bin -geturoot: - go get -u github.com/u-root/u-root - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK sr630.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - utk sr630.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/lenovo/sr630/config-4.14.111 b/mainboards/lenovo/sr630/config-4.14.111 deleted file mode 100644 index a0c4f7e8..00000000 --- a/mainboards/lenovo/sr630/config-4.14.111 +++ /dev/null @@ -1,1654 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# CONFIG_TASKS_RCU is not set -# CONFIG_RCU_STALL_COMMON is not set -# CONFIG_RCU_NEED_SEGCBLIST is not set -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../initramfs.linux_amd64.cpio.lzma" -CONFIG_RD_GZIP=n -CONFIG_RD_BZIP2=n -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=n -CONFIG_RD_LZ4=n -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_SYSCTL_SYSCALL is not set -# CONFIG_POSIX_TIMERS is not set -# CONFIG_KALLSYMS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -# CONFIG_MEMBARRIER is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -# CONFIG_PROFILING is not set -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -CONFIG_NR_CPUS=1 -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -# CONFIG_ARCH_RANDOM is not set -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -# CONFIG_SCHED_HRTICK is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -# CONFIG_RELOCATABLE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_CMDLINE_BOOL is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_X86_PM_TIMER=y -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -CONFIG_HT_IRQ=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y - -# -# DesignWare PCI Core Support -# - -# -# PCI host controller drivers -# - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set -# CONFIG_FW_LOADER is not set -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# - -# -# Altera FPGA firmware download module -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_SCSI_DMA is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -CONFIG_SERIAL_8250_MID=y -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_REGULATOR is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -CONFIG_RC_DECODERS=y -# CONFIG_LIRC is not set -CONFIG_IR_NEC_DECODER=y -CONFIG_IR_RC5_DECODER=y -CONFIG_IR_RC6_DECODER=y -CONFIG_IR_JVC_DECODER=y -CONFIG_IR_SONY_DECODER=y -CONFIG_IR_SANYO_DECODER=y -CONFIG_IR_SHARP_DECODER=y -CONFIG_IR_MCE_KBD_DECODER=y -CONFIG_IR_XMP_DECODER=y -# CONFIG_RC_DEVICES is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_FS_POSIX_ACL is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_KERNFS is not set -# CONFIG_SYSFS is not set -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DOUBLEFAULT is not set -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_CPA_DEBUG is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/sr630/config-5.15.0 b/mainboards/lenovo/sr630/config-5.15.0 deleted file mode 100644 index a0c4f7e8..00000000 --- a/mainboards/lenovo/sr630/config-5.15.0 +++ /dev/null @@ -1,1654 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# CONFIG_TASKS_RCU is not set -# CONFIG_RCU_STALL_COMMON is not set -# CONFIG_RCU_NEED_SEGCBLIST is not set -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../initramfs.linux_amd64.cpio.lzma" -CONFIG_RD_GZIP=n -CONFIG_RD_BZIP2=n -CONFIG_RD_LZMA=y -CONFIG_RD_XZ=y -CONFIG_RD_LZO=n -CONFIG_RD_LZ4=n -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_SYSCTL_SYSCALL is not set -# CONFIG_POSIX_TIMERS is not set -# CONFIG_KALLSYMS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_BPF_SYSCALL is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -# CONFIG_MEMBARRIER is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -# CONFIG_PROFILING is not set -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -CONFIG_NR_CPUS=1 -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -CONFIG_X86_VSYSCALL_EMULATION=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -# CONFIG_ARCH_RANDOM is not set -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -# CONFIG_SCHED_HRTICK is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -# CONFIG_RELOCATABLE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_CMDLINE_BOOL is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_PROCESSOR=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -CONFIG_X86_PM_TIMER=y -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -CONFIG_HT_IRQ=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y - -# -# DesignWare PCI Core Support -# - -# -# PCI host controller drivers -# - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set -# CONFIG_FW_LOADER is not set -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# - -# -# Altera FPGA firmware download module -# -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_SCSI_DMA is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -CONFIG_SERIAL_8250_MID=y -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_REGULATOR is not set -CONFIG_RC_CORE=y -CONFIG_RC_MAP=y -CONFIG_RC_DECODERS=y -# CONFIG_LIRC is not set -CONFIG_IR_NEC_DECODER=y -CONFIG_IR_RC5_DECODER=y -CONFIG_IR_RC6_DECODER=y -CONFIG_IR_JVC_DECODER=y -CONFIG_IR_SONY_DECODER=y -CONFIG_IR_SANYO_DECODER=y -CONFIG_IR_SHARP_DECODER=y -CONFIG_IR_MCE_KBD_DECODER=y -CONFIG_IR_XMP_DECODER=y -# CONFIG_RC_DEVICES is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_FS_POSIX_ACL is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_KERNFS is not set -# CONFIG_SYSFS is not set -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DOUBLEFAULT is not set -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_CPA_DEBUG is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_LZ4_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_BZIP2=y -CONFIG_DECOMPRESS_LZMA=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_LZO=y -CONFIG_DECOMPRESS_LZ4=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -# CONFIG_STRING_SELFTEST is not set From 54be995b382bf97ee56334da05cb346a91b3e723 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 110/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/lenovo/thinkpad/Makefile | 82 - mainboards/lenovo/thinkpad/config-4.14.111 | 2435 -------------------- mainboards/lenovo/thinkpad/config-5.15.0 | 2435 -------------------- 3 files changed, 4952 deletions(-) delete mode 100644 mainboards/lenovo/thinkpad/Makefile delete mode 100644 mainboards/lenovo/thinkpad/config-4.14.111 delete mode 100644 mainboards/lenovo/thinkpad/config-5.15.0 diff --git a/mainboards/lenovo/thinkpad/Makefile b/mainboards/lenovo/thinkpad/Makefile deleted file mode 100644 index 618899a0..00000000 --- a/mainboards/lenovo/thinkpad/Makefile +++ /dev/null @@ -1,82 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel coreboot.bin - cp coreboot.bin image.bin - chmod +w image.bin - cbfstool image.bin print - cbfstool image.bin remove -n img/nerf - cbfstool image.bin remove -n genroms/pxe.rom - cbfstool image.bin add-payload -n img/nerf -f flashkernel - cbfstool image.bin print -qemu: flashkernel - sudo /usr/bin/qemu-system-x86_64 -kernel flashkernel \ - -cpu max \ - -s \ - -m 1024m \ - -machine q35 \ - -object rng-random,filename=/dev/urandom,id=rng0 \ - -device virtio-rng-pci,rng=rng0 \ - -device e1000,netdev=n1 \ - -netdev user,id=n1,hostfwd=tcp:127.0.0.1:23-:2222,net=192.168.1.0/24,host=192.168.1.1 \ - -serial stdio \ - -append earlyprintk=ttyS0,115200\ console=ttyS0 \ - -monitor /dev/null \ - - -# add the following line to qemu if you want to snoop packets. - -object filter-dump,id=f1,netdev=n1,file=/tmp/vm0.pcap \ - - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -netbootkernel: netbooturoot bzImage - cp linux/arch/x86/boot/bzImage kernel - -readrom: - sudo flashrom -p internal -r coreboot.bin - -writerom: image.bin - sudo flashrom -p internal -w image.bin - -netbooturoot: - go run github.com/u-root/u-root -build=bb github.com/u-root/u-root/cmds/core/init github.com/u-root/u-root/cmds/core/ls github.com/u-root/u-root/cmds/core/ip github.com/u-root/u-root/cmds/core/elvish github.com/u-root/u-root/cmds/core/sshd github.com/u-root/u-root/cmds/core/scp github.com/u-root/u-root/cmds/boot/* - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -uroot: - go run github.com/u-root/u-root -initcmd=/bbin/cpu -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ - all \ - github.com/u-root/cpu/cmds/cpu - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-5.15.0 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz - xzcat kernel.xz | tar x - mv linux-5.15 linux -getrom: - echo you create the flashkernel - echo on the APU2: flashrom -r coreboot.bin -p internal - echo copy that file here and for safety: - echo chmod a-w coreboot.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english diff --git a/mainboards/lenovo/thinkpad/config-4.14.111 b/mainboards/lenovo/thinkpad/config-4.14.111 deleted file mode 100644 index d0c546b7..00000000 --- a/mainboards/lenovo/thinkpad/config-4.14.111 +++ /dev/null @@ -1,2435 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_FREEZER=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -CONFIG_MTD=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -# CONFIG_MTD_AR7_PARTS is not set - -# -# Partition parsers -# - -# -# User Modules And Translation Layers -# -# CONFIG_MTD_BLOCK is not set -# CONFIG_MTD_BLOCK_RO is not set -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=y -CONFIG_MTD_JEDECPROBE=y -CONFIG_MTD_GEN_PROBE=y -CONFIG_MTD_CFI_ADV_OPTIONS=y -CONFIG_MTD_CFI_NOSWAP=y -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set -CONFIG_MTD_CFI_GEOMETRY=y -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_MAP_BANK_WIDTH_8=y -CONFIG_MTD_MAP_BANK_WIDTH_16=y -CONFIG_MTD_MAP_BANK_WIDTH_32=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -CONFIG_MTD_CFI_I4=y -CONFIG_MTD_CFI_I8=y -CONFIG_MTD_OTP=y -CONFIG_MTD_CFI_INTELEXT=y -CONFIG_MTD_CFI_AMDSTD=y -CONFIG_MTD_CFI_STAA=y -CONFIG_MTD_CFI_UTIL=y -CONFIG_MTD_RAM=y -CONFIG_MTD_ROM=y -CONFIG_MTD_ABSENT=y - -# -# Mapping drivers for chip access -# -CONFIG_MTD_COMPLEX_MAPPINGS=y -# CONFIG_MTD_PHYSMAP is not set -# CONFIG_MTD_SBC_GXX is not set -CONFIG_MTD_AMD76XROM=y -CONFIG_MTD_ICHXROM=y -CONFIG_MTD_ESB2ROM=y -# CONFIG_MTD_CK804XROM is not set -CONFIG_MTD_SCB2_FLASH=y -# CONFIG_MTD_NETtel is not set -# CONFIG_MTD_L440GX is not set -# CONFIG_MTD_PCI is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# CONFIG_MTD_LATCH_ADDR is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_M25P80 is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_MT81xx_NOR is not set -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_TI_DAC7512 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -# CONFIG_CONSOLE_TRANSLATIONS is not set -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_PXA2XX_PCI is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -# CONFIG_LEDS_CLASS is not set - -# -# LED drivers -# - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# - -# -# LED Triggers -# -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/lenovo/thinkpad/config-5.15.0 b/mainboards/lenovo/thinkpad/config-5.15.0 deleted file mode 100644 index d0c546b7..00000000 --- a/mainboards/lenovo/thinkpad/config-5.15.0 +++ /dev/null @@ -1,2435 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_FREEZER=y - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -CONFIG_ARCH_HAS_PKEYS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="console=tty0" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_PM_TRACE_RTC is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SLEEP=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -CONFIG_MTD=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -# CONFIG_MTD_AR7_PARTS is not set - -# -# Partition parsers -# - -# -# User Modules And Translation Layers -# -# CONFIG_MTD_BLOCK is not set -# CONFIG_MTD_BLOCK_RO is not set -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=y -CONFIG_MTD_JEDECPROBE=y -CONFIG_MTD_GEN_PROBE=y -CONFIG_MTD_CFI_ADV_OPTIONS=y -CONFIG_MTD_CFI_NOSWAP=y -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set -CONFIG_MTD_CFI_GEOMETRY=y -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_MAP_BANK_WIDTH_8=y -CONFIG_MTD_MAP_BANK_WIDTH_16=y -CONFIG_MTD_MAP_BANK_WIDTH_32=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -CONFIG_MTD_CFI_I4=y -CONFIG_MTD_CFI_I8=y -CONFIG_MTD_OTP=y -CONFIG_MTD_CFI_INTELEXT=y -CONFIG_MTD_CFI_AMDSTD=y -CONFIG_MTD_CFI_STAA=y -CONFIG_MTD_CFI_UTIL=y -CONFIG_MTD_RAM=y -CONFIG_MTD_ROM=y -CONFIG_MTD_ABSENT=y - -# -# Mapping drivers for chip access -# -CONFIG_MTD_COMPLEX_MAPPINGS=y -# CONFIG_MTD_PHYSMAP is not set -# CONFIG_MTD_SBC_GXX is not set -CONFIG_MTD_AMD76XROM=y -CONFIG_MTD_ICHXROM=y -CONFIG_MTD_ESB2ROM=y -# CONFIG_MTD_CK804XROM is not set -CONFIG_MTD_SCB2_FLASH=y -# CONFIG_MTD_NETtel is not set -# CONFIG_MTD_L440GX is not set -# CONFIG_MTD_PCI is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# CONFIG_MTD_LATCH_ADDR is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_M25P80 is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_MT81xx_NOR is not set -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -CONFIG_SPI_INTEL_SPI=y -CONFIG_SPI_INTEL_SPI_PCI=y -CONFIG_SPI_INTEL_SPI_PLATFORM=y -# CONFIG_MTD_UBI is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_TI_DAC7512 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -# CONFIG_CONSOLE_TRANSLATIONS is not set -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_PXA2XX_PCI is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -# CONFIG_SPI_SPIDEV is not set -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set - -# -# Console display driver support -# -CONFIG_VGA_CONSOLE=y -# CONFIG_VGACON_SOFT_SCROLLBACK is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -# CONFIG_LEDS_CLASS is not set - -# -# LED drivers -# - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# - -# -# LED Triggers -# -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set From 09161d4f29529df3b95b01900e926ed37c8c0655 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 111/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/marvel/macchiatobin/.gitignore | 7 - mainboards/marvel/macchiatobin/Makefile | 175 -- mainboards/marvel/macchiatobin/config-5.6.3 | 2729 ------------------- 3 files changed, 2911 deletions(-) delete mode 100644 mainboards/marvel/macchiatobin/.gitignore delete mode 100644 mainboards/marvel/macchiatobin/Makefile delete mode 100644 mainboards/marvel/macchiatobin/config-5.6.3 diff --git a/mainboards/marvel/macchiatobin/.gitignore b/mainboards/marvel/macchiatobin/.gitignore deleted file mode 100644 index 0f176acf..00000000 --- a/mainboards/marvel/macchiatobin/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/linux - -*.cpio -*.cpio.xz -tfa -/binaries-marvell/ -/mv-ddr-marvell/ diff --git a/mainboards/marvel/macchiatobin/Makefile b/mainboards/marvel/macchiatobin/Makefile deleted file mode 100644 index 724bf872..00000000 --- a/mainboards/marvel/macchiatobin/Makefile +++ /dev/null @@ -1,175 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i ../../class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i ../../class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i ../../class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i ../../class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - - -MARVELL_GIT?=https://github.com/MarvellEmbeddedProcessors -TOOLCHAIN?=aarch64-linux-gnu- - -default: flash-image.bin - -u-root: - GO111MODULE=off go install github.com/u-root/u-root - @echo Make sure $(GOPATH)/bin is in your PATH - @echo if GOPATH is empty, then put ~/go/bin in your PATH - -todo: sshdkernel flash cpukernel - -flash-image.bin: flashkernel sd - -sd: - (cd tfa && make \ - CROSS_COMPILE=$(TOOLCHAIN) \ - Arch=arm64 \ - SCP_BL2=../binaries-marvell/mrvl_scp_bl2_8040.img \ - BL33=../linux/arch/arm64/boot/Image.gz \ - BL33_DTB=../linux/arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtb \ - USE_COHERENT_MEM=0 \ - ARM_LINUX_KERNEL_AS_BL33=1 \ - MV_DDR_PATH=../mv-ddr-marvell \ - PLAT=a80x0_mcbin \ - all fip) - echo build result is tfa/build/a80x0_mcbin/release/flash-image.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, apt (for crossbuild) or image.bin - -tiny.bin: flashkernel flashinitramfs.cpio.xz - -sshdkernel: sshd.cpio.xz netbootkernel.config - cp netbootkernel.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -# at the moment, the kernel used for the cpu command and the sshdkernel -# are the same. -cpukernel: sshdkernel - cp sshdkernel $@ - -writerom: flash-image.bin - @echo Use this command. It will not be run from this Makefile - @echo dd if=flash-image.bin of=/dev/null skip=1 - -flashinitramfs.cpio.xz: flashinitramfs.cpio - xz --check=crc32 -f -k $< - -flashinitramfs.cpio: u-root Makefile - GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.xz: u-root Makefile - GO111MODULE=off GOARCH=arm64 u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - xz --check=crc32 -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.xz: u-root Makefile - GO111MODULE=off GOARCH=arm64 u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files ../../class_key.pub:authorized_keys \ - -files ../../classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - xz --check=crc32 -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: config-5.6.3 flashinitramfs.cpio.xz - cp $< linux/.config - (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - -testflashkernel: flashkernel - qemu-system-arm64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.xz - -# These stanzas fetch code. -fetch: getkernel geturoot gettfa fetchblobs - -gettfa: - rm -rf tfa - echo NOT THIS ONE git clone https://github.com/fozog/arm-trusted-firmware.git tfa - git clone --branch linuxboot4mcbin https://github.com/fozog/arm-trusted-firmware.git tfa - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.6 --single-branch https://github.com/torvalds/linux - -geturoot: - GO111MODULE=off go get -u github.com/u-root/u-root - GO111MODULE=off go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -fetchblobs: - rm -rf mv-ddr-marvell binaries-marvell - git clone --branch mv_ddr-armada-atf-mainline $(MARVELL_GIT)/mv-ddr-marvell.git - git clone --branch binaries-marvell-armada-17.10 $(MARVELL_GIT)/binaries-marvell - -apt: - sudo apt install gcc-aarch64-linux-gnu - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/marvel/macchiatobin/config-5.6.3 b/mainboards/marvel/macchiatobin/config-5.6.3 deleted file mode 100644 index bc8f8100..00000000 --- a/mainboards/marvel/macchiatobin/config-5.6.3 +++ /dev/null @@ -1,2729 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm64 5.6.0 Kernel Configuration -# - -# -# Compiler: aarch64-linux-gnu-gcc (Linaro GCC 7.5-2019.12) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_IRQ_MSI_IOMMU=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_RCU_EXPERT=y -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_RCU_FANOUT=64 -CONFIG_RCU_FANOUT_LEAF=16 -# CONFIG_RCU_FAST_NO_HZ is not set -CONFIG_RCU_NOCB_CPU=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_NAMESPACES is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.xz" -CONFIG_INITRAMFS_FORCE=y -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -CONFIG_SLUB_DEBUG=y -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM64=y -CONFIG_64BIT=y -CONFIG_MMU=y -CONFIG_ARM64_PAGE_SHIFT=12 -CONFIG_ARM64_CONT_SHIFT=4 -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=33 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ZONE_DMA=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_SMP=y -CONFIG_KERNEL_MODE_NEON=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARCH_PROC_KCORE_TEXT=y - -# -# Platform selection -# -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_AGILEX is not set -# CONFIG_ARCH_SUNXI is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_BCM2835 is not set -# CONFIG_ARCH_BCM_IPROC is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_BITMAIN is not set -# CONFIG_ARCH_BRCMSTB is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_K3 is not set -# CONFIG_ARCH_LAYERSCAPE is not set -# CONFIG_ARCH_LG1K is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -CONFIG_ARCH_MVEBU=y -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S32 is not set -# CONFIG_ARCH_SEATTLE is not set -# CONFIG_ARCH_STRATIX10 is not set -# CONFIG_ARCH_SYNQUACER is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_SPRD is not set -# CONFIG_ARCH_THUNDER is not set -# CONFIG_ARCH_THUNDER2 is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_XGENE is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQMP is not set -# end of Platform selection - -# -# Kernel Features -# - -# -# ARM errata workarounds via the alternatives framework -# -CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y -CONFIG_ARM64_ERRATUM_826319=y -CONFIG_ARM64_ERRATUM_827319=y -CONFIG_ARM64_ERRATUM_824069=y -CONFIG_ARM64_ERRATUM_819472=y -CONFIG_ARM64_ERRATUM_832075=y -CONFIG_ARM64_ERRATUM_843419=y -CONFIG_ARM64_ERRATUM_1024718=y -CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT_VHE=y -CONFIG_ARM64_ERRATUM_1165522=y -CONFIG_ARM64_ERRATUM_1530923=y -CONFIG_ARM64_ERRATUM_1286807=y -CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT_NVHE=y -CONFIG_ARM64_ERRATUM_1319367=y -CONFIG_ARM64_ERRATUM_1463225=y -CONFIG_ARM64_ERRATUM_1542419=y -CONFIG_CAVIUM_ERRATUM_22375=y -CONFIG_CAVIUM_ERRATUM_23154=y -CONFIG_CAVIUM_ERRATUM_27456=y -CONFIG_CAVIUM_ERRATUM_30115=y -CONFIG_CAVIUM_TX2_ERRATUM_219=y -CONFIG_QCOM_FALKOR_ERRATUM_1003=y -CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y -CONFIG_QCOM_FALKOR_ERRATUM_1009=y -CONFIG_QCOM_QDF2400_ERRATUM_0065=y -CONFIG_SOCIONEXT_SYNQUACER_PREITS=y -CONFIG_HISILICON_ERRATUM_161600802=y -CONFIG_QCOM_FALKOR_ERRATUM_E1041=y -CONFIG_FUJITSU_ERRATUM_010001=y -# end of ARM errata workarounds via the alternatives framework - -CONFIG_ARM64_4K_PAGES=y -# CONFIG_ARM64_16K_PAGES is not set -# CONFIG_ARM64_64K_PAGES is not set -# CONFIG_ARM64_VA_BITS_39 is not set -CONFIG_ARM64_VA_BITS_48=y -CONFIG_ARM64_VA_BITS=48 -CONFIG_ARM64_PA_BITS_48=y -CONFIG_ARM64_PA_BITS=48 -# CONFIG_CPU_BIG_ENDIAN is not set -CONFIG_CPU_LITTLE_ENDIAN=y -CONFIG_SCHED_MC=y -# CONFIG_SCHED_SMT is not set -CONFIG_NR_CPUS=4 -CONFIG_HOTPLUG_CPU=y -# CONFIG_NUMA is not set -CONFIG_HOLES_IN_ZONE=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_SYS_SUPPORTS_HUGETLBFS=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -# CONFIG_XEN is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_UNMAP_KERNEL_AT_EL0=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_HARDEN_EL2_VECTORS=y -CONFIG_ARM64_SSBD=y -CONFIG_RODATA_FULL_DEFAULT_ENABLED=y -# CONFIG_ARM64_SW_TTBR0_PAN is not set -CONFIG_ARM64_TAGGED_ADDR_ABI=y -# CONFIG_COMPAT is not set - -# -# ARMv8.1 architectural features -# -CONFIG_ARM64_HW_AFDBM=y -CONFIG_ARM64_PAN=y -CONFIG_ARM64_LSE_ATOMICS=y -CONFIG_ARM64_USE_LSE_ATOMICS=y -CONFIG_ARM64_VHE=y -# end of ARMv8.1 architectural features - -# -# ARMv8.2 architectural features -# -CONFIG_ARM64_UAO=y -# CONFIG_ARM64_PMEM is not set -CONFIG_ARM64_RAS_EXTN=y -CONFIG_ARM64_CNP=y -# end of ARMv8.2 architectural features - -# -# ARMv8.3 architectural features -# -CONFIG_ARM64_PTR_AUTH=y -# end of ARMv8.3 architectural features - -# -# ARMv8.5 architectural features -# -CONFIG_ARM64_E0PD=y -CONFIG_ARCH_RANDOM=y -# end of ARMv8.5 architectural features - -CONFIG_ARM64_SVE=y -CONFIG_ARM64_MODULE_PLTS=y -# CONFIG_ARM64_PSEUDO_NMI is not set -# CONFIG_RANDOMIZE_BASE is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 rootwait root=/dev/mmcblk0p2 rw" -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -CONFIG_DMI=y -# end of Boot options - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -CONFIG_CPU_PM=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# CPU Power Management -# - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling -# end of CPU Power Management - -# -# Firmware Drivers -# -CONFIG_ARM_SDE_INTERFACE=y -CONFIG_FIRMWARE_MEMMAP=y -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_ARM_PSCI_FW=y -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_ARMSTUB=y -CONFIG_EFI_ARMSTUB_DTB_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_ARCH_SUPPORTS_ACPI=y -# CONFIG_ACPI is not set -# CONFIG_VIRTUALIZATION is not set -# CONFIG_ARM64_CRYPTO is not set - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -# CONFIG_KPROBES is not set -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_MMU_GATHER_TABLE_FREE=y -CONFIG_MMU_GATHER_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -# CONFIG_UNUSED_SYMBOLS is not set -CONFIG_TRIM_UNUSED_KSYMS=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y -CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_LOCK=y -CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y -CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_INLINE_READ_LOCK=y -CONFIG_ARCH_INLINE_READ_LOCK_BH=y -CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y -CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_READ_UNLOCK=y -CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y -CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_INLINE_WRITE_LOCK=y -CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y -CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y -CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_SPIN_TRYLOCK=y -CONFIG_INLINE_SPIN_TRYLOCK_BH=y -CONFIG_INLINE_SPIN_LOCK=y -CONFIG_INLINE_SPIN_LOCK_BH=y -CONFIG_INLINE_SPIN_LOCK_IRQ=y -CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y -CONFIG_INLINE_SPIN_UNLOCK_BH=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_READ_LOCK=y -CONFIG_INLINE_READ_LOCK_BH=y -CONFIG_INLINE_READ_LOCK_IRQ=y -CONFIG_INLINE_READ_LOCK_IRQSAVE=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_BH=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y -CONFIG_INLINE_WRITE_LOCK=y -CONFIG_INLINE_WRITE_LOCK_BH=y -CONFIG_INLINE_WRITE_LOCK_IRQ=y -CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_BH=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -# CONFIG_FLATMEM_MANUAL is not set -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_MEMORY_FAILURE is not set -# CONFIG_TRANSPARENT_HUGEPAGE is not set -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_ARM_AMBA=y -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCI_DOMAINS_GENERIC=y -CONFIG_PCI_SYSCALL=y -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_PCI_AARDVARK is not set -# CONFIG_PCI_FTPCI100 is not set -# CONFIG_PCI_HOST_GENERIC is not set -# CONFIG_PCIE_XILINX is not set -# CONFIG_PCI_XGENE is not set -# CONFIG_PCIE_ALTERA is not set -# CONFIG_PCI_HOST_THUNDER_PEM is not set -# CONFIG_PCI_HOST_THUNDER_ECAM is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_HISI is not set -# CONFIG_PCIE_ARMADA_8K is not set -# CONFIG_PCIE_KIRIN is not set -# CONFIG_PCI_MESON is not set -# CONFIG_PCIE_AL is not set -# end of DesignWare PCI Core Support - -# -# Cadence PCIe controllers support -# -# CONFIG_PCIE_CADENCE_PLAT_HOST is not set -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_VEXPRESS_CONFIG is not set -# end of Bus devices - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_DYNAMIC=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_RESERVED_MEM=y -CONFIG_OF_RESOLVE=y -CONFIG_OF_OVERLAY=y -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set - -# -# DRBD disabled because PROC_FS or INET not selected -# -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -CONFIG_SRAM=y -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# end of SCSI device support - -CONFIG_HAVE_PATA_PLATFORM=y -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_GPIO is not set -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_AMBAKMI is not set -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -# CONFIG_SERIAL_8250_MANY_PORTS is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL010 is not set -# CONFIG_SERIAL_AMBA_PL011 is not set -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_MVEBU_UART is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=m -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_OMAP=m -CONFIG_HW_RANDOM_CAVIUM=m -CONFIG_HW_RANDOM_OPTEE=m -# CONFIG_APPLICOM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -CONFIG_I2C_MUX_PCA954x=y -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CADENCE is not set -# CONFIG_I2C_CBUS_GPIO is not set -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -CONFIG_I2C_MV64XXX=y -# CONFIG_I2C_NOMADIK is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_THUNDERX is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -CONFIG_PINCTRL_MVEBU=y -CONFIG_PINCTRL_ARMADA_AP806=y -CONFIG_PINCTRL_ARMADA_CP110=y -CONFIG_PINCTRL_ARMADA_37XX=y -# CONFIG_PINCTRL_EQUILIBRIUM is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -# CONFIG_GPIO_SYSFS is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -CONFIG_GPIO_MVEBU=y -# CONFIG_GPIO_PL061 is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XGENE is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -CONFIG_GPIO_PCA953X=y -CONFIG_GPIO_PCA953X_IRQ=y -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_BRCMSTB is not set -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -# CONFIG_POWER_RESET_XGENE is not set -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_CPU_THERMAL is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_THERMAL_MMIO is not set -# CONFIG_QORIQ_THERMAL is not set -CONFIG_ARMADA_THERMAL=m -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -CONFIG_REGULATOR_88PG86X=y -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_ANATOP is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX8973 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_VCTRL is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_VGA_ARB=y -CONFIG_VGA_ARB_MAX_GPUS=16 -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_RCAR_WRITEBACK=y - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -# CONFIG_USB is not set -CONFIG_USB_PCI=y - -# -# USB port drivers -# - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ULPI is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_ARMMMCI is not set -CONFIG_MMC_SDHCI=y -# CONFIG_MMC_SDHCI_PCI is not set -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_OF_ARASAN is not set -# CONFIG_MMC_SDHCI_OF_ASPEED is not set -# CONFIG_MMC_SDHCI_OF_AT91 is not set -# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set -# CONFIG_MMC_SDHCI_CADENCE is not set -# CONFIG_MMC_SDHCI_PXAV3 is not set -# CONFIG_MMC_SDHCI_F_SDH30 is not set -# CONFIG_MMC_SDHCI_MILBEAUT is not set -# CONFIG_MMC_TIFM_SD is not set -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MMC_SDHCI_OMAP is not set -# CONFIG_MMC_SDHCI_AM654 is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO_MENU=y -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_VERSATILE is not set -# CONFIG_CLK_HSDK is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_XGENE is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_ARMADA_AP_CP_HELPER=y -CONFIG_ARMADA_37XX_CLK=y -CONFIG_ARMADA_AP806_SYSCON=y -CONFIG_ARMADA_CP110_SYSCON=y -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y -CONFIG_FSL_ERRATUM_A008585=y -CONFIG_HISILICON_ERRATUM_161010101=y -CONFIG_ARM64_ERRATUM_858921=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_IOVA=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -CONFIG_IOMMU_IO_PGTABLE=y -CONFIG_IOMMU_IO_PGTABLE_LPAE=y -# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set -# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set -CONFIG_OF_IOMMU=y -CONFIG_IOMMU_DMA=y -CONFIG_ARM_SMMU=y -CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS=y -CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT=y -# CONFIG_ARM_SMMU_V3 is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_QUICC_ENGINE is not set -# CONFIG_FSL_RCPM is not set -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -CONFIG_ARM_GIC_V2M=y -CONFIG_ARM_GIC_V3=y -CONFIG_ARM_GIC_V3_ITS=y -CONFIG_ARM_GIC_V3_ITS_PCI=y -# CONFIG_AL_FIC is not set -CONFIG_MVEBU_GICP=y -CONFIG_MVEBU_ICU=y -CONFIG_MVEBU_ODMI=y -CONFIG_MVEBU_PIC=y -CONFIG_MVEBU_SEI=y -CONFIG_PARTITION_PERCPU=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_PHY_XGENE is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -CONFIG_PHY_MVEBU_A3700_COMPHY=y -CONFIG_PHY_MVEBU_A3700_UTMI=y -CONFIG_PHY_MVEBU_A38X_COMPHY=y -CONFIG_PHY_MVEBU_CP110_COMPHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -CONFIG_TEE=y - -# -# TEE drivers -# -CONFIG_OPTEE=y -CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 -# end of TEE drivers - -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_FS_POSIX_ACL=y -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=m -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="cp-437" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_MARVELL_CESA is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_HISI_SEC is not set -# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set -# CONFIG_CRYPTO_DEV_HISI_ZIP is not set -# CONFIG_CRYPTO_DEV_HISI_HPRE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_INDIRECT_PIO is not set -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -# CONFIG_XZ_DEC_X86 is not set -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -CONFIG_XZ_DEC_ARM=y -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_DIRECT_REMAP=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_DEBUG_ON is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_HAVE_DEBUG_BUGVERBOSE=y - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -CONFIG_RCU_TRACE=y -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_TRACING_SUPPORT=y -CONFIG_FTRACE=y -# CONFIG_FUNCTION_TRACER is not set -# CONFIG_STACK_TRACER is not set -# CONFIG_PREEMPTIRQ_EVENTS is not set -# CONFIG_IRQSOFF_TRACER is not set -# CONFIG_SCHED_TRACER is not set -# CONFIG_HWLAT_TRACER is not set -# CONFIG_ENABLE_DEFAULT_TRACERS is not set -# CONFIG_FTRACE_SYSCALLS is not set -# CONFIG_TRACER_SNAPSHOT is not set -CONFIG_BRANCH_PROFILE_NONE=y -# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set -# CONFIG_PROFILE_ALL_BRANCHES is not set -# CONFIG_BLK_DEV_IO_TRACE is not set -# CONFIG_HIST_TRIGGERS is not set -# CONFIG_TRACEPOINT_BENCHMARK is not set -# CONFIG_PREEMPTIRQ_DELAY_TEST is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set - -# -# arm64 Debugging -# -# CONFIG_PID_IN_CONTEXTIDR is not set -# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DEBUG_ALIGN_RODATA is not set -# CONFIG_ARM64_RELOC_TEST is not set -# CONFIG_CORESIGHT is not set -# end of arm64 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_VMALLOC is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking -# From d7cc8e21bdc0aa986239f0b7899faaedd59de208 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 112/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/opentitanpilot/dresden/.gitignore | 6 - mainboards/opentitanpilot/dresden/Makefile | 292 -- .../opentitanpilot/dresden/flash.config | 2482 ----------------- 3 files changed, 2780 deletions(-) delete mode 100644 mainboards/opentitanpilot/dresden/.gitignore delete mode 100644 mainboards/opentitanpilot/dresden/Makefile delete mode 100644 mainboards/opentitanpilot/dresden/flash.config diff --git a/mainboards/opentitanpilot/dresden/.gitignore b/mainboards/opentitanpilot/dresden/.gitignore deleted file mode 100644 index bf498185..00000000 --- a/mainboards/opentitanpilot/dresden/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/*.csv -/*.bin -/*.lzma -/*.cpio -/flashkernel -/linux diff --git a/mainboards/opentitanpilot/dresden/Makefile b/mainboards/opentitanpilot/dresden/Makefile deleted file mode 100644 index 0daaad30..00000000 --- a/mainboards/opentitanpilot/dresden/Makefile +++ /dev/null @@ -1,292 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make flashpxeboot.bin -# scp -i class_key -P 2022 flashpxeboot.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w flashpxeboot.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make flashpxeboot.bin -# cpu board flashrom -w flashpxeboot.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make flashpxeboot.bin -# flashrom -w flashpxeboot.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# flashpxeboot.bin produces a flash image which will pxeboot. -# cpu.bin produces a flash image that starts a cpu daemon. -# -# You can test the flash image kernel with qemu -# make flashtest - -default: flash - -flash: flashpxeboot.bin - -redgreen: - utk dxeremove.bin table | guid2english |grep File | grep -v PAD | grep -v PEIM | grep -v RAW | grep -v IMAGE | grep -v Sec | awk '{print $$2","$$3",red"}' | sort > red.csv - utk image.bin table | guid2english |grep File | grep -v PAD | grep -v PEIM | grep -v RAW | grep -v IMAGE | grep -v Sec | awk '{print $$2","$$3",green"}' | sort > green.csv - join -a 2 -t , -j1 red.csv green.csv | sed 's/red.*green/red/' > jj.csv - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, kernel, or image.bin - -flashpxeboot.bin: dxeremove.bin flashkernel flashinitramfs.cpio.lzma - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 flashkernel \ - save $@ - -cpu.bin: dxeremove.bin cpukernel - utk \ - -xzPath /usr/bin/xz \ - $< \ - replace_pe32 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1 cpukernel \ - save $@ - -edk2.bin: dxeremove.bin - echo Note, this inserts the edk2 bds and shell - echo Only flash this image if you have an sf100. - echo It will not be able to boot anything. - utk \ - -xzPath /usr/bin/xz \ - $< \ - insert_dxe edk2bdsdxe.ffs insert_dxe edk2shell.ffs \ - save $@ - -dxeremove.bin: image.bin Makefile - rm -f dxeremove.bin - echo tighten.bin did not go well. - echo note, we remove DXE to the point the image is not viable - echo until you put a kernel in it in place of the shell. - utk $< \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment testremove \ - comment FlashDriver_do_not_remove_efi_panics \ - comment S3Save_do_not_remove_gets_error \ - comment leavefornow \ - comment AMITSE \ - comment AMITSE.* \ - comment Bds \ - comment testremove \ - remove Ahci.* \ - remove Arp.* \ - remove Ata.* \ - remove Button.* \ - remove CryptoD.* \ - remove .*Dhcp.* \ - remove Dhcp6Dxe \ - remove Disk.* \ - remove EbcDxe \ - remove Fat.* \ - remove .*ftp.* \ - remove .*harging.* \ - remove .*Http.* \ - remove I2c.* \ - remove IntelGopV.* \ - remove IntelIsh.* \ - remove Ip4.* \ - remove Ip6Dxe \ - remove Iscsi.* \ - remove Ish.* \ - remove .*Keyboard.* \ - remove Logo.* \ - remove Maxim.* \ - remove Mmc.* \ - remove MnpDxe \ - remove Mouse.* \ - remove Mtftp4Dxe \ - remove Mtftp6Dxe \ - remove NetworkStackSetupScreen \ - remove Partition.* \ - remove .*PxeDxe.* \ - remove RandomNumberGen \ - remove ReFlash \ - remove Sata.* \ - remove Scsi.* \ - remove SnpDxe \ - remove SoftKbd \ - remove Tcp.* \ - remove TcpDxe \ - remove TimestampDxe \ - remove Udp.* \ - remove Udp4.* \ - remove Udp6Dxe \ - remove UefiPxe.* \ - remove Uhcd \ - remove Usb.* \ - remove Whea.* \ - remove Xpower.* \ - remove .*HotPl.* \ - comment try \ - remove .*Tcg.* \ - remove .*Tpm.* \ - remove Tls.* \ - comment BiosVideo.* \ - comment .*BootMan.* \ - remove .*Capsule.* \ - remove Capsule.* \ - comment Terminal.* \ - remove Dns.* \ - remove FirmwarePerformanceDxe \ - remove Hsti.* \ - comment fails \ - comment Legacy82.* \ - comment GenericMemoryTest.* \ - comment BiosG.* \ - comment end_fails \ - comment S3Save_do_not_remove_gets_error \ - comment below_still_unknown \ - comment TcgMor \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment CrbTpm20Acpi \ - comment TcgSmm \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - save $@ - -hap.bin: tighten.bin - cp $< $@ - me_cleaner.py -s $@ - chmod a-w $@ - -tighten.bin: image.bin - utk $< tighten_me save $@ - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpuflashkernel: cpu.cpio.lzma cpuflash.config - cp cpuflash.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo sudo flashrom -p dediprog -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - u-root -o $@ \ - -defaultsh="/bbin/rush" \ - github.com/u-root/u-root/cmds/boot/boot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/exp/rush \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/mount \ - github.com/u-root/u-root/cmds/core/pci \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getfiano getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.8 --single-branch https://github.com/torvalds/linux - -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english -getrom: - echo you can put a wget here - echo and unzip it - echo and cp it to image.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/opentitanpilot/dresden/flash.config b/mainboards/opentitanpilot/dresden/flash.config deleted file mode 100644 index 12fc8d83..00000000 --- a/mainboards/opentitanpilot/dresden/flash.config +++ /dev/null @@ -1,2482 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.8.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_X2APIC=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 initrdmem=0xff2a8000,0x558000" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_RCI2_TABLE is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y -CONFIG_AS_TPAUSE=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_VMD is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -# CONFIG_SCSI_SAS_ATA is not set -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -CONFIG_SCSI_ISCI=y -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -# CONFIG_ATA_ACPI is not set -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -# CONFIG_SATA_AHCI_PLATFORM is not set -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_BNX2 is not set -# CONFIG_CNIC is not set -CONFIG_TIGON3=y -# CONFIG_BNX2X is not set -# CONFIG_SYSTEMPORT is not set -# CONFIG_BNXT is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -CONFIG_NET_VENDOR_MYRI=y -# CONFIG_MYRI10GE is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_LANTIQ is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_ULPI_BUS is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_AMD_IOMMU is not set -CONFIG_DMAR_TABLE=y -# CONFIG_INTEL_IOMMU is not set -CONFIG_IRQ_REMAP=y - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -CONFIG_PHY_PXA_28NM_HSIC=y -CONFIG_PHY_PXA_28NM_USB2=y -CONFIG_PHY_INTEL_EMMC=y -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KCSAN=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From 89dcf5e79e9587b17124de45d0d869151c8cd0a5 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 113/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/pcengines/apu/Makefile | 64 - mainboards/pcengines/apu/TEST | 16 - mainboards/pcengines/apu/config-4.14.111 | 2222 ---------------------- mainboards/pcengines/apu/config-5.15.0 | 2222 ---------------------- 4 files changed, 4524 deletions(-) delete mode 100644 mainboards/pcengines/apu/Makefile delete mode 100644 mainboards/pcengines/apu/TEST delete mode 100644 mainboards/pcengines/apu/config-4.14.111 delete mode 100644 mainboards/pcengines/apu/config-5.15.0 diff --git a/mainboards/pcengines/apu/Makefile b/mainboards/pcengines/apu/Makefile deleted file mode 100644 index dbf6f1a4..00000000 --- a/mainboards/pcengines/apu/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel apu.bin - cp apu.bin image.bin - chmod +w image.bin - cbfstool image.bin print - cbfstool image.bin remove -n img/nerf - cbfstool image.bin remove -n genroms/pxe.rom - cbfstool image.bin add-payload -n img/nerf -f flashkernel - cbfstool image.bin print - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -readrom: - sudo flashrom -p internal -r apu.bin - -writerom: image.bin - sudo flashrom -p internal -w image.bin - -uroot: - go run github.com/u-root/u-root -build=bb -initcmd=/bbin/cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/dhclient \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/ps \ - github.com/u-root/u-root/cmds/core/pwd \ - github.com/u-root/u-root/cmds/core/rm \ - github.com/u-root/u-root/cmds/core/shutdown - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-5.15.0 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot getfiano getrom -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz - xzcat kernel.xz | tar x - mv linux-5.15 linux -getrom: - echo you create the kernel - echo on the APU2: flashrom -r apu.bin -p internal - echo copy that file here and for safety: - echo chmod a-w apu.bin -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... -getfiano: - go get -u github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/utk - go install github.com/linuxboot/fiano/cmds/guid2english - diff --git a/mainboards/pcengines/apu/TEST b/mainboards/pcengines/apu/TEST deleted file mode 100644 index b510ec42..00000000 --- a/mainboards/pcengines/apu/TEST +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -set -e -sudo \ - /usr/bin/qemu-system-x86_64 -kernel kernel \ - -cpu max \ - -s \ - -m 1024m \ - -machine q35 \ - -object rng-random,filename=/dev/urandom,id=rng0 \ - -device virtio-rng-pci,rng=rng0 \ - -device e1000,netdev=n1 \ - -netdev user,id=n1,hostfwd=tcp:127.0.0.1:23-:2222,net=192.168.1.0/24,host=192.168.1.1 \ - -serial stdio \ - -append 'earlyprintk=ttyS0,115200 console=ttyS0' \ - -monitor /dev/null - diff --git a/mainboards/pcengines/apu/config-4.14.111 b/mainboards/pcengines/apu/config-4.14.111 deleted file mode 100644 index 01b22f02..00000000 --- a/mainboards/pcengines/apu/config-4.14.111 +++ /dev/null @@ -1,2222 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -# CONFIG_CPU_SUP_INTEL is not set -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -# CONFIG_SERIO_LIBPS2 is not set -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/pcengines/apu/config-5.15.0 b/mainboards/pcengines/apu/config-5.15.0 deleted file mode 100644 index 01b22f02..00000000 --- a/mainboards/pcengines/apu/config-5.15.0 +++ /dev/null @@ -1,2222 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_FHANDLE is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -# CONFIG_PCSPKR_PLATFORM is not set -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -# CONFIG_OPROFILE is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -# CONFIG_CPU_SUP_INTEL is not set -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# CONFIG_SCSI_DMA is not set -# CONFIG_SCSI_NETLINK is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -# CONFIG_SERIO_PCIPS2 is not set -# CONFIG_SERIO_LIBPS2 is not set -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_INTEL is not set -CONFIG_HW_RANDOM_AMD=y -# CONFIG_HW_RANDOM_VIA is not set -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -# CONFIG_ACPI_I2C_OPREGION is not set -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set - -# -# Virtio drivers -# -# CONFIG_VIRTIO_PCI is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -# CONFIG_DMIID is not set -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_MANAGER2 is not set -# CONFIG_CRYPTO_USER is not set -# CONFIG_CRYPTO_GF128MUL is not set -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -# CONFIG_CRYPTO_SHA256 is not set -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -# CONFIG_CRYPTO_HW is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -# CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -# CONFIG_SG_SPLIT is not set -# CONFIG_SG_POOL is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set From c127d3c19f814b312b8b243f35e754d4c8f05ef1 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 114/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/pcengines/apu2/Makefile | 156 -- mainboards/pcengines/apu2/class_key | 27 - mainboards/pcengines/apu2/class_key.pub | 1 - mainboards/pcengines/apu2/classhostkey | 27 - mainboards/pcengines/apu2/classhostkey.pub | 1 - mainboards/pcengines/apu2/cpu.config | 2843 -------------------- mainboards/pcengines/apu2/flash.config | 2080 -------------- mainboards/pcengines/apu2/sshd.config | 2842 ------------------- 8 files changed, 7977 deletions(-) delete mode 100644 mainboards/pcengines/apu2/Makefile delete mode 100644 mainboards/pcengines/apu2/class_key delete mode 100644 mainboards/pcengines/apu2/class_key.pub delete mode 100644 mainboards/pcengines/apu2/classhostkey delete mode 100644 mainboards/pcengines/apu2/classhostkey.pub delete mode 100644 mainboards/pcengines/apu2/cpu.config delete mode 100644 mainboards/pcengines/apu2/flash.config delete mode 100644 mainboards/pcengines/apu2/sshd.config diff --git a/mainboards/pcengines/apu2/Makefile b/mainboards/pcengines/apu2/Makefile deleted file mode 100644 index 7f1f33b1..00000000 --- a/mainboards/pcengines/apu2/Makefile +++ /dev/null @@ -1,156 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: sshdkernel flashkernel cpukernel - echo you can add any of these targets to the apu2 image. - echo as img/nerf. You can also set priority. - -flashtest: testflashkernel - -usefultargets: - echo fetch, sshdkernel, flashkernel, cpukernel, etc. - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -cpukernel: cpu.cpio.lzma cpu.config - cp cpu.config linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo and maybe a cbfstool - echo cbfstool apu2.rom remove -n img/nerf - echo cbfstool apu2.rom add-payload -n img/nerf -f cpukernel - echo sudo flashrom -p internal -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - GO111MODULE=off u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio: Makefile - CGO_ENABLED=0 GO111MODULE=off u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - minimal \ - github.com/u-root/cpu/cmds/cpud - -cpu.cpio.lzma: cpu.cpio - lzma -f -k cpu.cpio - -cpu.cpio.xz: cpu.cpio - xz -9 -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - CGO_ENABLED=0 GO111MODULE=off u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && make oldconfig && make -j32) - cp linux/arch/x86/boot/bzImage $@ - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getrom - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.7 --single-branch https://github.com/torvalds/linux - -getrom: - echo you can use flashrom to read the apu2 image. - -geturoot: - go get -u github.com/u-root/u-root - CGO_ENABLED=0 GO111MODULE=off go install github.com/u-root/u-root - CGO_ENABLED=0 GO111MODULE=off go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/pcengines/apu2/class_key b/mainboards/pcengines/apu2/class_key deleted file mode 100644 index e21ff15c..00000000 --- a/mainboards/pcengines/apu2/class_key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA4zGICkjqlAPbYH0MZGN79zDJi88uC1pbc7cUcHQPp8R9iet0 -2Q594DiOsJhAc9ALDkVopAmDMew1OO9vwZXAkv00hPhnEHFSXJP31zaoWvQkbS/Z -/Ghl8gTTrPpJo+gJ3kCINwM1Z+IEQbjlE1EsvgKQEWQMCN32cD52F1L0UpkRaRzP -FKKxfMOKYCIIbFDbC1iAAsjuIOunlATy4OT1IbNBhkdX2Mx2kTchaJxry4LL+NDs -sIvfrtMJ/5gmIWKYnc4mXr2ozD4ZvCm7ooEnQshSgXXTpjl1AuEJvnaczr+ij66w -KUQhzK3Ukjo99b8xhih4pVlU661KAbezziyuFwIDAQABAoIBAFbib1s3jXYzj2b0 -C5Qss5DR+JHeFobC9GxpXIiw6ffH3harlBEaSKtCFdeVMjjYHBJGGwF4ndKuuZ/f -eYa35WCRMs+TS57vJ4c+Ey8buQCnk3KqNRwhNLN8gxMI2La1G2kCltUrBfaHagdU -VU6w4YJ86mmsMCoH8KH2USUUVVlsdbEgi6oQzPusw4le8a4shTX40YaBi90hv7XX -MshqZDscjM/mqXJVMq8fLJ6IDYeNVLNw3GhlHrlitO2Kheil7ptgrftYdTVqvScR -VNL4lFP6rq3N1BN0eisAwyB2A0mf/sCVc0fKA0qsNsODoVw9g7HBTjx6IFpbQ0Kh -derDBgkCgYEA+tAZftg8z2A+YFdA/fTGxLS82BCsIKJ1kaizDWcshcdZ6AQ2vNwT -JwxzOwiS/Tu1hqNHaE0tYV9cW8hKZC2CdsIquPEEewPNqnwzh6bhUiPmjlPF3Dea -pX2LHklCAOXLtnJqf1ZmbhhWbj/2TIITr/Iq5ae5rk32QAwsyvphswMCgYEA5+Rh -rMVYlXLSss/9rl+89ecrj0ZmXK5HNsheHdI+444wSgIoNP90Z7FHygDAWSV+RWsN -ibpEQxACGhtSgK6IU+9w35fXrEcTfTwyrC5lMxipS5BCkBTSNm9QfASaIZE4Oz+d -Z0ifjCCeG8ppZm/kVscP08BYNsuu3xSttDDi4l0CgYEAizhcDpbFGm9X8G4+ezkV -5DZW5LBMe0jybcnwqa3tfsyrUSiVobufPfuhMtGNlddA6d1UU8cTO4uNXr0M3hKM -6pLY2BOg4w+3Z7zNdaziQY//+Fzz5UtQIjBPup37bzgfHcTg7JHvBYmo4EXM16cU -eoO34AZ8AQ7xc5fOfVUCSjUCgYEA5Pn9fMVtYDz+UnTQkQOWKdZ3i8U/RFsOlMir -LpUxZi87/Yg9vX9VqSJDufKd/Cjqk49O0eWsi+/ds3uxLsGoegEgGpjr7QBN/UaY -3q39XcQHP0cWgwEcRYYLGjrNG0IzHUYGnjr22D5JATYQd4cbGJj9RuFR+eGMLllT -4G65Sj0CgYEAptcid0C4Dodg2LeA+E0dduec9uK4Qj4NkeoEcTw6fBInuP9vkIU7 -LyHDfXKVbCTHC79oc8oQ8OpeVvH999PU15g7MFAUdjrd2MCIEWcQ9WjJr0V3sVn4 -Nze3kVUWRsXhIoG0yWh6SHbc/HKFhKymtxvdPnbP4qajfcCGIKuIA2c= ------END RSA PRIVATE KEY----- diff --git a/mainboards/pcengines/apu2/class_key.pub b/mainboards/pcengines/apu2/class_key.pub deleted file mode 100644 index 5db12a16..00000000 --- a/mainboards/pcengines/apu2/class_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDjMYgKSOqUA9tgfQxkY3v3MMmLzy4LWltztxRwdA+nxH2J63TZDn3gOI6wmEBz0AsORWikCYMx7DU472/BlcCS/TSE+GcQcVJck/fXNqha9CRtL9n8aGXyBNOs+kmj6AneQIg3AzVn4gRBuOUTUSy+ApARZAwI3fZwPnYXUvRSmRFpHM8UorF8w4pgIghsUNsLWIACyO4g66eUBPLg5PUhs0GGR1fYzHaRNyFonGvLgsv40Oywi9+u0wn/mCYhYpidziZevajMPhm8KbuigSdCyFKBddOmOXUC4Qm+dpzOv6KPrrApRCHMrdSSOj31vzGGKHilWVTrrUoBt7POLK4X rminnich@xcpu diff --git a/mainboards/pcengines/apu2/classhostkey b/mainboards/pcengines/apu2/classhostkey deleted file mode 100644 index 9b696249..00000000 --- a/mainboards/pcengines/apu2/classhostkey +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA20e7SsGzrPyXMosKhgXMbvIPSe27ilhgcWw4I1NWsPMWhYEU -DnM66JiqImyN3tTiimwH7WewKxy4opGLbk2ohYvNQBALNXNr1cV7usAQREAIbafp -zZ6mO0gcWjrdsN31aTzMmEXO3dkS+wtEQzKBe/eFjlJbutHvEQkvYWtPeHTtBlVy -wcJEc59orcE+HNXrXLcPuJZF37Z5HkEMNGDWvAutHmnXc3C0cKd+bOdhpTx7DAaW -Fmj1GdL7WMPBQk1qKo4uE8lqOjTB5qwCGhWPtZFgD6QwYIKtZ/VFWMzUytc6ciRw -b5ob6+0+mbL3IFb1XZDbOC3gSbGPV4V0xZrVtwIDAQABAoIBABlIF+vykUishrIp -Hbl+Cafw+JpJconszpHFLGPGRAR6wmn6C9nupygSEeuOIH1Ehin3cqKIheMymIcF -yNGa2ocrKyrrrp8nA5POBQnvAvEbgN1Dss0mMXw8QCiXCOBPdu//NoeH5OXnFS0k -i2ZD+HHWg+t4y2Kqual5KaFNwgfdHJw9vmL/JFzzx2ZuVmIiAl7Pn9dNAu3JgaT2 -cHNEPxw04Pc0rsNd9NiMEuaijRPJhn2ZeDAdyo+RvrK6wI0ZiopG+3ZztKhJ65zT -7si2DjLpr8PMMgYPgMFy1YyoPKokYqnoSrLXMh2Lquy75145aysWNxVa640MNfp6 -vrFSCqECgYEA9T5GkrZ+7DCJfaPST7lqDBB7uON0DAYaSwUSxNVsu+UMAxSlXB25 -fYq3TzJzM+rJcDf5JPQLP2gD2BMYQIQZeHsgoV1UKVxZfJi3YpPCg3uNWxLTzut7 -TGawJBFULNoIrsxh0gLSsFP4RcDTWNUe31+3sD8SirrEz+GWjF9Nc0UCgYEA5OXt -uApDOx8q6XkjNwMNZZJdQ+VeDQh8Wg8mPDNKwg7VejI7idV87tn7LjAa4TcKemRi -WnLMeb98h0VZiWve2UwstiI5yiZon3f7jEJDop9jvg8/Cj2MgEc2hxKxZQxIN2k3 -sFfYMUtTr4Q2WT3Gm3aNERpgjhJjf2dFvMJulssCgYBHSUTmXJnkOe+dT8NQXUsQ -GrJ7+dG/tP5rlBvyjz8+FsQ5GQVAE3vZnDrQkI+gJb1MG1kWfsHOOoPziQlhp4Rn -2xKPFTvjke6JIzMbOmwuH/nk4UIkQZrjiG3m7gqTxwUDGnHMw/lOO/pM/FHy3nBM -6dvRJWRUYxnWe3JxdzpiKQKBgEzBLS2Bg3nXwbP4gu53f46Hve5+g0MrjUdFvTSC -npbkEoGfRoe5puMRBUE/sEPFCSZxcumRhS9uHnvdrWB/Y4LKIFQStf4rUvnmadtm -fPeTKwcYZbMxYGPDfW1dv057B9xM0/e1/TDKaY15cCAMrwSChFsv1SDO2b5nCuN4 -70xxAoGAbRDd2cxSICb+msM17yF1rGEzvcJRI1rjiTK71Gkt2VqfBPk1belz1vY8 -E/KkPMHwhWEMSuCrXnaxYrLZg4cvtbYy7tC+wgn1nXwfON8Cpmm74s0O6ufeE7dh -S4Bsitze0ougzTMGLQO/9M7He/fPqjM4DIi+PvfpAl/ZUXdD/48= ------END RSA PRIVATE KEY----- diff --git a/mainboards/pcengines/apu2/classhostkey.pub b/mainboards/pcengines/apu2/classhostkey.pub deleted file mode 100644 index 5c61a524..00000000 --- a/mainboards/pcengines/apu2/classhostkey.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDbR7tKwbOs/JcyiwqGBcxu8g9J7buKWGBxbDgjU1aw8xaFgRQOczromKoibI3e1OKKbAftZ7ArHLiikYtuTaiFi81AEAs1c2vVxXu6wBBEQAhtp+nNnqY7SBxaOt2w3fVpPMyYRc7d2RL7C0RDMoF794WOUlu60e8RCS9ha094dO0GVXLBwkRzn2itwT4c1etctw+4lkXftnkeQQw0YNa8C60eaddzcLRwp35s52GlPHsMBpYWaPUZ0vtYw8FCTWoqji4TyWo6NMHmrAIaFY+1kWAPpDBggq1n9UVYzNTK1zpyJHBvmhvr7T6ZsvcgVvVdkNs4LeBJsY9XhXTFmtW3 rminnich@xcpu diff --git a/mainboards/pcengines/apu2/cpu.config b/mainboards/pcengines/apu2/cpu.config deleted file mode 100644 index a3cbc98d..00000000 --- a/mainboards/pcengines/apu2/cpu.config +++ /dev/null @@ -1,2843 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_PATA_TIMINGS=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_DEVPORT is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/pcengines/apu2/flash.config b/mainboards/pcengines/apu2/flash.config deleted file mode 100644 index a0e1476a..00000000 --- a/mainboards/pcengines/apu2/flash.config +++ /dev/null @@ -1,2080 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_ISA_DMA=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -# CONFIG_SMP is not set -CONFIG_X86_FEATURE_NAMES=y -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -CONFIG_NR_CPUS_RANGE_BEGIN=1 -CONFIG_NR_CPUS_RANGE_END=1 -CONFIG_NR_CPUS_DEFAULT=1 -CONFIG_NR_CPUS=1 -CONFIG_UP_LATE_INIT=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_X86_IOPL_IOPERM is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_AMD_MEM_ENCRYPT is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_X86_NEED_RELOCS=y -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_RANDOMIZE_MEMORY is not set -# CONFIG_LEGACY_VSYSCALL_EMULATE is not set -CONFIG_LEGACY_VSYSCALL_XONLY=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -CONFIG_CMDLINE_OVERRIDE=y -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_DEBUG=y -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -# CONFIG_NET_9P is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -# CONFIG_DEVTMPFS is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -CONFIG_DEVPORT=y -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -# CONFIG_PROC_SYSCTL is not set -# CONFIG_PROC_PAGE_MONITOR is not set -# CONFIG_PROC_CHILDREN is not set -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_PAGE_TABLE_ISOLATION=y -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -# CONFIG_CRYPTO_CRC32C is not set -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -CONFIG_CRYPTO_SHA256_SSSE3=y -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -# CONFIG_UNWINDER_FRAME_POINTER is not set -CONFIG_UNWINDER_GUESS=y -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/pcengines/apu2/sshd.config b/mainboards/pcengines/apu2/sshd.config deleted file mode 100644 index af0b5d9d..00000000 --- a/mainboards/pcengines/apu2/sshd.config +++ /dev/null @@ -1,2842 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 5.7.0 Kernel Configuration -# - -# -# Compiler: gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=70500 -CONFIG_LD_VERSION=230000000 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-upboard" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y -CONFIG_GENERIC_IRQ_RESERVATION_MODE=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -# CONFIG_TICK_CPU_ACCOUNTING is not set -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_SCHED_THERMAL_PRESSURE is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_BUILD_BIN2C=y -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../sshd.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_SHMEM is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_HAS_FILTER_PGPROT=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_CC_HAS_SANE_STACKPROTECTOR=y - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -CONFIG_RETPOLINE=y -# CONFIG_X86_CPU_RESCTRL is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -CONFIG_IOSF_MBI=y -# CONFIG_IOSF_MBI_DEBUG is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -# CONFIG_HYPERVISOR_GUEST is not set -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_IA32_FEAT_CTL=y -CONFIG_X86_VMX_FEATURE_NAMES=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -CONFIG_CPU_SUP_HYGON=y -CONFIG_CPU_SUP_CENTAUR=y -CONFIG_CPU_SUP_ZHAOXIN=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS_RANGE_BEGIN=2 -CONFIG_NR_CPUS_RANGE_END=512 -CONFIG_NR_CPUS_DEFAULT=64 -CONFIG_NR_CPUS=64 -CONFIG_SCHED_SMT=y -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set -# CONFIG_PERF_EVENTS_INTEL_RAPL is not set -# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# end of Performance monitoring - -# CONFIG_X86_VSYSCALL_EMULATION is not set -CONFIG_X86_IOPL_IOPERM=y -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -CONFIG_X86_MSR=y -CONFIG_X86_CPUID=y -# CONFIG_X86_5LEVEL is not set -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_X86_CPA_STATISTICS is not set -# CONFIG_AMD_MEM_ENCRYPT is not set -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_UMIP is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_X86_INTEL_TSX_MODE_OFF=y -# CONFIG_X86_INTEL_TSX_MODE_ON is not set -# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set -# CONFIG_EFI is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -CONFIG_ARCH_HAS_KEXEC_PURGATORY=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_XONLY is not set -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="noefi ip=dhcp earlyprintk=ttyS0,115200,keep console=ttyS0,115200 netconsole=6666@192.168.0.2/,6666@192.168.0.1/" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -# end of Processor type and features - -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_HIBERNATION is not set -# CONFIG_PM is not set -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_SPCR_TABLE is not set -CONFIG_ACPI_LPIT=y -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_TINY_POWER_BUTTON is not set -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# end of CPU Frequency scaling - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_CPU_IDLE_GOV_TEO is not set -# end of CPU Idle - -# CONFIG_INTEL_IDLE is not set -# end of Power management and ACPI options - -# -# Bus options (PCI etc.) -# -CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y -CONFIG_MMCONF_FAM10H=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_X86_SYSFB is not set -# end of Bus options (PCI etc.) - -# -# Binary Emulations -# -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -# end of Binary Emulations - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_ISCSI_IBFT is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -CONFIG_AS_AVX512=y -CONFIG_AS_SHA1_NI=y -CONFIG_AS_SHA256_NI=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_MEM_ENCRYPT=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_UNUSED_SYMBOLS=y -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_FAST_GUP=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -# CONFIG_COMPACTION is not set -# CONFIG_PAGE_REPORTING is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_EISA=y -# CONFIG_EISA is not set -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -# CONFIG_PCIEPORTBUS is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCI_MSI is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# DesignWare PCI Core Support -# -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -# CONFIG_PNP_DEBUG_MESSAGES is not set - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_LOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -CONFIG_TIFM_CORE=y -CONFIG_TIFM_7XX1=y -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -CONFIG_CB710_CORE=y -# CONFIG_CB710_DEBUG is not set -CONFIG_CB710_DEBUG_ASSUMPTIONS=y - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC & related support -# -# CONFIG_INTEL_MIC_BUS is not set -# CONFIG_SCIF_BUS is not set -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -CONFIG_SCSI_LOWLEVEL=y -# CONFIG_ISCSI_TCP is not set -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_SMARTPQI is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_SCSI_MYRB is not set -# CONFIG_SCSI_MYRS is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FDOMAIN_PCI is not set -# CONFIG_SCSI_GDTH is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_IPR is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_ATA=y -CONFIG_SATA_HOST=y -CONFIG_PATA_TIMINGS=y -CONFIG_ATA_VERBOSE_ERROR=y -# CONFIG_ATA_FORCE is not set -CONFIG_ATA_ACPI=y -CONFIG_SATA_PMP=y - -# -# Controllers with non-SFF native interface -# -CONFIG_SATA_AHCI=y -CONFIG_SATA_MOBILE_LPM_POLICY=0 -CONFIG_SATA_AHCI_PLATFORM=y -# CONFIG_SATA_INIC162X is not set -# CONFIG_SATA_ACARD_AHCI is not set -# CONFIG_SATA_SIL24 is not set -# CONFIG_ATA_SFF is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -# CONFIG_NETCONSOLE_DYNAMIC is not set -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -# CONFIG_E1000E is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_I40E is not set -# CONFIG_IGC is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_THUNDER is not set -# CONFIG_MDIO_XPCS is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_PNP is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_LPSS is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set -# CONFIG_NVRAM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_DEVPORT is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -CONFIG_RANDOM_TRUST_CPU=y -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# end of I2C Hardware Bus support - -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_EMULATION is not set - -# -# Intel thermal drivers -# -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# end of ACPI INT340X thermal drivers - -# CONFIG_INTEL_PCH_THERMAL is not set -# end of Intel thermal drivers - -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -CONFIG_FIRMWARE_EDID=y -CONFIG_FB_BOOT_VESA_SUPPORT=y -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_CIRRUS is not set -# CONFIG_FB_PM2 is not set -# CONFIG_FB_CYBER2000 is not set -# CONFIG_FB_ARC is not set -# CONFIG_FB_ASILIANT is not set -# CONFIG_FB_IMSTT is not set -# CONFIG_FB_VGA16 is not set -CONFIG_FB_VESA=y -# CONFIG_FB_N411 is not set -# CONFIG_FB_HGA is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -# CONFIG_FB_NVIDIA is not set -# CONFIG_FB_RIVA is not set -# CONFIG_FB_I740 is not set -# CONFIG_FB_LE80578 is not set -# CONFIG_FB_MATROX is not set -# CONFIG_FB_RADEON is not set -# CONFIG_FB_ATY128 is not set -# CONFIG_FB_ATY is not set -# CONFIG_FB_S3 is not set -# CONFIG_FB_SAVAGE is not set -# CONFIG_FB_SIS is not set -# CONFIG_FB_NEOMAGIC is not set -# CONFIG_FB_KYRO is not set -# CONFIG_FB_3DFX is not set -# CONFIG_FB_VOODOO1 is not set -# CONFIG_FB_VT8623 is not set -# CONFIG_FB_TRIDENT is not set -# CONFIG_FB_ARK is not set -# CONFIG_FB_PM3 is not set -# CONFIG_FB_CARMINE is not set -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_MB862XX is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SM712 is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set -# end of I2C HID support - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -# end of Intel ISH HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -CONFIG_USB_UHCI_HCD=y -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -# CONFIG_USB_CDNS3 is not set -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_CHIPIDEA is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -CONFIG_MMC_SDHCI_PCI=y -CONFIG_MMC_RICOH_MMC=y -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -# CONFIG_MMC_SDHCI_F_SDH30 is not set -CONFIG_MMC_TIFM_SD=y -CONFIG_MMC_CB710=y -CONFIG_MMC_VIA_SDMMC=y -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -CONFIG_MMC_USDHI6ROL0=y -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -CONFIG_MMC_TOSHIBA_PCI=y -CONFIG_MMC_MTK=y -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -CONFIG_VHOST_DPN=y -CONFIG_VHOST_MENU=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_QCOM_USB_HS is not set -# CONFIG_PHY_QCOM_USB_HSIC is not set -# CONFIG_PHY_TUSB1210 is not set -# CONFIG_PHY_INTEL_EMMC is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_TEE is not set -# CONFIG_UNISYS_VISORBUS is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -CONFIG_EXT2_FS=y -# CONFIG_EXT2_FS_XATTR is not set -CONFIG_EXT3_FS=y -# CONFIG_EXT3_FS_POSIX_ACL is not set -# CONFIG_EXT3_FS_SECURITY is not set -CONFIG_EXT4_FS=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -CONFIG_FSCACHE=y -# CONFIG_FSCACHE_STATS is not set -# CONFIG_FSCACHE_HISTOGRAM is not set -# CONFIG_FSCACHE_DEBUG is not set -# CONFIG_FSCACHE_OBJECT_LIST is not set -# CONFIG_CACHEFILES is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_PROC_PID_ARCH_STATUS=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FSCACHE=y -CONFIG_9P_FS_POSIX_ACL=y -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -# CONFIG_CRYPTO_MANAGER is not set -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_NULL is not set -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_CURVE25519 is not set -# CONFIG_CRYPTO_CURVE25519_X86 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set -# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_BLAKE2S_X86 is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set - -# -# Crypto library routines -# -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=0 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_TEST_LOCKUP is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set - -# -# x86 Debugging -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -# CONFIG_X86_DECODER_SELFTEST is not set -# CONFIG_IO_DELAY_0X80 is not set -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -CONFIG_IO_DELAY_NONE=y -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set -# end of x86 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From b215d5ce1d821033094a71227b3e7846036b8425 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 115/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/qemu/arm64/Makefile | 44 ---------------- mainboards/qemu/arm64/flash.config | 84 ------------------------------ 2 files changed, 128 deletions(-) delete mode 100644 mainboards/qemu/arm64/Makefile delete mode 100644 mainboards/qemu/arm64/flash.config diff --git a/mainboards/qemu/arm64/Makefile b/mainboards/qemu/arm64/Makefile deleted file mode 100644 index b3fba408..00000000 --- a/mainboards/qemu/arm64/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -flashinitramfs.cpio: flashkernel core.cpio - GO111MODULE=off GOARCH=arm64 u-root -o $@ \ - -files flashkernel \ - -files core.cpio \ - -files /usr/bin/gzip \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget - -core.cpio: flash.config Makefile - GO111MODULE=off GOARCH=arm64 u-root -o $@ - -flashkernel: flash.config core.cpio - cp $< linux/.config - echo CONFIG_CMDLINE_BOOL=y >> linux/.config - echo CONFIG_CMDLINE_OVERRIDE=y >> linux/.config - (cd linux && make ARCH=arm64 olddefconfig && make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j32) - cp linux/arch/arm64/boot/Image $@ - -testflashkernel: flashkernel flashinitramfs.cpio - qemu-system-aarch64 -device VGA,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd \ - -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 \ - -nographic -machine virt -cpu cortex-a57 -m 512 -serial mon:stdio -serial null \ - -initrd flashinitramfs.cpio \ - -kernel flashkernel \ - -append console=ttyAMA0,115200 - -fetch: getkernel geturoot - -installdep: - sudo apt install gcc-aarch64-linux-gnu - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.11 https://github.com/torvalds/linux - -geturoot: - GO111MODULE=off go get -u github.com/u-root/u-root diff --git a/mainboards/qemu/arm64/flash.config b/mainboards/qemu/arm64/flash.config deleted file mode 100644 index 9a203e5c..00000000 --- a/mainboards/qemu/arm64/flash.config +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 2022 the u-root Authors. All rights reserved -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. -# -# If you copy this to your Linux directory, run -# make olddefconfig -# to fill in the blanks. -# -# This is not intended to be a minimal Linux configuration, but perhaps it comes -# close to listing requirements for certain things. -# -# EFI -CONFIG_EFI_STUB=y -CONFIG_EFI=y -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_ARMSTUB=y -CONFIG_EFI_ARMSTUB_DTB_LOADER=y -CONFIG_EFI_EARLYCON=y -# Config settings specific to ARM hardware: -CONFIG_MMU=y -CONFIG_ARCH_MULTIPLATFORM=y -CONFIG_ARCH_MULTI_V7=y -CONFIG_ARCH_VIRT=y -CONFIG_ARM_AMBA=y -CONFIG_ARM64_VA_BITS_48=y -# Minimal kernel config needed for Go and serial port: -CONFIG_SERIAL_AMBA_PL011=y -CONFIG_SERIAL_AMBA_PL011_CONSOLE=y -CONFIG_CMDLINE="console=ttyAMA0,115200" -# vfat filesystem: -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -CONFIG_NLS=y -CONFIG_MSDOS_FS=y -# Loop device for tcz: -CONFIG_BLK_DEV_LOOP=y -CONFIG_MISC_FILESYSTEMS=y -CONFIG_SQUASHFS=y -# GPIO test - mock GPIO libraries -CONFIG_GPIOLIB=y -CONFIG_GPIO_MOCKUP=y -CONFIG_GPIO_SYSFS=y -# For the kernel being kexec'ed -CONFIG_RELOCATABLE=y -# For the kernel doing the kexec'ing -# CONFIG_KEXEC needs more stuff on ARM -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -CONFIG_SUSPEND=y -CONFIG_HOTPLUG_CPU=y -# BMC IPMI Support -CONFIG_IPMI_HANDLER=y -CONFIG_IPMI_DEVICE_INTERFACE=y -CONFIG_IPMI_SI=y -CONFIG_IPMI_SSIF=y -CONFIG_IPMI_DMI_DECODE=y -CONFIG_IPMI_PLAT_DATA=y -# Enable SMMUv3 -CONFIG_IOMMU_IOVA=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y -CONFIG_IOMMU_DMA=y -CONFIG_OF_IOMMU=y -CONFIG_IOMMU_IO_PGTABLE=y -CONFIG_IOMMU_IO_PGTABLE_LPAE=y -CONFIG_ARM_SMMU_V3=y -# Enable EFI RTC -CONFIG_RTC_CLASS=y -CONFIG_RTC_DRV_EFI=y -# Hotremove needed for ProdID -CONFIG_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_MIGRATION=y -CONFIG_MEMORY_HOTREMOVE=y - -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_COMPRESSION=".xz" -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# seem required, other make will do prompt and ask again. -ARM64_PTR_AUTH=n -ARM64_TLB_RANGE=y -ARM64_MTE=y From d4b9d4dcbb61c656009646d1097d85ab335f1976 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 116/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/seeed/beaglev/BOOTCMDS | 7 - mainboards/seeed/beaglev/Makefile | 208 -- mainboards/seeed/beaglev/cpu.config | 3251 ----------------- .../seeed/beaglev/flash-5.14.esmil.config | 1754 --------- mainboards/seeed/beaglev/flash.config | 3237 ---------------- 5 files changed, 8457 deletions(-) delete mode 100644 mainboards/seeed/beaglev/BOOTCMDS delete mode 100644 mainboards/seeed/beaglev/Makefile delete mode 100644 mainboards/seeed/beaglev/cpu.config delete mode 100644 mainboards/seeed/beaglev/flash-5.14.esmil.config delete mode 100644 mainboards/seeed/beaglev/flash.config diff --git a/mainboards/seeed/beaglev/BOOTCMDS b/mainboards/seeed/beaglev/BOOTCMDS deleted file mode 100644 index 2213ab53..00000000 --- a/mainboards/seeed/beaglev/BOOTCMDS +++ /dev/null @@ -1,7 +0,0 @@ -fatls mmc 0:1 -fatload mmc 0:1 ${kernel_addr_r} Image.gz -fatload mmc 0:1 ${kernel_addr_r} Image -fatload mmc 0:1 ${fdt_addr_r} u-boot.dtb -fatload mmc 0:1 ${ramdisk_addr_r} cpu.cpio.gz -booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r} - diff --git a/mainboards/seeed/beaglev/Makefile b/mainboards/seeed/beaglev/Makefile deleted file mode 100644 index 3bdce4e1..00000000 --- a/mainboards/seeed/beaglev/Makefile +++ /dev/null @@ -1,208 +0,0 @@ -# This is the makefile for a kernel, uboot image, and initramfs from u-root -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd. -# ssh -i class_key -p 2022 board date -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands. -# to flash the flash image. -# e.g. -# cpu board date -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -MAJOR ?= 5 -STABLE = $(MAJOR).14 -CONFIG ?= $(MAJOR).14.esmil -LINUX=linux-$(CONFIG) -KERNCONFIG=$(CONFIG).config - -default: flash - echo you can add any of these targets to the beaglev image. - echo as img/nerf. You can also set priority. - -flash: flashkernel - -flashtest: testflashkernel - -usefultargets: - echo fetch, sshdkernel, flashkernel, cpukernel, etc. - -sshdkernel: sshd.cpio.lzma sshd.config - cp sshd.config $(LINUX)/.config - (cd $(LINUX) && make oldconfig && make -j32) - cp $(LINUX)/arch/x86/boot/bzImage $@ - -cp: cpukernel cpu.cpio.gz - sudo mount /dev/sdb1 /mnt - sudo cp u-boot.* Image.gz cpu.cpio.gz BOOTCMDS /mnt - sudo umount /mnt - -cpu: cpukernel u-boot.bin u-boot.dtb cpu.cpio.gz - echo Now copy these things to the stick. - echo e.g. assuming it is mounted at /mnt - echo sudo cp u-boot.* Image.gz cpu.cpio.gz BOOTCMDS /mnt - -cpukernel: cpu.config cpu.cpio Makefile - cp cpu.config $(LINUX)/.config - (cd $(LINUX) && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 oldconfig && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 && mkdir -p boot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv INSTALL_PATH=/tmp zinstall) - cp $(LINUX)/arch/riscv/boot/Image.gz cpuImage.gz - cp $(LINUX)/arch/riscv/boot/Image cpuImage - -readrom: - echo You need to get a ROM image from *somewhere* - echo Once you do, put it in ROM.bin - -u-boot.bin: ubootconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv u-boot.bin) - cp uboot/u-boot.bin $@ - -u-boot.dtb: ubootconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv u-boot.dtb) - cp uboot/u-boot.dtb $@ - -ubootconfig: Makefile - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_beagle_v_smode_defconfig) - -OLDubootconfig: Makefile - echo This is idempotent - sed -i 's/CONFIG_SYS_TEXT_BASE=.*/CONFIG_SYS_TEXT_BASE=0x80020000/p' uboot/configs/starfive_vic7100_beagle_v_smode_defconfig - (cd uboot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_beagle_v_smode_defconfig) - -writerom: image.bin - echo Here is where you would do the flashrom, e.g. - echo and maybe a cbfstool - echo cbfstool beaglev.rom remove -n img/nerf - echo cbfstool beaglev.rom add-payload -n img/nerf -f cpukernel - echo sudo flashrom -p internal -w image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - echo NO GO111MODULE=off GOARCH=riscv64 u-root -o $@ -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - -uinitcmd /bbin/cpud \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/cpu/cmds/cpud - GO111MODULE=off GOARCH=riscv64 u-root -o $@ -files ~/.ssh/cpu_rsa.pub:key.pub \ - -uinitcmd /bbin/cpud \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/cpu/cmds/cpud - -# This target builds a full-featured initramfs INCLUDING cpud. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.gz: cpu.cpio Makefile - gzip -f -k cpu.cpio - -cpu.cpio: - GO111MODULE=off GOARCH=riscv64 u-root -o cpu.cpio -files ~/.ssh/cpu_rsa.pub:key.pub \ - all \ - github.com/u-root/cpu/cmds/cpud - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp flash-$(KERNCONFIG) $(LINUX)/.config - (cd $(LINUX) && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 oldconfig && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv -j4 && mkdir -p boot && make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv INSTALL_PATH=/tmp zinstall) - cp $(LINUX)/arch/riscv/boot/Image.gz flashImage.gz - cp $(LINUX)/arch/riscv/boot/Image flashImage - ls -l flashImage* - -testflashkernel: flashkernel - qemu-system-x86_64 -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -testcpukernel: cpukernel - qemu-system-x86_64 -kernel cpukernel -nographic -serial /dev/tty - -# These stanzas fetch code. -fetch: getkernel geturoot getrom getuboot - -getkernel: - rm -rf $(LINUX) - git clone https://github.com/starfive-tech/beagle_kernel_5.10 $(LINUX) - #(cd $(LINUX) && git checkout -b starfive origin/beaglev) # FIXME: branch is gone :( -# fyi: make CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv starfive_vic7100_evb_sd_net_fedora_defconfig -# Change to taste - -getrom: - echo you can use flashrom to read the beaglev image. - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -getuboot: - git clone https://github.com/starfive-tech/beagle_uboot-opensbi uboot - -packages: - echo this sucks. - sudo apt-get \ - install \ - autoconf \ - automake \ - autotools-dev \ - bc \ - bison \ - build-essential \ - curl \ - flex \ - gawk \ - gdisk \ - git \ - gperf \ - libgmp-dev \ - libmpc-dev \ - libmpfr-dev \ - libncurses-dev \ - libssl-dev \ - libtool \ - patchutils \ - python \ - screen \ - texinfo \ - unzip \ - zlib1g-dev \ - device-tree-compiler - sudo apt install gcc-riscv64-linux-gnu u-boot-tools - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/seeed/beaglev/cpu.config b/mainboards/seeed/beaglev/cpu.config deleted file mode 100644 index 73032faa..00000000 --- a/mainboards/seeed/beaglev/cpu.config +++ /dev/null @@ -1,3251 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.13.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23601 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23601 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-starlight" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_WATCH_QUEUE=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y - -# -# BPF subsystem -# -CONFIG_BPF_SYSCALL=y -CONFIG_BPF_UNPRIV_DEFAULT_OFF=y -# CONFIG_BPF_PRELOAD is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -CONFIG_PSI=y -# CONFIG_PSI_DEFAULT_DISABLED is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -CONFIG_CGROUP_CPUACCT=y -# CONFIG_CGROUP_PERF is not set -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -# CONFIG_INITRAMFS_FORCE is not set -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_USERFAULTFD=y -CONFIG_KCMP=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_ZONE_DMA32=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_RISCV_UNCACHED_OFFSET=0xF80000000 -CONFIG_RISCV_DMA_NONCOHERENT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y - -# -# StarFive VIC7100 SoC Debug Option -# -CONFIG_SOC_STARFIVE_VIC7100_I2C_GPIO=y -# end of StarFive VIC7100 SoC Debug Option - -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -CONFIG_SMP=y -CONFIG_NR_CPUS=4 -# CONFIG_HOTPLUG_CPU is not set -CONFIG_TUNE_GENERIC=y -# CONFIG_NUMA is not set -CONFIG_RISCV_ISA_C=y - -# -# supported PMU type -# -CONFIG_RISCV_BASE_PMU=y -# end of supported PMU type - -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 debug rootwait earlycon=sbi ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -# CONFIG_PHYS_RAM_BASE_FIXED is not set -# end of Boot options - -# -# Power management options -# -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y -CONFIG_ARCH_HAS_DMA_CLEAR_UNCACHED=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -CONFIG_BLK_WBT=y -CONFIG_BLK_WBT_MQ=y -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -# CONFIG_CMDLINE_PARTITION is not set -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -CONFIG_IOSCHED_BFQ=y -# end of IO Schedulers - -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_MMIOWB=y -CONFIG_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -# CONFIG_CMA_SYSFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -# CONFIG_IP_ROUTE_MULTIPATH is not set -# CONFIG_IP_ROUTE_VERBOSE is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -CONFIG_IPV6_MULTIPLE_TABLES=y -# CONFIG_IPV6_SUBTREES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -CONFIG_NET_SCH_FQ_CODEL=y -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_CERTIFICATION_ONUS is not set -CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y -CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y -# CONFIG_CFG80211_DEFAULT_PS is not set -# CONFIG_CFG80211_DEBUGFS is not set -CONFIG_CFG80211_CRDA_SUPPORT=y -# CONFIG_CFG80211_WEXT is not set -# CONFIG_MAC80211 is not set -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -CONFIG_RFKILL=y -CONFIG_RFKILL_LEDS=y -# CONFIG_RFKILL_INPUT is not set -# CONFIG_RFKILL_GPIO is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="regulatory.db regulatory.db.p7s brcm/brcmfmac43430-sdio.bin brcm/brcmfmac43430-sdio.clm_blob brcm/brcmfmac43430-sdio.beagle,beaglev-starlight-jh7100.txt" -CONFIG_EXTRA_FIRMWARE_DIR="firmware" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# ECC engine support -# -# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set -# CONFIG_MTD_NAND_ECC_SW_BCH is not set -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set -CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y -# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=1 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=y -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_HISI_HIKEY_USB is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -CONFIG_SCSI_SCAN_ASYNC=y - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -CONFIG_WIREGUARD=y -# CONFIG_WIREGUARD_DEBUG is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_SYSTEMPORT is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HUAWEI=y -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_NET_VENDOR_MICROSOFT=y -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_NATSEMI=y -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_8390=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_HSO is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH6KL is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_BRCMUTIL=y -CONFIG_BRCMFMAC=y -CONFIG_BRCMFMAC_PROTO_BCDC=y -CONFIG_BRCMFMAC_SDIO=y -# CONFIG_BRCMFMAC_USB is not set -# CONFIG_BRCM_TRACING is not set -# CONFIG_BRCMDBG is not set -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -CONFIG_WLAN_VENDOR_MARVELL=y -# CONFIG_LIBERTAS is not set -# CONFIG_MWIFIEX is not set -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_MICROCHIP=y -# CONFIG_WILC1000_SDIO is not set -# CONFIG_WILC1000_SPI is not set -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -# CONFIG_USB_ZD1201 is not set -CONFIG_WLAN_VENDOR_QUANTENNA=y -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_VIRT_WIFI is not set -# CONFIG_WAN is not set -# CONFIG_WWAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_RISCV_SBI is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_STARFIVE_VIC=y -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_DEVMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -CONFIG_SPI_CADENCE_QUADSPI=y -CONFIG_SPI_DESIGNWARE=y -CONFIG_SPI_DW_DMA=y -CONFIG_SPI_DW_MMIO=y -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=256 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -CONFIG_GPIO_STARFIVE_JH7100=y -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SFCTEMP is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_DRM=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -# CONFIG_DRM_DEBUG_SELFTEST is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHIPONE_ICN6211 is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT8912B is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_GUD is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_EFI is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -CONFIG_FB_STARFIVE=y -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set - -# -# Displayer Configuration for VIC board -# -# CONFIG_FB_STARFIVE_HDMI_ADV7513 is not set -CONFIG_FB_STARFIVE_HDMI_TDA998X=y -# CONFIG_FB_STARFIVE_SEEED5INCH is not set -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_HDMI=y - -# -# Console display driver support -# -# CONFIG_VGA_CONSOLE is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS_SUPPORT=y -CONFIG_USB_CDNS_HOST=y -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_HOST=y -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -# CONFIG_PWRSEQ_EMMC is not set -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -# CONFIG_MMC_DW_EXYNOS is not set -# CONFIG_MMC_DW_HI3798CV200 is not set -# CONFIG_MMC_DW_K3 is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_MTD is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -CONFIG_DMABUF_HEAPS=y -CONFIG_DMABUF_HEAPS_SYSTEM=y -# CONFIG_DMABUF_HEAPS_CMA is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -CONFIG_CLK_STARFIVE_JH7100=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -# CONFIG_PWM_SIFIVE is not set -CONFIG_PWM_SIFIVE_PTC=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_NVDLA is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -CONFIG_BTRFS_FS=y -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -# CONFIG_BTRFS_FS_REF_VERIFY is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -# CONFIG_MANDATORY_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15" -CONFIG_FAT_DEFAULT_UTF8=y -CONFIG_EXFAT_FS=y -CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set -# CONFIG_NFS_V4 is not set -# CONFIG_NFS_SWAP is not set -CONFIG_ROOT_NFS=y -CONFIG_NFS_DISABLE_UDP_SUPPORT=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -# CONFIG_SUNRPC_DEBUG is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -CONFIG_NLS_ISO8859_15=y -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_KEY_NOTIFICATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_XOR_BLOCKS=y -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -CONFIG_CRYPTO_XXHASH=y -CONFIG_CRYPTO_BLAKE2B=y -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -CONFIG_CRYPTO_LIB_BLAKE2S=y -CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y -CONFIG_CRYPTO_LIB_CHACHA=y -CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=y -CONFIG_CRYPTO_LIB_CURVE25519=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 -CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y -CONFIG_CRYPTO_LIB_POLY1305=y -CONFIG_CRYPTO_LIB_CHACHA20POLY1305=y -CONFIG_CRYPTO_LIB_SHA256=y -# CONFIG_CRYPTO_HW is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y -# CONFIG_PKCS7_TEST_KEY is not set -# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_RAID6_PQ=y -# CONFIG_RAID6_PQ_BENCHMARK is not set -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_IRQ_POLL is not set -CONFIG_MPILIB=y -CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -CONFIG_WQ_WATCHDOG=y -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/seeed/beaglev/flash-5.14.esmil.config b/mainboards/seeed/beaglev/flash-5.14.esmil.config deleted file mode 100644 index 7c667816..00000000 --- a/mainboards/seeed/beaglev/flash-5.14.esmil.config +++ /dev/null @@ -1,1754 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.14.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23601 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23601 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y - -# -# BPF subsystem -# -# CONFIG_BPF_SYSCALL is not set -# end of BPF subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio" -CONFIG_INITRAMFS_FORCE=y -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -CONFIG_INITRAMFS_COMPRESSION_LZMA=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -# CONFIG_BUG is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_USERFAULTFD is not set -# CONFIG_KCMP is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_RISCV_UNCACHED_OFFSET=0xF80000000 -CONFIG_RISCV_DMA_NONCOHERENT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -# CONFIG_SMP is not set -CONFIG_TUNE_GENERIC=y -CONFIG_RISCV_ISA_C=y -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="nosmp console=ttyS0,115200 debug rootwait earlycon=sbi,keep ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -# CONFIG_EFI is not set -CONFIG_PHYS_RAM_BASE=0x80000000 -# end of Boot options - -# -# Power management options -# -# CONFIG_PM is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -# CONFIG_JUMP_LABEL is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_ARCH_HAS_DMA_SET_UNCACHED=y -CONFIG_ARCH_HAS_DMA_CLEAR_UNCACHED=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -# CONFIG_VMAP_STACK is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -# CONFIG_STRICT_KERNEL_RWX is not set -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_HAS_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_BINFMT_SCRIPT is not set -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ZONE_DMA32=y -# CONFIG_PERCPU_STATS is not set - -# -# GUP_TEST needs to have DEBUG_FS enabled -# -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -# CONFIG_PACKET is not set -# CONFIG_UNIX is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -# CONFIG_IPV6 is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_NET_SELFTESTS=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_DYNAMIC=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_MAX6875 is not set -CONFIG_EEPROM_93CX6=y -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -CONFIG_TI_ST=y -# end of Texas Instruments shared transport line discipline - -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MICROSOFT is not set -# CONFIG_NET_VENDOR_MARVELL is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_MOTORCOMM_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -CONFIG_MDIO_BUS_MUX_GPIO=y -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -# CONFIG_INPUT is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_DMA is not set -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -CONFIG_SERIAL_EARLYCON_RISCV_SBI=y -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_DEVMEM is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -CONFIG_I2C_ARB_GPIO_CHALLENGE=y -CONFIG_I2C_MUX_GPIO=y -CONFIG_I2C_MUX_GPMUX=y -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -CONFIG_I2C_MUX_PINCTRL=y -CONFIG_I2C_MUX_REG=y -CONFIG_I2C_DEMUX_PINCTRL=y -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -CONFIG_I2C_SMBUS=y - -# -# I2C Algorithms -# -# CONFIG_I2C_ALGOBIT is not set -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -CONFIG_I2C_DEBUG_CORE=y -CONFIG_I2C_DEBUG_ALGO=y -CONFIG_I2C_DEBUG_BUS=y -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_GENERIC_PINCTRL_GROUPS=y -CONFIG_PINMUX=y -CONFIG_GENERIC_PINMUX_FUNCTIONS=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -CONFIG_DEBUG_PINCTRL=y -# CONFIG_PINCTRL_MCP23S08 is not set -CONFIG_PINCTRL_SINGLE=y -# CONFIG_PINCTRL_SX150X is not set -CONFIG_PINCTRL_STARFIVE=y -# CONFIG_PINCTRL_STMFX is not set -# CONFIG_PINCTRL_OCELOT is not set -# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y -CONFIG_GPIO_GENERIC=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -CONFIG_GPIO_DWAPB=y -# CONFIG_GPIO_FTGPIO010 is not set -CONFIG_GPIO_GENERIC_PLATFORM=y -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -CONFIG_GPIO_SIFIVE=y -CONFIG_GPIO_SYSCON=y -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# Virtual GPIO drivers -# -CONFIG_GPIO_AGGREGATOR=y -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_REGULATOR is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT4831 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_QCOM_PM8008 is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_DA9121 is not set -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -# CONFIG_REGULATOR_FAN53555 is not set -# CONFIG_REGULATOR_FAN53880 is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8893 is not set -# CONFIG_REGULATOR_MAX8952 is not set -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -# CONFIG_REGULATOR_PCA9450 is not set -# CONFIG_REGULATOR_PF8X00 is not set -# CONFIG_REGULATOR_PFUZE100 is not set -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RT6160 is not set -# CONFIG_REGULATOR_RT6245 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -CONFIG_REGULATOR_TPS65086=y -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_VCTRL is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set - -# -# Displayer Configuration for VIC board -# -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -CONFIG_DW_DMAC_CORE=y -CONFIG_DW_DMAC=y -CONFIG_SF_PDMA=y - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -CONFIG_CLK_STARFIVE_JH7100=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_MCHP_SPARX5 is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_PHY_CAN_TRANSCEIVER is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -CONFIG_MULTIPLEXER=y - -# -# Multiplexer drivers -# -# CONFIG_MUX_ADG792A is not set -# CONFIG_MUX_GPIO is not set -# CONFIG_MUX_MMIO is not set -# end of Multiplexer drivers - -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_SYSFS is not set -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -# CONFIG_NLS is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -# CONFIG_CRYPTO is not set - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_ARCH_STACKWALK=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -# CONFIG_FRAME_POINTER is not set -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -CONFIG_HAVE_ARCH_KFENCE=y -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/seeed/beaglev/flash.config b/mainboards/seeed/beaglev/flash.config deleted file mode 100644 index 3a5a4561..00000000 --- a/mainboards/seeed/beaglev/flash.config +++ /dev/null @@ -1,3237 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.13.0-rc2 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 10.2.0-13ubuntu1) 10.2.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100200 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23501 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23501 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-starlight" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -CONFIG_WATCH_QUEUE=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -CONFIG_PSI=y -# CONFIG_PSI_DEFAULT_DISABLED is not set -# end of CPU/Task time and stats accounting - -# CONFIG_CPU_ISOLATION is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_TRACE_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -# CONFIG_MEMCG is not set -# CONFIG_BLK_CGROUP is not set -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -CONFIG_CFS_BANDWIDTH=y -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_DEVICE is not set -CONFIG_CGROUP_CPUACCT=y -# CONFIG_CGROUP_PERF is not set -# CONFIG_CGROUP_BPF is not set -# CONFIG_CGROUP_MISC is not set -# CONFIG_CGROUP_DEBUG is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_INITRAMFS_FORCE is not set -CONFIG_RD_GZIP=y -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_RD_ZSTD=y -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_BPF_SYSCALL=y -# CONFIG_BPF_PRELOAD is not set -CONFIG_USERFAULTFD=y -CONFIG_KCMP=y -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set -CONFIG_COMPAT_BRK=y -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SHUFFLE_PAGE_ALLOCATOR=y -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_ZONE_DMA32=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y - -# -# SoC selection -# -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -CONFIG_SOC_SIFIVE=y -CONFIG_SOC_STARFIVE_VIC7100=y - -# -# StarFive VIC7100 SoC Debug Option -# -CONFIG_FPGA_GMAC_FLUSH_DDR=y -CONFIG_MMC_DW_FLUSH_DDR=y -CONFIG_USB_CDNS3_HOST_FLUSH_DMA=y -CONFIG_SOC_STARFIVE_VIC7100_I2C_GPIO=y -# end of StarFive VIC7100 SoC Debug Option - -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -CONFIG_ERRATA_SIFIVE=y -CONFIG_ERRATA_SIFIVE_CIP_453=y -CONFIG_ERRATA_SIFIVE_CIP_1200=y -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -CONFIG_SMP=y -CONFIG_NR_CPUS=4 -# CONFIG_HOTPLUG_CPU is not set -CONFIG_TUNE_GENERIC=y -# CONFIG_NUMA is not set -CONFIG_RISCV_ISA_C=y - -# -# supported PMU type -# -CONFIG_RISCV_BASE_PMU=y -# end of supported PMU type - -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_RISCV_SBI_V01=y -# CONFIG_KEXEC is not set -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="console=ttyS0,115200 debug rootwait earlycon=sbi ip=dhcp stmmac.chain_mode=1" -# CONFIG_CMDLINE_FALLBACK is not set -# CONFIG_CMDLINE_EXTEND is not set -CONFIG_CMDLINE_FORCE=y -CONFIG_EFI_STUB=y -CONFIG_EFI=y -# CONFIG_PHYS_RAM_BASE_FIXED is not set -# end of Boot options - -# -# Power management options -# -CONFIG_PM=y -# CONFIG_PM_DEBUG is not set -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP=y -CONFIG_SECCOMP_FILTER=y -# CONFIG_SECCOMP_CACHE_DEBUG is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -CONFIG_BLK_WBT=y -CONFIG_BLK_WBT_MQ=y -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -# CONFIG_CMDLINE_PARTITION is not set -# end of Partition Types - -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -CONFIG_IOSCHED_BFQ=y -# end of IO Schedulers - -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_HAS_MMIOWB=y -CONFIG_MMIOWB=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_MEMORY_ISOLATION=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -# CONFIG_CMA_SYSFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -# CONFIG_XDP_SOCKETS is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -CONFIG_IP_ADVANCED_ROUTER=y -# CONFIG_IP_FIB_TRIE_STATS is not set -CONFIG_IP_MULTIPLE_TABLES=y -# CONFIG_IP_ROUTE_MULTIPATH is not set -# CONFIG_IP_ROUTE_VERBOSE is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -CONFIG_NET_UDP_TUNNEL=y -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -CONFIG_IPV6_MULTIPLE_TABLES=y -# CONFIG_IPV6_SUBTREES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -CONFIG_NET_SCHED=y - -# -# Queueing/Scheduling -# -# CONFIG_NET_SCH_CBQ is not set -# CONFIG_NET_SCH_HTB is not set -# CONFIG_NET_SCH_HFSC is not set -# CONFIG_NET_SCH_PRIO is not set -# CONFIG_NET_SCH_MULTIQ is not set -# CONFIG_NET_SCH_RED is not set -# CONFIG_NET_SCH_SFB is not set -# CONFIG_NET_SCH_SFQ is not set -# CONFIG_NET_SCH_TEQL is not set -# CONFIG_NET_SCH_TBF is not set -# CONFIG_NET_SCH_CBS is not set -# CONFIG_NET_SCH_ETF is not set -# CONFIG_NET_SCH_TAPRIO is not set -# CONFIG_NET_SCH_GRED is not set -# CONFIG_NET_SCH_DSMARK is not set -# CONFIG_NET_SCH_NETEM is not set -# CONFIG_NET_SCH_DRR is not set -# CONFIG_NET_SCH_MQPRIO is not set -# CONFIG_NET_SCH_SKBPRIO is not set -# CONFIG_NET_SCH_CHOKE is not set -# CONFIG_NET_SCH_QFQ is not set -# CONFIG_NET_SCH_CODEL is not set -CONFIG_NET_SCH_FQ_CODEL=y -# CONFIG_NET_SCH_CAKE is not set -# CONFIG_NET_SCH_FQ is not set -# CONFIG_NET_SCH_HHF is not set -# CONFIG_NET_SCH_PIE is not set -# CONFIG_NET_SCH_PLUG is not set -# CONFIG_NET_SCH_ETS is not set -# CONFIG_NET_SCH_DEFAULT is not set - -# -# Classification -# -# CONFIG_NET_CLS_BASIC is not set -# CONFIG_NET_CLS_TCINDEX is not set -# CONFIG_NET_CLS_ROUTE4 is not set -# CONFIG_NET_CLS_FW is not set -# CONFIG_NET_CLS_U32 is not set -# CONFIG_NET_CLS_RSVP is not set -# CONFIG_NET_CLS_RSVP6 is not set -# CONFIG_NET_CLS_FLOW is not set -# CONFIG_NET_CLS_CGROUP is not set -# CONFIG_NET_CLS_BPF is not set -# CONFIG_NET_CLS_FLOWER is not set -# CONFIG_NET_CLS_MATCHALL is not set -# CONFIG_NET_EMATCH is not set -# CONFIG_NET_CLS_ACT is not set -CONFIG_NET_SCH_FIFO=y -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_PCPU_DEV_REFCNT=y -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_SOCK_RX_QUEUE_MAPPING=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_FIB_RULES=y -CONFIG_WIRELESS=y -CONFIG_CFG80211=y -# CONFIG_NL80211_TESTMODE is not set -# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set -# CONFIG_CFG80211_CERTIFICATION_ONUS is not set -CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y -CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y -# CONFIG_CFG80211_DEFAULT_PS is not set -# CONFIG_CFG80211_DEBUGFS is not set -CONFIG_CFG80211_CRDA_SUPPORT=y -# CONFIG_CFG80211_WEXT is not set -# CONFIG_MAC80211 is not set -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -CONFIG_RFKILL=y -CONFIG_RFKILL_LEDS=y -# CONFIG_RFKILL_INPUT is not set -# CONFIG_RFKILL_GPIO is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_SELFTESTS=y -CONFIG_NET_SOCK_MSG=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="regulatory.db regulatory.db.p7s brcm/brcmfmac43430-sdio.bin brcm/brcmfmac43430-sdio.clm_blob brcm/brcmfmac43430-sdio.beagle,beaglev-starlight-jh7100.txt" -CONFIG_EXTRA_FIRMWARE_DIR="firmware" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MOXTET is not set -# CONFIG_SIMPLE_PM_BUS is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# ECC engine support -# -# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set -# CONFIG_MTD_NAND_ECC_SW_BCH is not set -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set -CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y -# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set -# CONFIG_MTD_UBI is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=1 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -CONFIG_BLK_DEV_NBD=y -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_BLK_DEV_RBD is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_HISI_HIKEY_USB is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT24 is not set -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -CONFIG_CHR_DEV_SG=y -# CONFIG_CHR_DEV_SCH is not set -CONFIG_SCSI_CONSTANTS=y -# CONFIG_SCSI_LOGGING is not set -CONFIG_SCSI_SCAN_ASYNC=y - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -CONFIG_WIREGUARD=y -# CONFIG_WIREGUARD_DEBUG is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_NLMON is not set -CONFIG_ETHERNET=y -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -CONFIG_NET_VENDOR_AQUANTIA=y -CONFIG_NET_VENDOR_ARC=y -CONFIG_NET_VENDOR_BROADCOM=y -# CONFIG_B44 is not set -# CONFIG_BCMGENET is not set -# CONFIG_SYSTEMPORT is not set -CONFIG_NET_VENDOR_CADENCE=y -# CONFIG_MACB is not set -CONFIG_NET_VENDOR_CAVIUM=y -CONFIG_NET_VENDOR_CORTINA=y -# CONFIG_GEMINI_ETHERNET is not set -# CONFIG_DNET is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_GOOGLE=y -CONFIG_NET_VENDOR_HUAWEI=y -CONFIG_NET_VENDOR_I825XX=y -CONFIG_NET_VENDOR_INTEL=y -CONFIG_NET_VENDOR_MICROSOFT=y -CONFIG_NET_VENDOR_MARVELL=y -# CONFIG_MVMDIO is not set -CONFIG_NET_VENDOR_MELLANOX=y -# CONFIG_MLXSW_CORE is not set -# CONFIG_MLXFW is not set -CONFIG_NET_VENDOR_MICREL=y -# CONFIG_KS8842 is not set -# CONFIG_KS8851 is not set -# CONFIG_KS8851_MLL is not set -CONFIG_NET_VENDOR_MICROCHIP=y -# CONFIG_ENC28J60 is not set -# CONFIG_ENCX24J600 is not set -CONFIG_NET_VENDOR_MICROSEMI=y -CONFIG_NET_VENDOR_NATSEMI=y -CONFIG_NET_VENDOR_NETRONOME=y -CONFIG_NET_VENDOR_NI=y -# CONFIG_NI_XGE_MANAGEMENT_ENET is not set -CONFIG_NET_VENDOR_8390=y -# CONFIG_ETHOC is not set -CONFIG_NET_VENDOR_PENSANDO=y -CONFIG_NET_VENDOR_QUALCOMM=y -# CONFIG_QCA7000_SPI is not set -# CONFIG_QCOM_EMAC is not set -# CONFIG_RMNET is not set -CONFIG_NET_VENDOR_RENESAS=y -CONFIG_NET_VENDOR_ROCKER=y -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -CONFIG_NET_VENDOR_SEEQ=y -CONFIG_NET_VENDOR_SOLARFLARE=y -CONFIG_NET_VENDOR_SOCIONEXT=y -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -# CONFIG_DWMAC_INTEL_PLAT is not set -CONFIG_NET_VENDOR_SYNOPSYS=y -# CONFIG_DWC_XLGMAC is not set -CONFIG_NET_VENDOR_VIA=y -# CONFIG_VIA_VELOCITY is not set -CONFIG_NET_VENDOR_WIZNET=y -# CONFIG_WIZNET_W5100 is not set -# CONFIG_WIZNET_W5300 is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_EMACLITE is not set -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -CONFIG_MICREL_PHY=y -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -# CONFIG_USB_PEGASUS is not set -# CONFIG_USB_RTL8150 is not set -# CONFIG_USB_RTL8152 is not set -# CONFIG_USB_LAN78XX is not set -# CONFIG_USB_USBNET is not set -# CONFIG_USB_HSO is not set -# CONFIG_USB_IPHETH is not set -CONFIG_WLAN=y -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH6KL is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_BRCMUTIL=y -CONFIG_BRCMFMAC=y -CONFIG_BRCMFMAC_PROTO_BCDC=y -CONFIG_BRCMFMAC_SDIO=y -# CONFIG_BRCMFMAC_USB is not set -# CONFIG_BRCM_TRACING is not set -# CONFIG_BRCMDBG is not set -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -# CONFIG_HOSTAP is not set -CONFIG_WLAN_VENDOR_MARVELL=y -# CONFIG_LIBERTAS is not set -# CONFIG_MWIFIEX is not set -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_MICROCHIP=y -# CONFIG_WILC1000_SDIO is not set -# CONFIG_WILC1000_SPI is not set -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -# CONFIG_USB_ZD1201 is not set -CONFIG_WLAN_VENDOR_QUANTENNA=y -# CONFIG_USB_NET_RNDIS_WLAN is not set -# CONFIG_VIRT_WIFI is not set -# CONFIG_WAN is not set -# CONFIG_WWAN is not set -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -CONFIG_VT_HW_CONSOLE_BINDING=y -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -# CONFIG_SERIAL_8250_16550A_VARIANTS is not set -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_OF_PLATFORM is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_RISCV_SBI is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -CONFIG_SERIAL_SIFIVE=y -CONFIG_SERIAL_SIFIVE_CONSOLE=y -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -CONFIG_HW_RANDOM_STARFIVE_VIC=y -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_DEVMEM is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -# CONFIG_I2C_MUX_PCA954x is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set -# end of I2C Algorithms - -# -# I2C Hardware Bus support -# - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_GPIO is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_RK3X is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_CP2615 is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_ALTERA_CORE is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -CONFIG_SPI_CADENCE_QUADSPI=y -CONFIG_SPI_DESIGNWARE=y -CONFIG_SPI_DW_DMA=y -CONFIG_SPI_DW_MMIO=y -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=256 -CONFIG_OF_GPIO=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -CONFIG_GPIO_STARFIVE_VIC=y -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -# CONFIG_GPIO_MAX732X is not set -# CONFIG_GPIO_PCA953X is not set -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -CONFIG_GPIO_TPS65086=y -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -# CONFIG_POWER_RESET_GPIO is not set -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_TPS65086=y -# CONFIG_POWER_RESET_SYSCON is not set -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -# CONFIG_SYSCON_REBOOT_MODE is not set -# CONFIG_NVMEM_REBOOT_MODE is not set -# CONFIG_POWER_SUPPLY is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AHT10 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC2992 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX127 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_TPS23861 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -# CONFIG_SENSORS_LM90 is not set -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_NZXT_KRAKEN2 is not set -# CONFIG_SENSORS_PCF8591 is not set -# CONFIG_PMBUS is not set -# CONFIG_SENSORS_PWM_FAN is not set -# CONFIG_SENSORS_SBTSI is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_AMC6821 is not set -# CONFIG_SENSORS_INA209 is not set -# CONFIG_SENSORS_INA2XX is not set -# CONFIG_SENSORS_INA3221 is not set -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -CONFIG_SENSORS_SFCTMP=y -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77620 is not set -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_NTXEC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set -# CONFIG_MFD_RN5T618 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -CONFIG_MFD_TPS65086=y -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_MFD_ROHM_BD718XX is not set -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_ROHM_BD957XMUF is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -# CONFIG_MFD_ATC260X_I2C is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -CONFIG_DRM=y -# CONFIG_DRM_DP_AUX_CHARDEV is not set -# CONFIG_DRM_DEBUG_MM is not set -# CONFIG_DRM_DEBUG_SELFTEST is not set -CONFIG_DRM_KMS_HELPER=y -CONFIG_DRM_KMS_FB_HELPER=y -# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set -CONFIG_DRM_FBDEV_EMULATION=y -CONFIG_DRM_FBDEV_OVERALLOC=100 -# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set -# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set -# CONFIG_DRM_DP_CEC is not set - -# -# I2C encoder or helper chips -# -# CONFIG_DRM_I2C_CH7006 is not set -# CONFIG_DRM_I2C_SIL164 is not set -# CONFIG_DRM_I2C_NXP_TDA998X is not set -# CONFIG_DRM_I2C_NXP_TDA9950 is not set -# end of I2C encoder or helper chips - -# -# ARM devices -# -# CONFIG_DRM_KOMEDA is not set -# end of ARM devices - -# CONFIG_DRM_VGEM is not set -# CONFIG_DRM_VKMS is not set -# CONFIG_DRM_UDL is not set -# CONFIG_DRM_RCAR_DW_HDMI is not set -# CONFIG_DRM_RCAR_LVDS is not set -CONFIG_DRM_PANEL=y - -# -# Display Panels -# -# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set -# CONFIG_DRM_PANEL_ARM_VERSATILE is not set -# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set -# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set -# CONFIG_DRM_PANEL_LG_LB035Q02 is not set -# CONFIG_DRM_PANEL_LG_LG4573 is not set -# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set -# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set -# end of Display Panels - -CONFIG_DRM_BRIDGE=y -CONFIG_DRM_PANEL_BRIDGE=y - -# -# Display Interface Bridges -# -# CONFIG_DRM_CDNS_DSI is not set -# CONFIG_DRM_CHIPONE_ICN6211 is not set -# CONFIG_DRM_CHRONTEL_CH7033 is not set -# CONFIG_DRM_DISPLAY_CONNECTOR is not set -# CONFIG_DRM_LONTIUM_LT8912B is not set -# CONFIG_DRM_LONTIUM_LT9611 is not set -# CONFIG_DRM_LONTIUM_LT9611UXC is not set -# CONFIG_DRM_LVDS_CODEC is not set -# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set -# CONFIG_DRM_NWL_MIPI_DSI is not set -# CONFIG_DRM_NXP_PTN3460 is not set -# CONFIG_DRM_PARADE_PS8622 is not set -# CONFIG_DRM_PARADE_PS8640 is not set -# CONFIG_DRM_SIL_SII8620 is not set -# CONFIG_DRM_SII902X is not set -# CONFIG_DRM_SII9234 is not set -# CONFIG_DRM_SIMPLE_BRIDGE is not set -# CONFIG_DRM_THINE_THC63LVD1024 is not set -# CONFIG_DRM_TOSHIBA_TC358762 is not set -# CONFIG_DRM_TOSHIBA_TC358764 is not set -# CONFIG_DRM_TOSHIBA_TC358767 is not set -# CONFIG_DRM_TOSHIBA_TC358768 is not set -# CONFIG_DRM_TOSHIBA_TC358775 is not set -# CONFIG_DRM_TI_TFP410 is not set -# CONFIG_DRM_TI_SN65DSI86 is not set -# CONFIG_DRM_TI_TPD12S015 is not set -# CONFIG_DRM_ANALOGIX_ANX6345 is not set -# CONFIG_DRM_ANALOGIX_ANX78XX is not set -# CONFIG_DRM_ANALOGIX_ANX7625 is not set -# CONFIG_DRM_I2C_ADV7511 is not set -# CONFIG_DRM_CDNS_MHDP8546 is not set -# end of Display Interface Bridges - -# CONFIG_DRM_ETNAVIV is not set -# CONFIG_DRM_MXSFB is not set -# CONFIG_DRM_ARCPGU is not set -# CONFIG_DRM_GM12U320 is not set -# CONFIG_TINYDRM_HX8357D is not set -# CONFIG_TINYDRM_ILI9225 is not set -# CONFIG_TINYDRM_ILI9341 is not set -# CONFIG_TINYDRM_ILI9486 is not set -# CONFIG_TINYDRM_MI0283QT is not set -# CONFIG_TINYDRM_REPAPER is not set -# CONFIG_TINYDRM_ST7586 is not set -# CONFIG_TINYDRM_ST7735R is not set -# CONFIG_DRM_GUD is not set -# CONFIG_DRM_LEGACY is not set -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y - -# -# Frame buffer Devices -# -CONFIG_FB_CMDLINE=y -CONFIG_FB_NOTIFY=y -CONFIG_FB=y -# CONFIG_FIRMWARE_EDID is not set -CONFIG_FB_CFB_FILLRECT=y -CONFIG_FB_CFB_COPYAREA=y -CONFIG_FB_CFB_IMAGEBLIT=y -CONFIG_FB_SYS_FILLRECT=y -CONFIG_FB_SYS_COPYAREA=y -CONFIG_FB_SYS_IMAGEBLIT=y -# CONFIG_FB_FOREIGN_ENDIAN is not set -CONFIG_FB_SYS_FOPS=y -CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_MODE_HELPERS is not set -# CONFIG_FB_TILEBLITTING is not set - -# -# Frame buffer hardware drivers -# -# CONFIG_FB_EFI is not set -# CONFIG_FB_OPENCORES is not set -# CONFIG_FB_S1D13XXX is not set -CONFIG_FB_STARFIVE=y -# CONFIG_FB_SMSCUFX is not set -# CONFIG_FB_UDL is not set -# CONFIG_FB_IBM_GXT4500 is not set -# CONFIG_FB_VIRTUAL is not set -# CONFIG_FB_METRONOME is not set -# CONFIG_FB_SIMPLE is not set -# CONFIG_FB_SSD1307 is not set - -# -# Displayer Configuration for VIC board -# -# CONFIG_FB_STARFIVE_HDMI_ADV7513 is not set -CONFIG_FB_STARFIVE_HDMI_TDA998X=y -# CONFIG_FB_STARFIVE_SEEED5INCH is not set -# end of Displayer Configuration for VIC board -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -CONFIG_HDMI=y - -# -# Console display driver support -# -# CONFIG_VGA_CONSOLE is not set -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -CONFIG_FRAMEBUFFER_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y -# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set -# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set -# end of Console display driver support - -# CONFIG_LOGO is not set -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -# CONFIG_I2C_HID_OF is not set -# CONFIG_I2C_HID_OF_GOODIX is not set -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_ANNOUNCE_NEW_DEVICES=y - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -# CONFIG_USB_OTG is not set -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -CONFIG_USB_MON=y - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -CONFIG_USB_XHCI_DBGCAP=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -# CONFIG_USB_EHCI_HCD is not set -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -# CONFIG_USB_OHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -# CONFIG_USB_ACM is not set -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -CONFIG_USB_UAS=y - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS_SUPPORT=y -CONFIG_USB_CDNS_HOST=y -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_HOST=y -# CONFIG_USB_MUSB_HDRC is not set -# CONFIG_USB_DWC3 is not set -# CONFIG_USB_DWC2 is not set -# CONFIG_USB_ISP1760 is not set - -# -# USB port drivers -# -# CONFIG_USB_SERIAL is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -# CONFIG_USB_TEST is not set -# CONFIG_USB_EHSET_TEST_FIXTURE is not set -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -# CONFIG_USB_HSIC_USB3503 is not set -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -# CONFIG_NOP_USB_XCEIV is not set -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -# CONFIG_PWRSEQ_EMMC is not set -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -# CONFIG_MMC_DW_EXYNOS is not set -# CONFIG_MMC_DW_HI3798CV200 is not set -# CONFIG_MMC_DW_K3 is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_PWM is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -# CONFIG_LEDS_TRIGGER_TIMER is not set -# CONFIG_LEDS_TRIGGER_ONESHOT is not set -# CONFIG_LEDS_TRIGGER_MTD is not set -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -# CONFIG_LEDS_TRIGGER_CPU is not set -# CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -# CONFIG_LEDS_TRIGGER_PANIC is not set -# CONFIG_LEDS_TRIGGER_NETDEV is not set -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -# CONFIG_RTC_CLASS is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DW_AXI_DMAC=y -CONFIG_DW_AXI_DMAC_STARFIVE=y -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_DEBUG is not set -# CONFIG_DMABUF_SELFTESTS is not set -CONFIG_DMABUF_HEAPS=y -CONFIG_DMABUF_HEAPS_SYSTEM=y -# CONFIG_DMABUF_HEAPS_CMA is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX9485 is not set -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_PWM is not set -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y -CONFIG_CLK_SIFIVE=y -CONFIG_CLK_SIFIVE_PRCI=y -# CONFIG_XILINX_VCU is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SIFIVE_L2=y -CONFIG_SIFIVE_L2_FLUSH=y -CONFIG_SIFIVE_L2_FLUSH_START=0x80000000 -CONFIG_SIFIVE_L2_FLUSH_SIZE=0x800000000 -CONFIG_SIFIVE_L2_IRQ_DISABLE=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_ATMEL_TCB is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set -# CONFIG_PWM_SIFIVE is not set -CONFIG_PWM_SIFIVE_PTC=y - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -CONFIG_RESET_SIMPLE=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# end of Performance monitor support - -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -CONFIG_FS_IOMAP=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -CONFIG_EXT4_FS_POSIX_ACL=y -CONFIG_EXT4_FS_SECURITY=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -CONFIG_BTRFS_FS=y -CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -# CONFIG_BTRFS_FS_REF_VERIFY is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -# CONFIG_MANDATORY_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_AUTOFS_FS=y -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_NETFS_SUPPORT is not set -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-15" -CONFIG_FAT_DEFAULT_UTF8=y -CONFIG_EXFAT_FS=y -CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -CONFIG_NETWORK_FILESYSTEMS=y -CONFIG_NFS_FS=y -CONFIG_NFS_V2=y -CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set -# CONFIG_NFS_V4 is not set -# CONFIG_NFS_SWAP is not set -CONFIG_ROOT_NFS=y -CONFIG_NFS_DISABLE_UDP_SUPPORT=y -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=y -CONFIG_LOCKD=y -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=y -# CONFIG_SUNRPC_DEBUG is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -CONFIG_NLS_ISO8859_15=y -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_KEY_NOTIFICATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_XOR_BLOCKS=y -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -# CONFIG_CRYPTO_CRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -# CONFIG_CRYPTO_CBC is not set -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -# CONFIG_CRYPTO_ECB is not set -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -CONFIG_CRYPTO_XXHASH=y -CONFIG_CRYPTO_BLAKE2B=y -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -# CONFIG_CRYPTO_MD5 is not set -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_SHA1 is not set -CONFIG_CRYPTO_SHA256=y -# CONFIG_CRYPTO_SHA512 is not set -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -# CONFIG_CRYPTO_AES is not set -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_DES is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -# CONFIG_CRYPTO_DEFLATE is not set -# CONFIG_CRYPTO_LZO is not set -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -# CONFIG_CRYPTO_ZSTD is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y -CONFIG_CRYPTO_LIB_BLAKE2S=y -CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y -CONFIG_CRYPTO_LIB_CHACHA=y -CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=y -CONFIG_CRYPTO_LIB_CURVE25519=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 -CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y -CONFIG_CRYPTO_LIB_POLY1305=y -CONFIG_CRYPTO_LIB_CHACHA20POLY1305=y -CONFIG_CRYPTO_LIB_SHA256=y -# CONFIG_CRYPTO_HW is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_X509_CERTIFICATE_PARSER=y -# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set -CONFIG_PKCS7_MESSAGE_PARSER=y -# CONFIG_PKCS7_TEST_KEY is not set -# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set - -# -# Certificates for signature checking -# -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" -# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set -# CONFIG_SECONDARY_TRUSTED_KEYRING is not set -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -CONFIG_BINARY_PRINTF=y - -# -# Library routines -# -CONFIG_RAID6_PQ=y -# CONFIG_RAID6_PQ_BENCHMARK is not set -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -# CONFIG_XZ_DEC is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=16 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -# CONFIG_IRQ_POLL is not set -CONFIG_MPILIB=y -CONFIG_LIBFDT=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -# CONFIG_FONTS is not set -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -CONFIG_SG_POOL=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -CONFIG_FRAME_WARN=2048 -CONFIG_STRIP_ASM_SYMS=y -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_VMLINUX_MAP is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_ARCH_HAS_DEBUG_WX=y -CONFIG_DEBUG_WX=y -CONFIG_GENERIC_PTDUMP=y -CONFIG_PTDUMP_CORE=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_LOCKUP_DETECTOR=y -CONFIG_SOFTLOCKUP_DETECTOR=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -CONFIG_WQ_WATCHDOG=y -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From 0dc8ae7c9fe7c2dc65ba60a77169750380b5e3e8 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 117/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/slimboot/Makefile | 31 - mainboards/slimboot/config-4.14.111 | 2385 --------------------------- mainboards/slimboot/config-5.15.0 | 2385 --------------------------- 3 files changed, 4801 deletions(-) delete mode 100644 mainboards/slimboot/Makefile delete mode 100644 mainboards/slimboot/config-4.14.111 delete mode 100644 mainboards/slimboot/config-5.15.0 diff --git a/mainboards/slimboot/Makefile b/mainboards/slimboot/Makefile deleted file mode 100644 index 0585ca46..00000000 --- a/mainboards/slimboot/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -default: build - -build: - echo fetch, flashkernel, or qemu - -qemu: flashkernel - qemu-system-x86_64 -kernel flashkernel -serial stdio -monitor /dev/null - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -uroot: - go run github.com/u-root/u-root -build=bb all - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-5.15.0 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: getkernel geturoot -getkernel: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz - xzcat kernel.xz | tar x - mv linux-5.15 linux -geturoot: - go get -u github.com/u-root/u-root - diff --git a/mainboards/slimboot/config-4.14.111 b/mainboards/slimboot/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/slimboot/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/slimboot/config-5.15.0 b/mainboards/slimboot/config-5.15.0 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/slimboot/config-5.15.0 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set From 6825bff2474a8b18264c870524bf293f4a323fdb Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 118/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/solidrun/honeycomblx2k/Makefile | 90 - mainboards/solidrun/honeycomblx2k/README.md | 56 - mainboards/solidrun/honeycomblx2k/boot.scr | 2 - mainboards/solidrun/honeycomblx2k/config-5.10 | 5312 ----------------- .../solidrun/honeycomblx2k/config-5.4.47 | 5187 ---------------- .../honeycomblx2k/fsl-lx2160a-cex7.dtb | Bin 28471 -> 0 bytes .../solidrun/honeycomblx2k/kexecconfig-5.10 | 5312 ----------------- .../solidrun/honeycomblx2k/kexecconfig-5.4 | 5187 ---------------- 8 files changed, 21146 deletions(-) delete mode 100644 mainboards/solidrun/honeycomblx2k/Makefile delete mode 100644 mainboards/solidrun/honeycomblx2k/README.md delete mode 100644 mainboards/solidrun/honeycomblx2k/boot.scr delete mode 100644 mainboards/solidrun/honeycomblx2k/config-5.10 delete mode 100644 mainboards/solidrun/honeycomblx2k/config-5.4.47 delete mode 100644 mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb delete mode 100644 mainboards/solidrun/honeycomblx2k/kexecconfig-5.10 delete mode 100644 mainboards/solidrun/honeycomblx2k/kexecconfig-5.4 diff --git a/mainboards/solidrun/honeycomblx2k/Makefile b/mainboards/solidrun/honeycomblx2k/Makefile deleted file mode 100644 index 17d9a678..00000000 --- a/mainboards/solidrun/honeycomblx2k/Makefile +++ /dev/null @@ -1,90 +0,0 @@ -# This is the makefile for a netbootable image. It has cpud build in. -# see README.md in this directory for more information. -# Status: you can netboot the netbootkernel, which is currently 5.17 -# You need to be careful to use the correct dtb, see note. -# I have included the dtb in this repo for safety - -default: netbootkernel - echo Be sure to use fsl-lx2160a-cex7.dtb, NOT fsl-lx2160a-honeycomb.dtb - echo the latter causes a trap on boot. ARM is so great - -u-root: - GO111MODULE=off go install github.com/u-root/u-root - @echo Make sure $(GOPATH)/bin is in your PATH - @echo if GOPATH is empty, then put ~/go/bin in your PATH - -usefultargets: - echo fetch, uroot, netbootkernel - -# the kexectestimage has standard u-root commands, kexec-tools version of kexec, and two -# test kernels, a 5.10 and a 5.4 -kexectestimage-5.10: kexecconfig-5.10 kexecinitramfs.cpio - cp $< linux-5.10/.config - (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux-5.10/arch/arm64/boot/Image $@ - cp linux/arch/arm64/boot/dts/freescale/fsl-lx2160a-cex7.dtb fsl-lx2160a-cex7.dtb - -kexectestimage-5.4: kexecconfig-5.4 kexecinitramfs.cpio - cp $< linux/.config - (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux/arch/arm64/boot/Image $@ - -kernel-5.4: config-5.4.47 flashinitramfs.cpio - cp $< linux/.config - (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux/arch/arm64/boot/Image $@ - -kexecinitramfs.cpio: u-root Makefile kernel-5.4 kernel-5.10 - GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - -files kernel-5.4 -files kernel-5.10 \ - github.com/u-root/cpu/cmds/cpud \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - core \ - -flashinitramfs.cpio: Makefile - GO111MODULE=off GOARCH=arm64 u-root -o $@ -build=bb \ - -files ~/.ssh/cpu_rsa.pub:key.pub \ - github.com/u-root/cpu/cmds/cpud \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - core \ - -netbootkernel: kernel-5.17 - cp $< $@ - -kernel-5.4.47: config-5.4.47 flashinitramfs.cpio - cp $< linux/.config - (cd linux && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux/arch/arm64/boot/Image $@ - -kernel-5.10: config-5.10 flashinitramfs.cpio - cp $< linux/.config - (cd linux-5.10 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux-5.10/arch/arm64/boot/Image $@ - -kernel-5.17: config-5.17 flashinitramfs.cpio - cp config-5.17 linux-5.17/.config - (cd linux-5.17 && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make oldconfig && CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 make -j32) - cp linux-5.17/arch/arm64/boot/Image $@ - -# These stanzas fetch code. -fetch: getkernel geturoot apt - -getkernel: - rm -rf linux - git clone --depth=1 -b solidrun-honeycomb --single-branch https://github.com/linuxboot/linux - -getkernel-5.10: - rm -rf linux-5.10 - git clone --depth=1 -b v5.10 --single-branch https://github.com/torvalds/linux linux-5.10 - -getkernel-5.17: - rm -rf linux-5.17 - git clone --depth=1 -b v5.17 --single-branch https://github.com/torvalds/linux linux-5.17 - -geturoot: - GO111MODULE=off go get -u github.com/u-root/u-root - GO111MODULE=off go get -u github.com/u-root/cpu/... - -apt: - sudo apt install gcc-aarch64-linux-gnu diff --git a/mainboards/solidrun/honeycomblx2k/README.md b/mainboards/solidrun/honeycomblx2k/README.md deleted file mode 100644 index b9db8f4c..00000000 --- a/mainboards/solidrun/honeycomblx2k/README.md +++ /dev/null @@ -1,56 +0,0 @@ -Using this mainboard with the solidrun. - -This assumes you are running a reasonably new LSDK, if not, build one and put it on an SD. - -You MUST have go1.17. - -``` -make fetch -make -``` - -Put the netbootkernel and the .dtb somewhere for ftp. -I use the centre tool, and my location for netboot is ~/centre, so: -``` -cp netbootkernel fsl-lx2160a-cex7.dtb ~/centre -``` - -On the honeycomb: -``` -setenv netboot 'mmc read 0x80d00000 0x6800 0x800; dhcp; tftpboot ${kernel_addr_r} netbootkernel; tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb; fsl_mc apply DPL 0x80d00000; bootefi ${kernel_addr_r} ${fdt_addr_r}' -saveenv -``` - -Let the honeycomb boot to the -``` -Hit any key to stop autoboot: -``` - -and hit any key. - -``` -run netboot -``` - -The kernel will boot. You will need to get an IP address: -``` -dhclient -vv & -``` - -Then: -``` -cpud -init & -``` -And you can cpu to the board! - -Note: you will need an ssh public key, in the build step, I used ~/.ssh/cpu_rsa.pub - -You can make getting to the board more convenient, e.g, in my .ssh/config I have this: -``` -Host honeycomb - HostName honeycomb - Port 23 - User root - IdentityFile ~/.ssh/cpu_rsa -``` - diff --git a/mainboards/solidrun/honeycomblx2k/boot.scr b/mainboards/solidrun/honeycomblx2k/boot.scr deleted file mode 100644 index 3373337f..00000000 --- a/mainboards/solidrun/honeycomblx2k/boot.scr +++ /dev/null @@ -1,2 +0,0 @@ -mmc read 0x80d00000 0x6800 0x800; dhcp; tftpboot ${kernel_addr_r} netbootkernel; tftpboot ${fdt_addr_r} fsl-lx2160a-cex7.dtb; fsl_mc apply DPL 0x80d00000; bootefi ${kernel_addr_r} ${fdt_addr_r} -; diff --git a/mainboards/solidrun/honeycomblx2k/config-5.10 b/mainboards/solidrun/honeycomblx2k/config-5.10 deleted file mode 100644 index 01f59f89..00000000 --- a/mainboards/solidrun/honeycomblx2k/config-5.10 +++ /dev/null @@ -1,5312 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm64 5.10.0 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_LD_VERSION=235010000 -CONFIG_CLANG_VERSION=0 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_IPI=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_IRQ_MSI_IOMMU=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -# CONFIG_PREEMPT_VOLUNTARY is not set -CONFIG_PREEMPT=y -CONFIG_PREEMPT_COUNT=y -CONFIG_PREEMPTION=y - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -CONFIG_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_SCHED_AVG_IRQ=y -CONFIG_SCHED_THERMAL_PRESSURE=y -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_SWAP=y -CONFIG_MEMCG_KMEM=y -CONFIG_BLK_CGROUP=y -CONFIG_CGROUP_WRITEBACK=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -# CONFIG_CFS_BANDWIDTH is not set -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -CONFIG_CGROUP_HUGETLB=y -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_DEBUG is not set -# CONFIG_NAMESPACES is not set -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_RD_ZSTD=y -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_LD_ORPHAN_WARN=y -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_PROFILING=y -# end of General setup - -CONFIG_ARM64=y -CONFIG_64BIT=y -CONFIG_MMU=y -CONFIG_ARM64_PAGE_SHIFT=12 -CONFIG_ARM64_CONT_PTE_SHIFT=4 -CONFIG_ARM64_CONT_PMD_SHIFT=4 -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=33 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -# CONFIG_ZONE_DMA is not set -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y -CONFIG_SMP=y -CONFIG_KERNEL_MODE_NEON=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARCH_PROC_KCORE_TEXT=y - -# -# Platform selection -# -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_AGILEX is not set -# CONFIG_ARCH_SUNXI is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_BCM2835 is not set -# CONFIG_ARCH_BCM_IPROC is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_BITMAIN is not set -# CONFIG_ARCH_BRCMSTB is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_SPARX5 is not set -# CONFIG_ARCH_K3 is not set -CONFIG_ARCH_LAYERSCAPE=y -# CONFIG_ARCH_LG1K is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_KEEMBAY is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S32 is not set -# CONFIG_ARCH_SEATTLE is not set -# CONFIG_ARCH_STRATIX10 is not set -# CONFIG_ARCH_SYNQUACER is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_SPRD is not set -# CONFIG_ARCH_THUNDER is not set -# CONFIG_ARCH_THUNDER2 is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_VISCONTI is not set -# CONFIG_ARCH_XGENE is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQMP is not set -# end of Platform selection - -# -# Kernel Features -# - -# -# ARM errata workarounds via the alternatives framework -# -CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y -CONFIG_ARM64_ERRATUM_826319=y -CONFIG_ARM64_ERRATUM_827319=y -CONFIG_ARM64_ERRATUM_824069=y -CONFIG_ARM64_ERRATUM_819472=y -CONFIG_ARM64_ERRATUM_832075=y -CONFIG_ARM64_ERRATUM_834220=y -CONFIG_ARM64_ERRATUM_843419=y -CONFIG_ARM64_ERRATUM_1024718=y -CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y -CONFIG_ARM64_ERRATUM_1165522=y -# CONFIG_ARM64_ERRATUM_1319367 is not set -# CONFIG_ARM64_ERRATUM_1530923 is not set -CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y -CONFIG_ARM64_ERRATUM_1286807=y -CONFIG_ARM64_ERRATUM_1463225=y -CONFIG_ARM64_ERRATUM_1542419=y -# CONFIG_ARM64_ERRATUM_1508412 is not set -CONFIG_CAVIUM_ERRATUM_22375=y -CONFIG_CAVIUM_ERRATUM_23154=y -CONFIG_CAVIUM_ERRATUM_27456=y -CONFIG_CAVIUM_ERRATUM_30115=y -CONFIG_CAVIUM_TX2_ERRATUM_219=y -CONFIG_FUJITSU_ERRATUM_010001=y -CONFIG_HISILICON_ERRATUM_161600802=y -CONFIG_QCOM_FALKOR_ERRATUM_1003=y -CONFIG_QCOM_FALKOR_ERRATUM_1009=y -CONFIG_QCOM_QDF2400_ERRATUM_0065=y -CONFIG_QCOM_FALKOR_ERRATUM_E1041=y -CONFIG_SOCIONEXT_SYNQUACER_PREITS=y -# end of ARM errata workarounds via the alternatives framework - -CONFIG_ARM64_4K_PAGES=y -# CONFIG_ARM64_16K_PAGES is not set -# CONFIG_ARM64_64K_PAGES is not set -# CONFIG_ARM64_VA_BITS_39 is not set -CONFIG_ARM64_VA_BITS_48=y -CONFIG_ARM64_VA_BITS=48 -CONFIG_ARM64_PA_BITS_48=y -CONFIG_ARM64_PA_BITS=48 -# CONFIG_CPU_BIG_ENDIAN is not set -CONFIG_CPU_LITTLE_ENDIAN=y -CONFIG_SCHED_MC=y -# CONFIG_SCHED_SMT is not set -CONFIG_NR_CPUS=16 -CONFIG_HOTPLUG_CPU=y -# CONFIG_NUMA is not set -CONFIG_HOLES_IN_ZONE=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_SYS_SUPPORTS_HUGETLBFS=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -# CONFIG_XEN is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_UNMAP_KERNEL_AT_EL0=y -CONFIG_RODATA_FULL_DEFAULT_ENABLED=y -# CONFIG_ARM64_SW_TTBR0_PAN is not set -CONFIG_ARM64_TAGGED_ADDR_ABI=y -# CONFIG_COMPAT is not set - -# -# ARMv8.1 architectural features -# -CONFIG_ARM64_HW_AFDBM=y -CONFIG_ARM64_PAN=y -CONFIG_ARM64_LSE_ATOMICS=y -CONFIG_ARM64_USE_LSE_ATOMICS=y -CONFIG_ARM64_VHE=y -# end of ARMv8.1 architectural features - -# -# ARMv8.2 architectural features -# -CONFIG_ARM64_UAO=y -# CONFIG_ARM64_PMEM is not set -CONFIG_ARM64_RAS_EXTN=y -CONFIG_ARM64_CNP=y -# end of ARMv8.2 architectural features - -# -# ARMv8.3 architectural features -# -CONFIG_ARM64_PTR_AUTH=y -CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y -CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y -CONFIG_AS_HAS_PAC=y -CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y -# end of ARMv8.3 architectural features - -# -# ARMv8.4 architectural features -# -# CONFIG_ARM64_AMU_EXTN is not set -CONFIG_AS_HAS_ARMV8_4=y -# CONFIG_ARM64_TLB_RANGE is not set -# end of ARMv8.4 architectural features - -# -# ARMv8.5 architectural features -# -# CONFIG_ARM64_BTI is not set -CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y -# CONFIG_ARM64_E0PD is not set -# CONFIG_ARCH_RANDOM is not set -CONFIG_ARM64_AS_HAS_MTE=y -CONFIG_ARM64_MTE=y -# end of ARMv8.5 architectural features - -# CONFIG_ARM64_SVE is not set -# CONFIG_ARM64_PSEUDO_NMI is not set -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_RANDOMIZE_MODULE_REGION_FULL=y -CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y -CONFIG_STACKPROTECTOR_PER_TASK=y -# end of Kernel Features - -# -# Boot options -# -# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set -CONFIG_CMDLINE="" -CONFIG_EFI_STUB=y -CONFIG_EFI=y -CONFIG_DMI=y -# end of Boot options - -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y -CONFIG_ARCH_ENABLE_THP_MIGRATION=y - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -CONFIG_PM_TEST_SUSPEND=y -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -CONFIG_PM_CLK=y -CONFIG_PM_GENERIC_DOMAINS=y -CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y -CONFIG_PM_GENERIC_DOMAINS_SLEEP=y -CONFIG_PM_GENERIC_DOMAINS_OF=y -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# CPU Power Management -# - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y -# CONFIG_CPU_IDLE_GOV_LADDER is not set -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -CONFIG_DT_IDLE_STATES=y - -# -# ARM CPU Idle Drivers -# -CONFIG_ARM_CPUIDLE=y -CONFIG_ARM_PSCI_CPUIDLE=y -CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y -# end of ARM CPU Idle Drivers -# end of CPU Idle - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -CONFIG_CPU_FREQ_GOV_POWERSAVE=y -CONFIG_CPU_FREQ_GOV_USERSPACE=y -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -CONFIG_ACPI_CPPC_CPUFREQ=y -CONFIG_ARM_SCPI_CPUFREQ=y -CONFIG_QORIQ_CPUFREQ=y -# end of CPU Frequency scaling -# end of CPU Power Management - -# -# Firmware Drivers -# -# CONFIG_ARM_SCMI_PROTOCOL is not set -CONFIG_ARM_SCPI_PROTOCOL=y -CONFIG_ARM_SCPI_POWER_DOMAIN=y -# CONFIG_ARM_SDE_INTERFACE is not set -# CONFIG_FIRMWARE_MEMMAP is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -CONFIG_EFI_ESRT=y -CONFIG_EFI_VARS_PSTORE=y -# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_GENERIC_STUB=y -CONFIG_EFI_ARMSTUB_DTB_LOADER=y -CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y -# CONFIG_EFI_BOOTLOADER_CONTROL is not set -CONFIG_EFI_CAPSULE_LOADER=y -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DISABLE_PCI_DMA is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_ARM=y -CONFIG_EFI_EARLYCON=y -CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y -CONFIG_ARM_PSCI_FW=y -# CONFIG_ARM_PSCI_CHECKER is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y -# CONFIG_ARM_SMCCC_SOC_ID is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_GENERIC_GSI=y -CONFIG_ACPI_CCA_REQUIRED=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -# CONFIG_ACPI_BATTERY is not set -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_MCFG=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -# CONFIG_ACPI_IPMI is not set -CONFIG_ACPI_HOTPLUG_CPU=y -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_SEA=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -CONFIG_ACPI_APEI_EINJ=y -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_ACPI_IORT=y -CONFIG_ACPI_GTDT=y -CONFIG_ACPI_PPTT=y -# CONFIG_PMIC_OPREGION is not set -CONFIG_IRQ_BYPASS_MANAGER=y -CONFIG_VIRTUALIZATION=y -CONFIG_KVM=y -CONFIG_HAVE_KVM_IRQCHIP=y -CONFIG_HAVE_KVM_IRQFD=y -CONFIG_HAVE_KVM_IRQ_ROUTING=y -CONFIG_HAVE_KVM_EVENTFD=y -CONFIG_KVM_MMIO=y -CONFIG_HAVE_KVM_MSI=y -CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y -CONFIG_KVM_VFIO=y -CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y -CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y -CONFIG_HAVE_KVM_IRQ_BYPASS=y -CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y -CONFIG_KVM_ARM_PMU=y -CONFIG_ARM64_CRYPTO=y -CONFIG_CRYPTO_SHA256_ARM64=y -CONFIG_CRYPTO_SHA512_ARM64=y -CONFIG_CRYPTO_SHA1_ARM64_CE=y -CONFIG_CRYPTO_SHA2_ARM64_CE=y -CONFIG_CRYPTO_SHA512_ARM64_CE=y -CONFIG_CRYPTO_SHA3_ARM64=y -CONFIG_CRYPTO_SM3_ARM64_CE=y -# CONFIG_CRYPTO_SM4_ARM64_CE is not set -CONFIG_CRYPTO_GHASH_ARM64_CE=y -CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y -CONFIG_CRYPTO_AES_ARM64=y -CONFIG_CRYPTO_AES_ARM64_CE=y -CONFIG_CRYPTO_AES_ARM64_CE_CCM=y -CONFIG_CRYPTO_AES_ARM64_CE_BLK=y -CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y -CONFIG_CRYPTO_CHACHA20_NEON=y -# CONFIG_CRYPTO_POLY1305_NEON is not set -# CONFIG_CRYPTO_NHPOLY1305_NEON is not set -CONFIG_CRYPTO_AES_ARM64_BS=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_SET_FS=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_MMU_GATHER_TABLE_FREE=y -CONFIG_MMU_GATHER_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_HAVE_ARCH_COMPILER_H=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_RELR=y -CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_DEV_THROTTLING is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_CGROUP_IOLATENCY is not set -# CONFIG_BLK_CGROUP_IOCOST is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_PREEMPT_NOTIFIERS=y -CONFIG_ASN1=y -CONFIG_UNINLINE_SPIN_UNLOCK=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ARCH_BINFMT_ELF_STATE=y -CONFIG_ARCH_HAVE_ELF_PROT=y -CONFIG_ARCH_USE_GNU_PROPERTY=y -CONFIG_ELFCORE=y -# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -# CONFIG_FLATMEM_MANUAL is not set -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -CONFIG_BALLOON_COMPACTION=y -CONFIG_COMPACTION=y -CONFIG_PAGE_REPORTING=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_UNIX_DIAG=y -# CONFIG_TLS is not set -CONFIG_XFRM=y -CONFIG_XFRM_ALGO=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -CONFIG_NET_KEY=y -# CONFIG_NET_KEY_MIGRATE is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_NETLABEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -CONFIG_VLAN_8021Q=y -# CONFIG_VLAN_8021Q_GVRP is not set -# CONFIG_VLAN_8021Q_MVRP is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -CONFIG_NET_PKTGEN=y -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -CONFIG_WIRELESS_EXT=y -CONFIG_WEXT_CORE=y -CONFIG_WEXT_PROC=y -CONFIG_WEXT_SPY=y -CONFIG_WEXT_PRIV=y -# CONFIG_CFG80211 is not set -CONFIG_LIB80211=y -CONFIG_LIB80211_CRYPT_WEP=y -CONFIG_LIB80211_CRYPT_CCMP=y -CONFIG_LIB80211_CRYPT_TKIP=y -# CONFIG_LIB80211_DEBUG is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_VIRTIO=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_NET_DEVLINK=y -CONFIG_FAILOVER=y -CONFIG_ETHTOOL_NETLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_ARM_AMBA=y -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCI_DOMAINS_GENERIC=y -CONFIG_PCI_SYSCALL=y -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_ECAM=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_PCIE_BUS_TUNE_OFF is not set -CONFIG_PCIE_BUS_DEFAULT=y -# CONFIG_PCIE_BUS_SAFE is not set -# CONFIG_PCIE_BUS_PERFORMANCE is not set -# CONFIG_PCIE_BUS_PEER2PEER is not set -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# -# CONFIG_PCI_FTPCI100 is not set -CONFIG_PCI_HOST_COMMON=y -CONFIG_PCI_HOST_GENERIC=y -# CONFIG_PCIE_XILINX is not set -CONFIG_PCI_XGENE=y -CONFIG_PCI_XGENE_MSI=y -CONFIG_PCIE_ALTERA=y -CONFIG_PCIE_ALTERA_MSI=y -CONFIG_PCI_HOST_THUNDER_PEM=y -CONFIG_PCI_HOST_THUNDER_ECAM=y -# CONFIG_PCIE_HISI_ERR is not set - -# -# DesignWare PCI Core Support -# -CONFIG_PCIE_DW=y -CONFIG_PCIE_DW_HOST=y -# CONFIG_PCIE_DW_PLAT_HOST is not set -CONFIG_PCI_LAYERSCAPE=y -CONFIG_PCI_HISI=y -CONFIG_PCIE_KIRIN=y -# CONFIG_PCI_MESON is not set -# CONFIG_PCIE_AL is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -CONFIG_PCIE_MOBIVEIL=y -CONFIG_PCIE_MOBIVEIL_HOST=y -CONFIG_PCIE_LAYERSCAPE_GEN4=y -# end of Mobiveil PCIe Core Support - -# -# Cadence PCIe controllers support -# -# CONFIG_PCIE_CADENCE_PLAT_HOST is not set -# CONFIG_PCI_J721E_HOST is not set -# end of Cadence PCIe controllers support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y -# CONFIG_FW_LOADER_COMPRESS is not set -CONFIG_FW_CACHE=y -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_SOC_BUS=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_BRCMSTB_GISB_ARB=y -# CONFIG_MOXTET is not set -CONFIG_SIMPLE_PM_BUS=y -CONFIG_VEXPRESS_CONFIG=y -CONFIG_FSL_MC_BUS=y -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_AFS_PARTS is not set -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=y -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_GEN_PROBE=y -CONFIG_MTD_CFI_ADV_OPTIONS=y -CONFIG_MTD_CFI_NOSWAP=y -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_GEOMETRY is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_OTP is not set -CONFIG_MTD_CFI_INTELEXT=y -CONFIG_MTD_CFI_AMDSTD=y -CONFIG_MTD_CFI_STAA=y -CONFIG_MTD_CFI_UTIL=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -CONFIG_MTD_PHYSMAP=y -# CONFIG_MTD_PHYSMAP_COMPAT is not set -CONFIG_MTD_PHYSMAP_OF=y -# CONFIG_MTD_PHYSMAP_VERSATILE is not set -# CONFIG_MTD_PHYSMAP_GEMINI is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -CONFIG_MTD_DATAFLASH=y -# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set -# CONFIG_MTD_DATAFLASH_OTP is not set -# CONFIG_MTD_MCHP23K256 is not set -CONFIG_MTD_SST25L=y -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -CONFIG_MTD_NAND_CORE=y -# CONFIG_MTD_ONENAND is not set -CONFIG_MTD_NAND_ECC_SW_HAMMING=y -# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set -CONFIG_MTD_RAW_NAND=y -# CONFIG_MTD_NAND_ECC_SW_BCH is not set - -# -# Raw/parallel NAND flash controllers -# -CONFIG_MTD_NAND_DENALI=y -# CONFIG_MTD_NAND_DENALI_PCI is not set -CONFIG_MTD_NAND_DENALI_DT=y -# CONFIG_MTD_NAND_CAFE is not set -# CONFIG_MTD_NAND_BRCMNAND is not set -CONFIG_MTD_NAND_FSL_IFC=y -# CONFIG_MTD_NAND_MXIC is not set -# CONFIG_MTD_NAND_GPIO is not set -# CONFIG_MTD_NAND_PLATFORM is not set -# CONFIG_MTD_NAND_CADENCE is not set -# CONFIG_MTD_NAND_ARASAN is not set - -# -# Misc -# -# CONFIG_MTD_NAND_NANDSIM is not set -# CONFIG_MTD_NAND_RICOH is not set -# CONFIG_MTD_NAND_DISKONCHIP is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# ECC engine support -# -CONFIG_MTD_NAND_ECC=y -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -CONFIG_MTD_UBI=y -CONFIG_MTD_UBI_WL_THRESHOLD=4096 -CONFIG_MTD_UBI_BEB_LIMIT=20 -# CONFIG_MTD_UBI_FASTMAP is not set -# CONFIG_MTD_UBI_GLUEBI is not set -# CONFIG_MTD_UBI_BLOCK is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -CONFIG_SRAM=y -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_HISI_HIKEY_USB is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -CONFIG_EEPROM_AT25=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# CONFIG_UACCE is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_HAVE_PATA_PLATFORM=y -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_WIREGUARD is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -CONFIG_MACVLAN=y -CONFIG_MACVTAP=y -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_BAREUDP is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -CONFIG_TAP=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_FREESCALE=y -# CONFIG_FSL_FMAN is not set -# CONFIG_FSL_PQ_MDIO is not set -CONFIG_FSL_XGMAC_MDIO=y -# CONFIG_GIANFAR is not set -CONFIG_FSL_DPAA2_ETH=y -CONFIG_FSL_DPAA2_PTP_CLOCK=y -CONFIG_FSL_ENETC=y -CONFIG_FSL_ENETC_VF=y -CONFIG_FSL_ENETC_MDIO=y -CONFIG_FSL_ENETC_PTP_CLOCK=y -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HISILICON is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -CONFIG_NET_VENDOR_XILINX=y -# CONFIG_XILINX_AXI_EMAC is not set -# CONFIG_XILINX_LL_TEMAC is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -CONFIG_FIXED_PHY=y -# CONFIG_SFP is not set - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -CONFIG_AQUANTIA_PHY=y -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -# CONFIG_MICROCHIP_T1_PHY is not set -CONFIG_MICROSEMI_PHY=y -# CONFIG_NATIONAL_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -CONFIG_AT803X_PHY=y -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -CONFIG_ROCKCHIP_PHY=y -CONFIG_SMSC_PHY=y -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -CONFIG_VITESSE_PHY=y -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -CONFIG_MDIO_BITBANG=y -# CONFIG_MDIO_BCM_UNIMAC is not set -CONFIG_MDIO_CAVIUM=y -# CONFIG_MDIO_GPIO is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MVUSB is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set -CONFIG_MDIO_THUNDER=y - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y -CONFIG_MDIO_BUS_MUX_MMIOREG=y - -# -# PCS device drivers -# -# CONFIG_PCS_XPCS is not set -CONFIG_PCS_LYNX=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -CONFIG_USB_PEGASUS=y -CONFIG_USB_RTL8150=y -CONFIG_USB_RTL8152=y -CONFIG_USB_LAN78XX=y -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -CONFIG_USB_NET_DM9601=y -# CONFIG_USB_NET_SR9700 is not set -CONFIG_USB_NET_SR9800=y -CONFIG_USB_NET_SMSC75XX=y -CONFIG_USB_NET_SMSC95XX=y -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -CONFIG_USB_NET_PLUSB=y -CONFIG_USB_NET_MCS7830=y -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -CONFIG_USB_NET_ZAURUS=y -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -CONFIG_HOSTAP=y -# CONFIG_HOSTAP_FIRMWARE is not set -# CONFIG_HOSTAP_PLX is not set -# CONFIG_HOSTAP_PCI is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_MICROCHIP=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -CONFIG_NET_FAILOVER=y -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -CONFIG_INPUT_POLLDEV=y -# CONFIG_INPUT_SPARSEKMAP is not set -CONFIG_INPUT_MATRIXKMAP=y - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ADC=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -CONFIG_KEYBOARD_GPIO=y -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -CONFIG_TOUCHSCREEN_ATMEL_MXT=y -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -# CONFIG_TOUCHSCREEN_ZINITIX is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_AXP20X_PEK is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_RK805_PWRKEY is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_IQS269A is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -# CONFIG_SERIO_SERPORT is not set -CONFIG_SERIO_AMBAKMI=y -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=16 -CONFIG_LDISC_AUTOLOAD=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -# CONFIG_SERIAL_8250_MANY_PORTS is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL010 is not set -CONFIG_SERIAL_AMBA_PL011=y -CONFIG_SERIAL_AMBA_PL011_CONSOLE=y -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -CONFIG_SERIAL_XILINX_PS_UART=y -CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -CONFIG_SERIAL_FSL_LPUART=y -CONFIG_SERIAL_FSL_LPUART_CONSOLE=y -CONFIG_SERIAL_FSL_LINFLEXUART=y -CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NOZOMI is not set -# CONFIG_NULL_TTY is not set -# CONFIG_TRACE_SINK is not set -CONFIG_HVC_DRIVER=y -# CONFIG_HVC_DCC is not set -CONFIG_SERIAL_DEV_BUS=y -CONFIG_SERIAL_DEV_CTRL_TTYPORT=y -# CONFIG_TTY_PRINTK is not set -CONFIG_VIRTIO_CONSOLE=y -CONFIG_IPMI_HANDLER=y -CONFIG_IPMI_DMI_DECODE=y -CONFIG_IPMI_PLAT_DATA=y -# CONFIG_IPMI_PANIC_EVENT is not set -CONFIG_IPMI_DEVICE_INTERFACE=y -CONFIG_IPMI_SI=y -# CONFIG_IPMI_SSIF is not set -# CONFIG_IPMI_WATCHDOG is not set -# CONFIG_IPMI_POWEROFF is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -# CONFIG_HW_RANDOM_VIRTIO is not set -CONFIG_HW_RANDOM_HISI_V2=y -CONFIG_HW_RANDOM_CAVIUM=y -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -# CONFIG_APPLICOM is not set -CONFIG_DEVMEM=y -# CONFIG_RAW_DRIVER is not set -CONFIG_DEVPORT=y -CONFIG_TCG_TPM=y -CONFIG_HW_RANDOM_TPM=y -# CONFIG_TCG_TIS is not set -# CONFIG_TCG_TIS_SPI is not set -# CONFIG_TCG_TIS_I2C_ATMEL is not set -CONFIG_TCG_TIS_I2C_INFINEON=y -# CONFIG_TCG_TIS_I2C_NUVOTON is not set -# CONFIG_TCG_ATMEL is not set -# CONFIG_TCG_INFINEON is not set -# CONFIG_TCG_CRB is not set -# CONFIG_TCG_VTPM_PROXY is not set -# CONFIG_TCG_TIS_ST33ZP24_I2C is not set -# CONFIG_TCG_TIS_ST33ZP24_SPI is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -CONFIG_I2C_MUX_PCA954x=y -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CADENCE is not set -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -CONFIG_I2C_GPIO=y -# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set -CONFIG_I2C_IMX=y -# CONFIG_I2C_NOMADIK is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -CONFIG_I2C_RK3X=y -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_THUNDERX is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_SLAVE_TESTUNIT is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -CONFIG_SPI_BITBANG=y -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_DESIGNWARE is not set -CONFIG_SPI_FSL_QUADSPI=y -# CONFIG_SPI_HISI_SFC_V3XX is not set -CONFIG_SPI_NXP_FLEXSPI=y -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -CONFIG_SPI_FSL_DSPI=y -# CONFIG_SPI_OC_TINY is not set -CONFIG_SPI_PL022=y -# CONFIG_SPI_PXA2XX is not set -CONFIG_SPI_ROCKCHIP=y -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_THUNDERX is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -CONFIG_SPI_SLAVE=y -CONFIG_SPI_SLAVE_TIME=y -CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y -CONFIG_SPI_DYNAMIC=y -CONFIG_SPMI=y -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y -CONFIG_PTP_1588_CLOCK_QORIQ=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set -# CONFIG_PTP_1588_CLOCK_IDTCM is not set -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_GENERIC_PINCTRL_GROUPS=y -CONFIG_PINMUX=y -CONFIG_GENERIC_PINMUX_FUNCTIONS=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -CONFIG_PINCTRL_SINGLE=y -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -CONFIG_PINCTRL_MAX77620=y -# CONFIG_PINCTRL_RK805 is not set -# CONFIG_PINCTRL_OCELOT is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y -CONFIG_GPIO_GENERIC=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_CADENCE is not set -CONFIG_GPIO_DWAPB=y -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_FTGPIO010 is not set -CONFIG_GPIO_GENERIC_PLATFORM=y -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -CONFIG_GPIO_MB86S7X=y -CONFIG_GPIO_MPC8XXX=y -CONFIG_GPIO_PL061=y -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -CONFIG_GPIO_XGENE=y -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -CONFIG_GPIO_MAX732X=y -# CONFIG_GPIO_MAX732X_IRQ is not set -CONFIG_GPIO_PCA953X=y -CONFIG_GPIO_PCA953X_IRQ=y -# CONFIG_GPIO_PCA9570 is not set -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_GPIO_BD9571MWV is not set -CONFIG_GPIO_MAX77620=y -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -CONFIG_POWER_RESET=y -CONFIG_POWER_RESET_BRCMSTB=y -CONFIG_POWER_RESET_GPIO=y -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_VEXPRESS=y -CONFIG_POWER_RESET_XGENE=y -CONFIG_POWER_RESET_SYSCON=y -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -CONFIG_REBOOT_MODE=y -CONFIG_SYSCON_REBOOT_MODE=y -# CONFIG_NVMEM_REBOOT_MODE is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_CW2015 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -CONFIG_BATTERY_SBS=y -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -CONFIG_BATTERY_BQ27XXX=y -CONFIG_BATTERY_BQ27XXX_I2C=y -# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set -# CONFIG_AXP20X_POWER is not set -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ2515X is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_BQ25980 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -# CONFIG_CHARGER_BD99954 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM1177 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -CONFIG_SENSORS_ARM_SCPI=y -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IBMAEM is not set -# CONFIG_SENSORS_IBMPEX is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2947_I2C is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX31730 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -CONFIG_SENSORS_LM90=y -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -CONFIG_PMBUS=y -CONFIG_SENSORS_PMBUS=y -# CONFIG_SENSORS_ADM1266 is not set -# CONFIG_SENSORS_ADM1275 is not set -# CONFIG_SENSORS_BEL_PFE is not set -# CONFIG_SENSORS_IBM_CFFPS is not set -# CONFIG_SENSORS_INSPUR_IPSPS is not set -# CONFIG_SENSORS_IR35221 is not set -# CONFIG_SENSORS_IR38064 is not set -# CONFIG_SENSORS_IRPS5401 is not set -# CONFIG_SENSORS_ISL68137 is not set -# CONFIG_SENSORS_LM25066 is not set -CONFIG_SENSORS_LTC2978=y -CONFIG_SENSORS_LTC2978_REGULATOR=y -# CONFIG_SENSORS_LTC3815 is not set -# CONFIG_SENSORS_MAX16064 is not set -# CONFIG_SENSORS_MAX16601 is not set -# CONFIG_SENSORS_MAX20730 is not set -# CONFIG_SENSORS_MAX20751 is not set -# CONFIG_SENSORS_MAX31785 is not set -# CONFIG_SENSORS_MAX34440 is not set -# CONFIG_SENSORS_MAX8688 is not set -# CONFIG_SENSORS_MP2975 is not set -# CONFIG_SENSORS_PXE1610 is not set -# CONFIG_SENSORS_TPS40422 is not set -# CONFIG_SENSORS_TPS53679 is not set -# CONFIG_SENSORS_UCD9000 is not set -# CONFIG_SENSORS_UCD9200 is not set -# CONFIG_SENSORS_XDPE122 is not set -# CONFIG_SENSORS_ZL6100 is not set -CONFIG_SENSORS_PWM_FAN=y -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -CONFIG_SENSORS_AMC6821=y -# CONFIG_SENSORS_INA209 is not set -CONFIG_SENSORS_INA2XX=y -CONFIG_SENSORS_INA3221=y -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_TMP513 is not set -# CONFIG_SENSORS_VEXPRESS is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -CONFIG_CPU_THERMAL=y -CONFIG_CPU_FREQ_THERMAL=y -# CONFIG_DEVFREQ_THERMAL is not set -CONFIG_THERMAL_EMULATION=y -# CONFIG_THERMAL_MMIO is not set -# CONFIG_MAX77620_THERMAL is not set -CONFIG_QORIQ_THERMAL=y -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -CONFIG_ARM_SP805_WATCHDOG=y -CONFIG_ARM_SBSA_WATCHDOG=y -# CONFIG_CADENCE_WATCHDOG is not set -CONFIG_DW_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_MAX77620_WATCHDOG is not set -CONFIG_IMX2_WDT=y -# CONFIG_ARM_SMC_WATCHDOG is not set -# CONFIG_ALIM7101_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -CONFIG_MFD_BD9571MWV=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_GATEWORKS_GSC is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MP2629 is not set -CONFIG_MFD_HI6421_PMIC=y -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_IQS62X is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -CONFIG_MFD_MAX77620=y -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6360 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -CONFIG_MFD_RK808=y -# CONFIG_MFD_RN5T618 is not set -CONFIG_MFD_SEC_CORE=y -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SL28CPLD is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -CONFIG_MFD_ROHM_BD718XX=y -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_ROHM_BD71828 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -CONFIG_MFD_VEXPRESS_SYSREG=y -# CONFIG_RAVE_SP_CORE is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -CONFIG_REGULATOR_AXP20X=y -CONFIG_REGULATOR_BD718XX=y -CONFIG_REGULATOR_BD9571MWV=y -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -CONFIG_REGULATOR_FAN53555=y -# CONFIG_REGULATOR_FAN53880 is not set -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_HI6421 is not set -CONFIG_REGULATOR_HI6421V530=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -CONFIG_REGULATOR_MAX77620=y -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -CONFIG_REGULATOR_MAX8973=y -# CONFIG_REGULATOR_MAX77826 is not set -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MP5416 is not set -# CONFIG_REGULATOR_MP8859 is not set -# CONFIG_REGULATOR_MP886X is not set -# CONFIG_REGULATOR_MPQ7920 is not set -# CONFIG_REGULATOR_MT6311 is not set -CONFIG_REGULATOR_PCA9450=y -CONFIG_REGULATOR_PFUZE100=y -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -CONFIG_REGULATOR_PWM=y -CONFIG_REGULATOR_QCOM_SPMI=y -# CONFIG_REGULATOR_QCOM_USB_VBUS is not set -CONFIG_REGULATOR_RK808=y -CONFIG_REGULATOR_ROHM=y -# CONFIG_REGULATOR_RT4801 is not set -# CONFIG_REGULATOR_RTMV20 is not set -# CONFIG_REGULATOR_S2MPA01 is not set -CONFIG_REGULATOR_S2MPS11=y -# CONFIG_REGULATOR_S5M8767 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_SY8827N is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -CONFIG_REGULATOR_VCTRL=y -# CONFIG_REGULATOR_VEXPRESS is not set -# CONFIG_REGULATOR_QCOM_LABIBB is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_VGA_ARB is not set -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# CONFIG_HID_MCP2221 is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -CONFIG_I2C_HID=y -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_FEW_INIT_RETRIES is not set -# CONFIG_USB_DYNAMIC_MINORS is not set -CONFIG_USB_OTG=y -# CONFIG_USB_OTG_PRODUCTLIST is not set -# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set -# CONFIG_USB_OTG_FSM is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -# CONFIG_USB_XHCI_PCI_RENESAS is not set -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -CONFIG_USB_ACM=y -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_GADGET=y -CONFIG_USB_CDNS3_HOST=y -CONFIG_USB_CDNS3_PCI_WRAP=y -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -CONFIG_USB_DWC3=y -# CONFIG_USB_DWC3_ULPI is not set -# CONFIG_USB_DWC3_HOST is not set -# CONFIG_USB_DWC3_GADGET is not set -CONFIG_USB_DWC3_DUAL_ROLE=y - -# -# Platform Glue Driver Support -# -CONFIG_USB_DWC3_PCI=y -CONFIG_USB_DWC3_HAPS=y -CONFIG_USB_DWC3_OF_SIMPLE=y -CONFIG_USB_DWC2=y -# CONFIG_USB_DWC2_HOST is not set - -# -# Gadget/Dual-role mode requires USB Gadget support to be enabled -# -# CONFIG_USB_DWC2_PERIPHERAL is not set -CONFIG_USB_DWC2_DUAL_ROLE=y -# CONFIG_USB_DWC2_PCI is not set -# CONFIG_USB_DWC2_DEBUG is not set -# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set -CONFIG_USB_CHIPIDEA=y -CONFIG_USB_CHIPIDEA_UDC=y -CONFIG_USB_CHIPIDEA_HOST=y -CONFIG_USB_CHIPIDEA_PCI=y -CONFIG_USB_CHIPIDEA_MSM=y -CONFIG_USB_CHIPIDEA_IMX=y -CONFIG_USB_CHIPIDEA_GENERIC=y -CONFIG_USB_CHIPIDEA_TEGRA=y -CONFIG_USB_ISP1760=y -CONFIG_USB_ISP1760_HCD=y -CONFIG_USB_ISP1761_UDC=y -# CONFIG_USB_ISP1760_HOST_ROLE is not set -# CONFIG_USB_ISP1760_GADGET_ROLE is not set -CONFIG_USB_ISP1760_DUAL_ROLE=y - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -CONFIG_USB_SERIAL_FTDI_SIO=y -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_APPLE_MFI_FASTCHARGE is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -CONFIG_USB_TEST=y -CONFIG_USB_EHSET_TEST_FIXTURE=y -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -CONFIG_USB_HSIC_USB3503=y -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -CONFIG_USB_ULPI=y -CONFIG_USB_ULPI_VIEWPORT=y -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG is not set -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 -# CONFIG_U_SERIAL_CONSOLE is not set - -# -# USB Peripheral Controller -# -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -CONFIG_USB_SNP_CORE=y -CONFIG_USB_SNP_UDC_PLAT=y -# CONFIG_USB_M66592 is not set -CONFIG_USB_BDC_UDC=y - -# -# Platform Support -# -CONFIG_USB_BDC_PCI=y -# CONFIG_USB_AMD5536UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_NET2280 is not set -# CONFIG_USB_GOKU is not set -# CONFIG_USB_EG20T is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_MAX3420_UDC is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -CONFIG_USB_LIBCOMPOSITE=y -CONFIG_USB_F_ACM=y -CONFIG_USB_F_SS_LB=y -CONFIG_USB_U_SERIAL=y -CONFIG_USB_U_ETHER=y -CONFIG_USB_F_SERIAL=y -CONFIG_USB_F_OBEX=y -CONFIG_USB_F_NCM=y -CONFIG_USB_F_ECM=y -CONFIG_USB_F_EEM=y -CONFIG_USB_F_SUBSET=y -CONFIG_USB_F_RNDIS=y -CONFIG_USB_F_MASS_STORAGE=y -CONFIG_USB_F_FS=y -CONFIG_USB_F_HID=y -CONFIG_USB_CONFIGFS=y -CONFIG_USB_CONFIGFS_SERIAL=y -CONFIG_USB_CONFIGFS_ACM=y -CONFIG_USB_CONFIGFS_OBEX=y -CONFIG_USB_CONFIGFS_NCM=y -CONFIG_USB_CONFIGFS_ECM=y -CONFIG_USB_CONFIGFS_ECM_SUBSET=y -CONFIG_USB_CONFIGFS_RNDIS=y -CONFIG_USB_CONFIGFS_EEM=y -CONFIG_USB_CONFIGFS_MASS_STORAGE=y -CONFIG_USB_CONFIGFS_F_LB_SS=y -CONFIG_USB_CONFIGFS_F_FS=y -CONFIG_USB_CONFIGFS_F_HID=y -# CONFIG_USB_CONFIGFS_F_PRINTER is not set - -# -# USB Gadget precomposed configurations -# -# CONFIG_USB_ZERO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_MASS_STORAGE is not set -CONFIG_USB_G_SERIAL=y -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set -# CONFIG_USB_RAW_GADGET is not set -# end of USB Gadget precomposed configurations - -CONFIG_TYPEC=y -CONFIG_TYPEC_TCPM=y -CONFIG_TYPEC_TCPCI=y -# CONFIG_TYPEC_RT1711H is not set -# CONFIG_TYPEC_TCPCI_MAXIM is not set -# CONFIG_TYPEC_FUSB302 is not set -# CONFIG_TYPEC_UCSI is not set -# CONFIG_TYPEC_HD3SS3220 is not set -# CONFIG_TYPEC_TPS6598X is not set -# CONFIG_TYPEC_STUSB160X is not set - -# -# USB Type-C Multiplexer/DeMultiplexer Switch support -# -# CONFIG_TYPEC_MUX_PI3USB30532 is not set -# end of USB Type-C Multiplexer/DeMultiplexer Switch support - -# -# USB Type-C Alternate Mode drivers -# -# CONFIG_TYPEC_DP_ALTMODE is not set -# end of USB Type-C Alternate Mode drivers - -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_ARMMMCI=y -CONFIG_MMC_STM32_SDMMC=y -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -# CONFIG_MMC_SDHCI_PCI is not set -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -CONFIG_MMC_SDHCI_OF_ARASAN=y -# CONFIG_MMC_SDHCI_OF_ASPEED is not set -# CONFIG_MMC_SDHCI_OF_AT91 is not set -CONFIG_MMC_SDHCI_OF_ESDHC=y -# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set -CONFIG_MMC_SDHCI_CADENCE=y -CONFIG_MMC_SDHCI_F_SDH30=y -# CONFIG_MMC_SDHCI_MILBEAUT is not set -# CONFIG_MMC_TIFM_SD is not set -CONFIG_MMC_SPI=y -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -CONFIG_MMC_DW_EXYNOS=y -CONFIG_MMC_DW_HI3798CV200=y -CONFIG_MMC_DW_K3=y -# CONFIG_MMC_DW_PCI is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MMC_SDHCI_OMAP is not set -# CONFIG_MMC_SDHCI_AM654 is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_CLASS_MULTICOLOR is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_AW2013 is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP50XX is not set -# CONFIG_LEDS_LP55XX_COMMON is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -CONFIG_LEDS_PWM=y -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -CONFIG_LEDS_SYSCON=y -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -# CONFIG_LEDS_TRIGGERS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_GHES=y -# CONFIG_EDAC_LAYERSCAPE is not set -# CONFIG_EDAC_THUNDERX is not set -# CONFIG_EDAC_XGENE is not set -# CONFIG_EDAC_DMC520 is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_DS1307=y -# CONFIG_RTC_DRV_DS1307_CENTURY is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -CONFIG_RTC_DRV_MAX77686=y -CONFIG_RTC_DRV_RK808=y -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -CONFIG_RTC_DRV_PCF85363=y -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -CONFIG_RTC_DRV_RX8581=y -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV3032 is not set -# CONFIG_RTC_DRV_RV8803 is not set -CONFIG_RTC_DRV_S5M=y -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -CONFIG_RTC_DRV_DS3232=y -CONFIG_RTC_DRV_DS3232_HWMON=y -CONFIG_RTC_DRV_PCF2127=y -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -CONFIG_RTC_DRV_EFI=y -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_FSL_FTM_ALARM=y -# CONFIG_RTC_DRV_PL030 is not set -CONFIG_RTC_DRV_PL031=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_ACPI=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_AMBA_PL08X is not set -# CONFIG_DW_AXI_DMAC is not set -CONFIG_FSL_EDMA=y -# CONFIG_FSL_QDMA is not set -# CONFIG_HISI_DMA is not set -# CONFIG_INTEL_IDMA64 is not set -CONFIG_MV_XOR_V2=y -CONFIG_PL330_DMA=y -# CONFIG_PLX_DMA is not set -# CONFIG_XILINX_DMA is not set -# CONFIG_XILINX_ZYNQMP_DMA is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -CONFIG_QCOM_HIDMA_MGMT=y -CONFIG_QCOM_HIDMA=y -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_SF_PDMA is not set -# CONFIG_FSL_DPAA2_QDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -CONFIG_DMATEST=y -CONFIG_DMA_ENGINE_RAID=y - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_MOVE_NOTIFY is not set -# CONFIG_DMABUF_SELFTESTS is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -CONFIG_UIO=y -CONFIG_UIO_CIF=y -CONFIG_UIO_PDRV_GENIRQ=y -CONFIG_UIO_DMEM_GENIRQ=y -CONFIG_UIO_AEC=y -CONFIG_UIO_SERCOS3=y -CONFIG_UIO_PCI_GENERIC=y -CONFIG_UIO_NETX=y -# CONFIG_UIO_PRUSS is not set -CONFIG_UIO_MF624=y -CONFIG_VFIO_IOMMU_TYPE1=y -CONFIG_VFIO_VIRQFD=y -CONFIG_VFIO=y -# CONFIG_VFIO_NOIOMMU is not set -CONFIG_VFIO_PCI=y -CONFIG_VFIO_PCI_MMAP=y -CONFIG_VFIO_PCI_INTX=y -# CONFIG_VFIO_PLATFORM is not set -# CONFIG_VFIO_MDEV is not set -CONFIG_VFIO_FSL_MC=y -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -CONFIG_VIRTIO_PCI_LEGACY=y -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -CONFIG_VIRTIO_MMIO=y -# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -CONFIG_STAGING=y -# CONFIG_COMEDI is not set -# CONFIG_RTS5208 is not set - -# -# IIO staging drivers -# - -# -# Accelerometers -# -# CONFIG_ADIS16203 is not set -# CONFIG_ADIS16240 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7816 is not set -# CONFIG_AD7280 is not set -# end of Analog to digital converters - -# -# Analog digital bi-direction converters -# -# CONFIG_ADT7316 is not set -# end of Analog digital bi-direction converters - -# -# Capacitance to digital converters -# -# CONFIG_AD7150 is not set -# CONFIG_AD7746 is not set -# end of Capacitance to digital converters - -# -# Direct Digital Synthesis -# -# CONFIG_AD9832 is not set -# CONFIG_AD9834 is not set -# end of Direct Digital Synthesis - -# -# Network Analyzer, Impedance Converters -# -# CONFIG_AD5933 is not set -# end of Network Analyzer, Impedance Converters - -# -# Active energy metering IC -# -# CONFIG_ADE7854 is not set -# end of Active energy metering IC - -# -# Resolver to digital converters -# -# CONFIG_AD2S1210 is not set -# end of Resolver to digital converters -# end of IIO staging drivers - -CONFIG_STAGING_MEDIA=y - -# -# Android -# -# end of Android - -# CONFIG_STAGING_BOARD is not set -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -CONFIG_FSL_DPAA2=y -# CONFIG_KS7010 is not set -# CONFIG_PI433 is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - -# CONFIG_XIL_AXIS_FIFO is not set -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_KPC2000 is not set -# CONFIG_QLGE is not set -# CONFIG_SPMI_HISI3670 is not set -# CONFIG_MFD_HI6421_SPMI is not set -# CONFIG_GOLDFISH is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_HAVE_CLK=y -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y -# CONFIG_COMMON_CLK_MAX77686 is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -CONFIG_COMMON_CLK_RK808=y -CONFIG_COMMON_CLK_SCPI=y -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -CONFIG_COMMON_CLK_CS2000_CP=y -# CONFIG_COMMON_CLK_FSL_SAI is not set -CONFIG_COMMON_CLK_S2MPS11=y -CONFIG_CLK_QORIQ=y -CONFIG_CLK_LS1028A_PLLDIG=y -CONFIG_COMMON_CLK_XGENE=y -CONFIG_COMMON_CLK_PWM=y -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_BD718XX is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_HWSPINLOCK=y - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_ACPI=y -CONFIG_TIMER_PROBE=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y -CONFIG_FSL_ERRATUM_A008585=y -# CONFIG_HISILICON_ERRATUM_161010101 is not set -# CONFIG_ARM64_ERRATUM_858921 is not set -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_ARM_MHU=y -CONFIG_PLATFORM_MHU=y -# CONFIG_PL320_MBOX is not set -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_MAILBOX_TEST is not set -CONFIG_IOMMU_IOVA=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -CONFIG_IOMMU_IO_PGTABLE=y -CONFIG_IOMMU_IO_PGTABLE_LPAE=y -# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set -# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y -CONFIG_OF_IOMMU=y -CONFIG_IOMMU_DMA=y -CONFIG_ARM_SMMU=y -# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set -# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set -CONFIG_ARM_SMMU_V3=y -# CONFIG_ARM_SMMU_V3_SVA is not set -# CONFIG_VIRTIO_IOMMU is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -CONFIG_RPMSG=y -# CONFIG_RPMSG_CHAR is not set -CONFIG_RPMSG_QCOM_GLINK=y -CONFIG_RPMSG_QCOM_GLINK_RPM=y -CONFIG_RPMSG_VIRTIO=y -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_FSL_DPAA is not set -# CONFIG_QUICC_ENGINE is not set -CONFIG_FSL_GUTS=y -CONFIG_FSL_MC_DPIO=y -CONFIG_DPAA2_CONSOLE=y -CONFIG_FSL_RCPM=y -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -CONFIG_EXTCON_USB_GPIO=y -CONFIG_MEMORY=y -# CONFIG_ARM_PL172_MPMC is not set -CONFIG_FSL_IFC=y -CONFIG_IIO=y -CONFIG_IIO_BUFFER=y -# CONFIG_IIO_BUFFER_CB is not set -# CONFIG_IIO_BUFFER_DMA is not set -# CONFIG_IIO_BUFFER_DMAENGINE is not set -# CONFIG_IIO_BUFFER_HW_CONSUMER is not set -CONFIG_IIO_KFIFO_BUF=y -# CONFIG_IIO_TRIGGERED_BUFFER is not set -# CONFIG_IIO_CONFIGFS is not set -CONFIG_IIO_TRIGGER=y -CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set -# CONFIG_IIO_TRIGGERED_EVENT is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMA400 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7091R5 is not set -# CONFIG_AD7124 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7292 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -# CONFIG_AD9467 is not set -# CONFIG_ADI_AXI_ADC is not set -# CONFIG_AXP20X_ADC is not set -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2496 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1241 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_QCOM_SPMI_IADC is not set -# CONFIG_QCOM_SPMI_VADC is not set -# CONFIG_QCOM_SPMI_ADC5 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# CONFIG_HMC425 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_ATLAS_EZO_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_PMS7003 is not set -# CONFIG_SCD30_CORE is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5770R is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS290 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HDC2010 is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16475 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_FXOS8700_I2C is not set -# CONFIG_FXOS8700_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_ICM42600_I2C is not set -# CONFIG_INV_ICM42600_SPI is not set -# CONFIG_INV_MPU6050_I2C is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ACPI_ALS is not set -# CONFIG_ADJD_S311 is not set -# CONFIG_ADUX1020 is not set -# CONFIG_AL3010 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_AS73211 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP002 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6030 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Triggers - standalone -# -# CONFIG_IIO_INTERRUPT_TRIGGER is not set -# CONFIG_IIO_SYSFS_TRIGGER is not set -# end of Triggers - standalone - -# -# Linear and angular position sensors -# -# end of Linear and angular position sensors - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DLHL60D is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_ICP10100 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_PING is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9310 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VCNL3020 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_LTC2983 is not set -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_DEBUG is not set -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -CONFIG_ARM_GIC_V2M=y -CONFIG_ARM_GIC_V3=y -CONFIG_ARM_GIC_V3_ITS=y -CONFIG_ARM_GIC_V3_ITS_PCI=y -CONFIG_ARM_GIC_V3_ITS_FSL_MC=y -# CONFIG_AL_FIC is not set -CONFIG_LS_EXTIRQ=y -CONFIG_LS_SCFG_MSI=y -CONFIG_PARTITION_PERCPU=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -# CONFIG_RESET_BRCMSTB_RESCAL is not set -# CONFIG_RESET_INTEL_GW is not set -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_XGENE=y -# CONFIG_USB_LGM_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -CONFIG_PHY_FSL_IMX8MQ_USB=y -CONFIG_PHY_MIXEL_MIPI_DPHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -CONFIG_PHY_QCOM_USB_HS=y -# CONFIG_PHY_QCOM_USB_HSIC is not set -CONFIG_PHY_SAMSUNG_USB2=y -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -# CONFIG_ARM_CMN is not set -CONFIG_ARM_PMU=y -CONFIG_ARM_PMU_ACPI=y -# CONFIG_ARM_SMMU_V3_PMU is not set -# CONFIG_ARM_DSU_PMU is not set -# CONFIG_ARM_SPE_PMU is not set -# CONFIG_HISI_PMU is not set -# end of Performance monitor support - -CONFIG_RAS=y -# CONFIG_USB4 is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -# CONFIG_NVMEM_SPMI_SDAM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_MULTIPLEXER=y - -# -# Multiplexer drivers -# -# CONFIG_MUX_ADG792A is not set -# CONFIG_MUX_ADGS1408 is not set -# CONFIG_MUX_GPIO is not set -CONFIG_MUX_MMIO=y -# end of Multiplexer drivers - -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -# CONFIG_QUOTA_NETLINK_INTERFACE is not set -# CONFIG_PRINT_QUOTA_WARNING is not set -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -CONFIG_CUSE=y -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_TMPFS_INODE64 is not set -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_UBIFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -# CONFIG_SQUASHFS_ZLIB is not set -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -CONFIG_PSTORE=y -# CONFIG_PSTORE_DEFLATE_COMPRESS is not set -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_RAM is not set -# CONFIG_PSTORE_BLK is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_TRUSTED_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -# CONFIG_SECURITY_NETWORK is not set -# CONFIG_SECURITY_PATH is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_SECURITY_SMACK is not set -# CONFIG_SECURITY_TOMOYO is not set -# CONFIG_SECURITY_APPARMOR is not set -# CONFIG_SECURITY_LOADPIN is not set -# CONFIG_SECURITY_YAMA is not set -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -# CONFIG_IMA is not set -# CONFIG_EVM is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -CONFIG_CRYPTO_USER=y -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_GF128MUL=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_CRYPTD=y -CONFIG_CRYPTO_AUTHENC=y -CONFIG_CRYPTO_SIMD=y -CONFIG_CRYPTO_ENGINE=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -CONFIG_CRYPTO_CCM=y -# CONFIG_CRYPTO_GCM is not set -CONFIG_CRYPTO_CHACHA20POLY1305=y -# CONFIG_CRYPTO_AEGIS128 is not set -CONFIG_CRYPTO_SEQIV=y -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -CONFIG_CRYPTO_CTR=y -CONFIG_CRYPTO_CTS=y -CONFIG_CRYPTO_ECB=y -CONFIG_CRYPTO_LRW=y -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -CONFIG_CRYPTO_XTS=y -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_GHASH is not set -CONFIG_CRYPTO_POLY1305=y -CONFIG_CRYPTO_MD4=y -CONFIG_CRYPTO_MD5=y -CONFIG_CRYPTO_MICHAEL_MIC=y -CONFIG_CRYPTO_RMD128=y -CONFIG_CRYPTO_RMD160=y -CONFIG_CRYPTO_RMD256=y -CONFIG_CRYPTO_RMD320=y -CONFIG_CRYPTO_SHA1=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -CONFIG_CRYPTO_SHA3=y -CONFIG_CRYPTO_SM3=y -# CONFIG_CRYPTO_STREEBOG is not set -CONFIG_CRYPTO_TGR192=y -CONFIG_CRYPTO_WP512=y - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=y -CONFIG_CRYPTO_BLOWFISH=y -CONFIG_CRYPTO_BLOWFISH_COMMON=y -CONFIG_CRYPTO_CAMELLIA=y -CONFIG_CRYPTO_CAST_COMMON=y -CONFIG_CRYPTO_CAST5=y -CONFIG_CRYPTO_CAST6=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -CONFIG_CRYPTO_CHACHA20=y -# CONFIG_CRYPTO_SEED is not set -CONFIG_CRYPTO_SERPENT=y -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -CONFIG_CRYPTO_TWOFISH=y -CONFIG_CRYPTO_TWOFISH_COMMON=y - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -CONFIG_CRYPTO_ZSTD=y - -# -# Random Number Generation -# -CONFIG_CRYPTO_ANSI_CPRNG=y -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -CONFIG_CRYPTO_USER_API=y -CONFIG_CRYPTO_USER_API_HASH=y -CONFIG_CRYPTO_USER_API_SKCIPHER=y -CONFIG_CRYPTO_USER_API_RNG=y -# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set -CONFIG_CRYPTO_USER_API_AEAD=y -CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y -# CONFIG_CRYPTO_STATS is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_LIB_ARC4=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=y -CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 -CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y -CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y -CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y -CONFIG_CRYPTO_DEV_FSL_CAAM=y -# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set -CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y -CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 -# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set -CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y -CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set -CONFIG_CRYPTO_DEV_VIRTIO=y -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_HISI_SEC is not set -# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set -# CONFIG_CRYPTO_DEV_HISI_ZIP is not set -# CONFIG_CRYPTO_DEV_HISI_HPRE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -CONFIG_PACKING=y -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_ARCH_USE_SYM_ANNOTATIONS=y -CONFIG_INDIRECT_PIO=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -CONFIG_CRC_ITU_T=y -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -CONFIG_CRC7=y -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_DECOMPRESS_ZSTD=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_INTERVAL_TREE=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_DMA_OPS=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_SWIOTLB=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_COHERENT_POOL=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_DIRECT_REMAP=y -CONFIG_DMA_CMA=y -# CONFIG_DMA_PERNUMA_CMA is not set - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=320 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_LIBFDT=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_GENERIC_VDSO_TIME_NS=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_COMPRESSED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -CONFIG_SCHED_INFO=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set -# CONFIG_DEBUG_PREEMPT is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_HAVE_DEBUG_BUGVERBOSE=y - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set - -# -# arm64 Debugging -# -CONFIG_PID_IN_CONTEXTIDR=y -# CONFIG_DEBUG_EFI is not set -# CONFIG_CORESIGHT is not set -# end of arm64 Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_MIN_HEAP is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -# CONFIG_TEST_FREE_PAGES is not set -CONFIG_MEMTEST=y -# end of Kernel Testing and Coverage -# end of Kernel hacking diff --git a/mainboards/solidrun/honeycomblx2k/config-5.4.47 b/mainboards/solidrun/honeycomblx2k/config-5.4.47 deleted file mode 100644 index 0d70767e..00000000 --- a/mainboards/solidrun/honeycomblx2k/config-5.4.47 +++ /dev/null @@ -1,5187 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm64 5.4.47 Kernel Configuration -# - -# -# Compiler: aarch64-linux-gnu-gcc (Ubuntu 10.3.0-1ubuntu1~20.10) 10.3.0 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=100300 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_SWAP=y -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -CONFIG_POSIX_MQUEUE=y -CONFIG_POSIX_MQUEUE_SYSCTL=y -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -CONFIG_IRQ_MSI_IOMMU=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_ARCH_HAS_TICK_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -# CONFIG_PREEMPT_NONE is not set -# CONFIG_PREEMPT_VOLUNTARY is not set -CONFIG_PREEMPT=y -CONFIG_PREEMPT_COUNT=y -CONFIG_PREEMPTION=y - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -CONFIG_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_SCHED_AVG_IRQ=y -CONFIG_BSD_PROCESS_ACCT=y -CONFIG_BSD_PROCESS_ACCT_V3=y -CONFIG_TASKSTATS=y -CONFIG_TASK_DELAY_ACCT=y -CONFIG_TASK_XACCT=y -CONFIG_TASK_IO_ACCOUNTING=y -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -CONFIG_CPU_ISOLATION=y - -# -# RCU Subsystem -# -CONFIG_PREEMPT_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# CONFIG_UCLAMP_TASK is not set -# end of Scheduler features - -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_SUPPORTS_INT128=y -CONFIG_CGROUPS=y -CONFIG_PAGE_COUNTER=y -CONFIG_MEMCG=y -CONFIG_MEMCG_SWAP=y -CONFIG_MEMCG_SWAP_ENABLED=y -CONFIG_MEMCG_KMEM=y -CONFIG_BLK_CGROUP=y -CONFIG_CGROUP_WRITEBACK=y -CONFIG_CGROUP_SCHED=y -CONFIG_FAIR_GROUP_SCHED=y -# CONFIG_CFS_BANDWIDTH is not set -# CONFIG_RT_GROUP_SCHED is not set -CONFIG_CGROUP_PIDS=y -# CONFIG_CGROUP_RDMA is not set -CONFIG_CGROUP_FREEZER=y -CONFIG_CGROUP_HUGETLB=y -CONFIG_CPUSETS=y -CONFIG_PROC_PID_CPUSET=y -CONFIG_CGROUP_DEVICE=y -CONFIG_CGROUP_CPUACCT=y -CONFIG_CGROUP_PERF=y -# CONFIG_CGROUP_DEBUG is not set -# CONFIG_NAMESPACES is not set -CONFIG_CHECKPOINT_RESTORE=y -CONFIG_SCHED_AUTOGROUP=y -# CONFIG_SYSFS_DEPRECATED is not set -CONFIG_RELAY=y -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../flashinitramfs.cpio" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".xz" -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -CONFIG_SYSFS_SYSCALL=y -# CONFIG_SYSCTL_SYSCALL is not set -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -CONFIG_KALLSYMS_ALL=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_BPF_SYSCALL is not set -# CONFIG_USERFAULTFD is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -CONFIG_RSEQ=y -# CONFIG_DEBUG_RSEQ is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# end of Kernel Performance Events And Counters - -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_COMPAT_BRK is not set -CONFIG_SLAB=y -# CONFIG_SLUB is not set -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -CONFIG_PROFILING=y -# end of General setup - -CONFIG_ARM64=y -CONFIG_64BIT=y -CONFIG_MMU=y -CONFIG_ARM64_PAGE_SHIFT=12 -CONFIG_ARM64_CONT_SHIFT=4 -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=33 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ZONE_DMA32=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y -CONFIG_SMP=y -CONFIG_KERNEL_MODE_NEON=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARCH_PROC_KCORE_TEXT=y - -# -# Platform selection -# -# CONFIG_ARCH_ACTIONS is not set -# CONFIG_ARCH_AGILEX is not set -# CONFIG_ARCH_SUNXI is not set -# CONFIG_ARCH_ALPINE is not set -# CONFIG_ARCH_BCM2835 is not set -# CONFIG_ARCH_BCM_IPROC is not set -# CONFIG_ARCH_BERLIN is not set -# CONFIG_ARCH_BITMAIN is not set -# CONFIG_ARCH_BRCMSTB is not set -# CONFIG_ARCH_EXYNOS is not set -# CONFIG_ARCH_K3 is not set -CONFIG_ARCH_LAYERSCAPE=y -# CONFIG_ARCH_LG1K is not set -# CONFIG_ARCH_HISI is not set -# CONFIG_ARCH_MEDIATEK is not set -# CONFIG_ARCH_MESON is not set -# CONFIG_ARCH_MVEBU is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_HAVE_IMX_BUSFREQ is not set -# CONFIG_ARCH_QCOM is not set -# CONFIG_ARCH_REALTEK is not set -# CONFIG_ARCH_RENESAS is not set -# CONFIG_ARCH_ROCKCHIP is not set -# CONFIG_ARCH_S32 is not set -# CONFIG_ARCH_SEATTLE is not set -# CONFIG_ARCH_STRATIX10 is not set -# CONFIG_ARCH_SYNQUACER is not set -# CONFIG_ARCH_TEGRA is not set -# CONFIG_ARCH_SPRD is not set -# CONFIG_ARCH_THUNDER is not set -# CONFIG_ARCH_THUNDER2 is not set -# CONFIG_ARCH_UNIPHIER is not set -# CONFIG_ARCH_VEXPRESS is not set -# CONFIG_ARCH_XGENE is not set -# CONFIG_ARCH_ZX is not set -# CONFIG_ARCH_ZYNQMP is not set -# end of Platform selection - -# -# Kernel Features -# - -# -# ARM errata workarounds via the alternatives framework -# -CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y -CONFIG_ARM64_ERRATUM_826319=y -CONFIG_ARM64_ERRATUM_827319=y -CONFIG_ARM64_ERRATUM_824069=y -CONFIG_ARM64_ERRATUM_819472=y -CONFIG_ARM64_ERRATUM_832075=y -CONFIG_ARM64_ERRATUM_834220=y -CONFIG_ARM64_ERRATUM_843419=y -CONFIG_ARM64_ERRATUM_1024718=y -CONFIG_ARM64_ERRATUM_1165522=y -CONFIG_ARM64_ERRATUM_1286807=y -CONFIG_ARM64_ERRATUM_1463225=y -CONFIG_ARM64_ERRATUM_1542419=y -CONFIG_CAVIUM_ERRATUM_22375=y -CONFIG_CAVIUM_ERRATUM_23154=y -CONFIG_CAVIUM_ERRATUM_27456=y -CONFIG_CAVIUM_ERRATUM_30115=y -CONFIG_CAVIUM_TX2_ERRATUM_219=y -CONFIG_QCOM_FALKOR_ERRATUM_1003=y -CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y -CONFIG_QCOM_FALKOR_ERRATUM_1009=y -CONFIG_QCOM_QDF2400_ERRATUM_0065=y -CONFIG_SOCIONEXT_SYNQUACER_PREITS=y -CONFIG_HISILICON_ERRATUM_161600802=y -CONFIG_QCOM_FALKOR_ERRATUM_E1041=y -CONFIG_FUJITSU_ERRATUM_010001=y -# end of ARM errata workarounds via the alternatives framework - -CONFIG_ARM64_4K_PAGES=y -# CONFIG_ARM64_16K_PAGES is not set -# CONFIG_ARM64_64K_PAGES is not set -# CONFIG_ARM64_VA_BITS_39 is not set -CONFIG_ARM64_VA_BITS_48=y -CONFIG_ARM64_VA_BITS=48 -CONFIG_ARM64_PA_BITS_48=y -CONFIG_ARM64_PA_BITS=48 -# CONFIG_CPU_BIG_ENDIAN is not set -CONFIG_SCHED_MC=y -# CONFIG_SCHED_SMT is not set -CONFIG_NR_CPUS=16 -CONFIG_HOTPLUG_CPU=y -# CONFIG_NUMA is not set -CONFIG_HOLES_IN_ZONE=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_HW_PERF_EVENTS=y -CONFIG_SYS_SUPPORTS_HUGETLBFS=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_SIG is not set -# CONFIG_CRASH_DUMP is not set -# CONFIG_XEN is not set -CONFIG_FORCE_MAX_ZONEORDER=11 -CONFIG_UNMAP_KERNEL_AT_EL0=y -CONFIG_HARDEN_BRANCH_PREDICTOR=y -CONFIG_HARDEN_EL2_VECTORS=y -CONFIG_ARM64_SSBD=y -CONFIG_RODATA_FULL_DEFAULT_ENABLED=y -# CONFIG_ARM64_SW_TTBR0_PAN is not set -CONFIG_ARM64_TAGGED_ADDR_ABI=y -# CONFIG_COMPAT is not set - -# -# ARMv8.1 architectural features -# -CONFIG_ARM64_HW_AFDBM=y -CONFIG_ARM64_PAN=y -CONFIG_ARM64_LSE_ATOMICS=y -CONFIG_ARM64_VHE=y -# end of ARMv8.1 architectural features - -# -# ARMv8.2 architectural features -# -CONFIG_ARM64_UAO=y -# CONFIG_ARM64_PMEM is not set -CONFIG_ARM64_RAS_EXTN=y -CONFIG_ARM64_CNP=y -# end of ARMv8.2 architectural features - -# -# ARMv8.3 architectural features -# -CONFIG_ARM64_PTR_AUTH=y -# end of ARMv8.3 architectural features - -# CONFIG_ARM64_SVE is not set -# CONFIG_ARM64_PSEUDO_NMI is not set -CONFIG_RELOCATABLE=y -CONFIG_RANDOMIZE_BASE=y -CONFIG_RANDOMIZE_MODULE_REGION_FULL=y -CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y -CONFIG_STACKPROTECTOR_PER_TASK=y -# end of Kernel Features - -# -# Boot options -# -# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set -CONFIG_CMDLINE="" -# CONFIG_CMDLINE_FORCE is not set -CONFIG_EFI_STUB=y -CONFIG_EFI=y -CONFIG_DMI=y -# end of Boot options - -CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -# CONFIG_HIBERNATION is not set -CONFIG_PM_SLEEP=y -CONFIG_PM_SLEEP_SMP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -# CONFIG_PM_ADVANCED_DEBUG is not set -CONFIG_PM_TEST_SUSPEND=y -CONFIG_PM_SLEEP_DEBUG=y -# CONFIG_DPM_WATCHDOG is not set -CONFIG_PM_CLK=y -CONFIG_PM_GENERIC_DOMAINS=y -CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y -CONFIG_PM_GENERIC_DOMAINS_SLEEP=y -CONFIG_PM_GENERIC_DOMAINS_OF=y -CONFIG_CPU_PM=y -# CONFIG_ENERGY_MODEL is not set -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# CPU Power Management -# - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y -# CONFIG_CPU_IDLE_GOV_LADDER is not set -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_CPU_IDLE_GOV_TEO is not set -CONFIG_DT_IDLE_STATES=y - -# -# ARM CPU Idle Drivers -# -CONFIG_ARM_CPUIDLE=y -CONFIG_ARM_PSCI_CPUIDLE=y -# end of ARM CPU Idle Drivers -# end of CPU Idle - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -CONFIG_CPU_FREQ_GOV_ATTR_SET=y -CONFIG_CPU_FREQ_GOV_COMMON=y -CONFIG_CPU_FREQ_STAT=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -CONFIG_CPU_FREQ_GOV_POWERSAVE=y -CONFIG_CPU_FREQ_GOV_USERSPACE=y -CONFIG_CPU_FREQ_GOV_ONDEMAND=y -CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y -CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y - -# -# CPU frequency scaling drivers -# -CONFIG_CPUFREQ_DT=y -CONFIG_CPUFREQ_DT_PLATDEV=y -CONFIG_ACPI_CPPC_CPUFREQ=y -CONFIG_ARM_SCPI_CPUFREQ=y -CONFIG_QORIQ_CPUFREQ=y -# end of CPU Frequency scaling -# end of CPU Power Management - -# -# Firmware Drivers -# -# CONFIG_ARM_SCMI_PROTOCOL is not set -CONFIG_ARM_SCPI_PROTOCOL=y -CONFIG_ARM_SCPI_POWER_DOMAIN=y -# CONFIG_ARM_SDE_INTERFACE is not set -# CONFIG_FIRMWARE_MEMMAP is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -# CONFIG_FW_CFG_SYSFS is not set -CONFIG_HAVE_ARM_SMCCC=y -CONFIG_ARM_PSCI_FW=y -# CONFIG_ARM_PSCI_CHECKER is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_PARAMS_FROM_FDT=y -CONFIG_EFI_RUNTIME_WRAPPERS=y -CONFIG_EFI_ARMSTUB=y -CONFIG_EFI_ARMSTUB_DTB_LOADER=y -CONFIG_EFI_CAPSULE_LOADER=y -# CONFIG_EFI_TEST is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# end of EFI (Extensible Firmware Interface) Support - -CONFIG_UEFI_CPER=y -CONFIG_UEFI_CPER_ARM=y -CONFIG_EFI_EARLYCON=y - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -CONFIG_ARCH_SUPPORTS_ACPI=y -CONFIG_ACPI=y -CONFIG_ACPI_GENERIC_GSI=y -CONFIG_ACPI_CCA_REQUIRED=y -# CONFIG_ACPI_DEBUGGER is not set -CONFIG_ACPI_SPCR_TABLE=y -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -# CONFIG_ACPI_BATTERY is not set -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_TAD is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_MCFG=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -# CONFIG_ACPI_IPMI is not set -CONFIG_ACPI_HOTPLUG_CPU=y -CONFIG_ACPI_THERMAL=y -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HED=y -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y -CONFIG_HAVE_ACPI_APEI=y -CONFIG_ACPI_APEI=y -CONFIG_ACPI_APEI_GHES=y -CONFIG_ACPI_APEI_PCIEAER=y -CONFIG_ACPI_APEI_SEA=y -CONFIG_ACPI_APEI_MEMORY_FAILURE=y -CONFIG_ACPI_APEI_EINJ=y -# CONFIG_ACPI_APEI_ERST_DEBUG is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -CONFIG_ACPI_IORT=y -CONFIG_ACPI_GTDT=y -CONFIG_ACPI_PPTT=y -CONFIG_HAVE_KVM_IRQCHIP=y -CONFIG_HAVE_KVM_IRQFD=y -CONFIG_HAVE_KVM_IRQ_ROUTING=y -CONFIG_HAVE_KVM_EVENTFD=y -CONFIG_KVM_MMIO=y -CONFIG_HAVE_KVM_MSI=y -CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y -CONFIG_KVM_VFIO=y -CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y -CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y -CONFIG_HAVE_KVM_IRQ_BYPASS=y -CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y -CONFIG_IRQ_BYPASS_MANAGER=y -CONFIG_VIRTUALIZATION=y -CONFIG_KVM=y -CONFIG_KVM_ARM_HOST=y -CONFIG_KVM_ARM_PMU=y -CONFIG_KVM_INDIRECT_VECTORS=y -CONFIG_VHOST_NET=y -CONFIG_VHOST=y -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set -CONFIG_ARM64_CRYPTO=y -CONFIG_CRYPTO_SHA256_ARM64=y -CONFIG_CRYPTO_SHA512_ARM64=y -CONFIG_CRYPTO_SHA1_ARM64_CE=y -CONFIG_CRYPTO_SHA2_ARM64_CE=y -CONFIG_CRYPTO_SHA512_ARM64_CE=y -CONFIG_CRYPTO_SHA3_ARM64=y -CONFIG_CRYPTO_SM3_ARM64_CE=y -# CONFIG_CRYPTO_SM4_ARM64_CE is not set -CONFIG_CRYPTO_GHASH_ARM64_CE=y -CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y -CONFIG_CRYPTO_AES_ARM64=y -CONFIG_CRYPTO_AES_ARM64_CE=y -CONFIG_CRYPTO_AES_ARM64_CE_CCM=y -CONFIG_CRYPTO_AES_ARM64_CE_BLK=y -CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y -CONFIG_CRYPTO_CHACHA20_NEON=y -# CONFIG_CRYPTO_NHPOLY1305_NEON is not set -CONFIG_CRYPTO_AES_ARM64_BS=y - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_ARCH_STACKLEAK=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -CONFIG_STACKPROTECTOR=y -CONFIG_STACKPROTECTOR_STRONG=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_64BIT_TIME=y -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_REFCOUNT_FULL=y -CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y -CONFIG_ARCH_USE_MEMREMAP_PROT=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_HAS_RELR=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_DEV_THROTTLING is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_CGROUP_IOLATENCY is not set -# CONFIG_BLK_CGROUP_IOCOST is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_PREEMPT_NOTIFIERS=y -CONFIG_ASN1=y -CONFIG_UNINLINE_SPIN_UNLOCK=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set -CONFIG_BINFMT_SCRIPT=y -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -# CONFIG_FLATMEM_MANUAL is not set -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_FAST_GUP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_MEMORY_ISOLATION=y -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_MEMORY_BALLOON=y -CONFIG_BALLOON_COMPACTION=y -CONFIG_COMPACTION=y -CONFIG_MIGRATION=y -CONFIG_CONTIG_ALLOC=y -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_MMU_NOTIFIER=y -CONFIG_KSM=y -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -CONFIG_MEMORY_FAILURE=y -# CONFIG_HWPOISON_INJECT is not set -CONFIG_TRANSPARENT_HUGEPAGE=y -CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set -CONFIG_TRANSPARENT_HUGE_PAGECACHE=y -# CONFIG_CLEANCACHE is not set -# CONFIG_FRONTSWAP is not set -CONFIG_CMA=y -# CONFIG_CMA_DEBUG is not set -# CONFIG_CMA_DEBUGFS is not set -CONFIG_CMA_AREAS=7 -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_PTE_DEVMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# CONFIG_READ_ONLY_THP_FOR_FS is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -# end of Memory Management options - -CONFIG_NET=y -CONFIG_SKB_EXTENSIONS=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_UNIX_DIAG=y -# CONFIG_TLS is not set -CONFIG_XFRM=y -CONFIG_XFRM_ALGO=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_INTERFACE is not set -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -CONFIG_NET_KEY=y -# CONFIG_NET_KEY_MIGRATE is not set -CONFIG_INET=y -CONFIG_IP_MULTICAST=y -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -CONFIG_IP_PNP_BOOTP=y -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_IP_MROUTE is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -CONFIG_INET_TUNNEL=y -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETLABEL is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -CONFIG_VLAN_8021Q=y -# CONFIG_VLAN_8021Q_GVRP is not set -# CONFIG_VLAN_8021Q_MVRP is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_TSN is not set -# CONFIG_DNS_RESOLVER is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -CONFIG_NET_PKTGEN=y -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -CONFIG_WIRELESS=y -CONFIG_WIRELESS_EXT=y -CONFIG_WEXT_CORE=y -CONFIG_WEXT_PROC=y -CONFIG_WEXT_SPY=y -CONFIG_WEXT_PRIV=y -# CONFIG_CFG80211 is not set -CONFIG_LIB80211=y -CONFIG_LIB80211_CRYPT_WEP=y -CONFIG_LIB80211_CRYPT_CCMP=y -CONFIG_LIB80211_CRYPT_TKIP=y -# CONFIG_LIB80211_DEBUG is not set - -# -# CFG80211 needs to be enabled for MAC80211 -# -CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -CONFIG_NET_9P_VIRTIO=y -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_DST_CACHE=y -CONFIG_GRO_CELLS=y -CONFIG_FAILOVER=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -CONFIG_ARM_AMBA=y -CONFIG_HAVE_PCI=y -CONFIG_PCI=y -CONFIG_PCI_DOMAINS=y -CONFIG_PCI_DOMAINS_GENERIC=y -CONFIG_PCI_SYSCALL=y -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIE_ECRC is not set -CONFIG_PCIEASPM=y -# CONFIG_PCIEASPM_DEBUG is not set -CONFIG_PCIEASPM_DEFAULT=y -# CONFIG_PCIEASPM_POWERSAVE is not set -# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set -# CONFIG_PCIEASPM_PERFORMANCE is not set -CONFIG_PCIE_PME=y -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -# CONFIG_PCIE_BW is not set -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_QUIRKS=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_STUB is not set -CONFIG_PCI_ECAM=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# PCI controller drivers -# - -# -# Cadence PCIe controllers support -# -# CONFIG_PCIE_CADENCE_HOST is not set -# end of Cadence PCIe controllers support - -# CONFIG_PCI_FTPCI100 is not set -CONFIG_PCI_HOST_COMMON=y -CONFIG_PCI_HOST_GENERIC=y -# CONFIG_PCIE_XILINX is not set -CONFIG_PCI_XGENE=y -CONFIG_PCI_XGENE_MSI=y -CONFIG_PCIE_ALTERA=y -CONFIG_PCIE_ALTERA_MSI=y -CONFIG_PCI_HOST_THUNDER_PEM=y -CONFIG_PCI_HOST_THUNDER_ECAM=y - -# -# DesignWare PCI Core Support -# -CONFIG_PCIE_DW=y -CONFIG_PCIE_DW_HOST=y -# CONFIG_PCIE_DW_PLAT_HOST is not set -CONFIG_PCI_LAYERSCAPE=y -CONFIG_PCI_HISI=y -CONFIG_PCIE_KIRIN=y -# CONFIG_PCI_MESON is not set -# CONFIG_PCIE_AL is not set -# end of DesignWare PCI Core Support - -# -# Mobiveil PCIe Core Support -# -CONFIG_PCIE_MOBIVEIL=y -CONFIG_PCIE_MOBIVEIL_HOST=y -CONFIG_PCIE_LAYERSCAPE_GEN4=y -# end of Mobiveil PCIe Core Support -# end of PCI controller drivers - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set -# end of PCI Endpoint - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# end of PCI switch controller drivers - -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_FW_LOADER_PAGED_BUF=y -CONFIG_EXTRA_FIRMWARE="" -CONFIG_FW_LOADER_USER_HELPER=y -CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y -# CONFIG_FW_LOADER_COMPRESS is not set -# end of Firmware loader - -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -CONFIG_SOC_BUS=y -CONFIG_REGMAP=y -CONFIG_REGMAP_I2C=y -CONFIG_REGMAP_SPI=y -CONFIG_REGMAP_MMIO=y -CONFIG_REGMAP_IRQ=y -CONFIG_DMA_SHARED_BUFFER=y -# CONFIG_DMA_FENCE_TRACE is not set -CONFIG_GENERIC_ARCH_TOPOLOGY=y -# end of Generic Driver Options - -# -# Bus devices -# -CONFIG_BRCMSTB_GISB_ARB=y -# CONFIG_MOXTET is not set -CONFIG_SIMPLE_PM_BUS=y -CONFIG_VEXPRESS_CONFIG=y -CONFIG_FSL_MC_BUS=y -CONFIG_FSL_MC_UAPI_SUPPORT=y -# end of Bus devices - -# CONFIG_CONNECTOR is not set -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -CONFIG_MTD_CMDLINE_PARTS=y -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_AFS_PARTS is not set -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_SWAP is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -CONFIG_MTD_CFI=y -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_GEN_PROBE=y -CONFIG_MTD_CFI_ADV_OPTIONS=y -CONFIG_MTD_CFI_NOSWAP=y -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_GEOMETRY is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_OTP is not set -CONFIG_MTD_CFI_INTELEXT=y -CONFIG_MTD_CFI_AMDSTD=y -CONFIG_MTD_CFI_STAA=y -CONFIG_MTD_CFI_UTIL=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -CONFIG_MTD_PHYSMAP=y -# CONFIG_MTD_PHYSMAP_COMPAT is not set -CONFIG_MTD_PHYSMAP_OF=y -# CONFIG_MTD_PHYSMAP_VERSATILE is not set -# CONFIG_MTD_PHYSMAP_GEMINI is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -CONFIG_MTD_DATAFLASH=y -# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set -# CONFIG_MTD_DATAFLASH_OTP is not set -# CONFIG_MTD_MCHP23K256 is not set -CONFIG_MTD_SST25L=y -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -CONFIG_MTD_NAND_CORE=y -# CONFIG_MTD_ONENAND is not set -CONFIG_MTD_NAND_ECC_SW_HAMMING=y -# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set -CONFIG_MTD_RAW_NAND=y -# CONFIG_MTD_NAND_ECC_SW_BCH is not set - -# -# Raw/parallel NAND flash controllers -# -CONFIG_MTD_NAND_DENALI=y -# CONFIG_MTD_NAND_DENALI_PCI is not set -CONFIG_MTD_NAND_DENALI_DT=y -# CONFIG_MTD_NAND_CAFE is not set -# CONFIG_MTD_NAND_BRCMNAND is not set -CONFIG_MTD_NAND_FSL_IFC=y -# CONFIG_MTD_NAND_MXIC is not set -# CONFIG_MTD_NAND_GPIO is not set -# CONFIG_MTD_NAND_PLATFORM is not set - -# -# Misc -# -# CONFIG_MTD_NAND_NANDSIM is not set -# CONFIG_MTD_NAND_RICOH is not set -# CONFIG_MTD_NAND_DISKONCHIP is not set -# CONFIG_MTD_SPI_NAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -CONFIG_MTD_SPI_NOR=y -# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set -# CONFIG_SPI_CADENCE_QUADSPI is not set -# CONFIG_SPI_MTK_QUADSPI is not set -CONFIG_MTD_UBI=y -CONFIG_MTD_UBI_WL_THRESHOLD=4096 -CONFIG_MTD_UBI_BEB_LIMIT=20 -# CONFIG_MTD_UBI_FASTMAP is not set -# CONFIG_MTD_UBI_GLUEBI is not set -# CONFIG_MTD_UBI_BLOCK is not set -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_MDIO=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_UMEM is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set - -# -# NVME Support -# -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_PHANTOM is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -CONFIG_SENSORS_FXOS8700=y -CONFIG_SENSORS_FXAS2100X=y -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -CONFIG_SRAM=y -# CONFIG_VEXPRESS_SYSCFG is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -CONFIG_EEPROM_AT25=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_EEPROM_EE1004 is not set -# end of EEPROM support - -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_I2C is not set -# CONFIG_ALTERA_STAPL is not set - -# -# Intel MIC & related support -# - -# -# Intel MIC Bus Driver -# - -# -# SCIF Bus Driver -# - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# end of Intel MIC & related support - -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_MISC_ALCOR_PCI is not set -# CONFIG_MISC_RTSX_PCI is not set -# CONFIG_MISC_RTSX_USB is not set -# CONFIG_HABANA_AI is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_PROC_FS is not set - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -CONFIG_SCSI_SAS_ATTRS=y -CONFIG_SCSI_SAS_LIBSAS=y -CONFIG_SCSI_SAS_HOST_SMP=y -# CONFIG_SCSI_SRP_ATTRS is not set -# end of SCSI Transports - -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# end of SCSI device support - -CONFIG_HAVE_PATA_PLATFORM=y -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# end of IEEE 1394 (FireWire) support - -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -# CONFIG_DUMMY is not set -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -CONFIG_MACVLAN=y -CONFIG_MACVTAP=y -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_GENEVE is not set -# CONFIG_GTP is not set -# CONFIG_MACSEC is not set -# CONFIG_NETCONSOLE is not set -CONFIG_TUN=y -CONFIG_TAP=y -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -# end of Distributed Switch Architecture drivers - -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -CONFIG_NET_VENDOR_FREESCALE=y -# CONFIG_FSL_FMAN is not set -# CONFIG_FSL_PQ_MDIO is not set -CONFIG_FSL_XGMAC_MDIO=y -# CONFIG_GIANFAR is not set - -# -# Frame Manager support -# -CONFIG_FSL_SDK_FMAN=y -# CONFIG_FSL_SDK_FMAN_TEST is not set - -# -# FMAN Processor support -# -CONFIG_FMAN_ARM=y -# CONFIG_FMAN_P3040_P4080_P5020 is not set -# CONFIG_FMAN_P1023 is not set -# CONFIG_FMAN_V3H is not set -# CONFIG_FMAN_V3L is not set -# end of FMAN Processor support - -# CONFIG_FSL_SDK_FMAN_RTC_API is not set -# CONFIG_FMAN_MIB_CNT_OVF_IRQ_EN is not set -CONFIG_FSL_FM_MAX_FRAME_SIZE=1522 -CONFIG_FSL_FM_RX_EXTRA_HEADROOM=64 -# CONFIG_FMAN_PFC is not set -# end of Frame Manager support - -CONFIG_FSL_SDK_DPAA_ETH=y -# CONFIG_FSL_DPAA_HOOKS is not set -CONFIG_FSL_DPAA_OFFLINE_PORTS=y -CONFIG_FSL_DPAA_ADVANCED_DRIVERS=y -# CONFIG_FSL_DPAA_ETH_JUMBO_FRAME is not set -# CONFIG_FSL_DPAA_TS is not set -# CONFIG_FSL_DPAA_1588 is not set -CONFIG_FSL_DPAA_ETH_MAX_BUF_COUNT=128 -CONFIG_FSL_DPAA_ETH_REFILL_THRESHOLD=80 -CONFIG_FSL_DPAA_CS_THRESHOLD_1G=0x06000000 -CONFIG_FSL_DPAA_CS_THRESHOLD_10G=0x10000000 -CONFIG_FSL_DPAA_INGRESS_CS_THRESHOLD=0x10000000 -CONFIG_FSL_DPAA_ETH_DEBUGFS=y -# CONFIG_FSL_DPAA_ETH_DEBUG is not set -# CONFIG_FSL_DPAA_DBG_LOOP is not set -CONFIG_FSL_DPAA2_ETH=y -# CONFIG_FSL_DPAA2_ETH_USE_ERR_QUEUE is not set -CONFIG_FSL_DPAA2_PTP_CLOCK=y -CONFIG_FSL_ENETC=y -CONFIG_FSL_ENETC_VF=y -CONFIG_FSL_ENETC_MDIO=y -CONFIG_FSL_ENETC_PTP_CLOCK=y -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HISILICON is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETERION is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PACKET_ENGINES is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_REALTEK is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BCM_UNIMAC is not set -CONFIG_MDIO_BITBANG=y -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -CONFIG_MDIO_BUS_MUX_MMIOREG=y -CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y -CONFIG_MDIO_CAVIUM=y -# CONFIG_MDIO_GPIO is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -CONFIG_MDIO_THUNDER=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y - -# -# MII PHY device drivers -# -# CONFIG_ADIN_PHY is not set -# CONFIG_AMD_PHY is not set -CONFIG_AQUANTIA_PHY=y -# CONFIG_AX88796B_PHY is not set -CONFIG_AT803X_PHY=y -# CONFIG_AT803X_PHY_SMART_EEE is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -CONFIG_FIXED_PHY=y -# CONFIG_ICPLUS_PHY is not set -CONFIG_INPHI_PHY=y -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_LXT_PHY is not set -CONFIG_MARVELL_PHY=y -CONFIG_MARVELL_10G_PHY=y -CONFIG_MICREL_PHY=y -CONFIG_MICROCHIP_PHY=y -# CONFIG_MICROCHIP_T1_PHY is not set -CONFIG_MICROSEMI_PHY=y -# CONFIG_NATIONAL_PHY is not set -CONFIG_NXP_TJA11XX_PHY=y -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -CONFIG_ROCKCHIP_PHY=y -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -CONFIG_VITESSE_PHY=y -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set -CONFIG_USB_NET_DRIVERS=y -# CONFIG_USB_CATC is not set -# CONFIG_USB_KAWETH is not set -CONFIG_USB_PEGASUS=y -CONFIG_USB_RTL8150=y -CONFIG_USB_RTL8152=y -CONFIG_USB_LAN78XX=y -CONFIG_USB_USBNET=y -CONFIG_USB_NET_AX8817X=y -CONFIG_USB_NET_AX88179_178A=y -CONFIG_USB_NET_CDCETHER=y -# CONFIG_USB_NET_CDC_EEM is not set -CONFIG_USB_NET_CDC_NCM=y -# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set -# CONFIG_USB_NET_CDC_MBIM is not set -CONFIG_USB_NET_DM9601=y -# CONFIG_USB_NET_SR9700 is not set -CONFIG_USB_NET_SR9800=y -CONFIG_USB_NET_SMSC75XX=y -CONFIG_USB_NET_SMSC95XX=y -# CONFIG_USB_NET_GL620A is not set -CONFIG_USB_NET_NET1080=y -CONFIG_USB_NET_PLUSB=y -CONFIG_USB_NET_MCS7830=y -# CONFIG_USB_NET_RNDIS_HOST is not set -CONFIG_USB_NET_CDC_SUBSET_ENABLE=y -CONFIG_USB_NET_CDC_SUBSET=y -# CONFIG_USB_ALI_M5632 is not set -# CONFIG_USB_AN2720 is not set -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -# CONFIG_USB_KC2190 is not set -CONFIG_USB_NET_ZAURUS=y -# CONFIG_USB_NET_CX82310_ETH is not set -# CONFIG_USB_NET_KALMIA is not set -# CONFIG_USB_NET_QMI_WWAN is not set -# CONFIG_USB_NET_INT51X1 is not set -# CONFIG_USB_IPHETH is not set -# CONFIG_USB_SIERRA_NET is not set -# CONFIG_USB_VL600 is not set -# CONFIG_USB_NET_CH9200 is not set -# CONFIG_USB_NET_AQC111 is not set -CONFIG_WLAN=y -# CONFIG_WIRELESS_WDS is not set -CONFIG_WLAN_VENDOR_ADMTEK=y -CONFIG_WLAN_VENDOR_ATH=y -# CONFIG_ATH_DEBUG is not set -# CONFIG_ATH5K_PCI is not set -CONFIG_WLAN_VENDOR_ATMEL=y -CONFIG_WLAN_VENDOR_BROADCOM=y -CONFIG_WLAN_VENDOR_CISCO=y -CONFIG_WLAN_VENDOR_INTEL=y -CONFIG_WLAN_VENDOR_INTERSIL=y -CONFIG_HOSTAP=y -# CONFIG_HOSTAP_FIRMWARE is not set -# CONFIG_HOSTAP_PLX is not set -# CONFIG_HOSTAP_PCI is not set -# CONFIG_PRISM54 is not set -CONFIG_WLAN_VENDOR_MARVELL=y -CONFIG_WLAN_VENDOR_MEDIATEK=y -CONFIG_WLAN_VENDOR_RALINK=y -CONFIG_WLAN_VENDOR_REALTEK=y -CONFIG_WLAN_VENDOR_RSI=y -CONFIG_WLAN_VENDOR_ST=y -CONFIG_WLAN_VENDOR_TI=y -CONFIG_WLAN_VENDOR_ZYDAS=y -CONFIG_WLAN_VENDOR_QUANTENNA=y - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_NETDEVSIM is not set -CONFIG_NET_FAILOVER=y -# CONFIG_IVSHMEM_NET is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -CONFIG_INPUT_POLLDEV=y -# CONFIG_INPUT_SPARSEKMAP is not set -CONFIG_INPUT_MATRIXKMAP=y - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ADC=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1050 is not set -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -CONFIG_KEYBOARD_GPIO=y -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_LM8323 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_CAP11XX is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -CONFIG_MOUSE_PS2_SMBUS=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_APPLETOUCH is not set -# CONFIG_MOUSE_BCM5974 is not set -# CONFIG_MOUSE_CYAPA is not set -# CONFIG_MOUSE_ELAN_I2C is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_MOUSE_GPIO is not set -# CONFIG_MOUSE_SYNAPTICS_I2C is not set -# CONFIG_MOUSE_SYNAPTICS_USB is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -CONFIG_INPUT_TOUCHSCREEN=y -CONFIG_TOUCHSCREEN_PROPERTIES=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set -CONFIG_TOUCHSCREEN_CT36X_WLD=y -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set -# CONFIG_TOUCHSCREEN_ADC is not set -# CONFIG_TOUCHSCREEN_AR1021_I2C is not set -CONFIG_TOUCHSCREEN_ATMEL_MXT=y -# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set -# CONFIG_TOUCHSCREEN_BU21013 is not set -# CONFIG_TOUCHSCREEN_BU21029 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set -# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set -# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set -# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set -# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set -# CONFIG_TOUCHSCREEN_DYNAPRO is not set -# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set -# CONFIG_TOUCHSCREEN_EETI is not set -# CONFIG_TOUCHSCREEN_EGALAX is not set -# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set -# CONFIG_TOUCHSCREEN_EXC3000 is not set -# CONFIG_TOUCHSCREEN_ELAN_TS is not set -# CONFIG_TOUCHSCREEN_FUJITSU is not set -# CONFIG_TOUCHSCREEN_GOODIX is not set -# CONFIG_TOUCHSCREEN_HIDEEP is not set -# CONFIG_TOUCHSCREEN_ILI210X is not set -# CONFIG_TOUCHSCREEN_S6SY761 is not set -# CONFIG_TOUCHSCREEN_GUNZE is not set -# CONFIG_TOUCHSCREEN_EKTF2127 is not set -# CONFIG_TOUCHSCREEN_ELAN is not set -# CONFIG_TOUCHSCREEN_ELO is not set -# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set -# CONFIG_TOUCHSCREEN_WACOM_I2C is not set -# CONFIG_TOUCHSCREEN_MAX11801 is not set -# CONFIG_TOUCHSCREEN_MCS5000 is not set -# CONFIG_TOUCHSCREEN_MMS114 is not set -# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set -# CONFIG_TOUCHSCREEN_MTOUCH is not set -# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set -# CONFIG_TOUCHSCREEN_INEXIO is not set -# CONFIG_TOUCHSCREEN_MK712 is not set -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set -# CONFIG_TOUCHSCREEN_PIXCIR is not set -# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set -# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set -# CONFIG_TOUCHSCREEN_TSC_SERIO is not set -# CONFIG_TOUCHSCREEN_TSC2004 is not set -# CONFIG_TOUCHSCREEN_TSC2005 is not set -# CONFIG_TOUCHSCREEN_TSC2007 is not set -# CONFIG_TOUCHSCREEN_RM_TS is not set -# CONFIG_TOUCHSCREEN_SILEAD is not set -# CONFIG_TOUCHSCREEN_SIS_I2C is not set -# CONFIG_TOUCHSCREEN_ST1232 is not set -# CONFIG_TOUCHSCREEN_STMFTS is not set -# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set -# CONFIG_TOUCHSCREEN_SX8654 is not set -# CONFIG_TOUCHSCREEN_TPS6507X is not set -# CONFIG_TOUCHSCREEN_ZET6223 is not set -# CONFIG_TOUCHSCREEN_ZFORCE is not set -# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set -# CONFIG_TOUCHSCREEN_IQS5XX is not set -CONFIG_TOUCHSCREEN_SYNAPTICS_DSX=y -CONFIG_TOUCHSCREEN_SYNAPTICS_DSX_I2C=y -# CONFIG_TOUCHSCREEN_FTS is not set -CONFIG_INPUT_MISC=y -# CONFIG_INPUT_AD714X is not set -# CONFIG_INPUT_ATMEL_CAPTOUCH is not set -# CONFIG_INPUT_BMA150 is not set -# CONFIG_INPUT_E3X0_BUTTON is not set -# CONFIG_INPUT_MSM_VIBRATOR is not set -# CONFIG_INPUT_MMA8450 is not set -# CONFIG_INPUT_GP2A is not set -# CONFIG_INPUT_GPIO_BEEPER is not set -# CONFIG_INPUT_GPIO_DECODER is not set -# CONFIG_INPUT_GPIO_VIBRA is not set -# CONFIG_INPUT_ATI_REMOTE2 is not set -# CONFIG_INPUT_KEYSPAN_REMOTE is not set -# CONFIG_INPUT_KXTJ9 is not set -# CONFIG_INPUT_POWERMATE is not set -# CONFIG_INPUT_YEALINK is not set -# CONFIG_INPUT_CM109 is not set -# CONFIG_INPUT_REGULATOR_HAPTIC is not set -# CONFIG_INPUT_AXP20X_PEK is not set -# CONFIG_INPUT_UINPUT is not set -# CONFIG_INPUT_PCF8574 is not set -# CONFIG_INPUT_PWM_BEEPER is not set -# CONFIG_INPUT_PWM_VIBRA is not set -# CONFIG_INPUT_RK805_PWRKEY is not set -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -# CONFIG_INPUT_ADXL34X is not set -# CONFIG_INPUT_IMS_PCU is not set -# CONFIG_INPUT_CMA3000 is not set -# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set -# CONFIG_INPUT_DRV260X_HAPTICS is not set -# CONFIG_INPUT_DRV2665_HAPTICS is not set -# CONFIG_INPUT_DRV2667_HAPTICS is not set -CONFIG_INPUT_MPL3115=y -# CONFIG_SENSOR_FXLS8471 is not set -CONFIG_INPUT_ISL29023=y -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -# CONFIG_SERIO_SERPORT is not set -CONFIG_SERIO_AMBAKMI=y -# CONFIG_SERIO_PCIPS2 is not set -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_SERIO_GPIO_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_VT_CONSOLE_SLEEP=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=16 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -# CONFIG_SERIAL_8250_MANY_PORTS is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_FSL=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_AMBA_PL010 is not set -CONFIG_SERIAL_AMBA_PL011=y -CONFIG_SERIAL_AMBA_PL011_CONSOLE=y -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_IFX6X60 is not set -CONFIG_SERIAL_XILINX_PS_UART=y -CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -CONFIG_SERIAL_FSL_LPUART=y -CONFIG_SERIAL_FSL_LPUART_CONSOLE=y -CONFIG_SERIAL_FSL_LINFLEXUART=y -CONFIG_SERIAL_FSL_LINFLEXUART_CONSOLE=y -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -CONFIG_SERIAL_DEV_BUS=y -CONFIG_SERIAL_DEV_CTRL_TTYPORT=y -# CONFIG_TTY_PRINTK is not set -CONFIG_HVC_DRIVER=y -# CONFIG_HVC_DCC is not set -CONFIG_VIRTIO_CONSOLE=y -CONFIG_IPMI_HANDLER=y -CONFIG_IPMI_DMI_DECODE=y -CONFIG_IPMI_PLAT_DATA=y -# CONFIG_IPMI_PANIC_EVENT is not set -CONFIG_IPMI_DEVICE_INTERFACE=y -CONFIG_IPMI_SI=y -# CONFIG_IPMI_SSIF is not set -# CONFIG_IPMI_WATCHDOG is not set -# CONFIG_IPMI_POWEROFF is not set -# CONFIG_IPMB_DEVICE_INTERFACE is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_VIRTIO is not set -CONFIG_HW_RANDOM_CAVIUM=y -# CONFIG_APPLICOM is not set -# CONFIG_RAW_DRIVER is not set -CONFIG_TCG_TPM=y -CONFIG_HW_RANDOM_TPM=y -# CONFIG_TCG_TIS is not set -# CONFIG_TCG_TIS_SPI is not set -# CONFIG_TCG_TIS_I2C_ATMEL is not set -CONFIG_TCG_TIS_I2C_INFINEON=y -# CONFIG_TCG_TIS_I2C_NUVOTON is not set -# CONFIG_TCG_ATMEL is not set -# CONFIG_TCG_INFINEON is not set -# CONFIG_TCG_CRB is not set -# CONFIG_TCG_VTPM_PROXY is not set -# CONFIG_TCG_TIS_ST33ZP24_I2C is not set -# CONFIG_TCG_TIS_ST33ZP24_SPI is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -CONFIG_I2C_COMPAT=y -CONFIG_I2C_CHARDEV=y -CONFIG_I2C_MUX=y - -# -# Multiplexer I2C Chip support -# -# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set -# CONFIG_I2C_MUX_GPIO is not set -# CONFIG_I2C_MUX_GPMUX is not set -# CONFIG_I2C_MUX_LTC4306 is not set -# CONFIG_I2C_MUX_PCA9541 is not set -CONFIG_I2C_MUX_PCA954x=y -# CONFIG_I2C_MUX_PINCTRL is not set -# CONFIG_I2C_MUX_REG is not set -# CONFIG_I2C_DEMUX_PINCTRL is not set -# CONFIG_I2C_MUX_MLXCPLD is not set -# end of Multiplexer I2C Chip support - -CONFIG_I2C_HELPER_AUTO=y -CONFIG_I2C_ALGOBIT=y - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_AMD_MP2 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_NVIDIA_GPU is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_CADENCE is not set -# CONFIG_I2C_CBUS_GPIO is not set -CONFIG_I2C_DESIGNWARE_CORE=y -CONFIG_I2C_DESIGNWARE_PLATFORM=y -# CONFIG_I2C_DESIGNWARE_SLAVE is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -CONFIG_I2C_GPIO=y -# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set -CONFIG_I2C_IMX=y -# CONFIG_I2C_NOMADIK is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -CONFIG_I2C_RK3X=y -CONFIG_I2C_RPBUS=y -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_THUNDERX is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_DIOLAN_U2C is not set -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_ROBOTFUZZ_OSIF is not set -# CONFIG_I2C_TAOS_EVM is not set -# CONFIG_I2C_TINY_USB is not set - -# -# Other I2C/SMBus bus drivers -# -# end of I2C Hardware Bus support - -CONFIG_I2C_SLAVE=y -# CONFIG_I2C_SLAVE_EEPROM is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -CONFIG_SPI_BITBANG=y -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -CONFIG_SPI_FSL_QUADSPI=y -CONFIG_SPI_NXP_FLEXSPI=y -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -CONFIG_SPI_FSL_DSPI=y -# CONFIG_SPI_OC_TINY is not set -CONFIG_SPI_PL022=y -# CONFIG_SPI_PXA2XX is not set -CONFIG_SPI_ROCKCHIP=y -# CONFIG_SPI_SC18IS602 is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_THUNDERX is not set -# CONFIG_SPI_XCOMM is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -CONFIG_SPI_SLAVE=y -CONFIG_SPI_SLAVE_TIME=y -CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y -CONFIG_SPMI=y -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y -CONFIG_PTP_1588_CLOCK_QORIQ=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_GENERIC_PINCTRL_GROUPS=y -CONFIG_PINMUX=y -CONFIG_GENERIC_PINMUX_FUNCTIONS=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_AXP209 is not set -# CONFIG_PINCTRL_AMD is not set -# CONFIG_PINCTRL_MCP23S08 is not set -CONFIG_PINCTRL_SINGLE=y -# CONFIG_PINCTRL_SX150X is not set -# CONFIG_PINCTRL_STMFX is not set -CONFIG_PINCTRL_MAX77620=y -# CONFIG_PINCTRL_RK805 is not set -# CONFIG_PINCTRL_OCELOT is not set -CONFIG_PINCTRL_S32V_CORE=y -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -CONFIG_GPIO_ACPI=y -CONFIG_GPIOLIB_IRQCHIP=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_GENERIC=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_AMDPT is not set -# CONFIG_GPIO_CADENCE is not set -CONFIG_GPIO_DWAPB=y -# CONFIG_GPIO_EXAR is not set -# CONFIG_GPIO_FTGPIO010 is not set -CONFIG_GPIO_GENERIC_PLATFORM=y -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -CONFIG_GPIO_MB86S7X=y -CONFIG_GPIO_MPC8XXX=y -CONFIG_GPIO_PL061=y -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SYSCON is not set -CONFIG_GPIO_XGENE=y -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# I2C GPIO expanders -# -# CONFIG_GPIO_ADP5588 is not set -# CONFIG_GPIO_ADNP is not set -# CONFIG_GPIO_GW_PLD is not set -# CONFIG_GPIO_MAX7300 is not set -CONFIG_GPIO_MAX732X=y -# CONFIG_GPIO_MAX732X_IRQ is not set -CONFIG_GPIO_PCA953X=y -CONFIG_GPIO_PCA953X_IRQ=y -# CONFIG_GPIO_PCF857X is not set -# CONFIG_GPIO_TPIC2810 is not set -# end of I2C GPIO expanders - -# -# MFD GPIO expanders -# -# CONFIG_GPIO_BD9571MWV is not set -CONFIG_GPIO_MAX77620=y -# end of MFD GPIO expanders - -# -# PCI GPIO expanders -# -# CONFIG_GPIO_BT8XX is not set -# CONFIG_GPIO_PCI_IDIO_16 is not set -# CONFIG_GPIO_PCIE_IDIO_24 is not set -# CONFIG_GPIO_RDC321X is not set -# end of PCI GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# USB GPIO expanders -# -# end of USB GPIO expanders - -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_W1 is not set -CONFIG_POWER_AVS=y -CONFIG_POWER_RESET=y -CONFIG_POWER_RESET_BRCMSTB=y -CONFIG_POWER_RESET_GPIO=y -# CONFIG_POWER_RESET_GPIO_RESTART is not set -# CONFIG_POWER_RESET_LTC2952 is not set -# CONFIG_POWER_RESET_RESTART is not set -CONFIG_POWER_RESET_VEXPRESS=y -CONFIG_POWER_RESET_XGENE=y -CONFIG_POWER_RESET_SYSCON=y -# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set -CONFIG_REBOOT_MODE=y -CONFIG_SYSCON_REBOOT_MODE=y -# CONFIG_NVMEM_REBOOT_MODE is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_GENERIC_ADC_BATTERY is not set -# CONFIG_TEST_POWER is not set -# CONFIG_CHARGER_ADP5061 is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_LEGO_EV3 is not set -CONFIG_BATTERY_SBS=y -# CONFIG_CHARGER_SBS is not set -# CONFIG_MANAGER_SBS is not set -CONFIG_BATTERY_BQ27XXX=y -CONFIG_BATTERY_BQ27XXX_I2C=y -# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set -# CONFIG_AXP20X_POWER is not set -# CONFIG_AXP288_FUEL_GAUGE is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_CHARGER_DETECTOR_MAX14656 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_BQ24190 is not set -# CONFIG_CHARGER_BQ24257 is not set -# CONFIG_CHARGER_BQ24735 is not set -# CONFIG_CHARGER_BQ25890 is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_CHARGER_RT9455 is not set -# CONFIG_CHARGER_UCS1002 is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_AD7414 is not set -# CONFIG_SENSORS_AD7418 is not set -# CONFIG_SENSORS_ADM1021 is not set -# CONFIG_SENSORS_ADM1025 is not set -# CONFIG_SENSORS_ADM1026 is not set -# CONFIG_SENSORS_ADM1029 is not set -# CONFIG_SENSORS_ADM1031 is not set -# CONFIG_SENSORS_ADM9240 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_ADT7410 is not set -# CONFIG_SENSORS_ADT7411 is not set -# CONFIG_SENSORS_ADT7462 is not set -# CONFIG_SENSORS_ADT7470 is not set -# CONFIG_SENSORS_ADT7475 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_ASC7621 is not set -CONFIG_SENSORS_ARM_SCPI=y -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_ATXP1 is not set -# CONFIG_SENSORS_DS620 is not set -# CONFIG_SENSORS_DS1621 is not set -# CONFIG_SENSORS_I5K_AMB is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_F75375S is not set -# CONFIG_SENSORS_FTSTEUTATES is not set -# CONFIG_SENSORS_GL518SM is not set -# CONFIG_SENSORS_GL520SM is not set -# CONFIG_SENSORS_G760A is not set -# CONFIG_SENSORS_G762 is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_HIH6130 is not set -# CONFIG_SENSORS_IBMAEM is not set -# CONFIG_SENSORS_IBMPEX is not set -# CONFIG_SENSORS_IIO_HWMON is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_JC42 is not set -# CONFIG_SENSORS_POWR1220 is not set -# CONFIG_SENSORS_LINEAGE is not set -# CONFIG_SENSORS_LTC2945 is not set -# CONFIG_SENSORS_LTC2990 is not set -# CONFIG_SENSORS_LTC4151 is not set -# CONFIG_SENSORS_LTC4215 is not set -# CONFIG_SENSORS_LTC4222 is not set -# CONFIG_SENSORS_LTC4245 is not set -# CONFIG_SENSORS_LTC4260 is not set -# CONFIG_SENSORS_LTC4261 is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX16065 is not set -# CONFIG_SENSORS_MAX1619 is not set -# CONFIG_SENSORS_MAX1668 is not set -# CONFIG_SENSORS_MAX17135 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MAX6621 is not set -# CONFIG_SENSORS_MAX6639 is not set -# CONFIG_SENSORS_MAX6642 is not set -# CONFIG_SENSORS_MAX6650 is not set -# CONFIG_SENSORS_MAX6697 is not set -# CONFIG_SENSORS_MAX31790 is not set -# CONFIG_SENSORS_MCP3021 is not set -# CONFIG_SENSORS_TC654 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM63 is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_LM73 is not set -# CONFIG_SENSORS_LM75 is not set -# CONFIG_SENSORS_LM77 is not set -# CONFIG_SENSORS_LM78 is not set -# CONFIG_SENSORS_LM80 is not set -# CONFIG_SENSORS_LM83 is not set -# CONFIG_SENSORS_LM85 is not set -# CONFIG_SENSORS_LM87 is not set -CONFIG_SENSORS_LM90=y -# CONFIG_SENSORS_LM92 is not set -# CONFIG_SENSORS_LM93 is not set -# CONFIG_SENSORS_LM95234 is not set -# CONFIG_SENSORS_LM95241 is not set -# CONFIG_SENSORS_LM95245 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NCT7802 is not set -# CONFIG_SENSORS_NCT7904 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_OCC_P8_I2C is not set -# CONFIG_SENSORS_PCF8591 is not set -CONFIG_PMBUS=y -CONFIG_SENSORS_PMBUS=y -# CONFIG_SENSORS_ADM1275 is not set -# CONFIG_SENSORS_IBM_CFFPS is not set -# CONFIG_SENSORS_INSPUR_IPSPS is not set -# CONFIG_SENSORS_IR35221 is not set -# CONFIG_SENSORS_IR38064 is not set -# CONFIG_SENSORS_IRPS5401 is not set -# CONFIG_SENSORS_ISL68137 is not set -# CONFIG_SENSORS_LM25066 is not set -CONFIG_SENSORS_LTC2978=y -CONFIG_SENSORS_LTC2978_REGULATOR=y -# CONFIG_SENSORS_LTC3815 is not set -# CONFIG_SENSORS_MAX16064 is not set -# CONFIG_SENSORS_MAX20751 is not set -# CONFIG_SENSORS_MAX31785 is not set -# CONFIG_SENSORS_MAX34440 is not set -# CONFIG_SENSORS_MAX8688 is not set -# CONFIG_SENSORS_PXE1610 is not set -# CONFIG_SENSORS_TPS40422 is not set -# CONFIG_SENSORS_TPS53679 is not set -# CONFIG_SENSORS_UCD9000 is not set -# CONFIG_SENSORS_UCD9200 is not set -# CONFIG_SENSORS_ZL6100 is not set -CONFIG_SENSORS_PWM_FAN=y -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SHT21 is not set -# CONFIG_SENSORS_SHT3x is not set -# CONFIG_SENSORS_SHTC1 is not set -# CONFIG_SENSORS_SIS5595 is not set -# CONFIG_SENSORS_DME1737 is not set -# CONFIG_SENSORS_EMC1403 is not set -# CONFIG_SENSORS_EMC2103 is not set -# CONFIG_SENSORS_EMC6W201 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47M192 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_STTS751 is not set -# CONFIG_SENSORS_SMM665 is not set -# CONFIG_SENSORS_ADC128D818 is not set -# CONFIG_SENSORS_ADS7828 is not set -# CONFIG_SENSORS_ADS7871 is not set -CONFIG_SENSORS_AMC6821=y -# CONFIG_SENSORS_INA209 is not set -CONFIG_SENSORS_INA2XX=y -CONFIG_SENSORS_INA3221=y -# CONFIG_SENSORS_TC74 is not set -# CONFIG_SENSORS_THMC50 is not set -# CONFIG_SENSORS_TMP102 is not set -# CONFIG_SENSORS_TMP103 is not set -# CONFIG_SENSORS_TMP108 is not set -# CONFIG_SENSORS_TMP401 is not set -# CONFIG_SENSORS_TMP421 is not set -# CONFIG_SENSORS_VEXPRESS is not set -# CONFIG_SENSORS_VIA686A is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_VT8231 is not set -# CONFIG_SENSORS_W83773G is not set -# CONFIG_SENSORS_W83781D is not set -# CONFIG_SENSORS_W83791D is not set -# CONFIG_SENSORS_W83792D is not set -# CONFIG_SENSORS_W83793 is not set -# CONFIG_SENSORS_W83795 is not set -# CONFIG_SENSORS_W83L785TS is not set -# CONFIG_SENSORS_W83L786NG is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -# CONFIG_SENSORS_XGENE is not set - -# -# ACPI drivers -# -# CONFIG_SENSORS_ACPI_POWER is not set -# CONFIG_SENSORS_MAG3110 is not set -CONFIG_MXC_MMA8451=y -CONFIG_THERMAL=y -# CONFIG_THERMAL_STATISTICS is not set -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y -CONFIG_CPU_THERMAL=y -# CONFIG_CLOCK_THERMAL is not set -# CONFIG_DEVFREQ_THERMAL is not set -CONFIG_THERMAL_EMULATION=y -# CONFIG_THERMAL_MMIO is not set -CONFIG_DEVICE_THERMAL=y -# CONFIG_MAX77620_THERMAL is not set -CONFIG_QORIQ_THERMAL=y -# CONFIG_GENERIC_ADC_THERMAL is not set -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -# CONFIG_WATCHDOG_SYSFS is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_WDAT_WDT is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_ZIIRAVE_WATCHDOG is not set -CONFIG_ARM_SP805_WATCHDOG=y -CONFIG_ARM_SBSA_WATCHDOG=y -# CONFIG_CADENCE_WATCHDOG is not set -CONFIG_DW_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_MAX77620_WATCHDOG is not set -CONFIG_IMX2_WDT=y -# CONFIG_ALIM7101_WDT is not set -# CONFIG_I6300ESB_WDT is not set -# CONFIG_MEN_A21_WDT is not set - -# -# PCI-based Watchdog Cards -# -# CONFIG_PCIPCWATCHDOG is not set -# CONFIG_WDTPCI is not set - -# -# USB-based Watchdog Cards -# -# CONFIG_USBPCWATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_ACT8945A is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_MFD_AS3722 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_AAT2870_CORE is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_BCM590XX is not set -CONFIG_MFD_BD9571MWV=y -CONFIG_MFD_AXP20X=y -CONFIG_MFD_AXP20X_I2C=y -# CONFIG_MFD_MADERA is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_DLN2 is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_MFD_MXC_HDMI is not set -CONFIG_MFD_HI6421_PMIC=y -# CONFIG_HTC_PASIC3 is not set -# CONFIG_HTC_I2CPLD is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX17135 is not set -CONFIG_MFD_MAX77620=y -# CONFIG_MFD_MAX77650 is not set -# CONFIG_MFD_MAX77686 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_VIPERBOARD is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -CONFIG_MFD_RK808=y -# CONFIG_MFD_RN5T618 is not set -CONFIG_MFD_SEC_CORE=y -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS65010 is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TI_LP87565 is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65910 is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TC3589X is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_LOCHNAGAR is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -CONFIG_MFD_ROHM_BD718XX=y -# CONFIG_MFD_ROHM_BD70528 is not set -# CONFIG_MFD_STPMIC1 is not set -# CONFIG_MFD_STMFX is not set -CONFIG_MFD_PCA9450=y -CONFIG_MFD_VEXPRESS_SYSREG=y -# CONFIG_RAVE_SP_CORE is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_88PG86X is not set -# CONFIG_REGULATOR_ACT8865 is not set -# CONFIG_REGULATOR_AD5398 is not set -# CONFIG_REGULATOR_ANATOP is not set -CONFIG_REGULATOR_AXP20X=y -CONFIG_REGULATOR_BD718XX=y -CONFIG_REGULATOR_BD9571MWV=y -# CONFIG_REGULATOR_DA9210 is not set -# CONFIG_REGULATOR_DA9211 is not set -CONFIG_REGULATOR_FAN53555=y -CONFIG_REGULATOR_GPIO=y -# CONFIG_REGULATOR_HI6421 is not set -CONFIG_REGULATOR_HI6421V530=y -# CONFIG_REGULATOR_ISL9305 is not set -# CONFIG_REGULATOR_ISL6271A is not set -# CONFIG_REGULATOR_LP3971 is not set -# CONFIG_REGULATOR_LP3972 is not set -# CONFIG_REGULATOR_LP872X is not set -# CONFIG_REGULATOR_LP8755 is not set -# CONFIG_REGULATOR_LTC3589 is not set -# CONFIG_REGULATOR_LTC3676 is not set -# CONFIG_REGULATOR_MAX1586 is not set -CONFIG_REGULATOR_MAX77620=y -# CONFIG_REGULATOR_MAX8649 is not set -# CONFIG_REGULATOR_MAX8660 is not set -# CONFIG_REGULATOR_MAX8952 is not set -CONFIG_REGULATOR_MAX8973=y -# CONFIG_REGULATOR_MCP16502 is not set -# CONFIG_REGULATOR_MT6311 is not set -CONFIG_REGULATOR_PCA9450=y -# CONFIG_REGULATOR_PF1550_RPMSG is not set -CONFIG_REGULATOR_PFUZE100=y -# CONFIG_REGULATOR_PV88060 is not set -# CONFIG_REGULATOR_PV88080 is not set -# CONFIG_REGULATOR_PV88090 is not set -CONFIG_REGULATOR_PWM=y -CONFIG_REGULATOR_QCOM_SPMI=y -CONFIG_REGULATOR_RK808=y -# CONFIG_REGULATOR_S2MPA01 is not set -CONFIG_REGULATOR_S2MPS11=y -# CONFIG_REGULATOR_S5M8767 is not set -# CONFIG_REGULATOR_SLG51000 is not set -# CONFIG_REGULATOR_SY8106A is not set -# CONFIG_REGULATOR_SY8824X is not set -# CONFIG_REGULATOR_TPS51632 is not set -# CONFIG_REGULATOR_TPS62360 is not set -# CONFIG_REGULATOR_TPS65023 is not set -# CONFIG_REGULATOR_TPS6507X is not set -# CONFIG_REGULATOR_TPS65132 is not set -# CONFIG_REGULATOR_TPS6524X is not set -CONFIG_REGULATOR_VCTRL=y -# CONFIG_REGULATOR_VEXPRESS is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_VGA_ARB is not set -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -CONFIG_DRM_RCAR_WRITEBACK=y -# CONFIG_DRM_IMX_DCSS is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_FB_MXC_DISP_FRAMEWORK is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -CONFIG_DUMMY_CONSOLE_COLUMNS=80 -CONFIG_DUMMY_CONSOLE_ROWS=25 -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACCUTOUCH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_APPLEIR is not set -# CONFIG_HID_ASUS is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_BETOP_FF is not set -# CONFIG_HID_BIGBEN_FF is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CORSAIR is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CREATIVE_SB0540 is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELAN is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_ELO is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_HOLTEK is not set -# CONFIG_HID_GT683R is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_UCLOGIC is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_NTRIG is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PENMOUNT is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_RETRODE is not set -# CONFIG_HID_ROCCAT is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SONY is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_U2FZERO is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers - -# -# USB HID support -# -CONFIG_USB_HID=y -# CONFIG_HID_PID is not set -# CONFIG_USB_HIDDEV is not set -# end of USB HID support - -# -# I2C HID support -# -CONFIG_I2C_HID=y -# end of I2C HID support -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -CONFIG_USB_ULPI_BUS=y -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -CONFIG_USB=y -CONFIG_USB_PCI=y -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set - -# -# Miscellaneous USB options -# -CONFIG_USB_DEFAULT_PERSIST=y -# CONFIG_USB_DYNAMIC_MINORS is not set -CONFIG_USB_OTG=y -# CONFIG_USB_OTG_WHITELIST is not set -# CONFIG_USB_OTG_BLACKLIST_HUB is not set -# CONFIG_USB_OTG_FSM is not set -CONFIG_USB_AUTOSUSPEND_DELAY=2 -# CONFIG_USB_MON is not set - -# -# USB Host Controller Drivers -# -# CONFIG_USB_C67X00_HCD is not set -CONFIG_USB_XHCI_HCD=y -# CONFIG_USB_XHCI_DBGCAP is not set -CONFIG_USB_XHCI_PCI=y -CONFIG_USB_XHCI_PLATFORM=y -CONFIG_USB_EHCI_HCD=y -CONFIG_USB_EHCI_ROOT_HUB_TT=y -CONFIG_USB_EHCI_TT_NEWSCHED=y -CONFIG_USB_EHCI_PCI=y -# CONFIG_USB_EHCI_FSL is not set -CONFIG_USB_EHCI_HCD_PLATFORM=y -# CONFIG_USB_OXU210HP_HCD is not set -# CONFIG_USB_ISP116X_HCD is not set -# CONFIG_USB_FOTG210_HCD is not set -# CONFIG_USB_MAX3421_HCD is not set -CONFIG_USB_OHCI_HCD=y -CONFIG_USB_OHCI_HCD_PCI=y -CONFIG_USB_OHCI_HCD_PLATFORM=y -# CONFIG_USB_UHCI_HCD is not set -# CONFIG_USB_SL811_HCD is not set -# CONFIG_USB_R8A66597_HCD is not set -# CONFIG_USB_HCD_TEST_MODE is not set - -# -# USB Device Class drivers -# -CONFIG_USB_ACM=y -# CONFIG_USB_PRINTER is not set -# CONFIG_USB_WDM is not set -# CONFIG_USB_TMC is not set - -# -# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may -# - -# -# also be needed; see USB_STORAGE Help for more info -# -CONFIG_USB_STORAGE=y -# CONFIG_USB_STORAGE_DEBUG is not set -# CONFIG_USB_STORAGE_REALTEK is not set -# CONFIG_USB_STORAGE_DATAFAB is not set -# CONFIG_USB_STORAGE_FREECOM is not set -# CONFIG_USB_STORAGE_ISD200 is not set -# CONFIG_USB_STORAGE_USBAT is not set -# CONFIG_USB_STORAGE_SDDR09 is not set -# CONFIG_USB_STORAGE_SDDR55 is not set -# CONFIG_USB_STORAGE_JUMPSHOT is not set -# CONFIG_USB_STORAGE_ALAUDA is not set -# CONFIG_USB_STORAGE_ONETOUCH is not set -# CONFIG_USB_STORAGE_KARMA is not set -# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set -# CONFIG_USB_STORAGE_ENE_UB6250 is not set -# CONFIG_USB_UAS is not set - -# -# USB Imaging devices -# -# CONFIG_USB_MDC800 is not set -# CONFIG_USB_MICROTEK is not set -# CONFIG_USBIP_CORE is not set -CONFIG_USB_CDNS3=y -CONFIG_USB_CDNS3_GADGET=y -CONFIG_USB_CDNS3_HOST=y -CONFIG_USB_MUSB_HDRC=y -# CONFIG_USB_MUSB_HOST is not set -# CONFIG_USB_MUSB_GADGET is not set -CONFIG_USB_MUSB_DUAL_ROLE=y - -# -# Platform Glue Layer -# - -# -# MUSB DMA mode -# -# CONFIG_MUSB_PIO_ONLY is not set -CONFIG_USB_DWC3=y -# CONFIG_USB_DWC3_ULPI is not set -# CONFIG_USB_DWC3_HOST is not set -# CONFIG_USB_DWC3_GADGET is not set -CONFIG_USB_DWC3_DUAL_ROLE=y - -# -# Platform Glue Driver Support -# -CONFIG_USB_DWC3_PCI=y -CONFIG_USB_DWC3_HAPS=y -CONFIG_USB_DWC3_OF_SIMPLE=y -CONFIG_USB_DWC2=y -# CONFIG_USB_DWC2_HOST is not set - -# -# Gadget/Dual-role mode requires USB Gadget support to be enabled -# -# CONFIG_USB_DWC2_PERIPHERAL is not set -CONFIG_USB_DWC2_DUAL_ROLE=y -# CONFIG_USB_DWC2_PCI is not set -# CONFIG_USB_DWC2_DEBUG is not set -# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set -CONFIG_USB_CHIPIDEA=y -CONFIG_USB_CHIPIDEA_OF=y -CONFIG_USB_CHIPIDEA_PCI=y -CONFIG_USB_CHIPIDEA_UDC=y -CONFIG_USB_CHIPIDEA_HOST=y -CONFIG_USB_ISP1760=y -CONFIG_USB_ISP1760_HCD=y -CONFIG_USB_ISP1761_UDC=y -# CONFIG_USB_ISP1760_HOST_ROLE is not set -# CONFIG_USB_ISP1760_GADGET_ROLE is not set -CONFIG_USB_ISP1760_DUAL_ROLE=y - -# -# USB port drivers -# -CONFIG_USB_SERIAL=y -CONFIG_USB_SERIAL_CONSOLE=y -CONFIG_USB_SERIAL_GENERIC=y -CONFIG_USB_SERIAL_SIMPLE=y -# CONFIG_USB_SERIAL_AIRCABLE is not set -# CONFIG_USB_SERIAL_ARK3116 is not set -# CONFIG_USB_SERIAL_BELKIN is not set -# CONFIG_USB_SERIAL_CH341 is not set -# CONFIG_USB_SERIAL_WHITEHEAT is not set -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set -# CONFIG_USB_SERIAL_CP210X is not set -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set -# CONFIG_USB_SERIAL_EMPEG is not set -CONFIG_USB_SERIAL_FTDI_SIO=y -# CONFIG_USB_SERIAL_VISOR is not set -# CONFIG_USB_SERIAL_IPAQ is not set -# CONFIG_USB_SERIAL_IR is not set -# CONFIG_USB_SERIAL_EDGEPORT is not set -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set -# CONFIG_USB_SERIAL_F81232 is not set -# CONFIG_USB_SERIAL_F8153X is not set -# CONFIG_USB_SERIAL_GARMIN is not set -# CONFIG_USB_SERIAL_IPW is not set -# CONFIG_USB_SERIAL_IUU is not set -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set -# CONFIG_USB_SERIAL_KEYSPAN is not set -# CONFIG_USB_SERIAL_KLSI is not set -# CONFIG_USB_SERIAL_KOBIL_SCT is not set -# CONFIG_USB_SERIAL_MCT_U232 is not set -# CONFIG_USB_SERIAL_METRO is not set -# CONFIG_USB_SERIAL_MOS7720 is not set -# CONFIG_USB_SERIAL_MOS7840 is not set -# CONFIG_USB_SERIAL_MXUPORT is not set -# CONFIG_USB_SERIAL_NAVMAN is not set -# CONFIG_USB_SERIAL_PL2303 is not set -# CONFIG_USB_SERIAL_OTI6858 is not set -# CONFIG_USB_SERIAL_QCAUX is not set -# CONFIG_USB_SERIAL_QUALCOMM is not set -# CONFIG_USB_SERIAL_SPCP8X5 is not set -# CONFIG_USB_SERIAL_SAFE is not set -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set -# CONFIG_USB_SERIAL_SYMBOL is not set -# CONFIG_USB_SERIAL_TI is not set -# CONFIG_USB_SERIAL_CYBERJACK is not set -# CONFIG_USB_SERIAL_XIRCOM is not set -# CONFIG_USB_SERIAL_OPTION is not set -# CONFIG_USB_SERIAL_OMNINET is not set -# CONFIG_USB_SERIAL_OPTICON is not set -# CONFIG_USB_SERIAL_XSENS_MT is not set -# CONFIG_USB_SERIAL_WISHBONE is not set -# CONFIG_USB_SERIAL_SSU100 is not set -# CONFIG_USB_SERIAL_QT2 is not set -# CONFIG_USB_SERIAL_UPD78F0730 is not set -# CONFIG_USB_SERIAL_DEBUG is not set - -# -# USB Miscellaneous drivers -# -# CONFIG_USB_EMI62 is not set -# CONFIG_USB_EMI26 is not set -# CONFIG_USB_ADUTUX is not set -# CONFIG_USB_SEVSEG is not set -# CONFIG_USB_LEGOTOWER is not set -# CONFIG_USB_LCD is not set -# CONFIG_USB_CYPRESS_CY7C63 is not set -# CONFIG_USB_CYTHERM is not set -# CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set -# CONFIG_USB_APPLEDISPLAY is not set -# CONFIG_USB_SISUSBVGA is not set -# CONFIG_USB_LD is not set -# CONFIG_USB_TRANCEVIBRATOR is not set -# CONFIG_USB_IOWARRIOR is not set -CONFIG_USB_TEST=y -CONFIG_USB_EHSET_TEST_FIXTURE=y -# CONFIG_USB_ISIGHTFW is not set -# CONFIG_USB_YUREX is not set -# CONFIG_USB_EZUSB_FX2 is not set -# CONFIG_USB_HUB_USB251XB is not set -CONFIG_USB_HSIC_USB3503=y -# CONFIG_USB_HSIC_USB4604 is not set -# CONFIG_USB_LINK_LAYER_TEST is not set -# CONFIG_USB_CHAOSKEY is not set - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_USB_GPIO_VBUS is not set -# CONFIG_USB_ISP1301 is not set -CONFIG_USB_ULPI=y -CONFIG_USB_ULPI_VIEWPORT=y -# end of USB Physical Layer drivers - -CONFIG_USB_GADGET=y -# CONFIG_USB_GADGET_DEBUG is not set -# CONFIG_USB_GADGET_DEBUG_FILES is not set -# CONFIG_USB_GADGET_DEBUG_FS is not set -CONFIG_USB_GADGET_VBUS_DRAW=2 -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 -# CONFIG_U_SERIAL_CONSOLE is not set - -# -# USB Peripheral Controller -# -# CONFIG_USB_FOTG210_UDC is not set -# CONFIG_USB_GR_UDC is not set -# CONFIG_USB_R8A66597 is not set -# CONFIG_USB_PXA27X is not set -# CONFIG_USB_MV_UDC is not set -# CONFIG_USB_MV_U3D is not set -CONFIG_USB_SNP_CORE=y -CONFIG_USB_SNP_UDC_PLAT=y -# CONFIG_USB_M66592 is not set -CONFIG_USB_BDC_UDC=y - -# -# Platform Support -# -CONFIG_USB_BDC_PCI=y -# CONFIG_USB_AMD5536UDC is not set -# CONFIG_USB_NET2272 is not set -# CONFIG_USB_NET2280 is not set -# CONFIG_USB_GOKU is not set -# CONFIG_USB_EG20T is not set -# CONFIG_USB_GADGET_XILINX is not set -# CONFIG_USB_DUMMY_HCD is not set -# end of USB Peripheral Controller - -CONFIG_USB_LIBCOMPOSITE=y -CONFIG_USB_F_ACM=y -CONFIG_USB_F_SS_LB=y -CONFIG_USB_U_SERIAL=y -CONFIG_USB_U_ETHER=y -CONFIG_USB_F_SERIAL=y -CONFIG_USB_F_OBEX=y -CONFIG_USB_F_NCM=y -CONFIG_USB_F_ECM=y -CONFIG_USB_F_EEM=y -CONFIG_USB_F_SUBSET=y -CONFIG_USB_F_RNDIS=y -CONFIG_USB_F_MASS_STORAGE=y -CONFIG_USB_F_FS=y -CONFIG_USB_F_HID=y -CONFIG_USB_CONFIGFS=y -CONFIG_USB_CONFIGFS_SERIAL=y -CONFIG_USB_CONFIGFS_ACM=y -CONFIG_USB_CONFIGFS_OBEX=y -CONFIG_USB_CONFIGFS_NCM=y -CONFIG_USB_CONFIGFS_ECM=y -CONFIG_USB_CONFIGFS_ECM_SUBSET=y -CONFIG_USB_CONFIGFS_RNDIS=y -CONFIG_USB_CONFIGFS_EEM=y -CONFIG_USB_CONFIGFS_MASS_STORAGE=y -CONFIG_USB_CONFIGFS_F_LB_SS=y -CONFIG_USB_CONFIGFS_F_FS=y -CONFIG_USB_CONFIGFS_F_HID=y -# CONFIG_USB_CONFIGFS_F_PRINTER is not set -# CONFIG_USB_ZERO is not set -# CONFIG_USB_ETH is not set -# CONFIG_USB_G_NCM is not set -# CONFIG_USB_GADGETFS is not set -# CONFIG_USB_FUNCTIONFS is not set -# CONFIG_USB_MASS_STORAGE is not set -CONFIG_USB_G_SERIAL=y -# CONFIG_USB_G_PRINTER is not set -# CONFIG_USB_CDC_COMPOSITE is not set -# CONFIG_USB_G_ACM_MS is not set -# CONFIG_USB_G_MULTI is not set -# CONFIG_USB_G_HID is not set -# CONFIG_USB_G_DBGP is not set -CONFIG_TYPEC=y -CONFIG_TYPEC_TCPM=y -CONFIG_TYPEC_TCPCI=y -# CONFIG_TYPEC_RT1711H is not set -# CONFIG_TYPEC_FUSB302 is not set -# CONFIG_TYPEC_UCSI is not set -# CONFIG_TYPEC_TPS6598X is not set - -# -# USB Type-C Multiplexer/DeMultiplexer Switch support -# -# CONFIG_TYPEC_MUX_PI3USB30532 is not set -CONFIG_TYPEC_SWITCH_GPIO=y -# end of USB Type-C Multiplexer/DeMultiplexer Switch support - -# -# USB Type-C Alternate Mode drivers -# -# CONFIG_TYPEC_DP_ALTMODE is not set -# end of USB Type-C Alternate Mode drivers - -CONFIG_USB_ROLE_SWITCH=y -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=32 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -CONFIG_MMC_ARMMMCI=y -CONFIG_MMC_STM32_SDMMC=y -CONFIG_MMC_SDHCI=y -CONFIG_MMC_SDHCI_IO_ACCESSORS=y -# CONFIG_MMC_SDHCI_PCI is not set -CONFIG_MMC_SDHCI_ACPI=y -CONFIG_MMC_SDHCI_PLTFM=y -CONFIG_MMC_SDHCI_OF_ARASAN=y -# CONFIG_MMC_SDHCI_OF_ASPEED is not set -# CONFIG_MMC_SDHCI_OF_AT91 is not set -CONFIG_MMC_SDHCI_OF_ESDHC=y -# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set -CONFIG_MMC_SDHCI_CADENCE=y -CONFIG_MMC_SDHCI_F_SDH30=y -# CONFIG_MMC_TIFM_SD is not set -CONFIG_MMC_SPI=y -# CONFIG_MMC_CB710 is not set -# CONFIG_MMC_VIA_SDMMC is not set -CONFIG_MMC_DW=y -CONFIG_MMC_DW_PLTFM=y -# CONFIG_MMC_DW_BLUEFIELD is not set -CONFIG_MMC_DW_EXYNOS=y -CONFIG_MMC_DW_HI3798CV200=y -CONFIG_MMC_DW_K3=y -# CONFIG_MMC_DW_PCI is not set -# CONFIG_MMC_VUB300 is not set -# CONFIG_MMC_USHC is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_CQHCI=y -# CONFIG_MMC_TOSHIBA_PCI is not set -# CONFIG_MMC_MTK is not set -CONFIG_MMC_SDHCI_XENON=y -# CONFIG_MMC_SDHCI_OMAP is not set -# CONFIG_MMC_SDHCI_AM654 is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_AN30259A is not set -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_LM3530 is not set -# CONFIG_LEDS_LM3532 is not set -# CONFIG_LEDS_LM3642 is not set -# CONFIG_LEDS_LM3692X is not set -# CONFIG_LEDS_PCA9532 is not set -CONFIG_LEDS_GPIO=y -# CONFIG_LEDS_LP3944 is not set -# CONFIG_LEDS_LP3952 is not set -# CONFIG_LEDS_LP5521 is not set -# CONFIG_LEDS_LP5523 is not set -# CONFIG_LEDS_LP5562 is not set -# CONFIG_LEDS_LP8501 is not set -# CONFIG_LEDS_LP8860 is not set -# CONFIG_LEDS_PCA955X is not set -# CONFIG_LEDS_PCA963X is not set -# CONFIG_LEDS_DAC124S085 is not set -CONFIG_LEDS_PWM=y -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_BD2802 is not set -# CONFIG_LEDS_LT3593 is not set -# CONFIG_LEDS_TCA6507 is not set -# CONFIG_LEDS_TLC591XX is not set -# CONFIG_LEDS_LM355x is not set -# CONFIG_LEDS_IS31FL319X is not set -# CONFIG_LEDS_IS31FL32XX is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_BLINKM is not set -CONFIG_LEDS_SYSCON=y -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# LED Triggers -# -# CONFIG_LEDS_TRIGGERS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -CONFIG_EDAC=y -CONFIG_EDAC_LEGACY_SYSFS=y -# CONFIG_EDAC_DEBUG is not set -CONFIG_EDAC_GHES=y -# CONFIG_EDAC_LAYERSCAPE is not set -# CONFIG_EDAC_THUNDERX is not set -# CONFIG_EDAC_XGENE is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# -# CONFIG_RTC_DRV_ABB5ZES3 is not set -# CONFIG_RTC_DRV_ABEOZ9 is not set -# CONFIG_RTC_DRV_ABX80X is not set -CONFIG_RTC_DRV_DS1307=y -# CONFIG_RTC_DRV_DS1307_CENTURY is not set -# CONFIG_RTC_DRV_DS1374 is not set -# CONFIG_RTC_DRV_DS1672 is not set -# CONFIG_RTC_DRV_HYM8563 is not set -# CONFIG_RTC_DRV_MAX6900 is not set -CONFIG_RTC_DRV_MAX77686=y -CONFIG_RTC_DRV_RK808=y -# CONFIG_RTC_DRV_RS5C372 is not set -# CONFIG_RTC_DRV_ISL1208 is not set -# CONFIG_RTC_DRV_ISL12022 is not set -# CONFIG_RTC_DRV_ISL12026 is not set -# CONFIG_RTC_DRV_X1205 is not set -# CONFIG_RTC_DRV_PCF8523 is not set -# CONFIG_RTC_DRV_PCF85063 is not set -CONFIG_RTC_DRV_PCF85363=y -# CONFIG_RTC_DRV_PCF8563 is not set -# CONFIG_RTC_DRV_PCF8583 is not set -# CONFIG_RTC_DRV_M41T80 is not set -# CONFIG_RTC_DRV_BQ32K is not set -# CONFIG_RTC_DRV_S35390A is not set -# CONFIG_RTC_DRV_FM3130 is not set -# CONFIG_RTC_DRV_RX8010 is not set -CONFIG_RTC_DRV_RX8581=y -# CONFIG_RTC_DRV_RX8025 is not set -# CONFIG_RTC_DRV_EM3027 is not set -# CONFIG_RTC_DRV_RV3028 is not set -# CONFIG_RTC_DRV_RV8803 is not set -CONFIG_RTC_DRV_S5M=y -# CONFIG_RTC_DRV_SD3078 is not set - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RX6110 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -CONFIG_RTC_DRV_DS3232=y -CONFIG_RTC_DRV_DS3232_HWMON=y -CONFIG_RTC_DRV_PCF2127=y -# CONFIG_RTC_DRV_RV3029C2 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -CONFIG_RTC_DRV_EFI=y -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -CONFIG_RTC_DRV_FSL_FTM_ALARM=y -# CONFIG_RTC_DRV_PL030 is not set -CONFIG_RTC_DRV_PL031=y -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -CONFIG_RTC_DRV_SNVS=y -# CONFIG_RTC_DRV_IMX_RPMSG is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_ACPI=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -# CONFIG_AMBA_PL08X is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_DMA is not set -# CONFIG_DW_AXI_DMAC is not set -CONFIG_FSL_EDMA=y -# CONFIG_FSL_QDMA is not set -CONFIG_FSL_EDMA_V3=y -# CONFIG_INTEL_IDMA64 is not set -CONFIG_MV_XOR_V2=y -CONFIG_PL330_DMA=y -# CONFIG_XILINX_DMA is not set -# CONFIG_XILINX_ZYNQMP_DMA is not set -CONFIG_QCOM_HIDMA_MGMT=y -CONFIG_QCOM_HIDMA=y -# CONFIG_DW_DMAC is not set -# CONFIG_DW_DMAC_PCI is not set -# CONFIG_DW_EDMA is not set -# CONFIG_DW_EDMA_PCIE is not set -# CONFIG_FSL_DPAA2_QDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -CONFIG_DMATEST=y -CONFIG_DMA_ENGINE_RAID=y - -# -# DMABUF options -# -CONFIG_SYNC_FILE=y -# CONFIG_SW_SYNC is not set -# CONFIG_UDMABUF is not set -# CONFIG_DMABUF_SELFTESTS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -CONFIG_UIO=y -CONFIG_UIO_CIF=y -CONFIG_UIO_PDRV_GENIRQ=y -CONFIG_UIO_DMEM_GENIRQ=y -CONFIG_UIO_AEC=y -CONFIG_UIO_SERCOS3=y -CONFIG_UIO_PCI_GENERIC=y -CONFIG_UIO_NETX=y -# CONFIG_UIO_PRUSS is not set -CONFIG_UIO_MF624=y -CONFIG_VFIO_IOMMU_TYPE1=y -CONFIG_VFIO_VIRQFD=y -CONFIG_VFIO=y -# CONFIG_VFIO_NOIOMMU is not set -CONFIG_VFIO_PCI=y -CONFIG_VFIO_PCI_MMAP=y -CONFIG_VFIO_PCI_INTX=y -# CONFIG_VFIO_PLATFORM is not set -# CONFIG_VFIO_MDEV is not set -CONFIG_VFIO_FSL_MC=y -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -CONFIG_VIRTIO_MENU=y -CONFIG_VIRTIO_PCI=y -CONFIG_VIRTIO_PCI_LEGACY=y -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -CONFIG_VIRTIO_MMIO=y -# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -CONFIG_STAGING=y -# CONFIG_COMEDI is not set -# CONFIG_R8712U is not set -# CONFIG_RTS5208 is not set - -# -# IIO staging drivers -# - -# -# Accelerometers -# -# CONFIG_ADIS16203 is not set -# CONFIG_ADIS16240 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7816 is not set -# CONFIG_AD7192 is not set -# CONFIG_AD7280 is not set -# end of Analog to digital converters - -# -# Analog digital bi-direction converters -# -# CONFIG_ADT7316 is not set -# end of Analog digital bi-direction converters - -# -# Capacitance to digital converters -# -# CONFIG_AD7150 is not set -# CONFIG_AD7746 is not set -# end of Capacitance to digital converters - -# -# Direct Digital Synthesis -# -# CONFIG_AD9832 is not set -# CONFIG_AD9834 is not set -# end of Direct Digital Synthesis - -# -# Network Analyzer, Impedance Converters -# -# CONFIG_AD5933 is not set -# end of Network Analyzer, Impedance Converters - -# -# Active energy metering IC -# -# CONFIG_ADE7854 is not set -# end of Active energy metering IC - -# -# Resolver to digital converters -# -# CONFIG_AD2S1210 is not set -# end of Resolver to digital converters -# end of IIO staging drivers - -# -# Speakup console speech -# -# CONFIG_SPEAKUP is not set -# end of Speakup console speech - -CONFIG_STAGING_MEDIA=y - -# -# Android -# -CONFIG_ION=y -CONFIG_ION_SYSTEM_HEAP=y -CONFIG_ION_CMA_HEAP=y -# end of Android - -# CONFIG_STAGING_BOARD is not set -# CONFIG_GS_FPGABOOT is not set -# CONFIG_UNISYSSPAR is not set -# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set -CONFIG_FSL_DPAA2=y -CONFIG_FSL_DPAA2_MAC=y -# CONFIG_FSL_DPAA2_MAC_NETDEVS is not set -CONFIG_FSL_DPAA2_EVB=y -# CONFIG_MOST is not set -# CONFIG_KS7010 is not set -# CONFIG_PI433 is not set - -# -# Gasket devices -# -# CONFIG_STAGING_GASKET_FRAMEWORK is not set -# end of Gasket devices - -# CONFIG_XIL_AXIS_FIFO is not set -# CONFIG_FIELDBUS_DEV is not set -# CONFIG_KPC2000 is not set -# CONFIG_USB_WUSB_CBAF is not set -# CONFIG_UWB is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_QLGE is not set -CONFIG_FSL_SDK_DPA=y - -# -# Freescale Datapath QMan/BMan options -# -# CONFIG_FSL_DPA_CHECKING is not set -CONFIG_FSL_DPA_CAN_WAIT=y -CONFIG_FSL_DPA_CAN_WAIT_SYNC=y -CONFIG_FSL_DPA_PIRQ_FAST=y -CONFIG_FSL_DPA_PIRQ_SLOW=y -CONFIG_FSL_DPA_PORTAL_SHARE=y -CONFIG_FSL_SDK_BMAN=y -CONFIG_FSL_BMAN_CONFIG=y -# CONFIG_FSL_BMAN_TEST is not set -CONFIG_FSL_BMAN_DEBUGFS=y -CONFIG_FSL_SDK_QMAN=y -CONFIG_FSL_QMAN_POLL_LIMIT=32 -CONFIG_FSL_QMAN_CONFIG=y -# CONFIG_FSL_QMAN_TEST is not set -CONFIG_FSL_QMAN_DEBUGFS=y -CONFIG_FSL_QMAN_FQD_SZ=10 -CONFIG_FSL_QMAN_PFDR_SZ=13 -CONFIG_FSL_QMAN_CI_SCHED_CFG_SRCCIV=4 -CONFIG_FSL_QMAN_CI_SCHED_CFG_SRQ_W=3 -CONFIG_FSL_QMAN_CI_SCHED_CFG_RW_W=2 -CONFIG_FSL_QMAN_CI_SCHED_CFG_BMAN_W=2 -CONFIG_FSL_QMAN_PIRQ_DQRR_ITHRESH=12 -CONFIG_FSL_QMAN_PIRQ_MR_ITHRESH=4 -CONFIG_FSL_QMAN_PIRQ_IPERIOD=100 -CONFIG_FSL_QMAN_FQ_LOOKUP=y -CONFIG_QMAN_CEETM_UPDATE_PERIOD=1000 -CONFIG_FSL_QMAN_INIT_TIMEOUT=10 -CONFIG_FSL_USDPAA=y -# end of Freescale Datapath QMan/BMan options - -CONFIG_FSL_PPFE=y -CONFIG_FSL_PPFE_UTIL_DISABLED=y -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -CONFIG_COMMON_CLK_VERSATILE=y -CONFIG_CLK_SP810=y -CONFIG_CLK_VEXPRESS_OSC=y -# CONFIG_CLK_HSDK is not set -# CONFIG_COMMON_CLK_MAX77686 is not set -# CONFIG_COMMON_CLK_MAX9485 is not set -CONFIG_COMMON_CLK_RK808=y -CONFIG_COMMON_CLK_SCPI=y -# CONFIG_COMMON_CLK_SI5341 is not set -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_SI514 is not set -# CONFIG_COMMON_CLK_SI544 is not set -# CONFIG_COMMON_CLK_SI570 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CDCE925 is not set -CONFIG_COMMON_CLK_CS2000_CP=y -CONFIG_COMMON_CLK_S2MPS11=y -CONFIG_CLK_QORIQ=y -CONFIG_CLK_LS1028A_PLLDIG=y -CONFIG_COMMON_CLK_XGENE=y -CONFIG_COMMON_CLK_PWM=y -# CONFIG_COMMON_CLK_VC5 is not set -# CONFIG_COMMON_CLK_BD718XX is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -CONFIG_ARCH_S32_CLK=y -# end of Common Clock Framework - -CONFIG_HWSPINLOCK=y - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_ACPI=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_ARM_ARCH_TIMER=y -CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y -CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y -CONFIG_FSL_ERRATUM_A008585=y -# CONFIG_HISILICON_ERRATUM_161010101 is not set -# CONFIG_ARM64_ERRATUM_858921 is not set -CONFIG_CLKSRC_VERSATILE=y -# end of Clock Source drivers - -CONFIG_MAILBOX=y -CONFIG_ARM_MHU=y -CONFIG_PLATFORM_MHU=y -# CONFIG_PL320_MBOX is not set -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_MAILBOX_TEST is not set -CONFIG_IOMMU_IOVA=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -CONFIG_IOMMU_IO_PGTABLE=y -CONFIG_IOMMU_IO_PGTABLE_LPAE=y -# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set -# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y -CONFIG_OF_IOMMU=y -CONFIG_IOMMU_DMA=y -CONFIG_ARM_SMMU=y -# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set -CONFIG_ARM_SMMU_V3=y -# CONFIG_VIRTIO_IOMMU is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -CONFIG_RPMSG=y -# CONFIG_RPMSG_CHAR is not set -CONFIG_RPMSG_QCOM_GLINK_NATIVE=y -CONFIG_RPMSG_QCOM_GLINK_RPM=y -CONFIG_RPMSG_VIRTIO=y -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# CONFIG_FSL_DPAA is not set -# CONFIG_QUICC_ENGINE is not set -CONFIG_FSL_GUTS=y -CONFIG_FSL_MC_DPIO=y -CONFIG_DPAA2_CONSOLE=y -CONFIG_FSL_QIXIS=y -CONFIG_FSL_RCPM=y -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -CONFIG_PM_DEVFREQ=y - -# -# DEVFREQ Governors -# -CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y -# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set -# CONFIG_DEVFREQ_GOV_POWERSAVE is not set -# CONFIG_DEVFREQ_GOV_USERSPACE is not set -# CONFIG_DEVFREQ_GOV_PASSIVE is not set - -# -# DEVFREQ Drivers -# -# CONFIG_PM_DEVFREQ_EVENT is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_ADC_JACK is not set -# CONFIG_EXTCON_FSA9480 is not set -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_PTN5150 is not set -# CONFIG_EXTCON_RT8973A is not set -# CONFIG_EXTCON_SM5502 is not set -CONFIG_EXTCON_USB_GPIO=y -CONFIG_MEMORY=y -# CONFIG_ARM_PL172_MPMC is not set -CONFIG_FSL_IFC=y -CONFIG_IIO=y -CONFIG_IIO_BUFFER=y -# CONFIG_IIO_BUFFER_CB is not set -# CONFIG_IIO_BUFFER_HW_CONSUMER is not set -CONFIG_IIO_KFIFO_BUF=y -# CONFIG_IIO_CONFIGFS is not set -CONFIG_IIO_TRIGGER=y -CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 -# CONFIG_IIO_SW_DEVICE is not set -# CONFIG_IIO_SW_TRIGGER is not set - -# -# Accelerometers -# -# CONFIG_ADIS16201 is not set -# CONFIG_ADIS16209 is not set -# CONFIG_ADXL345_I2C is not set -# CONFIG_ADXL345_SPI is not set -# CONFIG_ADXL372_SPI is not set -# CONFIG_ADXL372_I2C is not set -# CONFIG_BMA180 is not set -# CONFIG_BMA220 is not set -# CONFIG_BMC150_ACCEL is not set -# CONFIG_DA280 is not set -# CONFIG_DA311 is not set -# CONFIG_DMARD06 is not set -# CONFIG_DMARD09 is not set -# CONFIG_DMARD10 is not set -# CONFIG_IIO_ST_ACCEL_3AXIS is not set -# CONFIG_KXSD9 is not set -# CONFIG_KXCJK1013 is not set -# CONFIG_MC3230 is not set -# CONFIG_MMA7455_I2C is not set -# CONFIG_MMA7455_SPI is not set -# CONFIG_MMA7660 is not set -# CONFIG_MMA8452 is not set -# CONFIG_MMA9551 is not set -# CONFIG_MMA9553 is not set -# CONFIG_MXC4005 is not set -# CONFIG_MXC6255 is not set -# CONFIG_SCA3000 is not set -# CONFIG_STK8312 is not set -# CONFIG_STK8BA50 is not set -# end of Accelerometers - -# -# Analog to digital converters -# -# CONFIG_AD7124 is not set -# CONFIG_AD7266 is not set -# CONFIG_AD7291 is not set -# CONFIG_AD7298 is not set -# CONFIG_AD7476 is not set -# CONFIG_AD7606_IFACE_PARALLEL is not set -# CONFIG_AD7606_IFACE_SPI is not set -# CONFIG_AD7766 is not set -# CONFIG_AD7768_1 is not set -# CONFIG_AD7780 is not set -# CONFIG_AD7791 is not set -# CONFIG_AD7793 is not set -# CONFIG_AD7887 is not set -# CONFIG_AD7923 is not set -# CONFIG_AD7949 is not set -# CONFIG_AD799X is not set -# CONFIG_AXP20X_ADC is not set -# CONFIG_AXP288_ADC is not set -# CONFIG_CC10001_ADC is not set -# CONFIG_ENVELOPE_DETECTOR is not set -# CONFIG_HI8435 is not set -# CONFIG_HX711 is not set -# CONFIG_LTC2471 is not set -# CONFIG_LTC2485 is not set -# CONFIG_LTC2497 is not set -# CONFIG_MAX1027 is not set -# CONFIG_MAX11100 is not set -# CONFIG_MAX1118 is not set -# CONFIG_MAX1363 is not set -# CONFIG_MAX9611 is not set -# CONFIG_MCP320X is not set -# CONFIG_MCP3422 is not set -# CONFIG_MCP3911 is not set -# CONFIG_NAU7802 is not set -# CONFIG_QCOM_SPMI_IADC is not set -# CONFIG_QCOM_SPMI_VADC is not set -# CONFIG_QCOM_SPMI_ADC5 is not set -# CONFIG_SD_ADC_MODULATOR is not set -# CONFIG_TI_ADC081C is not set -# CONFIG_TI_ADC0832 is not set -# CONFIG_TI_ADC084S021 is not set -# CONFIG_TI_ADC12138 is not set -# CONFIG_TI_ADC108S102 is not set -# CONFIG_TI_ADC128S052 is not set -# CONFIG_TI_ADC161S626 is not set -# CONFIG_TI_ADS1015 is not set -# CONFIG_TI_ADS7950 is not set -# CONFIG_TI_ADS8344 is not set -# CONFIG_TI_ADS8688 is not set -# CONFIG_TI_ADS124S08 is not set -# CONFIG_TI_TLC4541 is not set -# CONFIG_VF610_ADC is not set -# CONFIG_XILINX_XADC is not set -# end of Analog to digital converters - -# -# Analog Front Ends -# -# CONFIG_IIO_RESCALE is not set -# end of Analog Front Ends - -# -# Amplifiers -# -# CONFIG_AD8366 is not set -# end of Amplifiers - -# -# Chemical Sensors -# -# CONFIG_ATLAS_PH_SENSOR is not set -# CONFIG_BME680 is not set -# CONFIG_CCS811 is not set -# CONFIG_IAQCORE is not set -# CONFIG_PMS7003 is not set -# CONFIG_SENSIRION_SGP30 is not set -# CONFIG_SPS30 is not set -# CONFIG_VZ89X is not set -# end of Chemical Sensors - -# -# Hid Sensor IIO Common -# -# end of Hid Sensor IIO Common - -# -# SSP Sensor Common -# -# CONFIG_IIO_SSP_SENSORHUB is not set -# end of SSP Sensor Common - -# -# Digital to analog converters -# -# CONFIG_AD5064 is not set -# CONFIG_AD5360 is not set -# CONFIG_AD5380 is not set -# CONFIG_AD5421 is not set -# CONFIG_AD5446 is not set -# CONFIG_AD5449 is not set -# CONFIG_AD5592R is not set -# CONFIG_AD5593R is not set -# CONFIG_AD5504 is not set -# CONFIG_AD5624R_SPI is not set -# CONFIG_LTC1660 is not set -# CONFIG_LTC2632 is not set -# CONFIG_AD5686_SPI is not set -# CONFIG_AD5696_I2C is not set -# CONFIG_AD5755 is not set -# CONFIG_AD5758 is not set -# CONFIG_AD5761 is not set -# CONFIG_AD5764 is not set -# CONFIG_AD5791 is not set -# CONFIG_AD7303 is not set -# CONFIG_AD8801 is not set -# CONFIG_DPOT_DAC is not set -# CONFIG_DS4424 is not set -# CONFIG_M62332 is not set -# CONFIG_MAX517 is not set -# CONFIG_MAX5821 is not set -# CONFIG_MCP4725 is not set -# CONFIG_MCP4922 is not set -# CONFIG_TI_DAC082S085 is not set -# CONFIG_TI_DAC5571 is not set -# CONFIG_TI_DAC7311 is not set -# CONFIG_TI_DAC7612 is not set -# CONFIG_VF610_DAC is not set -# end of Digital to analog converters - -# -# IIO dummy driver -# -# end of IIO dummy driver - -# -# Frequency Synthesizers DDS/PLL -# - -# -# Clock Generator/Distribution -# -# CONFIG_AD9523 is not set -# end of Clock Generator/Distribution - -# -# Phase-Locked Loop (PLL) frequency synthesizers -# -# CONFIG_ADF4350 is not set -# CONFIG_ADF4371 is not set -# end of Phase-Locked Loop (PLL) frequency synthesizers -# end of Frequency Synthesizers DDS/PLL - -# -# Digital gyroscope sensors -# -# CONFIG_ADIS16080 is not set -# CONFIG_ADIS16130 is not set -# CONFIG_ADIS16136 is not set -# CONFIG_ADIS16260 is not set -# CONFIG_ADXRS450 is not set -# CONFIG_BMG160 is not set -# CONFIG_FXAS21002C is not set -# CONFIG_MPU3050_I2C is not set -# CONFIG_IIO_ST_GYRO_3AXIS is not set -# CONFIG_ITG3200 is not set -# end of Digital gyroscope sensors - -# -# Health Sensors -# - -# -# Heart Rate Monitors -# -# CONFIG_AFE4403 is not set -# CONFIG_AFE4404 is not set -# CONFIG_MAX30100 is not set -# CONFIG_MAX30102 is not set -# end of Heart Rate Monitors -# end of Health Sensors - -# -# Humidity sensors -# -# CONFIG_AM2315 is not set -# CONFIG_DHT11 is not set -# CONFIG_HDC100X is not set -# CONFIG_HTS221 is not set -# CONFIG_HTU21 is not set -# CONFIG_SI7005 is not set -# CONFIG_SI7020 is not set -# end of Humidity sensors - -# -# Inertial measurement units -# -# CONFIG_ADIS16400 is not set -# CONFIG_ADIS16460 is not set -# CONFIG_ADIS16480 is not set -# CONFIG_BMI160_I2C is not set -# CONFIG_BMI160_SPI is not set -# CONFIG_KMX61 is not set -# CONFIG_INV_MPU6050_I2C is not set -# CONFIG_INV_MPU6050_SPI is not set -# CONFIG_IIO_ST_LSM6DSX is not set -# end of Inertial measurement units - -# -# Light sensors -# -# CONFIG_ACPI_ALS is not set -# CONFIG_ADJD_S311 is not set -# CONFIG_AL3320A is not set -# CONFIG_APDS9300 is not set -# CONFIG_APDS9960 is not set -# CONFIG_BH1750 is not set -# CONFIG_BH1780 is not set -# CONFIG_CM32181 is not set -# CONFIG_CM3232 is not set -# CONFIG_CM3323 is not set -# CONFIG_CM3605 is not set -# CONFIG_CM36651 is not set -# CONFIG_GP2AP020A00F is not set -# CONFIG_SENSORS_ISL29018 is not set -# CONFIG_SENSORS_ISL29028 is not set -# CONFIG_ISL29125 is not set -# CONFIG_JSA1212 is not set -# CONFIG_RPR0521 is not set -# CONFIG_LTR501 is not set -# CONFIG_LV0104CS is not set -# CONFIG_MAX44000 is not set -# CONFIG_MAX44009 is not set -# CONFIG_NOA1305 is not set -# CONFIG_OPT3001 is not set -# CONFIG_PA12203001 is not set -# CONFIG_SI1133 is not set -# CONFIG_SI1145 is not set -# CONFIG_STK3310 is not set -# CONFIG_ST_UVIS25 is not set -# CONFIG_TCS3414 is not set -# CONFIG_TCS3472 is not set -# CONFIG_SENSORS_TSL2563 is not set -# CONFIG_TSL2583 is not set -# CONFIG_TSL2772 is not set -# CONFIG_TSL4531 is not set -# CONFIG_US5182D is not set -# CONFIG_VCNL4000 is not set -# CONFIG_VCNL4035 is not set -# CONFIG_VEML6070 is not set -# CONFIG_VL6180 is not set -# CONFIG_ZOPT2201 is not set -# end of Light sensors - -# -# Magnetometer sensors -# -# CONFIG_AK8974 is not set -# CONFIG_AK8975 is not set -# CONFIG_AK09911 is not set -# CONFIG_BMC150_MAGN_I2C is not set -# CONFIG_BMC150_MAGN_SPI is not set -# CONFIG_MAG3110 is not set -# CONFIG_MMC35240 is not set -# CONFIG_IIO_ST_MAGN_3AXIS is not set -# CONFIG_SENSORS_HMC5843_I2C is not set -# CONFIG_SENSORS_HMC5843_SPI is not set -# CONFIG_SENSORS_RM3100_I2C is not set -# CONFIG_SENSORS_RM3100_SPI is not set -# end of Magnetometer sensors - -# -# Multiplexers -# -# CONFIG_IIO_MUX is not set -# end of Multiplexers - -# -# Inclinometer sensors -# -# end of Inclinometer sensors - -# -# Triggers - standalone -# -# CONFIG_IIO_INTERRUPT_TRIGGER is not set -# CONFIG_IIO_SYSFS_TRIGGER is not set -# end of Triggers - standalone - -# -# Digital potentiometers -# -# CONFIG_AD5272 is not set -# CONFIG_DS1803 is not set -# CONFIG_MAX5432 is not set -# CONFIG_MAX5481 is not set -# CONFIG_MAX5487 is not set -# CONFIG_MCP4018 is not set -# CONFIG_MCP4131 is not set -# CONFIG_MCP4531 is not set -# CONFIG_MCP41010 is not set -# CONFIG_TPL0102 is not set -# end of Digital potentiometers - -# -# Digital potentiostats -# -# CONFIG_LMP91000 is not set -# end of Digital potentiostats - -# -# Pressure sensors -# -# CONFIG_ABP060MG is not set -# CONFIG_BMP280 is not set -# CONFIG_DPS310 is not set -# CONFIG_HP03 is not set -# CONFIG_MPL115_I2C is not set -# CONFIG_MPL115_SPI is not set -# CONFIG_MPL3115 is not set -# CONFIG_MS5611 is not set -# CONFIG_MS5637 is not set -# CONFIG_IIO_ST_PRESS is not set -# CONFIG_T5403 is not set -# CONFIG_HP206C is not set -# CONFIG_ZPA2326 is not set -# end of Pressure sensors - -# -# Lightning sensors -# -# CONFIG_AS3935 is not set -# end of Lightning sensors - -# -# Proximity and distance sensors -# -# CONFIG_ISL29501 is not set -# CONFIG_LIDAR_LITE_V2 is not set -# CONFIG_MB1232 is not set -# CONFIG_RFD77402 is not set -# CONFIG_SRF04 is not set -# CONFIG_SX9500 is not set -# CONFIG_SRF08 is not set -# CONFIG_VL53L0X_I2C is not set -# end of Proximity and distance sensors - -# -# Resolver to digital converters -# -# CONFIG_AD2S90 is not set -# CONFIG_AD2S1200 is not set -# end of Resolver to digital converters - -# -# Temperature sensors -# -# CONFIG_MAXIM_THERMOCOUPLE is not set -# CONFIG_MLX90614 is not set -# CONFIG_MLX90632 is not set -# CONFIG_TMP006 is not set -# CONFIG_TMP007 is not set -# CONFIG_TSYS01 is not set -# CONFIG_TSYS02D is not set -# CONFIG_MAX31856 is not set -# end of Temperature sensors - -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -CONFIG_PWM=y -CONFIG_PWM_SYSFS=y -# CONFIG_PWM_FSL_FTM is not set -# CONFIG_PWM_PCA9685 is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_GIC=y -CONFIG_ARM_GIC_MAX_NR=1 -CONFIG_ARM_GIC_V2M=y -CONFIG_ARM_GIC_V3=y -CONFIG_ARM_GIC_V3_ITS=y -CONFIG_ARM_GIC_V3_ITS_PCI=y -CONFIG_ARM_GIC_V3_ITS_FSL_MC=y -# CONFIG_AL_FIC is not set -CONFIG_LS_SCFG_MSI=y -CONFIG_PARTITION_PERCPU=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -CONFIG_RESET_GPIO=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_GENERIC_PHY_MIPI_DPHY=y -CONFIG_PHY_XGENE=y -CONFIG_PHY_MIXEL_LVDS=y -CONFIG_PHY_MIXEL_LVDS_COMBO=y -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -CONFIG_PHY_FSL_IMX8MQ_USB=y -CONFIG_PHY_MIXEL_MIPI_DPHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_CPCAP_USB is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -CONFIG_PHY_QCOM_USB_HS=y -# CONFIG_PHY_QCOM_USB_HSIC is not set -CONFIG_PHY_SAMSUNG_USB2=y -# CONFIG_PHY_TUSB1210 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_ARM_CCI_PMU is not set -# CONFIG_ARM_CCN is not set -CONFIG_ARM_PMU=y -CONFIG_ARM_PMU_ACPI=y -# CONFIG_ARM_SMMU_V3_PMU is not set -# CONFIG_ARM_DSU_PMU is not set -# CONFIG_HISI_PMU is not set -# CONFIG_ARM_SPE_PMU is not set -# end of Performance monitor support - -CONFIG_RAS=y - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_TEE is not set -CONFIG_MULTIPLEXER=y - -# -# Multiplexer drivers -# -# CONFIG_MUX_ADG792A is not set -# CONFIG_MUX_ADGS1408 is not set -# CONFIG_MUX_GPIO is not set -CONFIG_MUX_MMIO=y -# end of Multiplexer drivers - -CONFIG_PM_OPP=y -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -CONFIG_MANDATORY_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -CONFIG_DNOTIFY=y -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y -CONFIG_QUOTA=y -# CONFIG_QUOTA_NETLINK_INTERFACE is not set -# CONFIG_PRINT_QUOTA_WARNING is not set -# CONFIG_QUOTA_DEBUG is not set -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -CONFIG_FUSE_FS=y -CONFIG_CUSE=y -# CONFIG_VIRTIO_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -# CONFIG_MSDOS_FS is not set -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set -# end of DOS/FAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -CONFIG_PROC_CHILDREN=y -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -CONFIG_HUGETLBFS=y -CONFIG_HUGETLB_PAGE=y -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -CONFIG_EFIVAR_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -# CONFIG_UBIFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -# CONFIG_SQUASHFS_ZLIB is not set -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -CONFIG_PSTORE=y -# CONFIG_PSTORE_DEFLATE_COMPRESS is not set -# CONFIG_PSTORE_LZO_COMPRESS is not set -# CONFIG_PSTORE_LZ4_COMPRESS is not set -# CONFIG_PSTORE_LZ4HC_COMPRESS is not set -# CONFIG_PSTORE_842_COMPRESS is not set -# CONFIG_PSTORE_ZSTD_COMPRESS is not set -# CONFIG_PSTORE_CONSOLE is not set -# CONFIG_PSTORE_PMSG is not set -# CONFIG_PSTORE_RAM is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_KEYS_REQUEST_CACHE is not set -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -# CONFIG_TRUSTED_KEYS is not set -# CONFIG_SECURE_KEYS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -CONFIG_SECURITY=y -CONFIG_SECURITYFS=y -# CONFIG_SECURITY_NETWORK is not set -# CONFIG_SECURITY_PATH is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -# CONFIG_SECURITY_SMACK is not set -# CONFIG_SECURITY_TOMOYO is not set -# CONFIG_SECURITY_APPARMOR is not set -# CONFIG_SECURITY_LOADPIN is not set -# CONFIG_SECURITY_YAMA is not set -# CONFIG_SECURITY_SAFESETID is not set -# CONFIG_SECURITY_LOCKDOWN_LSM is not set -CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set -# CONFIG_IMA is not set -# CONFIG_EVM is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -CONFIG_CRYPTO_USER=y -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_GF128MUL=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_CRYPTD=y -CONFIG_CRYPTO_AUTHENC=y -CONFIG_CRYPTO_SIMD=y -CONFIG_CRYPTO_ENGINE=y - -# -# Public-key cryptography -# -CONFIG_CRYPTO_RSA=y -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECRDSA is not set - -# -# Authenticated Encryption with Associated Data -# -CONFIG_CRYPTO_CCM=y -# CONFIG_CRYPTO_GCM is not set -CONFIG_CRYPTO_CHACHA20POLY1305=y -# CONFIG_CRYPTO_AEGIS128 is not set -CONFIG_CRYPTO_SEQIV=y -CONFIG_CRYPTO_ECHAINIV=y -CONFIG_CRYPTO_TLS=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -CONFIG_CRYPTO_CTR=y -CONFIG_CRYPTO_CTS=y -CONFIG_CRYPTO_ECB=y -CONFIG_CRYPTO_LRW=y -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -CONFIG_CRYPTO_XTS=y -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_GHASH is not set -CONFIG_CRYPTO_POLY1305=y -CONFIG_CRYPTO_MD4=y -CONFIG_CRYPTO_MD5=y -CONFIG_CRYPTO_MICHAEL_MIC=y -CONFIG_CRYPTO_RMD128=y -CONFIG_CRYPTO_RMD160=y -CONFIG_CRYPTO_RMD256=y -CONFIG_CRYPTO_RMD320=y -CONFIG_CRYPTO_SHA1=y -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -CONFIG_CRYPTO_SHA3=y -CONFIG_CRYPTO_SM3=y -# CONFIG_CRYPTO_STREEBOG is not set -CONFIG_CRYPTO_TGR192=y -CONFIG_CRYPTO_WP512=y - -# -# Ciphers -# -CONFIG_CRYPTO_LIB_AES=y -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_LIB_ARC4=y -CONFIG_CRYPTO_ARC4=y -CONFIG_CRYPTO_BLOWFISH=y -CONFIG_CRYPTO_BLOWFISH_COMMON=y -CONFIG_CRYPTO_CAMELLIA=y -CONFIG_CRYPTO_CAST_COMMON=y -CONFIG_CRYPTO_CAST5=y -CONFIG_CRYPTO_CAST6=y -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -CONFIG_CRYPTO_CHACHA20=y -# CONFIG_CRYPTO_SEED is not set -CONFIG_CRYPTO_SERPENT=y -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TEA is not set -CONFIG_CRYPTO_TWOFISH=y -CONFIG_CRYPTO_TWOFISH_COMMON=y - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -CONFIG_CRYPTO_ZSTD=y - -# -# Random Number Generation -# -CONFIG_CRYPTO_ANSI_CPRNG=y -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -CONFIG_CRYPTO_USER_API=y -CONFIG_CRYPTO_USER_API_HASH=y -CONFIG_CRYPTO_USER_API_SKCIPHER=y -CONFIG_CRYPTO_USER_API_RNG=y -CONFIG_CRYPTO_USER_API_AEAD=y -# CONFIG_CRYPTO_STATS is not set -CONFIG_CRYPTO_HASH_INFO=y -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=y -CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=y -CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=y -CONFIG_CRYPTO_DEV_FSL_CAAM=y -# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set -CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y -CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 -# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set -CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y -CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y -CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y -# CONFIG_CRYPTO_DEV_FSL_CAAM_TK_API is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_TEST is not set -CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y -CONFIG_CRYPTO_DEV_FSL_CAAM_SM_SLOTSIZE=7 -CONFIG_CRYPTO_DEV_FSL_CAAM_JR_UIO=y -CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=y -# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set -# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set -CONFIG_CRYPTO_DEV_VIRTIO=y -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_HISI_SEC is not set -# CONFIG_CRYPTO_DEV_HISI_ZIP is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_PACKING=y -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -CONFIG_INDIRECT_PIO=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -CONFIG_CRC_ITU_T=y -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -CONFIG_CRC7=y -CONFIG_LIBCRC32C=y -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_XARRAY_MULTI=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y -CONFIG_SWIOTLB=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_DIRECT_REMAP=y -CONFIG_DMA_CMA=y - -# -# Default contiguous memory area size: -# -CONFIG_CMA_SIZE_MBYTES=320 -CONFIG_CMA_SIZE_SEL_MBYTES=y -# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set -# CONFIG_CMA_SIZE_SEL_MIN is not set -# CONFIG_CMA_SIZE_SEL_MAX is not set -CONFIG_CMA_ALIGNMENT=8 -# CONFIG_DMA_API_DEBUG is not set -CONFIG_SGL_ALLOC=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_GLOB=y -# CONFIG_GLOB_SELFTEST is not set -CONFIG_NLATTR=y -CONFIG_CLZ_TAB=y -CONFIG_IRQ_POLL=y -CONFIG_MPILIB=y -CONFIG_DIMLIB=y -CONFIG_LIBFDT=y -CONFIG_UCS2_STRING=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_FONT_SUPPORT=y -CONFIG_FONT_8x16=y -CONFIG_FONT_AUTOSELECT=y -CONFIG_SG_POOL=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_BTF is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y -CONFIG_DEBUG_MISC=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_DEBUG_SLAB is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y -CONFIG_CC_HAS_KASAN_GENERIC=y -# CONFIG_KASAN is not set -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Lockups and Hangs - -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SCHED_DEBUG is not set -CONFIG_SCHED_INFO=y -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set -# CONFIG_DEBUG_PREEMPT is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -CONFIG_HAVE_DEBUG_BUGVERBOSE=y -CONFIG_DEBUG_BUGVERBOSE=y -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -CONFIG_RUNTIME_TESTING_MENU=y -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_REED_SOLOMON_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_STRSCPY is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_BITFIELD is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_XARRAY is not set -# CONFIG_TEST_OVERFLOW is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_IDA is not set -# CONFIG_FIND_BIT_BENCHMARK is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_TEST_MEMCAT_P is not set -# CONFIG_TEST_STACKINIT is not set -# CONFIG_TEST_MEMINIT is not set -CONFIG_MEMTEST=y -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -CONFIG_STRICT_DEVMEM=y -# CONFIG_IO_STRICT_DEVMEM is not set -# CONFIG_ARM64_PTDUMP_DEBUGFS is not set -CONFIG_PID_IN_CONTEXTIDR=y -# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set -# CONFIG_DEBUG_WX is not set -# CONFIG_DEBUG_ALIGN_RODATA is not set -# CONFIG_DEBUG_EFI is not set -# CONFIG_CORESIGHT is not set -# end of Kernel hacking diff --git a/mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb b/mainboards/solidrun/honeycomblx2k/fsl-lx2160a-cex7.dtb deleted file mode 100644 index fa5504232aa08b7db1f2821c8d672c9887886d19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28471 zcmdU2Ymg+zQSO<&J;|1ApWd=8!{|;#IMBAVGrN0tG7yYqe%N5(WIIC05S)5@dUsnl zkG|=i+g%CFBIF1K#-K1@#KZRSHh%Cl2-yaNdC10q<-jiaEY2^(aSe_mIFJsX z2L5qEJN#j)nbX*>!_EQ!QkJcy-G%N}t9g7e@WW{9ghtr9q&^2Hm*x+EKspn(tr(uV}pT+rPCDZ6(7fO&i&E5;aaVdV|iW8-W_UgKiw8QA(I? zT!-Tu?n(#YU0K|VhV9nLMJ5(Y`Sm#8Bjw?6JIMxZQ!WIo&+=DGc^VDlpxbUWL&w0C z-&-#4xN_=M3zLxu16b>J^5rJUXTL=fkEZXve6D?w-Y#!$* zNyAt$MO(VR52O$2FHPgjGqj6@H~Ed* z#o3Gfb~*foKJE0H#9xk-?IIrI>d(MmYEJ*JG`nz&&;6w}bAKUg>8EkKsCd3C{=zZC z_4g$Ha&6fzv-X$zZvJx6?ZRtj?k`I-_ZN0irN6Mi_21Mu8!?J{eBncvM{4!T`ltnG4q=KjKIL#4my`NZY$m*-nK zCiRzF%66HxzZ~ApUkOW7{{uhi}`TfOw{a=utF802c=!Chxy57)0$cAoUfV2oo?i(S&&5{6nzeHP`l;S zeIem{vr9Sho@VqOY1p?;h>)l2i-1K zqA`(i3&plB^^o=5^*Hp;nc!fXr*OzRt^^5*IMN~=Zpg{=?D=Z0z({Jy@6|6bIk&`r zHAf*PN>%7X-fYL}=eg^I%in=A)?gl~_9%WF{ALTI<=S}`;-LRge_LP1I^t{8E6!4= zj#a4Qx}5is(VHZoF4}mHg^%ED>|o>{*MsIcii4#*YO>@H0Ex1&zStLQ=;u!Qc`3^l zmHf0C<)_TFn1k6r4yLaYmUfa}zD9o?aARxqzAY9Rw4FFEQAqHoCK zowI{seAYMIRSgz9TT44NYA8v}&oXBNVz0qLI}(pn`v87+mE~^dHHLnAS?HOPDrMn% zV5KbSb{cliNJT3@Y!Gin9Y5?2LMb2~b!#6HDkC5BpPK)#zbA_2=#Sdx#(0s2e*0B8 zMDJ`P8uo&&|Inaso??L@?2b~5Ajf?(pt`pH8*KmC@&=zeeD%7=Y#vsx(>`uQsAa=A zkq#;G^8*Y;8R(cS-}-`AdkyO6`IBnABmRLTNYnV745UsL>Oh|r9SV8Gev^ zHQ0ia^$wNCWJ~TDfHD(awRVCsGpFaoLJ~2CkDe#K892r@`6Jc)_#q6RuRlCE6KoTU zRC{p9S0c>K1@fd>U;*Dza(ej>4p#jkW)lS#3Km#fk0Pa_m9ZUpX_PyM1_5IPuigM0^|boQcrzZ;t{%=J7ilku!H738{V4O3jqSEs z)Fd6B<9NEvkMXYDa_7#@qJ5LCXq&exs%^3L?ZD;srh>Eu*7x^mi-h7JRodb^Q7{Wz zh;PKL&$RTZso{aQsFPUKaZkJ=}>>fw!-#7 zm%j^08m_@ue4TOr)fR`7;4kQ7@bY`3t@erHo|HVj{#LS(gu&e_%Thp|qXs#)^dnK;FxsXQ^-p{rAepRUdf-M z$!HKrU6e?*QoVasJv6#R3i92n-s@bw9zgK3N}=QFY;(lBb>18gG#S1|%JbtoO#IciwW1Hn$f5KGD z^Y2EU_w%mZF94>@?vQ@Ao#ALEkzMreX5rGwlQ3Kej;0NnK3KfNIXS-zh*G=KQ-y4k zv`ZOl+FohYPY1*HvNagXbN^3+6%5hxl)>pnALUwv&DTE!xPimT<<7<~i}@6W^s^Z& z%ot%tRU-%Ft(^ydrlUA$FDKt5V+H!R{%|KwgVk=-ArmC(VRgu-L$lL?+?lG!yJIMs zR)_I%P0626t7a!ZIWf&n{yq92pQ6o92U?h^T8D2&$+Ud{Kg_Q=ytXk>-toSv4YSY= z&r+VpTN19dnytHCJ+{wyQI+RxvHJj>b7s;}`D(yXt|kY3X4?6gN;%L64gIlI2* zT{Tm+4&Q>3Y5RH)9XOkli}&nw;8PH$%b-J=#F*!mz7M&EO><7Z05phV=k@maT z^{0Vy`m$FSZwFxX@ESxS*?=K0+y~U3A^+2>_yh)b1b}*2BPSWlbsTUm?)r|`an8*c z4-Thc*2O%k{)lkIE!3C}7sP2VTUyx~VX_sh26i%cFSt*Okmt+xn#Bb!1pZoq%)G6OL(r@I3Hf=4QTnYRR z5t6JNmGYB-<#ZF{M}(Ltktx%D!8IV~1N1oU7mOtGVt+qUH1F&%$NNx@dRCsfmjPyC ze%H7+x|ilVmri$yMo4pcba#Eehwi0$(xub=T6P6eweJ6pl3DgU{raN)9;KZP+!Z(T z8H%BoIHQ|OIpsC@!hh*yOx1dDEZt2H*B{_Dw}@w&7$10C{g37lc~O1t8~K9+DPQ9N z&-(uW;dqaad6s_e6lfg$-3mUV;4Q$kPtDmNpM99Rd)q)(x5xp9siR|<@;f=lV|X7n zn0u3L1E&k@;l|kA?7_7=XODLP7QMrukDkxpEMPg`mDl6lu<5ULqb*Rf!0;%1fLAQ0 zYW-;)r$6g(40F%diFe}|WXGCFvhLv~7-*4m*H|?&=WifPFSD$Ep_OWxssGGn&U*Mh zaIIwL{9e+$zX1wrK4xD&QI%9J>rE(gvciUQ@7wXb&+pV~-wQnL0-Mi$5ND}chc*;5-eOCPB!cT66PI{m3#-yuh;Ew{lz#wnRbQhaVRCO}g>m5e~ zNpuA%)3MS3&gp{l+~>U7haKIxPnTuNKl9y(O!Cz)1Z&5w3!WKp4OGS;6C0$GhOJLqe_9mW zZgG4&N}W6a=l+vFriS+WL&VXaTp6El5k}n_=V>exf3vdY6C_JFnXD2Hs8JoqmrB-r zLNk@DEl@L6%lb7anU!6goq2al@6vY87kz*y-DGxN0wvR>mtADt46<;eGgyZY2YF-} zd1ZXh$Hw)|PG%&dE)5*!9^mB$>FyruvUEaRWsH3t3Y_h6K17?i>uGHmCOtg$T3TLQ zc9Frh*kAg3?vqXh7qfor&gLDYLt-5^F7nm>q1^_|#L=5&Y?t44xNA2+9Zz!IxD80L z&xKn(2#@hOhQF5e@NxjGg^EZe8R|QN(|y{24D?dAGnU#qPd@q@vw%G9C$f#w)%H^P zUXOZ}Y}MHem%Ox}qzeMExFp-0bQ7@E{&or_uD@^%J9N*+Ahm9g+mh>a4IJc)bciN! z@EaBUQx-;xhu#mEEs{6qeU!r0`J{sXrGR&RPOof{4{hW%y)7<&Pj@ePenr?K4YHuU zBtz#SWM-m0L_7T)JJ=}g@zDT{#LOHaCgT%Vct_?Nk}vef*ie5)>a#IF3PVG{cC^2~ z33+ET;7e-&q~(Eh@xHbCz-3nYj9=R(*XO8cGYfr!8R|2B zy_;O0V>8pIGYfr^Fpk=|3XNS4FVKf{R&x4d1BZ#9HXtUBYM!?vzw*=IFKIDXs6P{? z!_&c5d^+t0cmo=*e5}Rm3gKvPM@OG$2C0kVkU-Tid1HNb{;B}?p-C_D@V$uKkOI## z)^*oGm*;hpW2npD5516;Jd1eSY|G|3rgFS?d0v}c9_RVHkZ1Z54$`2l+M|yUgVdH^ zZ^xcp-tpqh;V2H~VY&Hl!kOuqIZ5BZjft#w4skJ%hf4T6+q zzj1RGbzQ$z!Q_3=W>mPg-eot^0=w?$4eA9<|97H$3!_NkDCWr1 zKdNBzKIn0Cz6~Ln+VXoK;^zAyinFVcsyc2Ssi33H$K&A#D(I@>=21&W9vAgTiJQVD zNk4hq?0}l7?2l8%ji_jKo#y%@&vh4#08_@%4=Jqps`kDww&6$l!8C4;Lj-dvkLxe1^8L3VyeO-=pC7D)@a0{#6D4nu32_!M~y4-&F8#Dfs;g z{%r;Sj)I?5@b4=4DFuH(!5>uchZOvK3jTcs|AB&^R`4Gx_`?eRBL)Alg8xLpf2!bT z6#Nkde^kMLrr?h$_|Fym7YhDM1%F(@&noy67G?}1={0D1K6{Kv95t+(r-N?PKFRg^ z)*^{n=UM`M*2VAtu@#%4BGQyIu4N3la@ky5ktaXlnPiFC(T5)ea#%tE68UnRP<%m2 z#5m8VP8qD3Cb1sJGT!r(KYiGZPXyWjq(PczoQVvO-S36iheuukcOnQK$1Rb;?wb=b zk3=2~9MtPd89V_XwfO@*O)?QgT0ncQ9kPy3D^dPUkK`K>q{U*`F&g2~XD*RCnwbwskiolUUu1DFw;^CD;R68lPVyXDF! ztGHv_3WUBhdr>)QTTvYuN)7HPDT>s>>_30|A{kx~F zkGYbrA52^S`Q`en)7HPLTwfe?n*L{4EB!muw$HIc)sLpF&+$*yUz@f*=T@qI(+;f? zqm#zqkue@k3V}3@9l5qadc@QGdvU(q=HVanPY&06af}bjfn(D0%76jfG;Q%(L>~I6 zt;NIMW-ycvKv`{&WRcB~H+A%|NmVc$EJ%@`Jw%k1xwL1S$QR|=R#|D?4kwz+d1-ai3@K%AmBhB3e(@~m4{f-YS1wH7N4Yz%` zRn!l+eQY@sZN+H2$oJyD4=ctUM{uk#v}t`9^w+UjokHi^To%aG>!r}KDCx#o2BSif z7;pI>vzvNI?-+P(7@ZxlQDbd?Fv^lqCd#B1N&W`8-;?OvxB_*N~>P`GmpzLXbqIKb`}bT95E3VRu0Y2wtw zK7l^HA6U0v9js@z9nCSpmc^V4Lv%)xbhqhKRxy70wy+kY8H^ruJbWL8J@2;s!WhI1 zx41iyzZrM34I#z#qU(}64cpu4u^Ue*rS+E{C<@gm2zVIJq13&C_usuTB z@kbk}pLT{#e8FDiu%|+iX|1RXDymFv!5W_(~|E_6+6q?U(mH#y7*Zh(F_u0f*5~ znZuEuDWg1b#Zf Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 119/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/st/st32mp1517c/.gitignore | 4 - mainboards/st/st32mp1517c/Makefile | 125 --- mainboards/st/st32mp1517c/flash.config | 1237 ------------------------ 3 files changed, 1366 deletions(-) delete mode 100644 mainboards/st/st32mp1517c/.gitignore delete mode 100644 mainboards/st/st32mp1517c/Makefile delete mode 100644 mainboards/st/st32mp1517c/flash.config diff --git a/mainboards/st/st32mp1517c/.gitignore b/mainboards/st/st32mp1517c/.gitignore deleted file mode 100644 index 13d92ce9..00000000 --- a/mainboards/st/st32mp1517c/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -flashinitramfs.cpio -flashinitramfs.cpio.lzma -flashkernel -linux diff --git a/mainboards/st/st32mp1517c/Makefile b/mainboards/st/st32mp1517c/Makefile deleted file mode 100644 index 618fbad9..00000000 --- a/mainboards/st/st32mp1517c/Makefile +++ /dev/null @@ -1,125 +0,0 @@ -# This is the makefile for a flash image, a netbootable sshd image, -# and a netbootable cpu image. -# -# sshdkernel produces a kernel with a built-in initramfs for netboot -# It provides (and starts) an sshd, and also has flashrom. -# Hence you can ssh to a node, flashrom -r on it, scp the -# image back, process it, scp the new image to the node, and -# write with flashrom. -# e.g. -# ssh -i class_key -p 2022 board flashrom -r image.bin -p internal -# scp -i class_key -P 2022 board:/image.bin image.bin -# make tiny.bin -# scp -i class_key -P 2022 tiny.bin board:/tiny.bin -# ssh -i class_key -p 2022 board flashrom -w tiny.bin -p internal -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands, including flashrom -p internal -# to flash the flash image. -# e.g. -# cpu board flashrom -r image.bin -p internal -# Note this writes image image.bin to the host directoy; no scp needed -# make tiny.bin -# cpu board flashrom -w tiny.bin -p internal -# cpu is way more convenient than ssh/scp if you can learn it. -# you can also just -# cpu board -# and once you are in: -# flashrom -r image.bin -p internal -# make tiny.bin -# flashrom -w tiny.bin -p internal -# NOTE: those commands are running on the board, and they all work -# -# You can test the flash image kernel with qemu -# make flashtest - -default: flash - -flash: tiny.bin - -flashtest: testflashkernel - -usefultargets: - echo fetch, uroot, flashkernel, or image.bin - -flashinitramfs.cpio.lzma: flashinitramfs.cpio - lzma -f -k $< - -flashinitramfs.cpio: Makefile - GOARCH=arm u-root -o $@ -build=bb \ - -uinitcmd=/bbin/pxeboot \ - github.com/u-root/u-root/cmds/boot/pxeboot \ - github.com/u-root/u-root/cmds/core/cat \ - github.com/u-root/u-root/cmds/core/elvish \ - github.com/u-root/u-root/cmds/core/init \ - github.com/u-root/u-root/cmds/core/ip \ - github.com/u-root/u-root/cmds/core/ls \ - github.com/u-root/u-root/cmds/core/kexec \ - github.com/u-root/u-root/cmds/core/pci \ - github.com/u-root/u-root/cmds/core/wget \ - -# this target builds an initramfs with only one program, the cpu server. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio.lzma: Makefile - GOARCH=arm go run github.com/u-root/u-root -o cpu.cpio -build=bb -initcmd=cpud -files ~/.ssh/cpu_rsa.pub:key.pub \ - -defaultsh="" \ - github.com/u-root/cpu/cmds/cpud - lzma -f -k cpu.cpio - -# this target builds an initramfs with all of u-root, AND all of /bin, /usr/bin, /sbin, /usr/sbin, /etc -# the intent is to demonstrate the capability of http loading. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -sshd.cpio.lzma: Makefile - GOARCH=arm go run github.com/u-root/u-root -o sshd.cpio -build=bb \ - -uinitcmd=/bbin/sshd \ - -files class_key.pub:authorized_keys \ - -files classhostkey:id_rsa \ - -files /usr/bin/vi \ - -files /usr/share/vim \ - -files /usr/share/terminfo \ - -files /bin/bash \ - -files /usr/sbin/flashrom \ - -files /usr/bin/xz \ - all - lzma -f -k sshd.cpio - ls -l sshd.cpio.* - -flashkernel: flash.config flashinitramfs.cpio.lzma Makefile - cp $< linux/.config - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make oldconfig && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make -j32) - cp linux/arch/arm/boot/zImage $@ - -testflashkernel: flashkernel - qemu-system-arm -machine ast2600-evb -kernel flashkernel -nographic -serial /dev/tty -initrd flashinitramfs.cpio.lzma - -# These stanzas fetch code. -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15 --single-branch https://github.com/torvalds/linux - (cd linux && make mrproper) - (cd linux && ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- make tinyconfig) - -geturoot: - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/st/st32mp1517c/flash.config b/mainboards/st/st32mp1517c/flash.config deleted file mode 100644 index 27ac63c8..00000000 --- a/mainboards/st/st32mp1517c/flash.config +++ /dev/null @@ -1,1237 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/arm 5.5.0-rc3 Kernel Configuration -# - -# -# Compiler: arm-linux-gnueabi-gcc (Debian 9.2.1-8) 9.2.1 20190909 -# -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=90201 -CONFIG_CLANG_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y -CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y -CONFIG_IRQ_WORK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_BUILD_SALT="" -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -# CONFIG_SYSVIPC is not set -# CONFIG_USELIB is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_HARDIRQS_SW_RESEND=y -CONFIG_GENERIC_IRQ_CHIP=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_HANDLE_DOMAIN_IRQ=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# end of IRQ subsystem - -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_GENERIC_CLOCKEVENTS=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set -# end of Timers subsystem - -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TINY_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TINY_SRCU=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_HAVE_UID16=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_FHANDLE is not set -# CONFIG_POSIX_TIMERS is not set -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -# CONFIG_BUG is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -# CONFIG_SIGNALFD is not set -# CONFIG_TIMERFD is not set -# CONFIG_EVENTFD is not set -# CONFIG_AIO is not set -# CONFIG_IO_URING is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_MEMBARRIER is not set -# CONFIG_KALLSYMS is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y -# CONFIG_RSEQ is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -CONFIG_PERF_USE_VMALLOC=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -# CONFIG_SLUB is not set -CONFIG_SLOB=y -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_MMAP_ALLOW_UNINITIALIZED is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_ARM=y -CONFIG_SYS_SUPPORTS_APM_EMULATION=y -CONFIG_NO_IOPORT_MAP=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_PHYS_OFFSET=0x00800000 -CONFIG_PGTABLE_LEVELS=2 - -# -# System Type -# -# CONFIG_MMU is not set -CONFIG_ARCH_MMAP_RND_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_BITS_MAX=16 -CONFIG_ARM_SINGLE_ARMV7M=y -# CONFIG_ARCH_EBSA110 is not set -# CONFIG_ARCH_EP93XX is not set -# CONFIG_ARCH_FOOTBRIDGE is not set -# CONFIG_ARCH_DOVE is not set -# CONFIG_ARCH_SA1100 is not set -# CONFIG_ARCH_S3C24XX is not set -# CONFIG_ARCH_AT91 is not set -# CONFIG_ARCH_MXC is not set -# CONFIG_ARCH_STM32 is not set -# CONFIG_ARCH_EFM32 is not set -# CONFIG_ARCH_LPC18XX is not set -# CONFIG_ARCH_MPS2 is not set - -# -# Processor Type -# -CONFIG_CPU_V7M=y -CONFIG_CPU_THUMBONLY=y -CONFIG_CPU_THUMB_CAPABLE=y -CONFIG_CPU_32v7M=y -CONFIG_CPU_ABRT_NOMMU=y -CONFIG_CPU_PABRT_LEGACY=y -CONFIG_CPU_CACHE_NOP=y -CONFIG_CPU_CACHE_V7M=y -CONFIG_CPU_V7M_NUM_IRQ=240 - -# -# Processor Features -# -CONFIG_ARM_THUMB=y -# CONFIG_CPU_ICACHE_DISABLE is not set -# CONFIG_CPU_DCACHE_DISABLE is not set -# CONFIG_CPU_BPREDICT_DISABLE is not set -CONFIG_ARM_L1_CACHE_SHIFT=5 -# CONFIG_ARM_DMA_MEM_BUFFERABLE is not set -# CONFIG_SET_MEM_PARAM is not set -CONFIG_DRAM_BASE=0x00800000 -CONFIG_DRAM_SIZE=0x00800000 -# CONFIG_REMAP_VECTORS_TO_RAM is not set -# CONFIG_ARM_MPU is not set -# end of System Type - -# -# Bus support -# -# end of Bus support - -# -# Kernel Features -# -CONFIG_PAGE_OFFSET=0x00800000 -CONFIG_ARCH_NR_GPIO=0 -CONFIG_HZ_FIXED=0 -CONFIG_HZ_100=y -# CONFIG_HZ_200 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -# CONFIG_HZ_500 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=100 -CONFIG_THUMB2_KERNEL=y -CONFIG_AEABI=y -CONFIG_HAVE_ARCH_PFN_VALID=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_FORCE_MAX_ZONEORDER=11 -# CONFIG_SECCOMP is not set -# CONFIG_PARAVIRT is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -# end of Kernel Features - -# -# Boot options -# -CONFIG_USE_OF=y -# CONFIG_ATAGS is not set -CONFIG_ZBOOT_ROM_TEXT=0 -CONFIG_ZBOOT_ROM_BSS=0 -# CONFIG_ARM_APPENDED_DTB is not set -CONFIG_CMDLINE="" -# CONFIG_XIP_KERNEL is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_AUTO_ZRELADDR=y -# end of Boot options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# Floating point emulation -# - -# -# At least one emulation must be selected -# -# end of Floating point emulation - -# -# Power management options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -# CONFIG_APM_EMULATION is not set -CONFIG_ARCH_SUSPEND_POSSIBLE=y -# end of Power management options - -# -# Firmware Drivers -# -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_VIRTUALIZATION is not set - -# -# General architecture-dependent options -# -CONFIG_HAVE_OPROFILE=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_KEEPINITRD=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_ARCH_32BIT_OFF_T=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_RSEQ=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_STACKPROTECTOR=y -CONFIG_CC_HAS_STACKPROTECTOR_NONE=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_REL=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_CLONE_BACKWARDS=y -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_OLD_SIGACTION=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_ARCH_HAS_PHYS_TO_DMA=y - -# -# GCOV-based kernel profiling -# -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_PLUGIN_HOSTCC="" -CONFIG_HAVE_GCC_PLUGINS=y -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -# CONFIG_MODULES is not set -# CONFIG_BLOCK is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y - -# -# Executable file formats -# -# CONFIG_BINFMT_ELF_FDPIC is not set -# CONFIG_BINFMT_SCRIPT is not set -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_FLATMEM=y -CONFIG_FLAT_NODE_MEM_MAP=y -CONFIG_ARCH_KEEP_MEMBLOCK=y -CONFIG_SPLIT_PTLOCK_CPUS=999999 -CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_BENCHMARK is not set -# end of Memory Management options - -# CONFIG_NET is not set -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -# CONFIG_DEVTMPFS_MOUNT is not set -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set - -# -# Firmware loader -# -# CONFIG_FW_LOADER is not set -# end of Firmware loader - -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_BRCMSTB_GISB_ARB is not set -# CONFIG_VEXPRESS_CONFIG is not set -# end of Bus devices - -# CONFIG_GNSS is not set -# CONFIG_MTD is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_RESERVED_MEM=y -# CONFIG_OF_OVERLAY is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set - -# -# NVME Support -# -# end of NVME Support - -# -# Misc devices -# -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_PVPANIC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# end of Texas Instruments shared transport line discipline - -# -# Altera FPGA firmware download module (requires I2C) -# - -# -# Intel MIC & related support -# -# CONFIG_VOP_BUS is not set -# end of Intel MIC & related support - -# CONFIG_ECHO is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# end of SCSI device support - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_BCM is not set -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=y -CONFIG_MOUSE_PS2_ALPS=y -CONFIG_MOUSE_PS2_BYD=y -CONFIG_MOUSE_PS2_LOGIPS2PP=y -CONFIG_MOUSE_PS2_SYNAPTICS=y -CONFIG_MOUSE_PS2_CYPRESS=y -CONFIG_MOUSE_PS2_TRACKPOINT=y -# CONFIG_MOUSE_PS2_ELANTECH is not set -# CONFIG_MOUSE_PS2_SENTELIC is not set -# CONFIG_MOUSE_PS2_TOUCHKIT is not set -CONFIG_MOUSE_PS2_FOCALTECH=y -# CONFIG_MOUSE_SERIAL is not set -# CONFIG_MOUSE_VSXXXAA is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_SERIO_SERPORT=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_SERIO_APBPS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -CONFIG_VT=y -CONFIG_CONSOLE_TRANSLATIONS=y -CONFIG_VT_CONSOLE=y -CONFIG_HW_CONSOLE=y -# CONFIG_VT_HW_CONSOLE_BINDING is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_NULL_TTY is not set -CONFIG_LDISC_AUTOLOAD=y -CONFIG_DEVMEM=y -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -# CONFIG_SERIAL_8250 is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set -# CONFIG_SERIAL_UARTLITE is not set -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_ST_ASC is not set -# end of Serial drivers - -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_HVC_DCC is not set -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# end of Character devices - -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -# CONFIG_PINCTRL is not set -CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_PM8XXX is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_T7L66XB is not set -# CONFIG_MFD_TC6387XB is not set -# CONFIG_MFD_TC6393XB is not set -# CONFIG_MFD_TQMX86 is not set -# end of Multifunction device drivers - -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set -# CONFIG_DRM_DP_CEC is not set - -# -# ARM devices -# -# end of ARM devices - -# -# ACP (Audio CoProcessor) Configuration -# -# end of ACP (Audio CoProcessor) Configuration - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support - -# -# Console display driver support -# -CONFIG_DUMMY_CONSOLE=y -# end of Console display driver support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_VIRT_DRIVERS is not set -# CONFIG_VIRTIO_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_CHROME_PLATFORMS is not set -# CONFIG_MELLANOX_PLATFORM is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_CLK_HSDK is not set -# CONFIG_CLK_QORIQ is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -# end of Common Clock Framework - -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -# end of Clock Source drivers - -# CONFIG_MAILBOX is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_VIRTIO is not set -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Aspeed SoC drivers -# -# end of Aspeed SoC drivers - -# -# Broadcom SoC drivers -# -# CONFIG_SOC_BRCMSTB is not set -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# CONFIG_XILINX_VCU is not set -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -CONFIG_ARM_NVIC=y -# CONFIG_AL_FIC is not set -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_DP is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -# CONFIG_NVMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_SYSCTL=y -# CONFIG_PROC_CHILDREN is not set -# CONFIG_SYSFS is not set -# CONFIG_CONFIGFS_FS is not set -# end of Pseudo filesystems - -# CONFIG_MISC_FILESYSTEMS is not set -# CONFIG_NLS is not set -# CONFIG_UNICODE is not set -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -# CONFIG_CRYPTO is not set - -# -# Library routines -# -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_HAVE_ARCH_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -# CONFIG_CORDIC is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -# CONFIG_CRC_CCITT is not set -# CONFIG_CRC16 is not set -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -CONFIG_XZ_DEC_IA64=y -CONFIG_XZ_DEC_ARM=y -CONFIG_XZ_DEC_ARMTHUMB=y -CONFIG_XZ_DEC_SPARC=y -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SETUP_DMA_OPS=y -# CONFIG_DMA_API_DEBUG is not set -CONFIG_GENERIC_ATOMIC64=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_ARCH_NO_SG_CHAIN=y -# CONFIG_STRING_SELFTEST is not set -# end of Library routines - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -# CONFIG_PRINTK_CALLER is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_SYMBOLIC_ERRNAME is not set -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -CONFIG_OPTIMIZE_INLINING=y -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -# CONFIG_MAGIC_SYSRQ is not set -# CONFIG_DEBUG_FS is not set -# CONFIG_UBSAN is not set -CONFIG_UBSAN_ALIGNMENT=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_OBJECTS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_NOMMU_REGIONS is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_KASAN_STACK=1 -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_LATENCYTOP is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_C_RECORDMCOUNT=y -# CONFIG_SAMPLES is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y - -# -# arm Debugging -# -CONFIG_UNWINDER_ARM=y -CONFIG_ARM_UNWIND=y -# CONFIG_DEBUG_USER is not set -# CONFIG_DEBUG_LL is not set -CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" -# CONFIG_CORESIGHT is not set -# end of arm Debugging - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From ddcd5e4e1fe266dbd98a06618ccaae9339426ce4 Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 120/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/sunxi/nezha/.gitignore | 5 - mainboards/sunxi/nezha/Makefile | 54 - mainboards/sunxi/nezha/cpu.config | 2610 ----------------------------- 3 files changed, 2669 deletions(-) delete mode 100644 mainboards/sunxi/nezha/.gitignore delete mode 100644 mainboards/sunxi/nezha/Makefile delete mode 100644 mainboards/sunxi/nezha/cpu.config diff --git a/mainboards/sunxi/nezha/.gitignore b/mainboards/sunxi/nezha/.gitignore deleted file mode 100644 index 2f04e444..00000000 --- a/mainboards/sunxi/nezha/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -cpu.cpio -cpu.cpio.* -linux/ -cpukernel - diff --git a/mainboards/sunxi/nezha/Makefile b/mainboards/sunxi/nezha/Makefile deleted file mode 100644 index 04259b09..00000000 --- a/mainboards/sunxi/nezha/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# This is the makefile for a cpu kernel and initramfs -# to be used on a rvboards d1 -# -# The cpu image uses a cpud as its init, and you -# can cpu to it to run commands. - -default: cpukernel - -cpukernel: cpu.cpio.xz cpu.config - cp cpu.config linux/.config - (cd linux && CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv make oldconfig && CROSS_COMPILE=riscv64-linux-gnu- ARCH=riscv make -j32) - cp linux/arch/riscv/boot/Image cpukernel - cp linux/arch/riscv/boot/dts/allwinner/sun20i-d1-nezha.dtb . - -# this target builds an initramfs with cpud as init, and the core -# set of u-root commands. -# It depends on the kernel setting the IP address. -# You need ip=dhcp OR ip=fixed.ip.address.here in the command line -cpu.cpio: Makefile - GOARCH=riscv64 CGO_ENABLED=0 u-root -o cpu.cpio -build=bb -files ~/.ssh/cpu_rsa.pub:key.pub \ - -uroot-source $(HOME)/go/src/github.com/u-root/u-root \ - core \ - $(HOME)/go/src/github.com/u-root/cpu/cmds/cpud - -cpu.cpio.xz: cpu.cpio - xz --check=crc32 -9 --lzma2=dict=1MiB --stdout cpu.cpio | dd conv=sync bs=512 of=cpu.cpio.xz - -# These stanzas fetch code. -fetch: getkernel geturoot - -getkernel: - rm -rf linux - git clone --depth=1 -b v5.15.5-openwrt --single-branch https://github.com/orangecms/linux - -geturoot: - GO111MODULE=off go get -u github.com/u-root/u-root - GO111MODULE=off go get -u github.com/u-root/cpu/... - -# Serve the combined sshd-kernel and sshd-initramfs image. This includes flashrom -sshd-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename sshdkernel -http-dir . -interface $(NETWORK) - -# Serve the combined cpu-kernel and cpu-initramfs image. -cpu-pxeserver: - echo Consider Disabling any system services ... - echo e.g. sudo systemctl stop tftpd-hpa.service - echo e.g. sudo systemctl stop isc-dhcp-server - sudo `go env GOPATH`/bin/pxeserver -tftp-dir . -bootfilename cpukernel -http-dir . -interface $(NETWORK) - -ssh: - ssh -i class_key -p 2022 root@up diff --git a/mainboards/sunxi/nezha/cpu.config b/mainboards/sunxi/nezha/cpu.config deleted file mode 100644 index 7e8e06b4..00000000 --- a/mainboards/sunxi/nezha/cpu.config +++ /dev/null @@ -1,2610 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/riscv 5.15.5 Kernel Configuration -# -CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (GCC) 11.1.0" -CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=110100 -CONFIG_CLANG_VERSION=0 -CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=23601 -CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=23601 -CONFIG_LLD_VERSION=0 -CONFIG_CC_CAN_LINK=y -CONFIG_CC_CAN_LINK_STATIC=y -CONFIG_CC_HAS_ASM_GOTO=y -CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y -CONFIG_CC_HAS_ASM_INLINE=y -CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_TABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_BROKEN_ON_SMP=y -CONFIG_INIT_ENV_ARG_LIMIT=32 -# CONFIG_COMPILE_TEST is not set -# CONFIG_WERROR is not set -CONFIG_LOCALVERSION="" -CONFIG_LOCALVERSION_AUTO=y -CONFIG_BUILD_SALT="" -CONFIG_DEFAULT_INIT="" -CONFIG_DEFAULT_HOSTNAME="nezha" -# CONFIG_SWAP is not set -# CONFIG_SYSVIPC is not set -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_WATCH_QUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_SHOW_LEVEL=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_IRQ_IPI=y -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -# end of IRQ subsystem - -CONFIG_GENERIC_IRQ_MULTI_HANDLER=y -CONFIG_ARCH_CLOCKSOURCE_INIT=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -CONFIG_NO_HZ_IDLE=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y -# end of Timers subsystem - -CONFIG_BPF=y -CONFIG_HAVE_EBPF_JIT=y - -# -# BPF subsystem -# -# CONFIG_BPF_SYSCALL is not set -# end of BPF subsystem - -# CONFIG_PREEMPT_NONE is not set -# CONFIG_PREEMPT_VOLUNTARY is not set -CONFIG_PREEMPT=y -CONFIG_PREEMPT_COUNT=y -CONFIG_PREEMPTION=y - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set -# CONFIG_PSI is not set -# end of CPU/Task time and stats accounting - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -CONFIG_PREEMPT_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -CONFIG_TASKS_RCU_GENERIC=y -CONFIG_TASKS_RCU=y -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -# end of RCU Subsystem - -# CONFIG_IKCONFIG is not set -# CONFIG_IKHEADERS is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -# CONFIG_PRINTK_INDEX is not set -CONFIG_GENERIC_SCHED_CLOCK=y - -# -# Scheduler features -# -# end of Scheduler features - -CONFIG_CC_HAS_INT128=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_NAMESPACES is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="../cpu.cpio.xz" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -CONFIG_RD_GZIP=y -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -CONFIG_RD_XZ=y -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_RD_ZSTD is not set -# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set -CONFIG_INITRAMFS_COMPRESSION_XZ=y -# CONFIG_INITRAMFS_COMPRESSION_NONE is not set -# CONFIG_BOOT_CONFIG is not set -CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_FHANDLE=y -CONFIG_POSIX_TIMERS=y -CONFIG_PRINTK=y -CONFIG_BUG=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_HAVE_FUTEX_CMPXCHG=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -CONFIG_SHMEM=y -CONFIG_AIO=y -CONFIG_IO_URING=y -CONFIG_ADVISE_SYSCALLS=y -CONFIG_MEMBARRIER=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_BASE_RELATIVE=y -# CONFIG_USERFAULTFD is not set -# CONFIG_KCMP is not set -# CONFIG_EMBEDDED is not set -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -# CONFIG_PERF_EVENTS is not set -# end of Kernel Performance Events And Counters - -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -# CONFIG_SLAB_MERGE_DEFAULT is not set -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set -# CONFIG_PROFILING is not set -# end of General setup - -CONFIG_64BIT=y -CONFIG_RISCV=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=18 -CONFIG_ARCH_MMAP_RND_BITS_MAX=24 -CONFIG_RISCV_SBI=y -CONFIG_MMU=y -CONFIG_VA_BITS=39 -CONFIG_PA_BITS=56 -CONFIG_PAGE_OFFSET=0xffffffe000000000 -CONFIG_ARCH_FLATMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_GENERIC_CSUM=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_ARCH_HAS_PROTECTION_MAP_INIT=y -CONFIG_PGTABLE_LEVELS=3 -CONFIG_LOCKDEP_SUPPORT=y - -# -# SoC selection -# -CONFIG_ARCH_SUNXI=y -# CONFIG_SOC_MICROCHIP_POLARFIRE is not set -# CONFIG_SOC_SIFIVE is not set -# CONFIG_SOC_VIRT is not set -# end of SoC selection - -# -# CPU errata selection -# -CONFIG_RISCV_ERRATA_ALTERNATIVE=y -# CONFIG_ERRATA_SIFIVE is not set -# end of CPU errata selection - -# -# Platform type -# -# CONFIG_ARCH_RV32I is not set -CONFIG_ARCH_RV64I=y -# CONFIG_CMODEL_MEDLOW is not set -CONFIG_CMODEL_MEDANY=y -CONFIG_MAXPHYSMEM_128GB=y -# CONFIG_SMP is not set -CONFIG_TUNE_GENERIC=y -CONFIG_RISCV_ISA_C=y -CONFIG_FPU=y -# end of Platform type - -# -# Kernel features -# -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -CONFIG_SCHED_HRTICK=y -CONFIG_RISCV_SBI_V01=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_CRASH_DUMP is not set -# end of Kernel features - -# -# Boot options -# -CONFIG_CMDLINE="clk_ignore_unused debug initcall_debug=1 console=ttyS0,115200n8 loglevel=7 earlycon=sbi init=/init" -CONFIG_CMDLINE_FALLBACK=y -# CONFIG_CMDLINE_EXTEND is not set -# CONFIG_CMDLINE_FORCE is not set -# CONFIG_EFI is not set -CONFIG_CC_HAVE_STACKPROTECTOR_TLS=y -CONFIG_PHYS_RAM_BASE_FIXED=y -CONFIG_PHYS_RAM_BASE=0x40000000 -# end of Boot options - -# -# Power management options -# -CONFIG_SUSPEND=y -CONFIG_SUSPEND_FREEZER=y -# CONFIG_SUSPEND_SKIP_SYNC is not set -CONFIG_PM_SLEEP=y -# CONFIG_PM_AUTOSLEEP is not set -# CONFIG_PM_WAKELOCKS is not set -CONFIG_PM=y -CONFIG_PM_DEBUG=y -CONFIG_PM_ADVANCED_DEBUG=y -# CONFIG_PM_TEST_SUSPEND is not set -CONFIG_PM_SLEEP_DEBUG=y -CONFIG_PM_CLK=y -# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set -# end of Power management options - -# -# CPU Power Management -# - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set -# end of CPU Frequency scaling - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# end of CPU Idle -# end of CPU Power Management - -# -# General architecture-dependent options -# -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_KEXEC_ELF=y -CONFIG_JUMP_LABEL=y -# CONFIG_STATIC_KEYS_SELFTEST is not set -CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y -CONFIG_TRACE_IRQFLAGS_SUPPORT=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_GENERIC_IDLE_POLL_SETUP=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_HAS_SET_DIRECT_MAP=y -CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y -CONFIG_HAVE_ASM_MODVERSIONS=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y -CONFIG_HAVE_ARCH_SECCOMP=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -# CONFIG_SECCOMP is not set -CONFIG_HAVE_STACKPROTECTOR=y -# CONFIG_STACKPROTECTOR is not set -CONFIG_LTO_NONE=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_MOVE_PUD=y -CONFIG_HAVE_MOVE_PMD=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_ARCH_MMAP_RND_BITS=18 -CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y -CONFIG_CLONE_BACKWARDS=y -# CONFIG_COMPAT_32BIT_TIME is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y -CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -# CONFIG_LOCK_EVENT_COUNTS is not set -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# end of GCOV-based kernel profiling - -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -# end of General architecture-dependent options - -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_BLOCK=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_WBT is not set -CONFIG_BLK_DEBUG_FS=y -# CONFIG_BLK_SED_OPAL is not set -# CONFIG_BLK_INLINE_ENCRYPTION is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -# end of Partition Types - -CONFIG_BLK_MQ_VIRTIO=y -CONFIG_BLK_PM=y - -# -# IO Schedulers -# -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -# end of IO Schedulers - -CONFIG_UNINLINE_SPIN_UNLOCK=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_ARCH_HAS_MMIOWB=y -CONFIG_FREEZER=y - -# -# Executable file formats -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -CONFIG_ARCH_HAS_BINFMT_FLAT=y -# CONFIG_BINFMT_FLAT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# end of Executable file formats - -# -# Memory Management options -# -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_FLATMEM_MANUAL=y -# CONFIG_SPARSEMEM_MANUAL is not set -CONFIG_FLATMEM=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_COMPACTION=y -# CONFIG_PAGE_REPORTING is not set -CONFIG_MIGRATION=y -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_NEED_PER_CPU_KM=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ZONE_DMA32=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_GUP_TEST is not set -CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_SECRETMEM=y - -# -# Data Access Monitoring -# -# CONFIG_DAMON is not set -# end of Data Access Monitoring -# end of Memory Management options - -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -CONFIG_UNIX_SCM=y -CONFIG_AF_UNIX_OOB=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_IPVTI is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_VTI is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_IPV6_RPL_LWTUNNEL is not set -# CONFIG_IPV6_IOAM6_LWTUNNEL is not set -# CONFIG_MPTCP is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_BPFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_QRTR is not set -# CONFIG_NET_NCSI is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# end of Network testing -# end of Networking options - -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_MCTP is not set -# CONFIG_WIRELESS is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -CONFIG_NET_9P_DEBUG=y -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -CONFIG_NET_SELFTESTS=y -CONFIG_PAGE_POOL=y -# CONFIG_FAILOVER is not set -# CONFIG_ETHTOOL_NETLINK is not set - -# -# Device Drivers -# -CONFIG_HAVE_PCI=y -# CONFIG_PCI is not set -# CONFIG_PCCARD is not set - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y - -# -# Firmware loader -# -CONFIG_FW_LOADER=y -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER is not set -# CONFIG_FW_LOADER_COMPRESS is not set -# CONFIG_FW_CACHE is not set -# end of Firmware loader - -CONFIG_WANT_DEV_COREDUMP=y -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -CONFIG_REGMAP=y -CONFIG_REGMAP_MMIO=y -# end of Generic Driver Options - -# -# Bus devices -# -# CONFIG_MOXTET is not set -CONFIG_SUN50I_DE2_BUS=y -# CONFIG_SUNXI_RSB is not set -# CONFIG_MHI_BUS is not set -# end of Bus devices - -# CONFIG_CONNECTOR is not set - -# -# Firmware Drivers -# - -# -# ARM System Control and Management Interface Protocol -# -# end of ARM System Control and Management Interface Protocol - -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# Tegra firmware driver -# -# end of Tegra firmware driver -# end of Firmware Drivers - -# CONFIG_GNSS is not set -CONFIG_MTD=y - -# -# Partition parsers -# -# CONFIG_MTD_AR7_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -CONFIG_MTD_OF_PARTS=y -# CONFIG_MTD_REDBOOT_PARTS is not set -# end of Partition parsers - -# -# User Modules And Translation Layers -# -CONFIG_MTD_BLKDEVS=y -CONFIG_MTD_BLOCK=y - -# -# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. -# -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -CONFIG_MTD_PARTITIONED_MASTER=y - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set -# end of RAM/ROM/Flash chip drivers - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_PLATRAM is not set -# end of Mapping drivers for chip access - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_DATAFLASH is not set -# CONFIG_MTD_MCHP23K256 is not set -# CONFIG_MTD_MCHP48L640 is not set -# CONFIG_MTD_SST25L is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# end of Self-contained MTD device drivers - -# -# NAND -# -CONFIG_MTD_NAND_CORE=y -# CONFIG_MTD_ONENAND is not set -# CONFIG_MTD_RAW_NAND is not set -CONFIG_MTD_SPI_NAND=y - -# -# ECC engine support -# -CONFIG_MTD_NAND_ECC=y -# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set -# CONFIG_MTD_NAND_ECC_SW_BCH is not set -# end of ECC engine support -# end of NAND - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# end of LPDDR & LPDDR2 PCM memory drivers - -# CONFIG_MTD_SPI_NOR is not set -CONFIG_MTD_UBI=y -CONFIG_MTD_UBI_WL_THRESHOLD=4096 -CONFIG_MTD_UBI_BEB_LIMIT=20 -CONFIG_MTD_UBI_FASTMAP=y -# CONFIG_MTD_UBI_GLUEBI is not set -CONFIG_MTD_UBI_BLOCK=y -# CONFIG_MTD_HYPERBUS is not set -CONFIG_DTC=y -CONFIG_OF=y -# CONFIG_OF_UNITTEST is not set -CONFIG_OF_FLATTREE=y -CONFIG_OF_EARLY_FLATTREE=y -CONFIG_OF_KOBJ=y -CONFIG_OF_DYNAMIC=y -CONFIG_OF_ADDRESS=y -CONFIG_OF_IRQ=y -CONFIG_OF_NET=y -CONFIG_OF_RESERVED_MEM=y -CONFIG_OF_RESOLVE=y -CONFIG_OF_OVERLAY=y -# CONFIG_PARPORT is not set -# CONFIG_BLK_DEV is not set - -# -# NVME Support -# -# CONFIG_NVME_FC is not set -# CONFIG_NVME_TCP is not set -# CONFIG_NVME_TARGET is not set -# end of NVME Support - -# -# Misc devices -# -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_LATTICE_ECP3_CONFIG is not set -# CONFIG_SRAM is not set -# CONFIG_XILINX_SDFEC is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_AT25 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_93XX46 is not set -# end of EEPROM support - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_TI_ST is not set -# end of Texas Instruments shared transport line discipline - -# CONFIG_SENSORS_LIS3_SPI is not set - -# -# Altera FPGA firmware download module (requires I2C) -# -# CONFIG_ECHO is not set -# CONFIG_UACCE is not set -# CONFIG_PVPANIC is not set -# end of Misc devices - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -# CONFIG_SCSI is not set -# end of SCSI device support - -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -# CONFIG_NET_CORE is not set -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_ALACRITECH is not set -CONFIG_NET_VENDOR_ALLWINNER=y -# CONFIG_SUN4I_EMAC is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_CADENCE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CORTINA is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_GOOGLE is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -# CONFIG_NET_VENDOR_INTEL is not set -# CONFIG_NET_VENDOR_MICROSOFT is not set -# CONFIG_NET_VENDOR_LITEX is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MICROCHIP is not set -# CONFIG_NET_VENDOR_MICROSEMI is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_VENDOR_PENSANDO is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SOCIONEXT is not set -CONFIG_NET_VENDOR_STMICRO=y -CONFIG_STMMAC_ETH=y -# CONFIG_STMMAC_SELFTESTS is not set -CONFIG_STMMAC_PLATFORM=y -# CONFIG_DWMAC_DWC_QOS_ETH is not set -CONFIG_DWMAC_GENERIC=y -CONFIG_DWMAC_SUNXI=y -CONFIG_DWMAC_SUN8I=y -# CONFIG_DWMAC_INTEL_PLAT is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_XILINX is not set -CONFIG_PHYLINK=y -CONFIG_PHYLIB=y -CONFIG_SWPHY=y -# CONFIG_LED_TRIGGER_PHY is not set -CONFIG_FIXED_PHY=y - -# -# MII PHY device drivers -# -# CONFIG_AMD_PHY is not set -# CONFIG_ADIN_PHY is not set -# CONFIG_AQUANTIA_PHY is not set -# CONFIG_AX88796B_PHY is not set -# CONFIG_BROADCOM_PHY is not set -# CONFIG_BCM54140_PHY is not set -# CONFIG_BCM7XXX_PHY is not set -# CONFIG_BCM84881_PHY is not set -# CONFIG_BCM87XX_PHY is not set -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_LXT_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -# CONFIG_MARVELL_PHY is not set -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MARVELL_88X2222_PHY is not set -# CONFIG_MAXLINEAR_GPHY is not set -# CONFIG_MEDIATEK_GE_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROCHIP_T1_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_MOTORCOMM_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_NXP_C45_TJA11XX_PHY is not set -# CONFIG_NXP_TJA11XX_PHY is not set -# CONFIG_AT803X_PHY is not set -# CONFIG_QSEMI_PHY is not set -CONFIG_REALTEK_PHY=y -# CONFIG_RENESAS_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_DP83822_PHY is not set -# CONFIG_DP83TC811_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_DP83869_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_MICREL_KS8995MA is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -CONFIG_FWNODE_MDIO=y -CONFIG_OF_MDIO=y -CONFIG_MDIO_DEVRES=y -# CONFIG_MDIO_SUN4I is not set -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_BCM_UNIMAC is not set -# CONFIG_MDIO_HISI_FEMAC is not set -# CONFIG_MDIO_MSCC_MIIM is not set -# CONFIG_MDIO_OCTEON is not set -# CONFIG_MDIO_IPQ4019 is not set -# CONFIG_MDIO_IPQ8064 is not set - -# -# MDIO Multiplexers -# -CONFIG_MDIO_BUS_MUX=y -# CONFIG_MDIO_BUS_MUX_GPIO is not set -# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set -# CONFIG_MDIO_BUS_MUX_MMIOREG is not set - -# -# PCS device drivers -# -CONFIG_PCS_XPCS=y -# end of PCS device drivers - -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set -# CONFIG_WAN is not set - -# -# Wireless WAN -# -# CONFIG_WWAN is not set -# end of Wireless WAN - -# CONFIG_NETDEVSIM is not set -# CONFIG_NET_FAILOVER is not set -# CONFIG_ISDN is not set - -# -# Input device support -# -CONFIG_INPUT=y -CONFIG_INPUT_LEDS=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ATKBD is not set -# CONFIG_KEYBOARD_LKKBD is not set -CONFIG_KEYBOARD_GPIO=y -# CONFIG_KEYBOARD_GPIO_POLLED is not set -# CONFIG_KEYBOARD_MATRIX is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -CONFIG_KEYBOARD_SUN4I_LRADC=y -# CONFIG_KEYBOARD_OMAP4 is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_BCM is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -# CONFIG_GAMEPORT is not set -# end of Hardware I/O ports -# end of Input device support - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_LEGACY_PTYS is not set -# CONFIG_LDISC_AUTOLOAD is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_16550A_VARIANTS=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_DMA=y -CONFIG_SERIAL_8250_NR_UARTS=6 -CONFIG_SERIAL_8250_RUNTIME_UARTS=6 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_ASPEED_VUART is not set -CONFIG_SERIAL_8250_DWLIB=y -CONFIG_SERIAL_8250_DW=y -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_OF_PLATFORM=y - -# -# Non-8250 serial port support -# -CONFIG_SERIAL_EARLYCON_RISCV_SBI=y -# CONFIG_SERIAL_MAX3100 is not set -# CONFIG_SERIAL_MAX310X is not set -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_SIFIVE is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_BCM63XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_XILINX_PS_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_FSL_LINFLEXUART is not set -# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set -# CONFIG_SERIAL_SPRD is not set -# end of Serial drivers - -CONFIG_SERIAL_MCTRL_GPIO=y -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_N_GSM is not set -# CONFIG_NULL_TTY is not set -# CONFIG_HVC_RISCV_SBI is not set -# CONFIG_SERIAL_DEV_BUS is not set -# CONFIG_TTY_PRINTK is not set -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -# CONFIG_HW_RANDOM_BA431 is not set -# CONFIG_HW_RANDOM_VIRTIO is not set -# CONFIG_HW_RANDOM_CCTRNG is not set -# CONFIG_HW_RANDOM_XIPHERA is not set -CONFIG_DEVMEM=y -# CONFIG_TCG_TPM is not set -# CONFIG_XILLYBUS is not set -# CONFIG_RANDOM_TRUST_BOOTLOADER is not set -# end of Character devices - -# -# I2C support -# -# CONFIG_I2C is not set -# end of I2C support - -# CONFIG_I3C is not set -CONFIG_SPI=y -# CONFIG_SPI_DEBUG is not set -CONFIG_SPI_MASTER=y -CONFIG_SPI_MEM=y - -# -# SPI Master Controller Drivers -# -# CONFIG_SPI_ALTERA is not set -# CONFIG_SPI_AXI_SPI_ENGINE is not set -# CONFIG_SPI_BITBANG is not set -# CONFIG_SPI_CADENCE is not set -# CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set -# CONFIG_SPI_GPIO is not set -# CONFIG_SPI_FSL_SPI is not set -# CONFIG_SPI_OC_TINY is not set -# CONFIG_SPI_ROCKCHIP is not set -# CONFIG_SPI_SIFIVE is not set -# CONFIG_SPI_SUN4I is not set -CONFIG_SPI_SUN6I=y -# CONFIG_SPI_MXIC is not set -# CONFIG_SPI_XILINX is not set -# CONFIG_SPI_ZYNQMP_GQSPI is not set -# CONFIG_SPI_AMD is not set - -# -# SPI Multiplexer support -# -# CONFIG_SPI_MUX is not set - -# -# SPI Protocol Masters -# -CONFIG_SPI_SPIDEV=y -# CONFIG_SPI_TLE62X0 is not set -# CONFIG_SPI_SLAVE is not set -CONFIG_SPI_DYNAMIC=y -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -# CONFIG_PPS is not set - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set -CONFIG_PTP_1588_CLOCK_OPTIONAL=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# end of PTP clock support - -CONFIG_PINCTRL=y -CONFIG_PINMUX=y -CONFIG_PINCONF=y -CONFIG_GENERIC_PINCONF=y -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_SINGLE is not set -# CONFIG_PINCTRL_OCELOT is not set -# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set - -# -# Renesas pinctrl drivers -# -# end of Renesas pinctrl drivers - -CONFIG_PINCTRL_SUNXI=y -# CONFIG_PINCTRL_SUN4I_A10 is not set -# CONFIG_PINCTRL_SUN5I is not set -# CONFIG_PINCTRL_SUN6I_A31 is not set -# CONFIG_PINCTRL_SUN6I_A31_R is not set -# CONFIG_PINCTRL_SUN8I_A23 is not set -# CONFIG_PINCTRL_SUN8I_A33 is not set -# CONFIG_PINCTRL_SUN8I_A83T is not set -# CONFIG_PINCTRL_SUN8I_A83T_R is not set -# CONFIG_PINCTRL_SUN8I_A23_R is not set -# CONFIG_PINCTRL_SUN8I_H3 is not set -# CONFIG_PINCTRL_SUN8I_H3_R is not set -# CONFIG_PINCTRL_SUN8I_V3S is not set -# CONFIG_PINCTRL_SUN9I_A80 is not set -# CONFIG_PINCTRL_SUN9I_A80_R is not set -CONFIG_PINCTRL_SUN20I_D1=y -# CONFIG_PINCTRL_SUN50I_A64 is not set -# CONFIG_PINCTRL_SUN50I_A64_R is not set -# CONFIG_PINCTRL_SUN50I_A100 is not set -# CONFIG_PINCTRL_SUN50I_A100_R is not set -# CONFIG_PINCTRL_SUN50I_H5 is not set -# CONFIG_PINCTRL_SUN50I_H6 is not set -# CONFIG_PINCTRL_SUN50I_H6_R is not set -# CONFIG_PINCTRL_SUN50I_H616 is not set -# CONFIG_PINCTRL_SUN50I_H616_R is not set -CONFIG_GPIOLIB=y -CONFIG_GPIOLIB_FASTPATH_LIMIT=512 -CONFIG_OF_GPIO=y -# CONFIG_DEBUG_GPIO is not set -CONFIG_GPIO_SYSFS=y -CONFIG_GPIO_CDEV=y -CONFIG_GPIO_CDEV_V1=y - -# -# Memory mapped GPIO drivers -# -# CONFIG_GPIO_74XX_MMIO is not set -# CONFIG_GPIO_ALTERA is not set -# CONFIG_GPIO_CADENCE is not set -# CONFIG_GPIO_DWAPB is not set -# CONFIG_GPIO_FTGPIO010 is not set -# CONFIG_GPIO_GENERIC_PLATFORM is not set -# CONFIG_GPIO_GRGPIO is not set -# CONFIG_GPIO_HLWD is not set -# CONFIG_GPIO_LOGICVC is not set -# CONFIG_GPIO_MB86S7X is not set -# CONFIG_GPIO_SAMA5D2_PIOBU is not set -# CONFIG_GPIO_SIFIVE is not set -# CONFIG_GPIO_SYSCON is not set -# CONFIG_GPIO_XILINX is not set -# CONFIG_GPIO_AMD_FCH is not set -# end of Memory mapped GPIO drivers - -# -# MFD GPIO expanders -# -# end of MFD GPIO expanders - -# -# SPI GPIO expanders -# -# CONFIG_GPIO_74X164 is not set -# CONFIG_GPIO_MAX3191X is not set -# CONFIG_GPIO_MAX7301 is not set -# CONFIG_GPIO_MC33880 is not set -# CONFIG_GPIO_PISOSR is not set -# CONFIG_GPIO_XRA1403 is not set -# end of SPI GPIO expanders - -# -# Virtual GPIO drivers -# -# CONFIG_GPIO_AGGREGATOR is not set -# CONFIG_GPIO_MOCKUP is not set -# CONFIG_GPIO_VIRTIO is not set -# end of Virtual GPIO drivers - -# CONFIG_W1 is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -CONFIG_POWER_SUPPLY_HWMON=y -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_CHARGER_ISP1704 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_GPIO is not set -# CONFIG_CHARGER_MANAGER is not set -# CONFIG_CHARGER_LT3651 is not set -# CONFIG_BATTERY_GOLDFISH is not set -CONFIG_HWMON=y -# CONFIG_HWMON_DEBUG_CHIP is not set - -# -# Native drivers -# -# CONFIG_SENSORS_AD7314 is not set -# CONFIG_SENSORS_ADT7310 is not set -# CONFIG_SENSORS_AS370 is not set -# CONFIG_SENSORS_AXI_FAN_CONTROL is not set -# CONFIG_SENSORS_ASPEED is not set -# CONFIG_SENSORS_CORSAIR_CPRO is not set -# CONFIG_SENSORS_CORSAIR_PSU is not set -# CONFIG_SENSORS_F71805F is not set -# CONFIG_SENSORS_F71882FG is not set -# CONFIG_SENSORS_GPIO_FAN is not set -# CONFIG_SENSORS_IT87 is not set -# CONFIG_SENSORS_LTC2947_SPI is not set -# CONFIG_SENSORS_MAX1111 is not set -# CONFIG_SENSORS_MAX197 is not set -# CONFIG_SENSORS_MAX31722 is not set -# CONFIG_SENSORS_MR75203 is not set -# CONFIG_SENSORS_ADCXX is not set -# CONFIG_SENSORS_LM70 is not set -# CONFIG_SENSORS_PC87360 is not set -# CONFIG_SENSORS_PC87427 is not set -# CONFIG_SENSORS_NTC_THERMISTOR is not set -# CONFIG_SENSORS_NCT6683 is not set -# CONFIG_SENSORS_NCT6775 is not set -# CONFIG_SENSORS_NPCM7XX is not set -# CONFIG_SENSORS_SHT15 is not set -# CONFIG_SENSORS_SMSC47M1 is not set -# CONFIG_SENSORS_SMSC47B397 is not set -# CONFIG_SENSORS_SCH5627 is not set -# CONFIG_SENSORS_SCH5636 is not set -# CONFIG_SENSORS_ADS7871 is not set -# CONFIG_SENSORS_VT1211 is not set -# CONFIG_SENSORS_W83627HF is not set -# CONFIG_SENSORS_W83627EHF is not set -CONFIG_THERMAL=y -# CONFIG_THERMAL_NETLINK is not set -CONFIG_THERMAL_STATISTICS=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -CONFIG_THERMAL_HWMON=y -CONFIG_THERMAL_OF=y -CONFIG_THERMAL_WRITABLE_TRIPS=y -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -CONFIG_THERMAL_GOV_BANG_BANG=y -CONFIG_THERMAL_GOV_USER_SPACE=y -CONFIG_CPU_THERMAL=y -CONFIG_THERMAL_EMULATION=y -# CONFIG_THERMAL_MMIO is not set -CONFIG_SUN8I_THERMAL=y -CONFIG_WATCHDOG=y -CONFIG_WATCHDOG_CORE=y -# CONFIG_WATCHDOG_NOWAYOUT is not set -CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y -CONFIG_WATCHDOG_OPEN_TIMEOUT=0 -CONFIG_WATCHDOG_SYSFS=y -# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set - -# -# Watchdog Pretimeout Governors -# -# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set - -# -# Watchdog Device Drivers -# -# CONFIG_SOFT_WATCHDOG is not set -# CONFIG_GPIO_WATCHDOG is not set -# CONFIG_XILINX_WATCHDOG is not set -# CONFIG_CADENCE_WATCHDOG is not set -# CONFIG_DW_WATCHDOG is not set -CONFIG_SUNXI_WATCHDOG=y -# CONFIG_MAX63XX_WATCHDOG is not set -# CONFIG_MEN_A21_WDT is not set -CONFIG_SSB_POSSIBLE=y -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -CONFIG_MFD_CORE=y -# CONFIG_MFD_SUN4I_GPADC is not set -# CONFIG_MFD_ATMEL_FLEXCOM is not set -# CONFIG_MFD_ATMEL_HLCDC is not set -# CONFIG_MFD_MADERA is not set -# CONFIG_MFD_DA9052_SPI is not set -# CONFIG_MFD_MC13XXX_SPI is not set -# CONFIG_MFD_HI6421_PMIC is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_EZX_PCAP is not set -# CONFIG_MFD_CPCAP is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_STMPE is not set -CONFIG_MFD_SUN6I_PRCM=y -CONFIG_MFD_SYSCON=y -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TPS65912_SPI is not set -# CONFIG_MFD_TQMX86 is not set -# CONFIG_MFD_ARIZONA_SPI is not set -# CONFIG_MFD_WM831X_SPI is not set -# CONFIG_MFD_INTEL_M10_BMC is not set -# CONFIG_MFD_RSMU_SPI is not set -# end of Multifunction device drivers - -CONFIG_REGULATOR=y -# CONFIG_REGULATOR_DEBUG is not set -CONFIG_REGULATOR_FIXED_VOLTAGE=y -# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set -# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set -# CONFIG_REGULATOR_GPIO is not set -# CONFIG_REGULATOR_TPS6524X is not set -# CONFIG_REGULATOR_VCTRL is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_CEC_SUPPORT is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_DRM is not set - -# -# ARM devices -# -# end of ARM devices - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# end of Frame buffer Devices - -# -# Backlight & LCD device support -# -# CONFIG_LCD_CLASS_DEVICE is not set -# CONFIG_BACKLIGHT_CLASS_DEVICE is not set -# end of Backlight & LCD device support -# end of Graphics support - -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -# CONFIG_HIDRAW is not set -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_COUGAR is not set -# CONFIG_HID_MACALLY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_GLORIOUS is not set -# CONFIG_HID_VIVALDI is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_VIEWSONIC is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_JABRA is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LED is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MALTRON is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_REDRAGON is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PLAYSTATION is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SEMITEK is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEAM is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THINGM is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WIIMOTE is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set -# end of Special HID drivers -# end of HID support - -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_SUPPORT=y -CONFIG_USB_COMMON=y -# CONFIG_USB_LED_TRIG is not set -# CONFIG_USB_ULPI_BUS is not set -# CONFIG_USB_CONN_GPIO is not set -CONFIG_USB_ARCH_HAS_HCD=y -# CONFIG_USB is not set - -# -# USB port drivers -# - -# -# USB Physical Layer drivers -# -CONFIG_USB_PHY=y -CONFIG_NOP_USB_XCEIV=y -# CONFIG_USB_GPIO_VBUS is not set -# end of USB Physical Layer drivers - -# CONFIG_USB_GADGET is not set -# CONFIG_TYPEC is not set -# CONFIG_USB_ROLE_SWITCH is not set -CONFIG_MMC=y -CONFIG_PWRSEQ_EMMC=y -CONFIG_PWRSEQ_SIMPLE=y -CONFIG_MMC_BLOCK=y -CONFIG_MMC_BLOCK_MINORS=8 -# CONFIG_SDIO_UART is not set -# CONFIG_MMC_TEST is not set - -# -# MMC/SD/SDIO Host Controller Drivers -# -# CONFIG_MMC_DEBUG is not set -# CONFIG_MMC_SDHCI is not set -# CONFIG_MMC_SPI is not set -# CONFIG_MMC_DW is not set -# CONFIG_MMC_USDHI6ROL0 is not set -CONFIG_MMC_SUNXI=y -# CONFIG_MMC_CQHCI is not set -# CONFIG_MMC_HSQ is not set -# CONFIG_MMC_MTK is not set -# CONFIG_MEMSTICK is not set -CONFIG_NEW_LEDS=y -CONFIG_LEDS_CLASS=y -# CONFIG_LEDS_CLASS_FLASH is not set -CONFIG_LEDS_CLASS_MULTICOLOR=y -# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set - -# -# LED drivers -# -# CONFIG_LEDS_BCM6328 is not set -# CONFIG_LEDS_BCM6358 is not set -# CONFIG_LEDS_CR0014114 is not set -# CONFIG_LEDS_EL15203000 is not set -# CONFIG_LEDS_SUN50I_R329 is not set -# CONFIG_LEDS_GPIO is not set -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_REGULATOR is not set -# CONFIG_LEDS_LT3593 is not set - -# -# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) -# -# CONFIG_LEDS_SYSCON is not set -# CONFIG_LEDS_MLXREG is not set -# CONFIG_LEDS_USER is not set -# CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set - -# -# Flash and Torch LED drivers -# - -# -# LED Triggers -# -CONFIG_LEDS_TRIGGERS=y -CONFIG_LEDS_TRIGGER_TIMER=y -CONFIG_LEDS_TRIGGER_ONESHOT=y -CONFIG_LEDS_TRIGGER_MTD=y -CONFIG_LEDS_TRIGGER_HEARTBEAT=y -# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set -CONFIG_LEDS_TRIGGER_CPU=y -CONFIG_LEDS_TRIGGER_ACTIVITY=y -# CONFIG_LEDS_TRIGGER_GPIO is not set -# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set - -# -# iptables trigger is under Netfilter config (LED target) -# -# CONFIG_LEDS_TRIGGER_TRANSIENT is not set -# CONFIG_LEDS_TRIGGER_CAMERA is not set -CONFIG_LEDS_TRIGGER_PANIC=y -CONFIG_LEDS_TRIGGER_NETDEV=y -# CONFIG_LEDS_TRIGGER_PATTERN is not set -# CONFIG_LEDS_TRIGGER_AUDIO is not set -# CONFIG_LEDS_TRIGGER_TTY is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_CLASS=y -CONFIG_RTC_HCTOSYS=y -CONFIG_RTC_HCTOSYS_DEVICE="rtc0" -CONFIG_RTC_SYSTOHC=y -CONFIG_RTC_SYSTOHC_DEVICE="rtc0" -# CONFIG_RTC_DEBUG is not set -CONFIG_RTC_NVMEM=y - -# -# RTC interfaces -# -CONFIG_RTC_INTF_SYSFS=y -CONFIG_RTC_INTF_PROC=y -CONFIG_RTC_INTF_DEV=y -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set -# CONFIG_RTC_DRV_TEST is not set - -# -# I2C RTC drivers -# - -# -# SPI RTC drivers -# -# CONFIG_RTC_DRV_M41T93 is not set -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1302 is not set -# CONFIG_RTC_DRV_DS1305 is not set -# CONFIG_RTC_DRV_DS1343 is not set -# CONFIG_RTC_DRV_DS1347 is not set -# CONFIG_RTC_DRV_DS1390 is not set -# CONFIG_RTC_DRV_MAX6916 is not set -# CONFIG_RTC_DRV_R9701 is not set -# CONFIG_RTC_DRV_RX4581 is not set -# CONFIG_RTC_DRV_RS5C348 is not set -# CONFIG_RTC_DRV_MAX6902 is not set -# CONFIG_RTC_DRV_PCF2123 is not set -# CONFIG_RTC_DRV_MCP795 is not set -CONFIG_RTC_I2C_AND_SPI=y - -# -# SPI and I2C RTC drivers -# -# CONFIG_RTC_DRV_DS3232 is not set -# CONFIG_RTC_DRV_PCF2127 is not set -# CONFIG_RTC_DRV_RV3029C2 is not set -# CONFIG_RTC_DRV_RX6110 is not set - -# -# Platform RTC drivers -# -# CONFIG_RTC_DRV_DS1286 is not set -# CONFIG_RTC_DRV_DS1511 is not set -# CONFIG_RTC_DRV_DS1553 is not set -# CONFIG_RTC_DRV_DS1685_FAMILY is not set -# CONFIG_RTC_DRV_DS1742 is not set -# CONFIG_RTC_DRV_DS2404 is not set -# CONFIG_RTC_DRV_STK17TA8 is not set -# CONFIG_RTC_DRV_M48T86 is not set -# CONFIG_RTC_DRV_M48T35 is not set -# CONFIG_RTC_DRV_M48T59 is not set -# CONFIG_RTC_DRV_MSM6242 is not set -# CONFIG_RTC_DRV_BQ4802 is not set -# CONFIG_RTC_DRV_RP5C01 is not set -# CONFIG_RTC_DRV_V3020 is not set -# CONFIG_RTC_DRV_ZYNQMP is not set - -# -# on-CPU RTC drivers -# -# CONFIG_RTC_DRV_SUN6I is not set -# CONFIG_RTC_DRV_CADENCE is not set -# CONFIG_RTC_DRV_FTRTC010 is not set -# CONFIG_RTC_DRV_R7301 is not set - -# -# HID Sensor RTC drivers -# -# CONFIG_RTC_DRV_GOLDFISH is not set -CONFIG_DMADEVICES=y -# CONFIG_DMADEVICES_DEBUG is not set - -# -# DMA Devices -# -CONFIG_DMA_ENGINE=y -CONFIG_DMA_VIRTUAL_CHANNELS=y -CONFIG_DMA_OF=y -# CONFIG_ALTERA_MSGDMA is not set -CONFIG_DMA_SUN6I=y -# CONFIG_DW_AXI_DMAC is not set -# CONFIG_FSL_EDMA is not set -# CONFIG_INTEL_IDMA64 is not set -# CONFIG_XILINX_ZYNQMP_DPDMA is not set -# CONFIG_QCOM_HIDMA_MGMT is not set -# CONFIG_QCOM_HIDMA is not set -# CONFIG_DW_DMAC is not set -# CONFIG_SF_PDMA is not set - -# -# DMA Clients -# -# CONFIG_ASYNC_TX_DMA is not set -# CONFIG_DMATEST is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_DMABUF_HEAPS is not set -# end of DMABUF options - -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VFIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y -# CONFIG_VIRTIO_MENU is not set -# CONFIG_VDPA is not set -# CONFIG_VHOST_MENU is not set - -# -# Microsoft Hyper-V guest support -# -# end of Microsoft Hyper-V guest support - -# CONFIG_GREYBUS is not set -# CONFIG_COMEDI is not set -# CONFIG_STAGING is not set -# CONFIG_GOLDFISH is not set -CONFIG_HAVE_CLK=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Clock driver for ARM Reference designs -# -# CONFIG_ICST is not set -# CONFIG_CLK_SP810 is not set -# end of Clock driver for ARM Reference designs - -# CONFIG_LMK04832 is not set -# CONFIG_COMMON_CLK_AXI_CLKGEN is not set -# CONFIG_COMMON_CLK_FIXED_MMIO is not set -# CONFIG_CLK_SIFIVE is not set -CONFIG_CLK_SUNXI=y -CONFIG_CLK_SUNXI_CLOCKS=y -CONFIG_CLK_SUNXI_PRCM_SUN6I=y -CONFIG_CLK_SUNXI_PRCM_SUN8I=y -CONFIG_CLK_SUNXI_PRCM_SUN9I=y -CONFIG_SUNXI_CCU=y -CONFIG_SUN20I_D1_CCU=y -CONFIG_SUN20I_D1_R_CCU=y -CONFIG_SUN6I_RTC_CCU=y -# CONFIG_SUN8I_A83T_CCU is not set -CONFIG_SUN8I_DE2_CCU=y -# CONFIG_SUN8I_R_CCU is not set -# CONFIG_XILINX_VCU is not set -CONFIG_HWSPINLOCK=y -CONFIG_HWSPINLOCK_SUN6I=y - -# -# Clock Source drivers -# -CONFIG_TIMER_OF=y -CONFIG_TIMER_PROBE=y -CONFIG_CLKSRC_MMIO=y -CONFIG_SUN4I_TIMER=y -CONFIG_SUN5I_HSTIMER=y -CONFIG_RISCV_TIMER=y -# CONFIG_MICROCHIP_PIT64B is not set -# end of Clock Source drivers - -CONFIG_MAILBOX=y -# CONFIG_PLATFORM_MHU is not set -# CONFIG_ALTERA_MBOX is not set -# CONFIG_MAILBOX_TEST is not set -CONFIG_SUN6I_MSGBOX=y -CONFIG_SUN8I_MSGBOX=y -CONFIG_IOMMU_API=y -CONFIG_IOMMU_SUPPORT=y - -# -# Generic IOMMU Pagetable Support -# -# end of Generic IOMMU Pagetable Support - -# CONFIG_IOMMU_DEBUGFS is not set -CONFIG_IOMMU_DEFAULT_DMA_STRICT=y -# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set -# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set -CONFIG_OF_IOMMU=y -CONFIG_SUN50I_IOMMU=y - -# -# Remoteproc drivers -# -CONFIG_REMOTEPROC=y -CONFIG_REMOTEPROC_CDEV=y -# CONFIG_SUN8I_DSP_REMOTEPROC is not set -# end of Remoteproc drivers - -# -# Rpmsg drivers -# -CONFIG_RPMSG=y -CONFIG_RPMSG_CHAR=y -CONFIG_RPMSG_NS=y -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set -CONFIG_RPMSG_VIRTIO=y -# end of Rpmsg drivers - -# CONFIG_SOUNDWIRE is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# -# end of Amlogic SoC drivers - -# -# Broadcom SoC drivers -# -# end of Broadcom SoC drivers - -# -# NXP/Freescale QorIQ SoC drivers -# -# end of NXP/Freescale QorIQ SoC drivers - -# -# i.MX SoC drivers -# -# end of i.MX SoC drivers - -# -# Enable LiteX SoC Builder specific drivers -# -# CONFIG_LITEX_SOC_CONTROLLER is not set -# end of Enable LiteX SoC Builder specific drivers - -# -# Qualcomm SoC drivers -# -# end of Qualcomm SoC drivers - -CONFIG_SUNXI_SRAM=y -# CONFIG_SOC_TI is not set - -# -# Xilinx SoC drivers -# -# end of Xilinx SoC drivers -# end of SOC (System On Chip) specific Drivers - -# CONFIG_PM_DEVFREQ is not set -CONFIG_EXTCON=y - -# -# Extcon Device Drivers -# -# CONFIG_EXTCON_GPIO is not set -# CONFIG_EXTCON_MAX3355 is not set -# CONFIG_EXTCON_USB_GPIO is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_PWM is not set - -# -# IRQ chip support -# -CONFIG_IRQCHIP=y -# CONFIG_AL_FIC is not set -CONFIG_RISCV_INTC=y -CONFIG_SIFIVE_PLIC=y -CONFIG_SUN20I_INTC=y -# end of IRQ chip support - -# CONFIG_IPACK_BUS is not set -CONFIG_RESET_CONTROLLER=y -CONFIG_RESET_SIMPLE=y -CONFIG_RESET_SUNXI=y -# CONFIG_RESET_TI_SYSCON is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -# CONFIG_PHY_CAN_TRANSCEIVER is not set -CONFIG_PHY_SUN4I_USB=y -# CONFIG_PHY_SUN6I_MIPI_DPHY is not set -# CONFIG_PHY_SUN9I_USB is not set -# CONFIG_PHY_SUN50I_USB3 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_PHY_CADENCE_TORRENT is not set -# CONFIG_PHY_CADENCE_DPHY is not set -# CONFIG_PHY_CADENCE_SIERRA is not set -# CONFIG_PHY_CADENCE_SALVO is not set -# CONFIG_PHY_FSL_IMX8MQ_USB is not set -# CONFIG_PHY_MIXEL_MIPI_DPHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_PHY_MAPPHONE_MDM6600 is not set -# CONFIG_PHY_OCELOT_SERDES is not set -# end of PHY Subsystem - -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set -# CONFIG_RAS is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# end of Android - -# CONFIG_DAX is not set -CONFIG_NVMEM=y -CONFIG_NVMEM_SYSFS=y -CONFIG_NVMEM_SUNXI_SID=y -# CONFIG_NVMEM_RMEM is not set - -# -# HW tracing support -# -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# end of HW tracing support - -# CONFIG_FPGA is not set -# CONFIG_FSI is not set -# CONFIG_SIOX is not set -# CONFIG_SLIMBUS is not set -# CONFIG_INTERCONNECT is not set -# CONFIG_COUNTER is not set -# CONFIG_MOST is not set -# end of Device Drivers - -# -# File systems -# -# CONFIG_VALIDATE_FS_PARSER is not set -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_OCFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -CONFIG_FILE_LOCKING=y -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FS_VERITY is not set -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -CONFIG_FANOTIFY=y -# CONFIG_QUOTA is not set -# CONFIG_AUTOFS4_FS is not set -# CONFIG_AUTOFS_FS is not set -# CONFIG_FUSE_FS is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set -# end of Caches - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set -# end of CD-ROM/DVD Filesystems - -# -# DOS/FAT/EXFAT/NT Filesystems -# -# CONFIG_MSDOS_FS is not set -# CONFIG_VFAT_FS is not set -# CONFIG_EXFAT_FS is not set -# CONFIG_NTFS_FS is not set -# CONFIG_NTFS3_FS is not set -# end of DOS/FAT/EXFAT/NT Filesystems - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -# CONFIG_TMPFS_XATTR is not set -# CONFIG_TMPFS_INODE64 is not set -CONFIG_ARCH_SUPPORTS_HUGETLBFS=y -# CONFIG_HUGETLBFS is not set -CONFIG_MEMFD_CREATE=y -CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_CONFIGFS_FS=y -# end of Pseudo filesystems - -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_JFFS2_FS is not set -CONFIG_UBIFS_FS=y -CONFIG_UBIFS_FS_ADVANCED_COMPR=y -CONFIG_UBIFS_FS_LZO=y -CONFIG_UBIFS_FS_ZLIB=y -CONFIG_UBIFS_FS_ZSTD=y -# CONFIG_UBIFS_ATIME_SUPPORT is not set -CONFIG_UBIFS_FS_XATTR=y -CONFIG_UBIFS_FS_SECURITY=y -# CONFIG_UBIFS_FS_AUTHENTICATION is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -CONFIG_SQUASHFS_XZ=y -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -# CONFIG_EROFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_NFS_FS is not set -# CONFIG_NFSD is not set -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_SMB_SERVER is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -CONFIG_9P_FS_POSIX_ACL=y -CONFIG_9P_FS_SECURITY=y -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -# CONFIG_NLS_CODEPAGE_437 is not set -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -# CONFIG_NLS_ASCII is not set -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -# CONFIG_NLS_UTF8 is not set -# CONFIG_DLM is not set -# CONFIG_UNICODE is not set -CONFIG_IO_WQ=y -# end of File systems - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf" - -# -# Kernel hardening options -# - -# -# Memory initialization -# -CONFIG_INIT_STACK_NONE=y -# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set -# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set -CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y -# CONFIG_ZERO_CALL_USED_REGS is not set -# end of Memory initialization -# end of Kernel hardening options -# end of Security options - -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_SKCIPHER=y -CONFIG_CRYPTO_SKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set -CONFIG_CRYPTO_ENGINE=y - -# -# Public-key cryptography -# -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -# CONFIG_CRYPTO_ECDSA is not set -# CONFIG_CRYPTO_ECRDSA is not set -# CONFIG_CRYPTO_SM2 is not set -# CONFIG_CRYPTO_CURVE25519 is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_AEGIS128 is not set -# CONFIG_CRYPTO_SEQIV is not set -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CFB is not set -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_OFB is not set -# CONFIG_CRYPTO_PCBC is not set -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set -# CONFIG_CRYPTO_ADIANTUM is not set -# CONFIG_CRYPTO_ESSIV is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -# CONFIG_CRYPTO_HMAC is not set -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_XXHASH is not set -# CONFIG_CRYPTO_BLAKE2B is not set -# CONFIG_CRYPTO_BLAKE2S is not set -# CONFIG_CRYPTO_CRCT10DIF is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD160 is not set -CONFIG_CRYPTO_SHA1=y -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_SM3 is not set -# CONFIG_CRYPTO_STREEBOG is not set -# CONFIG_CRYPTO_WP512 is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST6 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SM4 is not set -# CONFIG_CRYPTO_TWOFISH is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set -CONFIG_CRYPTO_ZSTD=y - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -# CONFIG_CRYPTO_DRBG_MENU is not set -# CONFIG_CRYPTO_JITTERENTROPY is not set -CONFIG_CRYPTO_USER_API=y -CONFIG_CRYPTO_USER_API_HASH=y -CONFIG_CRYPTO_USER_API_SKCIPHER=y -CONFIG_CRYPTO_USER_API_RNG=y -CONFIG_CRYPTO_USER_API_AEAD=y -# CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set -CONFIG_CRYPTO_HASH_INFO=y - -# -# Crypto library routines -# -CONFIG_CRYPTO_LIB_AES=y -# CONFIG_CRYPTO_LIB_BLAKE2S is not set -# CONFIG_CRYPTO_LIB_CHACHA is not set -# CONFIG_CRYPTO_LIB_CURVE25519 is not set -CONFIG_CRYPTO_LIB_DES=y -CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 -# CONFIG_CRYPTO_LIB_POLY1305 is not set -# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_LIB_SHA256=y -CONFIG_CRYPTO_HW=y -CONFIG_CRYPTO_DEV_ALLWINNER=y -# CONFIG_CRYPTO_DEV_SUN4I_SS is not set -CONFIG_CRYPTO_DEV_SUN8I_CE=y -# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set -CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y -CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y -CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y -# CONFIG_CRYPTO_DEV_SUN8I_SS is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_CRYPTO_DEV_SAFEXCEL is not set -# CONFIG_CRYPTO_DEV_CCREE is not set -# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set - -# -# Certificates for signature checking -# -# end of Certificates for signature checking - -# -# Library routines -# -CONFIG_LINEAR_RANGES=y -# CONFIG_PACKING is not set -CONFIG_BITREVERSE=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -# CONFIG_CORDIC is not set -# CONFIG_PRIME_NUMBERS is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_PCI_IOMAP=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -# CONFIG_CRC_T10DIF is not set -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC64 is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -CONFIG_XXHASH=y -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_ZSTD_COMPRESS=y -CONFIG_ZSTD_DECOMPRESS=y -CONFIG_XZ_DEC=y -# CONFIG_XZ_DEC_X86 is not set -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_DECOMPRESS_XZ=y -CONFIG_GENERIC_ALLOCATOR=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_ARCH_HAS_DMA_WRITE_COMBINE=y -CONFIG_DMA_DECLARE_COHERENT=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y -CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y -CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y -CONFIG_DMA_NONCOHERENT_MMAP=y -CONFIG_DMA_COHERENT_POOL=y -CONFIG_DMA_REMAP=y -CONFIG_DMA_DIRECT_REMAP=y -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_DMA_MAP_BENCHMARK is not set -CONFIG_SGL_ALLOC=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_IRQ_POLL is not set -CONFIG_LIBFDT=y -CONFIG_HAVE_GENERIC_VDSO=y -CONFIG_GENERIC_GETTIMEOFDAY=y -CONFIG_ARCH_STACKWALK=y -CONFIG_SBITMAP=y -# end of Library routines - -CONFIG_GENERIC_IOREMAP=y -CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y - -# -# Kernel hacking -# - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -# CONFIG_PRINTK_CALLER is not set -# CONFIG_STACKTRACE_BUILD_ID is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_CONSOLE_LOGLEVEL_QUIET=4 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set -# CONFIG_DYNAMIC_DEBUG_CORE is not set -CONFIG_SYMBOLIC_ERRNAME=y -CONFIG_DEBUG_BUGVERBOSE=y -# end of printk and dmesg options - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -CONFIG_DEBUG_INFO_REDUCED=y -# CONFIG_DEBUG_INFO_COMPRESSED is not set -CONFIG_DEBUG_INFO_SPLIT=y -CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_DEBUG_INFO_DWARF5 is not set -CONFIG_PAHOLE_HAS_SPLIT_BTF=y -# CONFIG_GDB_SCRIPTS is not set -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_HEADERS_INSTALL is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -# CONFIG_FRAME_POINTER is not set -CONFIG_VMLINUX_MAP=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# end of Compile-time checks and compiler options - -# -# Generic Kernel Debugging Instruments -# -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -# CONFIG_MAGIC_SYSRQ_SERIAL is not set -CONFIG_DEBUG_FS=y -CONFIG_DEBUG_FS_ALLOW_ALL=y -# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set -# CONFIG_DEBUG_FS_ALLOW_NONE is not set -CONFIG_HAVE_ARCH_KGDB=y -CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_UBSAN is not set -CONFIG_HAVE_KCSAN_COMPILER=y -# end of Generic Kernel Debugging Instruments - -CONFIG_DEBUG_KERNEL=y -# CONFIG_DEBUG_MISC is not set - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_OWNER is not set -# CONFIG_PAGE_POISONING is not set -# CONFIG_DEBUG_RODATA_TEST is not set -CONFIG_ARCH_HAS_DEBUG_WX=y -# CONFIG_DEBUG_WX is not set -CONFIG_GENERIC_PTDUMP=y -# CONFIG_PTDUMP_DEBUGFS is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VM_PGTABLE is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -CONFIG_HAVE_ARCH_KASAN=y -CONFIG_HAVE_ARCH_KASAN_VMALLOC=y -CONFIG_CC_HAS_KASAN_GENERIC=y -CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y -# CONFIG_KASAN is not set -CONFIG_HAVE_ARCH_KFENCE=y -# CONFIG_KFENCE is not set -# end of Memory Debugging - -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Oops, Lockups and Hangs -# -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -# CONFIG_SOFTLOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_WQ_WATCHDOG is not set -# end of Debug Oops, Lockups and Hangs - -# -# Scheduler Debugging -# -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHEDSTATS is not set -# end of Scheduler Debugging - -# CONFIG_DEBUG_TIMEKEEPING is not set -CONFIG_DEBUG_PREEMPT=y - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -CONFIG_LOCK_DEBUGGING_SUPPORT=y -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_RWSEMS is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -CONFIG_DEBUG_ATOMIC_SLEEP=y -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_SCF_TORTURE_TEST is not set -# CONFIG_CSD_LOCK_WAIT_DEBUG is not set -# end of Lock Debugging (spinlocks, mutexes, etc...) - -# CONFIG_DEBUG_IRQFLAGS is not set -CONFIG_STACKTRACE=y -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set - -# -# Debug kernel data structures -# -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PLIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# end of Debug kernel data structures - -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_RCU_SCALE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -# CONFIG_RCU_REF_SCALE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# end of RCU Debugging - -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_SAMPLES is not set -# CONFIG_STRICT_DEVMEM is not set - -# -# riscv Debugging -# - -# -# Kernel Testing and Coverage -# -# CONFIG_KUNIT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -CONFIG_ARCH_HAS_KCOV=y -CONFIG_CC_HAS_SANCOV_TRACE_PC=y -# CONFIG_KCOV is not set -# CONFIG_RUNTIME_TESTING_MENU is not set -CONFIG_ARCH_USE_MEMTEST=y -# CONFIG_MEMTEST is not set -# end of Kernel Testing and Coverage -# end of Kernel hacking From 93c06bea540e6fed1c65bc884ceca5ecb002e48d Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 121/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/tianocore/ovmf/Dockerfile | 30 ---------------------------- mainboards/tianocore/ovmf/Makefile | 7 ------- 2 files changed, 37 deletions(-) delete mode 100644 mainboards/tianocore/ovmf/Dockerfile delete mode 100644 mainboards/tianocore/ovmf/Makefile diff --git a/mainboards/tianocore/ovmf/Dockerfile b/mainboards/tianocore/ovmf/Dockerfile deleted file mode 100644 index 8d8f0410..00000000 --- a/mainboards/tianocore/ovmf/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM golang:1.16.4-buster - -LABEL description="Testing environment for Linuxboot in OVMF" - -# Install dependencies -RUN apt update -RUN apt install -y \ - acpica-tools \ - bc \ - bison \ - build-essential \ - cpio \ - flex \ - kmod \ - libelf-dev \ - libncurses5-dev \ - libssl-dev \ - nasm \ - qemu-system \ - uuid-dev - -# Get the correct version of UTK -RUN git clone https://github.com/linuxboot/fiano /go/src/github.com/linuxboot/fiano -RUN cd /go/src/github.com/linuxboot/fiano/cmds/utk && git checkout v5.0.0 && GO111MODULE=off go install - -# Working directory for mounting git repo in -RUN mkdir /linuxboot-ovmf -WORKDIR /linuxboot-ovmf - -ENTRYPOINT ["/bin/bash"] diff --git a/mainboards/tianocore/ovmf/Makefile b/mainboards/tianocore/ovmf/Makefile deleted file mode 100644 index 47aa7936..00000000 --- a/mainboards/tianocore/ovmf/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CONTAINER_NAME := linuxboot-ovmf - -docker-build: Dockerfile - docker build -t $(CONTAINER_NAME) -f $< . - -docker-run: - docker run --tty --interactive --rm --volume "$(shell pwd)":/$(CONTAINER_NAME) $(CONTAINER_NAME) From e49b38ec1fff220852be5a75f7745f7e981e543f Mon Sep 17 00:00:00 2001 From: Ronald G Minnich Date: Wed, 23 Oct 2024 23:19:58 -0700 Subject: [PATCH 122/132] pruning broken board Signed-off-by: Ronald G Minnich --- mainboards/tyan7106/.gitignore | 7 - mainboards/tyan7106/BURN | 18 - mainboards/tyan7106/DXECLEANER | 17 - mainboards/tyan7106/L | 46 - mainboards/tyan7106/LIST | 15 - mainboards/tyan7106/LOG | 4652 - mainboards/tyan7106/Makefile | 404 - mainboards/tyan7106/NOTES | 8 - mainboards/tyan7106/RUN3 | 287997 ------------------- mainboards/tyan7106/RUN4 | 12116 - mainboards/tyan7106/bin.reset | 9 - mainboards/tyan7106/blacklist | 48 - mainboards/tyan7106/chipsec-4.13.0-rc7.ko | Bin 382264 -> 0 bytes mainboards/tyan7106/chipsec_out | 190 - mainboards/tyan7106/config-4.13.0-rc7 | 2528 - mainboards/tyan7106/config-4.14.111 | 2385 - mainboards/tyan7106/pox.tcz | Bin 6266880 -> 0 bytes 17 files changed, 310440 deletions(-) delete mode 100644 mainboards/tyan7106/.gitignore delete mode 100755 mainboards/tyan7106/BURN delete mode 100755 mainboards/tyan7106/DXECLEANER delete mode 100644 mainboards/tyan7106/L delete mode 100644 mainboards/tyan7106/LIST delete mode 100644 mainboards/tyan7106/LOG delete mode 100644 mainboards/tyan7106/Makefile delete mode 100644 mainboards/tyan7106/NOTES delete mode 100644 mainboards/tyan7106/RUN3 delete mode 100644 mainboards/tyan7106/RUN4 delete mode 100644 mainboards/tyan7106/bin.reset delete mode 100644 mainboards/tyan7106/blacklist delete mode 100644 mainboards/tyan7106/chipsec-4.13.0-rc7.ko delete mode 100644 mainboards/tyan7106/chipsec_out delete mode 100644 mainboards/tyan7106/config-4.13.0-rc7 delete mode 100644 mainboards/tyan7106/config-4.14.111 delete mode 100644 mainboards/tyan7106/pox.tcz diff --git a/mainboards/tyan7106/.gitignore b/mainboards/tyan7106/.gitignore deleted file mode 100644 index a8ecb413..00000000 --- a/mainboards/tyan7106/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/EATIT -/DIT -/bzImage -*.bin -/linux -/chipsec.cpio - diff --git a/mainboards/tyan7106/BURN b/mainboards/tyan7106/BURN deleted file mode 100755 index 366bd64c..00000000 --- a/mainboards/tyan7106/BURN +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -exit 0 -./uinit -m tester -echo "ALL DONE" diff --git a/mainboards/tyan7106/DXECLEANER b/mainboards/tyan7106/DXECLEANER deleted file mode 100755 index 50f087bf..00000000 --- a/mainboards/tyan7106/DXECLEANER +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -m tester -echo "ALL DONE" diff --git a/mainboards/tyan7106/L b/mainboards/tyan7106/L deleted file mode 100644 index 60a3faf6..00000000 --- a/mainboards/tyan7106/L +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -~/go/bin/utk dxeclean.bin find 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 \ -find 55E76644-78A5-4A82-A900-7126A5798892 \ -find E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC \ -find 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 \ -find 899407D7-99FE-43D8-9A21-79EC328CAC21 \ -find 1B08A1DB-F91A-4FA1-A911-255C417F1CF7 \ -find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 \ -find BDCE85BB-FBAA-4F4E-9264-501A2C249581 \ -find FA20568B-548B-4B2B-81EF-1BA08D4A3CEC \ -find 4E82091E-32A1-4689-8A00-CDE41ED63CDD \ -find 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 \ -find 76D5CF91-0C55-434E-97C2-D2825C82E610 \ -find 734E8BE9-4801-4A31-A3FA-D61CCB601CA9 \ -find 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910 \ -find 502B04F3-71AB-47B4-BEAE-4736EA190AA4 \ -find CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 \ -find DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD \ -find 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 \ -find A210F973-229D-4F4D-AA37-9895E6C9EABA \ -find 9F3A0016-AE55-4288-829D-D55FD3AAC347 \ -find 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8 \ -find A062CF1F-8473-4AA3-8793-600BC4FFE9A8 \ -find E0471A15-76DC-4203-8B27-6DB4F8BA644A \ -find B7EE4835-84CE-4B15-BF52-2D11574CE470 \ -find 81A4F912-E72F-44ED-8931-16A9FE9650E0 \ -find 999BD818-7DF7-4A9A-A502-9B75033E6A0F \ -find C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 \ -find 59AF16B0-661D-4865-A381-38DE68385D8D \ -find 87AB821C-79B8-4EF6-A913-21D22063F55F \ -find 64A11188-5B86-4F59-A702-73365896E65E \ -find 76A7B4FC-C8D5-462D-A4D2-6E88338A772A \ -find AA7B4695-00B4-4468-AD92-99370AC031C5 \ -find E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017 \ -find 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF \ -find 2E6A521C-F697-402D-9774-98B2B7E140F3 \ -find 62DC08AC-A651-4EE9-AF81-EAA9261E9780 \ -find 536DF136-BD96-4E1E-ADF5-6B637C139063 \ -find F282DD45-CA7B-40EC-9618-99381C08F409 \ -find 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86 \ -find 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 \ -find BCEA6548-E204-4486-8F2A-36E13C7838CE \ - -exit 0 - -| jq -r '..|.UUID?|select(type=="string")' | sort -u diff --git a/mainboards/tyan7106/LIST b/mainboards/tyan7106/LIST deleted file mode 100644 index 8393a45c..00000000 --- a/mainboards/tyan7106/LIST +++ /dev/null @@ -1,15 +0,0 @@ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF \ - remove 53BCC14F-C24F-434C-B294-8ED2D4CC1860 \ - remove 9B680FCE-AD6B-4F3A-B60B-F59899003443 \ - remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 \ - remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 \ - remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B \ - remove C10194E7-DEB2-4AF4-9EEE-BFFDE4D7D4C7 \ - remove A19B1FE7-C1BC-49F8-875F-54A5D542443F \ - remove 62D171CB-78CD-4480-8678-C6A2A797A8DE \ - remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E \ - remove 378D7B65-8DA9-4773-B6E4-A47826A833E1 \ - remove 40BEAB40-CECE-4909-B133-20A413AE19E9 \ - remove 63809859-F029-41C3-9F34-EEEB9EA787A5 \ - diff --git a/mainboards/tyan7106/LOG b/mainboards/tyan7106/LOG deleted file mode 100644 index f277fd36..00000000 --- a/mainboards/tyan7106/LOG +++ /dev/null @@ -1,4652 +0,0 @@ -Script started on 2018-11-16 10:16:38-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make cleanme -[?2004l~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist -Beginning of round 1 -Trying to remove E052D8A6-224A-4C32-8D37-2E0AE162364D -+ echo TEST /tmp/dxecleaner441568559/bios.bin -TEST /tmp/dxecleaner441568559/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner441568559/bios.bin -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:17:57 Listening on 192.168.0.1:8080 at 2018-11-16 10:17:57.694307347 -0800 PST m=+0.000924716 -2018/11/16 10:20:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:20:57.694638575 -0800 PST m=+180.001255831 -2018/11/16 10:20:57 accept tcp 192.168.0.1:8080: i/o timeout - Failed E052D8A6-224A-4C32-8D37-2E0AE162364D! -Trying to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 -+ echo TEST /tmp/dxecleaner705742530/bios.bin -TEST /tmp/dxecleaner705742530/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner705742530/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:21:13 Listening on 192.168.0.1:8080 at 2018-11-16 10:21:13.233298911 -0800 PST m=+0.000617227 -2018/11/16 10:24:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:24:13.233679613 -0800 PST m=+180.000997970 -2018/11/16 10:24:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5AAB83E5-F027-4CA7-BFD0-16358CC9E453! -Trying to remove 55E76644-78A5-4A82-A900-7126A5798892 -+ echo TEST /tmp/dxecleaner377622841/bios.bin -TEST /tmp/dxecleaner377622841/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner377622841/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:24:27 Listening on 192.168.0.1:8080 at 2018-11-16 10:24:27.134646156 -0800 PST m=+0.001268002 -2018/11/16 10:27:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:27:27.135083674 -0800 PST m=+180.001705305 -2018/11/16 10:27:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed 55E76644-78A5-4A82-A900-7126A5798892! -Trying to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -+ echo TEST /tmp/dxecleaner339018052/bios.bin -TEST /tmp/dxecleaner339018052/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner339018052/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:27:41 Listening on 192.168.0.1:8080 at 2018-11-16 10:27:41.605018104 -0800 PST m=+0.001774252 -2018/11/16 10:30:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:30:41.605517899 -0800 PST m=+180.002273850 -2018/11/16 10:30:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC! -Trying to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 -+ echo TEST /tmp/dxecleaner003290579/bios.bin -TEST /tmp/dxecleaner003290579/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner003290579/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:30:54 Listening on 192.168.0.1:8080 at 2018-11-16 10:30:54.688347006 -0800 PST m=+0.001513405 -2018/11/16 10:33:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:33:54.688723032 -0800 PST m=+180.001889307 -2018/11/16 10:33:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed 67820532-7613-4DD3-9ED7-3D9BE3A7DA63! -Trying to remove 899407D7-99FE-43D8-9A21-79EC328CAC21 -+ echo TEST /tmp/dxecleaner929679638/bios.bin -TEST /tmp/dxecleaner929679638/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner929679638/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:34:08 Listening on 192.168.0.1:8080 at 2018-11-16 10:34:08.897311673 -0800 PST m=+0.001082130 -2018/11/16 10:37:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:37:08.897743018 -0800 PST m=+180.001513311 -2018/11/16 10:37:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 899407D7-99FE-43D8-9A21-79EC328CAC21! -Trying to remove 1B08A1DB-F91A-4FA1-A911-255C417F1CF7 -+ echo TEST /tmp/dxecleaner591564669/bios.bin -TEST /tmp/dxecleaner591564669/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner591564669/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:37:22 Listening on 192.168.0.1:8080 at 2018-11-16 10:37:22.663409062 -0800 PST m=+0.001093099 -2018/11/16 10:40:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:40:22.663909237 -0800 PST m=+180.001593239 -2018/11/16 10:40:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1B08A1DB-F91A-4FA1-A911-255C417F1CF7! -Trying to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 -+ echo TEST /tmp/dxecleaner610890424/bios.bin -TEST /tmp/dxecleaner610890424/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner610890424/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:40:36 Listening on 192.168.0.1:8080 at 2018-11-16 10:40:36.806657576 -0800 PST m=+0.001817328 -2018/11/16 10:43:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:43:36.807185346 -0800 PST m=+180.002344885 -2018/11/16 10:43:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 16D0A23E-C09C-407D-A14A-AD058FDD0CA1! -Trying to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581 -+ echo TEST /tmp/dxecleaner508184759/bios.bin -TEST /tmp/dxecleaner508184759/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner508184759/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:43:50 Listening on 192.168.0.1:8080 at 2018-11-16 10:43:50.617283943 -0800 PST m=+0.001149382 -2018/11/16 10:46:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:46:50.617786649 -0800 PST m=+180.001651888 -2018/11/16 10:46:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed BDCE85BB-FBAA-4F4E-9264-501A2C249581! -Trying to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -+ echo TEST /tmp/dxecleaner404900010/bios.bin -TEST /tmp/dxecleaner404900010/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner404900010/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:47:04 Listening on 192.168.0.1:8080 at 2018-11-16 10:47:04.534290061 -0800 PST m=+0.001112299 -2018/11/16 10:50:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:50:04.534762652 -0800 PST m=+180.001584743 -2018/11/16 10:50:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed FA20568B-548B-4B2B-81EF-1BA08D4A3CEC! -Trying to remove 4E82091E-32A1-4689-8A00-CDE41ED63CDD -+ echo TEST /tmp/dxecleaner769461761/bios.bin -TEST /tmp/dxecleaner769461761/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner769461761/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:50:18 Listening on 192.168.0.1:8080 at 2018-11-16 10:50:18.227471797 -0800 PST m=+0.001171041 -2018/11/16 10:53:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:53:18.227974475 -0800 PST m=+180.001673586 -2018/11/16 10:53:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4E82091E-32A1-4689-8A00-CDE41ED63CDD! -Trying to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -+ echo TEST /tmp/dxecleaner708195692/bios.bin -TEST /tmp/dxecleaner708195692/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner708195692/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:53:32 Listening on 192.168.0.1:8080 at 2018-11-16 10:53:32.004333731 -0800 PST m=+0.001178713 -2018/11/16 10:56:32 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:56:32.004822485 -0800 PST m=+180.001667393 -2018/11/16 10:56:32 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4A3602BC-1A05-4C82-99B4-588CD2A32CD5! -Trying to remove 76D5CF91-0C55-434E-97C2-D2825C82E610 -+ echo TEST /tmp/dxecleaner047703003/bios.bin -TEST /tmp/dxecleaner047703003/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner047703003/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:56:45 Listening on 192.168.0.1:8080 at 2018-11-16 10:56:45.761569475 -0800 PST m=+0.000777374 -2018/11/16 10:59:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 10:59:45.761913999 -0800 PST m=+180.001121883 -2018/11/16 10:59:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 76D5CF91-0C55-434E-97C2-D2825C82E610! -Trying to remove 734E8BE9-4801-4A31-A3FA-D61CCB601CA9 -+ echo TEST /tmp/dxecleaner168605566/bios.bin -TEST /tmp/dxecleaner168605566/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner168605566/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 10:59:59 Listening on 192.168.0.1:8080 at 2018-11-16 10:59:59.458549923 -0800 PST m=+0.001076088 -2018/11/16 11:02:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:02:59.459015104 -0800 PST m=+180.001541171 -2018/11/16 11:02:59 accept tcp 192.168.0.1:8080: i/o timeout - Failed 734E8BE9-4801-4A31-A3FA-D61CCB601CA9! -Trying to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910 -+ echo TEST /tmp/dxecleaner519661765/bios.bin -TEST /tmp/dxecleaner519661765/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519661765/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:03:13 Listening on 192.168.0.1:8080 at 2018-11-16 11:03:13.171790306 -0800 PST m=+0.001158173 -2018/11/16 11:06:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:06:13.172307637 -0800 PST m=+180.001675371 -2018/11/16 11:06:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910! -Trying to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4 -+ echo TEST /tmp/dxecleaner153779552/bios.bin -TEST /tmp/dxecleaner153779552/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner153779552/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:06:26 Listening on 192.168.0.1:8080 at 2018-11-16 11:06:26.841504441 -0800 PST m=+0.001293621 -2018/11/16 11:09:26 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:09:26.841923326 -0800 PST m=+180.001712429 -2018/11/16 11:09:26 accept tcp 192.168.0.1:8080: i/o timeout - Failed 502B04F3-71AB-47B4-BEAE-4736EA190AA4! -Trying to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 -+ echo TEST /tmp/dxecleaner296290623/bios.bin -TEST /tmp/dxecleaner296290623/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner296290623/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:09:40 Listening on 192.168.0.1:8080 at 2018-11-16 11:09:40.608567084 -0800 PST m=+0.001373609 -2018/11/16 11:12:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:12:40.609025194 -0800 PST m=+180.001831599 -2018/11/16 11:12:40 accept tcp 192.168.0.1:8080: i/o timeout - Failed CDC1C80D-E6D3-4A42-9229-75F3BEFCF109! -Trying to remove DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD -+ echo TEST /tmp/dxecleaner492988818/bios.bin -TEST /tmp/dxecleaner492988818/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner492988818/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:12:54 Listening on 192.168.0.1:8080 at 2018-11-16 11:12:54.744548257 -0800 PST m=+0.000711578 -2018/11/16 11:15:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:15:54.744886838 -0800 PST m=+180.001050197 -2018/11/16 11:15:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed DCB2CE8E-73A7-4962-B2FD-95688B5A5BDD! -Trying to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -+ echo TEST /tmp/dxecleaner278113737/bios.bin -TEST /tmp/dxecleaner278113737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner278113737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:16:08 Listening on 192.168.0.1:8080 at 2018-11-16 11:16:08.782999722 -0800 PST m=+0.001963469 -2018/11/16 11:19:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:19:08.783500033 -0800 PST m=+180.002463600 -2018/11/16 11:19:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 271B424E-A4CC-4E0E-90A2-7EA4841F12F3! -Trying to remove A210F973-229D-4F4D-AA37-9895E6C9EABA -+ echo TEST /tmp/dxecleaner195953300/bios.bin -TEST /tmp/dxecleaner195953300/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner195953300/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:19:22 Listening on 192.168.0.1:8080 at 2018-11-16 11:19:22.375535365 -0800 PST m=+0.001355052 -2018/11/16 11:22:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:22:22.376063368 -0800 PST m=+180.001882957 -2018/11/16 11:22:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed A210F973-229D-4F4D-AA37-9895E6C9EABA! -Trying to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347 -+ echo TEST /tmp/dxecleaner982728419/bios.bin -TEST /tmp/dxecleaner982728419/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner982728419/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:22:35 Listening on 192.168.0.1:8080 at 2018-11-16 11:22:35.88660605 -0800 PST m=+0.001830549 -2018/11/16 11:25:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:25:35.887116008 -0800 PST m=+180.002340348 -2018/11/16 11:25:35 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9F3A0016-AE55-4288-829D-D55FD3AAC347! -Trying to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8 -+ echo TEST /tmp/dxecleaner755154150/bios.bin -TEST /tmp/dxecleaner755154150/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner755154150/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:25:49 Listening on 192.168.0.1:8080 at 2018-11-16 11:25:49.65294229 -0800 PST m=+0.001181539 -2018/11/16 11:28:49 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:28:49.65341941 -0800 PST m=+180.001658558 -2018/11/16 11:28:49 accept tcp 192.168.0.1:8080: i/o timeout - Failed 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8! -Trying to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8 -+ echo TEST /tmp/dxecleaner465185549/bios.bin -TEST /tmp/dxecleaner465185549/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner465185549/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:29:03 Listening on 192.168.0.1:8080 at 2018-11-16 11:29:03.303753792 -0800 PST m=+0.001476167 -2018/11/16 11:32:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:32:03.304185537 -0800 PST m=+180.001907848 -2018/11/16 11:32:03 accept tcp 192.168.0.1:8080: i/o timeout - Failed A062CF1F-8473-4AA3-8793-600BC4FFE9A8! -Trying to remove E0471A15-76DC-4203-8B27-6DB4F8BA644A -+ echo TEST /tmp/dxecleaner940361992/bios.bin -TEST /tmp/dxecleaner940361992/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner940361992/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:32:18 Listening on 192.168.0.1:8080 at 2018-11-16 11:32:18.155141247 -0800 PST m=+0.001203566 -2018/11/16 11:35:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:35:18.155508642 -0800 PST m=+180.001570917 -2018/11/16 11:35:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed E0471A15-76DC-4203-8B27-6DB4F8BA644A! -Trying to remove B7EE4835-84CE-4B15-BF52-2D11574CE470 -+ echo TEST /tmp/dxecleaner011784391/bios.bin -TEST /tmp/dxecleaner011784391/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner011784391/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:35:31 Listening on 192.168.0.1:8080 at 2018-11-16 11:35:31.221048535 -0800 PST m=+0.001478451 -2018/11/16 11:38:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:38:31.221490654 -0800 PST m=+180.001920465 -2018/11/16 11:38:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed B7EE4835-84CE-4B15-BF52-2D11574CE470! -Trying to remove 81A4F912-E72F-44ED-8931-16A9FE9650E0 -+ echo TEST /tmp/dxecleaner146193274/bios.bin -TEST /tmp/dxecleaner146193274/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner146193274/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:38:45 Listening on 192.168.0.1:8080 at 2018-11-16 11:38:45.165537897 -0800 PST m=+0.001818971 -2018/11/16 11:41:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:41:45.166112875 -0800 PST m=+180.002393720 -2018/11/16 11:41:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 81A4F912-E72F-44ED-8931-16A9FE9650E0! -Trying to remove 999BD818-7DF7-4A9A-A502-9B75033E6A0F -+ echo TEST /tmp/dxecleaner324786833/bios.bin -TEST /tmp/dxecleaner324786833/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner324786833/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:41:58 Listening on 192.168.0.1:8080 at 2018-11-16 11:41:58.846810158 -0800 PST m=+0.000899002 -2018/11/16 11:44:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:44:58.847232592 -0800 PST m=+180.001321430 -2018/11/16 11:44:58 accept tcp 192.168.0.1:8080: i/o timeout - Failed 999BD818-7DF7-4A9A-A502-9B75033E6A0F! -Trying to remove C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 -+ echo TEST /tmp/dxecleaner693621436/bios.bin -TEST /tmp/dxecleaner693621436/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner693621436/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:45:12 Listening on 192.168.0.1:8080 at 2018-11-16 11:45:12.201928162 -0800 PST m=+0.001219411 -2018/11/16 11:48:12 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:48:12.202426324 -0800 PST m=+180.001717439 -2018/11/16 11:48:12 accept tcp 192.168.0.1:8080: i/o timeout - Failed C9A6DE36-FDFF-4FAF-8343-85D9E3470F43! -Trying to remove 59AF16B0-661D-4865-A381-38DE68385D8D -+ echo TEST /tmp/dxecleaner895955179/bios.bin -TEST /tmp/dxecleaner895955179/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner895955179/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:48:25 Listening on 192.168.0.1:8080 at 2018-11-16 11:48:25.831581862 -0800 PST m=+0.001165574 -2018/11/16 11:51:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:51:25.83210268 -0800 PST m=+180.001686169 -2018/11/16 11:51:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed 59AF16B0-661D-4865-A381-38DE68385D8D! -Trying to remove 87AB821C-79B8-4EF6-A913-21D22063F55F -+ echo TEST /tmp/dxecleaner522573646/bios.bin -TEST /tmp/dxecleaner522573646/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner522573646/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:51:39 Listening on 192.168.0.1:8080 at 2018-11-16 11:51:39.739151464 -0800 PST m=+0.001827037 -2018/11/16 11:54:39 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:54:39.739667405 -0800 PST m=+180.002342761 -2018/11/16 11:54:39 accept tcp 192.168.0.1:8080: i/o timeout - Failed 87AB821C-79B8-4EF6-A913-21D22063F55F! -Trying to remove 64A11188-5B86-4F59-A702-73365896E65E -+ echo TEST /tmp/dxecleaner955357269/bios.bin -TEST /tmp/dxecleaner955357269/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner955357269/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:54:53 Listening on 192.168.0.1:8080 at 2018-11-16 11:54:53.542596104 -0800 PST m=+0.001123155 -2018/11/16 11:57:53 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 11:57:53.543112865 -0800 PST m=+180.001639839 -2018/11/16 11:57:53 accept tcp 192.168.0.1:8080: i/o timeout - Failed 64A11188-5B86-4F59-A702-73365896E65E! -Trying to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A -+ echo TEST /tmp/dxecleaner344309680/bios.bin -TEST /tmp/dxecleaner344309680/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner344309680/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 11:58:07 Listening on 192.168.0.1:8080 at 2018-11-16 11:58:07.206484439 -0800 PST m=+0.001136888 -2018/11/16 12:01:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:01:07.206941912 -0800 PST m=+180.001594192 -2018/11/16 12:01:07 accept tcp 192.168.0.1:8080: i/o timeout - Failed 76A7B4FC-C8D5-462D-A4D2-6E88338A772A! -Trying to remove AA7B4695-00B4-4468-AD92-99370AC031C5 -+ echo TEST /tmp/dxecleaner611996495/bios.bin -TEST /tmp/dxecleaner611996495/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner611996495/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:01:21 Listening on 192.168.0.1:8080 at 2018-11-16 12:01:21.224721316 -0800 PST m=+0.001806474 -2018/11/16 12:04:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:04:21.225218094 -0800 PST m=+180.002303052 -2018/11/16 12:04:21 accept tcp 192.168.0.1:8080: i/o timeout - Failed AA7B4695-00B4-4468-AD92-99370AC031C5! -Trying to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017 -+ echo TEST /tmp/dxecleaner136478818/bios.bin -TEST /tmp/dxecleaner136478818/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner136478818/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:04:34 Listening on 192.168.0.1:8080 at 2018-11-16 12:04:34.842074129 -0800 PST m=+0.001311694 -2018/11/16 12:07:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:07:34.842583336 -0800 PST m=+180.001820706 -2018/11/16 12:07:34 accept tcp 192.168.0.1:8080: i/o timeout - Failed E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017! -Trying to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -+ echo TEST /tmp/dxecleaner756283481/bios.bin -TEST /tmp/dxecleaner756283481/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner756283481/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:07:48 Listening on 192.168.0.1:8080 at 2018-11-16 12:07:48.556600428 -0800 PST m=+0.001170576 -2018/11/16 12:10:48 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:10:48.557123795 -0800 PST m=+180.001694081 -2018/11/16 12:10:48 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF! -Trying to remove 2E6A521C-F697-402D-9774-98B2B7E140F3 -+ echo TEST /tmp/dxecleaner529659364/bios.bin -TEST /tmp/dxecleaner529659364/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner529659364/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:11:02 Listening on 192.168.0.1:8080 at 2018-11-16 12:11:02.988089689 -0800 PST m=+0.000685342 -2018/11/16 12:14:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:14:02.988390824 -0800 PST m=+180.000986431 -2018/11/16 12:14:02 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2E6A521C-F697-402D-9774-98B2B7E140F3! -Trying to remove 62DC08AC-A651-4EE9-AF81-EAA9261E9780 -+ echo TEST /tmp/dxecleaner703950323/bios.bin -TEST /tmp/dxecleaner703950323/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner703950323/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:14:16 Listening on 192.168.0.1:8080 at 2018-11-16 12:14:16.60607516 -0800 PST m=+0.000673641 -2018/11/16 12:17:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:17:16.606403353 -0800 PST m=+180.001001874 -2018/11/16 12:17:16 accept tcp 192.168.0.1:8080: i/o timeout - Failed 62DC08AC-A651-4EE9-AF81-EAA9261E9780! -Trying to remove 536DF136-BD96-4E1E-ADF5-6B637C139063 -+ echo TEST /tmp/dxecleaner746070198/bios.bin -TEST /tmp/dxecleaner746070198/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner746070198/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:17:30 Listening on 192.168.0.1:8080 at 2018-11-16 12:17:30.607006131 -0800 PST m=+0.001276512 -2018/11/16 12:20:30 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:20:30.607427948 -0800 PST m=+180.001698053 -2018/11/16 12:20:30 accept tcp 192.168.0.1:8080: i/o timeout - Failed 536DF136-BD96-4E1E-ADF5-6B637C139063! -Trying to remove F282DD45-CA7B-40EC-9618-99381C08F409 -+ echo TEST /tmp/dxecleaner371297437/bios.bin -TEST /tmp/dxecleaner371297437/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner371297437/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:20:44 Listening on 192.168.0.1:8080 at 2018-11-16 12:20:44.397158587 -0800 PST m=+0.000716602 -2018/11/16 12:23:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:23:44.397468651 -0800 PST m=+180.001026641 -2018/11/16 12:23:44 accept tcp 192.168.0.1:8080: i/o timeout - Failed F282DD45-CA7B-40EC-9618-99381C08F409! -Trying to remove 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86 -+ echo TEST /tmp/dxecleaner345268056/bios.bin -TEST /tmp/dxecleaner345268056/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner345268056/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:23:59 Listening on 192.168.0.1:8080 at 2018-11-16 12:23:59.300663537 -0800 PST m=+0.001139508 -2018/11/16 12:26:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:26:59.301150245 -0800 PST m=+180.001626015 -2018/11/16 12:26:59 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6A3DEF38-0A45-4107-A74E-ABF2B8EAED86! -Trying to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -+ echo TEST /tmp/dxecleaner585440471/bios.bin -TEST /tmp/dxecleaner585440471/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner585440471/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:27:13 Listening on 192.168.0.1:8080 at 2018-11-16 12:27:13.299004571 -0800 PST m=+0.001213342 -2018/11/16 12:30:13 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:30:13.299495976 -0800 PST m=+180.001704637 -2018/11/16 12:30:13 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666! -Trying to remove BCEA6548-E204-4486-8F2A-36E13C7838CE -+ echo TEST /tmp/dxecleaner479073354/bios.bin -TEST /tmp/dxecleaner479073354/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner479073354/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:30:27 Listening on 192.168.0.1:8080 at 2018-11-16 12:30:27.172227941 -0800 PST m=+0.001154156 -2018/11/16 12:33:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:33:27.17269385 -0800 PST m=+180.001619837 -2018/11/16 12:33:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed BCEA6548-E204-4486-8F2A-36E13C7838CE! -Trying to remove 00B46EC9-2712-486B-A6A4-E2933581C28B -+ echo TEST /tmp/dxecleaner190491937/bios.bin -TEST /tmp/dxecleaner190491937/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner190491937/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:33:41 Listening on 192.168.0.1:8080 at 2018-11-16 12:33:41.085590022 -0800 PST m=+0.001237866 -2018/11/16 12:36:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:36:41.086070834 -0800 PST m=+180.001718484 -2018/11/16 12:36:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed 00B46EC9-2712-486B-A6A4-E2933581C28B! -Trying to remove 60740CF3-D428-4500-80E6-04A5798241ED -+ echo TEST /tmp/dxecleaner184245260/bios.bin -TEST /tmp/dxecleaner184245260/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner184245260/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:36:55 Listening on 192.168.0.1:8080 at 2018-11-16 12:36:55.189804588 -0800 PST m=+0.001216694 -2018/11/16 12:39:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:39:55.190372217 -0800 PST m=+180.001784202 -2018/11/16 12:39:55 accept tcp 192.168.0.1:8080: i/o timeout - Failed 60740CF3-D428-4500-80E6-04A5798241ED! -Trying to remove B2CD74DE-11F9-418C-BF2E-DAC3035AAB7A -+ echo TEST /tmp/dxecleaner550035451/bios.bin -TEST /tmp/dxecleaner550035451/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner550035451/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:40:09 Listening on 192.168.0.1:8080 at 2018-11-16 12:40:09.198152288 -0800 PST m=+0.001506834 -2018/11/16 12:43:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:43:09.198492929 -0800 PST m=+180.001847486 -2018/11/16 12:43:09 accept tcp 192.168.0.1:8080: i/o timeout - Failed B2CD74DE-11F9-418C-BF2E-DAC3035AAB7A! -Trying to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E -+ echo TEST /tmp/dxecleaner018926878/bios.bin -TEST /tmp/dxecleaner018926878/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner018926878/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:43:23 Listening on 192.168.0.1:8080 at 2018-11-16 12:43:23.188094913 -0800 PST m=+0.001788855 -2018/11/16 12:46:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:46:23.188603304 -0800 PST m=+180.002297100 -2018/11/16 12:46:23 accept tcp 192.168.0.1:8080: i/o timeout - Failed AE587172-CC15-48E1-8BE1-29DDF05C6A1E! -Trying to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5 -+ echo TEST /tmp/dxecleaner524891621/bios.bin -TEST /tmp/dxecleaner524891621/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner524891621/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:46:37 Listening on 192.168.0.1:8080 at 2018-11-16 12:46:37.273179711 -0800 PST m=+0.001756142 -2018/11/16 12:49:37 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:49:37.273659598 -0800 PST m=+180.002235860 -2018/11/16 12:49:37 accept tcp 192.168.0.1:8080: i/o timeout - Failed 24A44CAF-0BF2-4514-90C4-C794B3E778F5! -Trying to remove 7ADBAD98-7FE1-4774-9260-747327435E6D -+ echo TEST /tmp/dxecleaner315629568/bios.bin -TEST /tmp/dxecleaner315629568/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner315629568/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:49:51 Listening on 192.168.0.1:8080 at 2018-11-16 12:49:51.095235922 -0800 PST m=+0.001360765 -2018/11/16 12:52:51 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:52:51.095729768 -0800 PST m=+180.001854420 -2018/11/16 12:52:51 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7ADBAD98-7FE1-4774-9260-747327435E6D! -Trying to remove ABBCE13D-E25A-4D9F-A1F9-2F7710786892 -+ echo TEST /tmp/dxecleaner410064735/bios.bin -TEST /tmp/dxecleaner410064735/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner410064735/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:53:04 Listening on 192.168.0.1:8080 at 2018-11-16 12:53:04.812497405 -0800 PST m=+0.001249035 -2018/11/16 12:56:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:56:04.813007413 -0800 PST m=+180.001758869 -2018/11/16 12:56:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed ABBCE13D-E25A-4D9F-A1F9-2F7710786892! -Trying to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A -+ echo TEST /tmp/dxecleaner519282482/bios.bin -TEST /tmp/dxecleaner519282482/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519282482/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:56:18 Listening on 192.168.0.1:8080 at 2018-11-16 12:56:18.99242611 -0800 PST m=+0.001699467 -2018/11/16 12:59:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 12:59:18.992912468 -0800 PST m=+180.002185671 -2018/11/16 12:59:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed DC92A37B-4AC5-4117-AABB-019FFC0FD06A! -Trying to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD -+ echo TEST /tmp/dxecleaner022437097/bios.bin -TEST /tmp/dxecleaner022437097/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner022437097/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 12:59:33 Listening on 192.168.0.1:8080 at 2018-11-16 12:59:33.076815489 -0800 PST m=+0.001168367 -2018/11/16 13:02:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:02:33.077223563 -0800 PST m=+180.001576365 -2018/11/16 13:02:33 accept tcp 192.168.0.1:8080: i/o timeout - Failed 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD! -Trying to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A -+ echo TEST /tmp/dxecleaner295716660/bios.bin -TEST /tmp/dxecleaner295716660/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner295716660/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:02:47 Listening on 192.168.0.1:8080 at 2018-11-16 13:02:47.20254074 -0800 PST m=+0.001512705 -2018/11/16 13:05:47 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:05:47.203021505 -0800 PST m=+180.001993305 -2018/11/16 13:05:47 accept tcp 192.168.0.1:8080: i/o timeout - Failed 69E6DD6D-F09E-485F-9627-EB70E9CFC82A! -Trying to remove 52C877FD-C27C-4779-B750-7880B28B4306 -+ echo TEST /tmp/dxecleaner060432643/bios.bin -TEST /tmp/dxecleaner060432643/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner060432643/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:06:01 Listening on 192.168.0.1:8080 at 2018-11-16 13:06:01.291764584 -0800 PST m=+0.001233711 -2018/11/16 13:09:01 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:09:01.292276776 -0800 PST m=+180.001745797 -2018/11/16 13:09:01 accept tcp 192.168.0.1:8080: i/o timeout - Failed 52C877FD-C27C-4779-B750-7880B28B4306! -Trying to remove 45055A79-B385-4705-A3AC-11CE99A1CB47 -+ echo TEST /tmp/dxecleaner272989318/bios.bin -TEST /tmp/dxecleaner272989318/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner272989318/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:09:15 Listening on 192.168.0.1:8080 at 2018-11-16 13:09:15.784162843 -0800 PST m=+0.001140410 -2018/11/16 13:12:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:12:15.78465432 -0800 PST m=+180.001631754 -2018/11/16 13:12:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed 45055A79-B385-4705-A3AC-11CE99A1CB47! -Trying to remove 3137130C-D0A7-467E-9E8F-513816F159D8 -+ echo TEST /tmp/dxecleaner817000493/bios.bin -TEST /tmp/dxecleaner817000493/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner817000493/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:12:30 Listening on 192.168.0.1:8080 at 2018-11-16 13:12:30.757794968 -0800 PST m=+0.001095615 -2018/11/16 13:15:30 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:15:30.758269445 -0800 PST m=+180.001569898 -2018/11/16 13:15:30 accept tcp 192.168.0.1:8080: i/o timeout - Failed 3137130C-D0A7-467E-9E8F-513816F159D8! -Trying to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -+ echo TEST /tmp/dxecleaner264582568/bios.bin -TEST /tmp/dxecleaner264582568/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner264582568/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:15:45 Listening on 192.168.0.1:8080 at 2018-11-16 13:15:45.947343695 -0800 PST m=+0.001203632 -2018/11/16 13:18:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:18:45.947868132 -0800 PST m=+180.001727823 -2018/11/16 13:18:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52! -Trying to remove 4FA7E1F2-CE8B-4D38-A3F8-342DC4515446 -+ echo TEST /tmp/dxecleaner574907111/bios.bin -TEST /tmp/dxecleaner574907111/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner574907111/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:19:00 Listening on 192.168.0.1:8080 at 2018-11-16 13:19:00.145962128 -0800 PST m=+0.000618703 -2018/11/16 13:22:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:22:00.146382206 -0800 PST m=+180.001038771 -2018/11/16 13:22:00 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4FA7E1F2-CE8B-4D38-A3F8-342DC4515446! -Trying to remove DE141A05-FA40-432D-9631-5E3E990F44D5 -+ echo TEST /tmp/dxecleaner789488922/bios.bin -TEST /tmp/dxecleaner789488922/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner789488922/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:22:14 Listening on 192.168.0.1:8080 at 2018-11-16 13:22:14.073720214 -0800 PST m=+0.001061073 -2018/11/16 13:25:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:25:14.074195441 -0800 PST m=+180.001536204 -2018/11/16 13:25:14 accept tcp 192.168.0.1:8080: i/o timeout - Failed DE141A05-FA40-432D-9631-5E3E990F44D5! -Trying to remove 9100696B-368F-4F9A-984A-D606E578CCC1 -+ echo TEST /tmp/dxecleaner716708273/bios.bin -TEST /tmp/dxecleaner716708273/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner716708273/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:25:28 Listening on 192.168.0.1:8080 at 2018-11-16 13:25:28.029892037 -0800 PST m=+0.001147468 -2018/11/16 13:28:28 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:28:28.030381181 -0800 PST m=+180.001636525 -2018/11/16 13:28:28 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9100696B-368F-4F9A-984A-D606E578CCC1! -Trying to remove 1DDBFD6A-3423-462F-9150-A7FFA66FF0CA -+ echo TEST /tmp/dxecleaner354482524/bios.bin -TEST /tmp/dxecleaner354482524/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner354482524/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:28:41 Listening on 192.168.0.1:8080 at 2018-11-16 13:28:41.979926998 -0800 PST m=+0.001190457 -2018/11/16 13:31:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:31:41.980420967 -0800 PST m=+180.001684233 -2018/11/16 13:31:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1DDBFD6A-3423-462F-9150-A7FFA66FF0CA! -Trying to remove 6EEDE20E-8F32-4FE2-BEB7-7A00F3CCDBC3 -+ echo TEST /tmp/dxecleaner804074763/bios.bin -TEST /tmp/dxecleaner804074763/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner804074763/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:31:56 Listening on 192.168.0.1:8080 at 2018-11-16 13:31:56.630781961 -0800 PST m=+0.000998916 -2018/11/16 13:34:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:34:56.63120141 -0800 PST m=+180.001418337 -2018/11/16 13:34:56 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6EEDE20E-8F32-4FE2-BEB7-7A00F3CCDBC3! -Trying to remove 8B7E5420-1B71-442A-9916-C13A4FE02482 -+ echo TEST /tmp/dxecleaner929073902/bios.bin -TEST /tmp/dxecleaner929073902/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner929073902/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:35:10 Listening on 192.168.0.1:8080 at 2018-11-16 13:35:10.681290786 -0800 PST m=+0.001044389 -2018/11/16 13:38:10 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:38:10.681824736 -0800 PST m=+180.001578232 -2018/11/16 13:38:10 accept tcp 192.168.0.1:8080: i/o timeout - Failed 8B7E5420-1B71-442A-9916-C13A4FE02482! -Trying to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -+ echo TEST /tmp/dxecleaner351196533/bios.bin -TEST /tmp/dxecleaner351196533/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner351196533/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:38:24 Listening on 192.168.0.1:8080 at 2018-11-16 13:38:24.938909381 -0800 PST m=+0.001300292 -2018/11/16 13:41:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:41:24.939440535 -0800 PST m=+180.001831319 -2018/11/16 13:41:24 accept tcp 192.168.0.1:8080: i/o timeout - Failed 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6! -Trying to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -+ echo TEST /tmp/dxecleaner309239376/bios.bin -TEST /tmp/dxecleaner309239376/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner309239376/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:41:38 Listening on 192.168.0.1:8080 at 2018-11-16 13:41:38.836782527 -0800 PST m=+0.001150814 -2018/11/16 13:44:38 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:44:38.837278109 -0800 PST m=+180.001646242 -2018/11/16 13:44:38 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9! -Trying to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -+ echo TEST /tmp/dxecleaner575217519/bios.bin -TEST /tmp/dxecleaner575217519/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner575217519/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:44:52 Listening on 192.168.0.1:8080 at 2018-11-16 13:44:52.659844689 -0800 PST m=+0.001594356 -2018/11/16 13:47:52 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:47:52.660288189 -0800 PST m=+180.002037699 -2018/11/16 13:47:52 accept tcp 192.168.0.1:8080: i/o timeout - Failed B11216C5-44E4-472C-ACB7-128A5A3AD7A1! -Trying to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -+ echo TEST /tmp/dxecleaner780322306/bios.bin -TEST /tmp/dxecleaner780322306/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner780322306/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:48:06 Listening on 192.168.0.1:8080 at 2018-11-16 13:48:06.870218351 -0800 PST m=+0.001047882 -2018/11/16 13:51:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:51:06.870664287 -0800 PST m=+180.001493741 -2018/11/16 13:51:06 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78! -Trying to remove 68D89864-C0A8-490D-BE18-C83D67240928 -+ echo TEST /tmp/dxecleaner170511737/bios.bin -TEST /tmp/dxecleaner170511737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner170511737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:51:20 Listening on 192.168.0.1:8080 at 2018-11-16 13:51:20.492790988 -0800 PST m=+0.001242370 -2018/11/16 13:54:20 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:54:20.49329424 -0800 PST m=+180.001745441 -2018/11/16 13:54:20 accept tcp 192.168.0.1:8080: i/o timeout - Failed 68D89864-C0A8-490D-BE18-C83D67240928! -Trying to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A -+ echo TEST /tmp/dxecleaner034079876/bios.bin -TEST /tmp/dxecleaner034079876/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner034079876/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:54:34 Listening on 192.168.0.1:8080 at 2018-11-16 13:54:34.454188476 -0800 PST m=+0.001505144 -2018/11/16 13:57:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 13:57:34.454664819 -0800 PST m=+180.001981380 -2018/11/16 13:57:34 accept tcp 192.168.0.1:8080: i/o timeout - Failed CF6BCADD-D4C4-4095-B2BC-417D7247890A! -Trying to remove 43AC4333-472C-4B91-8C5C-52A8B4374256 -+ echo TEST /tmp/dxecleaner560458771/bios.bin -TEST /tmp/dxecleaner560458771/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner560458771/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 13:57:48 Listening on 192.168.0.1:8080 at 2018-11-16 13:57:48.741730642 -0800 PST m=+0.001224209 -2018/11/16 14:00:48 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:00:48.742215901 -0800 PST m=+180.001709268 -2018/11/16 14:00:48 accept tcp 192.168.0.1:8080: i/o timeout - Failed 43AC4333-472C-4B91-8C5C-52A8B4374256! -Trying to remove 1AA6D900-89D1-4C21-9C50-EDC7390A67C3 -+ echo TEST /tmp/dxecleaner896775254/bios.bin -TEST /tmp/dxecleaner896775254/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner896775254/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:01:02 Listening on 192.168.0.1:8080 at 2018-11-16 14:01:02.733223509 -0800 PST m=+0.001778303 -2018/11/16 14:04:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:04:02.733726709 -0800 PST m=+180.002281372 -2018/11/16 14:04:02 accept tcp 192.168.0.1:8080: i/o timeout - Failed 1AA6D900-89D1-4C21-9C50-EDC7390A67C3! -Trying to remove E1E1685A-7ABC-450F-882A-4E692CC6AF7E -+ echo TEST /tmp/dxecleaner218779581/bios.bin -TEST /tmp/dxecleaner218779581/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner218779581/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:04:16 Listening on 192.168.0.1:8080 at 2018-11-16 14:04:16.861760418 -0800 PST m=+0.001808135 -2018/11/16 14:07:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:07:16.862252578 -0800 PST m=+180.002300171 -2018/11/16 14:07:16 accept tcp 192.168.0.1:8080: i/o timeout - Failed E1E1685A-7ABC-450F-882A-4E692CC6AF7E! -Trying to remove 5F82BC22-85E1-489D-93A1-42BBD664B434 -+ echo TEST /tmp/dxecleaner782908920/bios.bin -TEST /tmp/dxecleaner782908920/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner782908920/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:07:31 Listening on 192.168.0.1:8080 at 2018-11-16 14:07:31.049563921 -0800 PST m=+0.001129006 -2018/11/16 14:10:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:10:31.050082494 -0800 PST m=+180.001647414 -2018/11/16 14:10:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5F82BC22-85E1-489D-93A1-42BBD664B434! -Trying to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -+ echo TEST /tmp/dxecleaner470983415/bios.bin -TEST /tmp/dxecleaner470983415/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner470983415/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:10:45 Listening on 192.168.0.1:8080 at 2018-11-16 14:10:45.090043592 -0800 PST m=+0.001834204 -2018/11/16 14:13:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:13:45.090555056 -0800 PST m=+180.002345532 -2018/11/16 14:13:45 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57! -Trying to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C -+ echo TEST /tmp/dxecleaner841751530/bios.bin -TEST /tmp/dxecleaner841751530/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner841751530/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:13:58 Listening on 192.168.0.1:8080 at 2018-11-16 14:13:58.721957042 -0800 PST m=+0.000659213 -2018/11/16 14:16:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:16:58.722274274 -0800 PST m=+180.000976349 -2018/11/16 14:16:58 accept tcp 192.168.0.1:8080: i/o timeout - Failed 7FD082A9-3D6B-44E3-9C31-74D6B80F965C! -Trying to remove 0CDA5D94-951A-4C61-8DD5-E5BF34BA69EC -+ echo TEST /tmp/dxecleaner197675073/bios.bin -TEST /tmp/dxecleaner197675073/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner197675073/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:17:14 Listening on 192.168.0.1:8080 at 2018-11-16 14:17:14.041870974 -0800 PST m=+0.001242316 -2018/11/16 14:20:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:20:14.042370153 -0800 PST m=+180.001741385 -2018/11/16 14:20:14 accept tcp 192.168.0.1:8080: i/o timeout - Failed 0CDA5D94-951A-4C61-8DD5-E5BF34BA69EC! -Trying to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC -+ echo TEST /tmp/dxecleaner339244204/bios.bin -TEST /tmp/dxecleaner339244204/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner339244204/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:20:27 Listening on 192.168.0.1:8080 at 2018-11-16 14:20:27.714164968 -0800 PST m=+0.001142909 -2018/11/16 14:23:27 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:23:27.714659738 -0800 PST m=+180.001637565 -2018/11/16 14:23:27 accept tcp 192.168.0.1:8080: i/o timeout - Failed D6207835-B7E3-4FF8-B276-CDE3E52206BC! -Trying to remove FD023012-19F4-4235-ADCF-D924DBE246FE -+ echo TEST /tmp/dxecleaner021359643/bios.bin -TEST /tmp/dxecleaner021359643/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner021359643/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:23:41 Listening on 192.168.0.1:8080 at 2018-11-16 14:23:41.475695076 -0800 PST m=+0.001833503 -2018/11/16 14:26:41 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:26:41.47617895 -0800 PST m=+180.002317143 -2018/11/16 14:26:41 accept tcp 192.168.0.1:8080: i/o timeout - Failed FD023012-19F4-4235-ADCF-D924DBE246FE! -Trying to remove 3915886B-D833-4C23-B3ED-1453CCE7C5F2 -+ echo TEST /tmp/dxecleaner934392510/bios.bin -TEST /tmp/dxecleaner934392510/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner934392510/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:26:55 Listening on 192.168.0.1:8080 at 2018-11-16 14:26:55.330282955 -0800 PST m=+0.001100601 -2018/11/16 14:29:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:29:55.330807799 -0800 PST m=+180.001625354 -2018/11/16 14:29:55 accept tcp 192.168.0.1:8080: i/o timeout - Failed 3915886B-D833-4C23-B3ED-1453CCE7C5F2! -Trying to remove 9AE51047-E0B9-4A50-9E72-84E359D20189 -+ echo TEST /tmp/dxecleaner379580677/bios.bin -TEST /tmp/dxecleaner379580677/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner379580677/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:30:09 Listening on 192.168.0.1:8080 at 2018-11-16 14:30:09.253990305 -0800 PST m=+0.000607373 -2018/11/16 14:33:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:33:09.25433818 -0800 PST m=+180.000955305 -2018/11/16 14:33:09 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9AE51047-E0B9-4A50-9E72-84E359D20189! -Trying to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86 -+ echo TEST /tmp/dxecleaner325808288/bios.bin -TEST /tmp/dxecleaner325808288/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner325808288/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:33:23 Listening on 192.168.0.1:8080 at 2018-11-16 14:33:23.160435462 -0800 PST m=+0.001198076 -2018/11/16 14:36:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:36:23.160929371 -0800 PST m=+180.001691794 -2018/11/16 14:36:23 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6C160B26-E04C-4098-A6AC-C8C7B6471A86! -Trying to remove 63AAAFFA-53BD-4ED1-B5A3-A8A5619C563F -+ echo TEST /tmp/dxecleaner123956095/bios.bin -TEST /tmp/dxecleaner123956095/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner123956095/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:36:36 Listening on 192.168.0.1:8080 at 2018-11-16 14:36:36.874323719 -0800 PST m=+0.001216918 -2018/11/16 14:39:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:39:36.874820797 -0800 PST m=+180.001713822 -2018/11/16 14:39:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 63AAAFFA-53BD-4ED1-B5A3-A8A5619C563F! -Trying to remove 9E8DD95D-868B-41A4-966C-107338C291BB -+ echo TEST /tmp/dxecleaner099001554/bios.bin -TEST /tmp/dxecleaner099001554/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner099001554/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:39:50 Listening on 192.168.0.1:8080 at 2018-11-16 14:39:50.757670662 -0800 PST m=+0.001321751 -2018/11/16 14:42:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:42:50.758191008 -0800 PST m=+180.001841954 -2018/11/16 14:42:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed 9E8DD95D-868B-41A4-966C-107338C291BB! -Trying to remove 6ADFFA83-55AE-4C9F-94A4-800C469BDABC -+ echo TEST /tmp/dxecleaner478897673/bios.bin -TEST /tmp/dxecleaner478897673/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner478897673/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:43:04 Listening on 192.168.0.1:8080 at 2018-11-16 14:43:04.825349858 -0800 PST m=+0.001237505 -2018/11/16 14:46:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:46:04.825878526 -0800 PST m=+180.001765980 -2018/11/16 14:46:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed 6ADFFA83-55AE-4C9F-94A4-800C469BDABC! -Trying to remove 29E0564F-B702-4352-A3A1-15FABD4A4E4A -+ echo TEST /tmp/dxecleaner031386068/bios.bin -TEST /tmp/dxecleaner031386068/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner031386068/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:46:19 Listening on 192.168.0.1:8080 at 2018-11-16 14:46:19.651286599 -0800 PST m=+0.001347047 -2018/11/16 14:49:19 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:49:19.651729801 -0800 PST m=+180.001790161 -2018/11/16 14:49:19 accept tcp 192.168.0.1:8080: i/o timeout - Failed 29E0564F-B702-4352-A3A1-15FABD4A4E4A! -Trying to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3 -+ echo TEST /tmp/dxecleaner595554595/bios.bin -TEST /tmp/dxecleaner595554595/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner595554595/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:49:33 Listening on 192.168.0.1:8080 at 2018-11-16 14:49:33.746898305 -0800 PST m=+0.001191704 -2018/11/16 14:52:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:52:33.747393216 -0800 PST m=+180.001686408 -2018/11/16 14:52:33 accept tcp 192.168.0.1:8080: i/o timeout - Failed D93DE2E3-3727-4D5B-B49F-777C93A971D3! -Trying to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2 -+ echo TEST /tmp/dxecleaner628058662/bios.bin -TEST /tmp/dxecleaner628058662/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner628058662/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:52:47 Listening on 192.168.0.1:8080 at 2018-11-16 14:52:47.592592323 -0800 PST m=+0.001166750 -2018/11/16 14:55:47 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:55:47.593083585 -0800 PST m=+180.001657901 -2018/11/16 14:55:47 accept tcp 192.168.0.1:8080: i/o timeout - Failed 72FE44FF-44FC-4653-918A-0D5E76C416D2! -Trying to remove 2D9BD72A-B238-4BFF-9BB9-B51E0D4D553C -+ echo TEST /tmp/dxecleaner843586893/bios.bin -TEST /tmp/dxecleaner843586893/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner843586893/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:56:01 Listening on 192.168.0.1:8080 at 2018-11-16 14:56:01.548509076 -0800 PST m=+0.001109930 -2018/11/16 14:59:01 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 14:59:01.54893941 -0800 PST m=+180.001540070 -2018/11/16 14:59:01 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2D9BD72A-B238-4BFF-9BB9-B51E0D4D553C! -Trying to remove 71298B1B-26AA-44D8-87CD-91A087C3481A -+ echo TEST /tmp/dxecleaner857559112/bios.bin -TEST /tmp/dxecleaner857559112/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner857559112/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 14:59:15 Listening on 192.168.0.1:8080 at 2018-11-16 14:59:15.720041357 -0800 PST m=+0.001208388 -2018/11/16 15:02:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:02:15.720522747 -0800 PST m=+180.001689517 -2018/11/16 15:02:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed 71298B1B-26AA-44D8-87CD-91A087C3481A! -Trying to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -+ echo TEST /tmp/dxecleaner882981639/bios.bin -TEST /tmp/dxecleaner882981639/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner882981639/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:02:29 Listening on 192.168.0.1:8080 at 2018-11-16 15:02:29.572530051 -0800 PST m=+0.001331277 -2018/11/16 15:05:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:05:29.573031841 -0800 PST m=+180.001832917 -2018/11/16 15:05:29 accept tcp 192.168.0.1:8080: i/o timeout - Failed F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4! -Trying to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -+ echo TEST /tmp/dxecleaner922902202/bios.bin -TEST /tmp/dxecleaner922902202/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner922902202/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:05:43 Listening on 192.168.0.1:8080 at 2018-11-16 15:05:43.250817984 -0800 PST m=+0.001216861 -2018/11/16 15:08:43 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:08:43.251315954 -0800 PST m=+180.001714704 -2018/11/16 15:08:43 accept tcp 192.168.0.1:8080: i/o timeout - Failed 018A5C7A-12EB-429D-9DEF-6FCC410B04E8! -Trying to remove F7A1F48E-0F6A-4F12-A74D-ED6F5B6B00F2 -+ echo TEST /tmp/dxecleaner172560593/bios.bin -TEST /tmp/dxecleaner172560593/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner172560593/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:08:57 Listening on 192.168.0.1:8080 at 2018-11-16 15:08:57.388033527 -0800 PST m=+0.001336954 -2018/11/16 15:11:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:11:57.388541008 -0800 PST m=+180.001844287 -2018/11/16 15:11:57 accept tcp 192.168.0.1:8080: i/o timeout - Failed F7A1F48E-0F6A-4F12-A74D-ED6F5B6B00F2! -Trying to remove 783AA974-DFB0-487B-906F-120FB9486E88 -+ echo TEST /tmp/dxecleaner576114172/bios.bin -TEST /tmp/dxecleaner576114172/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner576114172/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:12:11 Listening on 192.168.0.1:8080 at 2018-11-16 15:12:11.261753138 -0800 PST m=+0.001168778 -2018/11/16 15:15:11 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:15:11.262281724 -0800 PST m=+180.001697185 -2018/11/16 15:15:11 accept tcp 192.168.0.1:8080: i/o timeout - Failed 783AA974-DFB0-487B-906F-120FB9486E88! -Trying to remove 68D076CD-D8F3-409B-987F-1012CDB88242 -+ echo TEST /tmp/dxecleaner467538731/bios.bin -TEST /tmp/dxecleaner467538731/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner467538731/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:15:25 Listening on 192.168.0.1:8080 at 2018-11-16 15:15:25.13263091 -0800 PST m=+0.001815460 -2018/11/16 15:18:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:18:25.133173 -0800 PST m=+180.002357409 -2018/11/16 15:18:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed 68D076CD-D8F3-409B-987F-1012CDB88242! -Trying to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 -+ echo TEST /tmp/dxecleaner025955982/bios.bin -TEST /tmp/dxecleaner025955982/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner025955982/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:18:38 Listening on 192.168.0.1:8080 at 2018-11-16 15:18:38.254250998 -0800 PST m=+0.001150129 -2018/11/16 15:21:38 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:21:38.25472826 -0800 PST m=+180.001627202 -2018/11/16 15:21:38 accept tcp 192.168.0.1:8080: i/o timeout - Failed 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768! -Trying to remove 5568E42E-DD33-4F6C-867F-7E73451104FE -+ echo TEST /tmp/dxecleaner318812309/bios.bin -TEST /tmp/dxecleaner318812309/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner318812309/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:21:52 Listening on 192.168.0.1:8080 at 2018-11-16 15:21:52.047048624 -0800 PST m=+0.001156065 -2018/11/16 15:24:52 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:24:52.047527804 -0800 PST m=+180.001635159 -2018/11/16 15:24:52 accept tcp 192.168.0.1:8080: i/o timeout - Failed 5568E42E-DD33-4F6C-867F-7E73451104FE! -Trying to remove 130B8BA5-E63E-44A0-85DB-4D4E571C526A -+ echo TEST /tmp/dxecleaner467351792/bios.bin -TEST /tmp/dxecleaner467351792/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner467351792/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:25:05 Listening on 192.168.0.1:8080 at 2018-11-16 15:25:05.974014412 -0800 PST m=+0.001201230 -2018/11/16 15:28:05 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:28:05.974496029 -0800 PST m=+180.001682650 -2018/11/16 15:28:05 accept tcp 192.168.0.1:8080: i/o timeout - Failed 130B8BA5-E63E-44A0-85DB-4D4E571C526A! -Trying to remove CD7C839D-0521-4B26-9476-9FF2CB70649A -+ echo TEST /tmp/dxecleaner767963535/bios.bin -TEST /tmp/dxecleaner767963535/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner767963535/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:28:20 Listening on 192.168.0.1:8080 at 2018-11-16 15:28:20.138820405 -0800 PST m=+0.000545607 -2018/11/16 15:31:20 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:31:20.139176858 -0800 PST m=+180.000902142 -2018/11/16 15:31:20 accept tcp 192.168.0.1:8080: i/o timeout - Failed CD7C839D-0521-4B26-9476-9FF2CB70649A! -Trying to remove B47417C7-E21F-4AC9-B0A2-7A158223A137 -+ echo TEST /tmp/dxecleaner415061410/bios.bin -TEST /tmp/dxecleaner415061410/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner415061410/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:31:35 Listening on 192.168.0.1:8080 at 2018-11-16 15:31:35.230322264 -0800 PST m=+0.001644089 -2018/11/16 15:34:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:34:35.230661359 -0800 PST m=+180.001983070 -2018/11/16 15:34:35 accept tcp 192.168.0.1:8080: i/o timeout - Failed B47417C7-E21F-4AC9-B0A2-7A158223A137! -Trying to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152 -+ echo TEST /tmp/dxecleaner466619033/bios.bin -TEST /tmp/dxecleaner466619033/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner466619033/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:34:49 Listening on 192.168.0.1:8080 at 2018-11-16 15:34:49.345268564 -0800 PST m=+0.001744819 -2018/11/16 15:37:49 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:37:49.345757154 -0800 PST m=+180.002233250 -2018/11/16 15:37:49 accept tcp 192.168.0.1:8080: i/o timeout - Failed E6DC9900-CCF6-452B-85FA-C7F1E52F0152! -Trying to remove E83C2C69-31E2-4557-A96F-0ADAB9EB7353 -+ echo TEST /tmp/dxecleaner843001124/bios.bin -TEST /tmp/dxecleaner843001124/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner843001124/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:38:03 Listening on 192.168.0.1:8080 at 2018-11-16 15:38:03.294810273 -0800 PST m=+0.001834947 -2018/11/16 15:41:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:41:03.295320825 -0800 PST m=+180.002345408 -2018/11/16 15:41:03 accept tcp 192.168.0.1:8080: i/o timeout - Failed E83C2C69-31E2-4557-A96F-0ADAB9EB7353! -Trying to remove E4C9411C-1268-404C-9E90-2573EF04F43F -+ echo TEST /tmp/dxecleaner413956659/bios.bin -TEST /tmp/dxecleaner413956659/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner413956659/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:41:17 Listening on 192.168.0.1:8080 at 2018-11-16 15:41:17.162663352 -0800 PST m=+0.002118938 -2018/11/16 15:44:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:44:17.163220352 -0800 PST m=+180.002675811 -2018/11/16 15:44:17 accept tcp 192.168.0.1:8080: i/o timeout - Failed E4C9411C-1268-404C-9E90-2573EF04F43F! -Trying to remove 56BF094C-69F6-49DD-8C1C-1ECEFF71C9E5 -+ echo TEST /tmp/dxecleaner826963446/bios.bin -TEST /tmp/dxecleaner826963446/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner826963446/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:44:31 Listening on 192.168.0.1:8080 at 2018-11-16 15:44:31.290037378 -0800 PST m=+0.000995418 -2018/11/16 15:47:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:47:31.290446649 -0800 PST m=+180.001404572 -2018/11/16 15:47:31 accept tcp 192.168.0.1:8080: i/o timeout - Failed 56BF094C-69F6-49DD-8C1C-1ECEFF71C9E5! -Trying to remove D4395796-6F4C-4C6B-B9D1-92DAA7199A84 -+ echo TEST /tmp/dxecleaner519728349/bios.bin -TEST /tmp/dxecleaner519728349/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner519728349/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:47:46 Listening on 192.168.0.1:8080 at 2018-11-16 15:47:46.112707462 -0800 PST m=+0.000939573 -2018/11/16 15:50:46 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:50:46.113097677 -0800 PST m=+180.001329733 -2018/11/16 15:50:46 accept tcp 192.168.0.1:8080: i/o timeout - Failed D4395796-6F4C-4C6B-B9D1-92DAA7199A84! -Trying to remove 95ECB758-627E-4A2E-B7B8-DC863EFE3425 -+ echo TEST /tmp/dxecleaner775829144/bios.bin -TEST /tmp/dxecleaner775829144/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner775829144/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:51:00 Listening on 192.168.0.1:8080 at 2018-11-16 15:51:00.98405075 -0800 PST m=+0.000617201 -2018/11/16 15:54:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:54:00.984369881 -0800 PST m=+180.000936367 -2018/11/16 15:54:00 accept tcp 192.168.0.1:8080: i/o timeout - Failed 95ECB758-627E-4A2E-B7B8-DC863EFE3425! -Trying to remove FF917E22-A228-448D-BDAA-68EFCCDDA5D3 -+ echo TEST /tmp/dxecleaner397097239/bios.bin -TEST /tmp/dxecleaner397097239/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner397097239/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:54:15 Listening on 192.168.0.1:8080 at 2018-11-16 15:54:15.029445552 -0800 PST m=+0.002172979 -2018/11/16 15:57:15 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 15:57:15.029947169 -0800 PST m=+180.002674427 -2018/11/16 15:57:15 accept tcp 192.168.0.1:8080: i/o timeout - Failed FF917E22-A228-448D-BDAA-68EFCCDDA5D3! -Trying to remove B13EDD38-684C-41ED-A305-D7B7E32497DF -+ echo TEST /tmp/dxecleaner382699402/bios.bin -TEST /tmp/dxecleaner382699402/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner382699402/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 15:57:29 Listening on 192.168.0.1:8080 at 2018-11-16 15:57:29.033070481 -0800 PST m=+0.001161932 -2018/11/16 16:00:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:00:29.033577069 -0800 PST m=+180.001668286 -2018/11/16 16:00:29 accept tcp 192.168.0.1:8080: i/o timeout - Failed B13EDD38-684C-41ED-A305-D7B7E32497DF! -Trying to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725 -+ echo TEST /tmp/dxecleaner366544737/bios.bin -TEST /tmp/dxecleaner366544737/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner366544737/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:00:43 Listening on 192.168.0.1:8080 at 2018-11-16 16:00:43.070733812 -0800 PST m=+0.002432205 -2018/11/16 16:03:43 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:03:43.071176295 -0800 PST m=+180.002874558 -2018/11/16 16:03:43 accept tcp 192.168.0.1:8080: i/o timeout - Failed CEF68C66-06AB-4FB3-A3ED-5FFA885B5725! -Trying to remove DED7956D-7E20-4F20-91A1-190439B04D5B -+ echo TEST /tmp/dxecleaner147526476/bios.bin -TEST /tmp/dxecleaner147526476/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner147526476/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:03:56 Listening on 192.168.0.1:8080 at 2018-11-16 16:03:56.748971639 -0800 PST m=+0.001183163 -2018/11/16 16:06:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:06:56.749405774 -0800 PST m=+180.001617078 -2018/11/16 16:06:56 accept tcp 192.168.0.1:8080: i/o timeout - Failed DED7956D-7E20-4F20-91A1-190439B04D5B! -Trying to remove 50F6096D-7C98-4C78-9A1D-C5A1833B6A88 -+ echo TEST /tmp/dxecleaner809254459/bios.bin -TEST /tmp/dxecleaner809254459/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner809254459/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:07:11 Listening on 192.168.0.1:8080 at 2018-11-16 16:07:11.739761205 -0800 PST m=+0.000954621 -2018/11/16 16:10:11 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:10:11.740186815 -0800 PST m=+180.001380118 -2018/11/16 16:10:11 accept tcp 192.168.0.1:8080: i/o timeout - Failed 50F6096D-7C98-4C78-9A1D-C5A1833B6A88! -Trying to remove A29A63E3-E4E7-495F-8A6A-07738300CBB3 -+ echo TEST /tmp/dxecleaner289161310/bios.bin -TEST /tmp/dxecleaner289161310/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner289161310/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:10:25 Listening on 192.168.0.1:8080 at 2018-11-16 16:10:25.921327658 -0800 PST m=+0.001805027 -2018/11/16 16:13:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:13:25.921779149 -0800 PST m=+180.002256233 -2018/11/16 16:13:25 accept tcp 192.168.0.1:8080: i/o timeout - Failed A29A63E3-E4E7-495F-8A6A-07738300CBB3! -Trying to remove 2688B232-9C02-4C12-BE1F-857C0FF2AAE3 -+ echo TEST /tmp/dxecleaner941940261/bios.bin -TEST /tmp/dxecleaner941940261/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner941940261/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:13:40 Listening on 192.168.0.1:8080 at 2018-11-16 16:13:40.152093034 -0800 PST m=+0.001172144 -2018/11/16 16:16:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:16:40.152555871 -0800 PST m=+180.001634799 -2018/11/16 16:16:40 accept tcp 192.168.0.1:8080: i/o timeout - Failed 2688B232-9C02-4C12-BE1F-857C0FF2AAE3! -Trying to remove 858EBE6F-360F-415B-B7DC-463AAEB03412 -+ echo TEST /tmp/dxecleaner394507072/bios.bin -TEST /tmp/dxecleaner394507072/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner394507072/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:16:54 Listening on 192.168.0.1:8080 at 2018-11-16 16:16:54.958889249 -0800 PST m=+0.001635211 -2018/11/16 16:19:54 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:19:54.959323156 -0800 PST m=+180.002069053 -2018/11/16 16:19:54 accept tcp 192.168.0.1:8080: i/o timeout - Failed 858EBE6F-360F-415B-B7DC-463AAEB03412! -Trying to remove 0718AD81-F26A-4850-A6EC-F268E309D707 -+ echo TEST /tmp/dxecleaner592605599/bios.bin -TEST /tmp/dxecleaner592605599/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner592605599/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:20:08 Listening on 192.168.0.1:8080 at 2018-11-16 16:20:08.840097986 -0800 PST m=+0.001198788 -2018/11/16 16:23:08 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:23:08.840565045 -0800 PST m=+180.001665664 -2018/11/16 16:23:08 accept tcp 192.168.0.1:8080: i/o timeout - Failed 0718AD81-F26A-4850-A6EC-F268E309D707! -Trying to remove 4C8BDF60-2085-4577-8A46-96CB180967BC -+ echo TEST /tmp/dxecleaner098111090/bios.bin -TEST /tmp/dxecleaner098111090/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner098111090/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:23:22 Listening on 192.168.0.1:8080 at 2018-11-16 16:23:22.416587012 -0800 PST m=+0.001723243 -2018/11/16 16:26:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:26:22.417039671 -0800 PST m=+180.002175709 -2018/11/16 16:26:22 accept tcp 192.168.0.1:8080: i/o timeout - Failed 4C8BDF60-2085-4577-8A46-96CB180967BC! -Trying to remove 077A3100-1667-45FA-B98C-37651B5073EE -+ echo TEST /tmp/dxecleaner668991273/bios.bin -TEST /tmp/dxecleaner668991273/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner668991273/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:26:36 Listening on 192.168.0.1:8080 at 2018-11-16 16:26:36.365473028 -0800 PST m=+0.001621418 -2018/11/16 16:29:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:29:36.365946393 -0800 PST m=+180.002094660 -2018/11/16 16:29:36 accept tcp 192.168.0.1:8080: i/o timeout - Failed 077A3100-1667-45FA-B98C-37651B5073EE! -Trying to remove 580DD900-385D-11D7-883A-00500473D4EB -+ echo TEST /tmp/dxecleaner045262452/bios.bin -TEST /tmp/dxecleaner045262452/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner045262452/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:29:50 Listening on 192.168.0.1:8080 at 2018-11-16 16:29:50.486281134 -0800 PST m=+0.001215063 -2018/11/16 16:32:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:32:50.48675707 -0800 PST m=+180.001690832 -2018/11/16 16:32:50 accept tcp 192.168.0.1:8080: i/o timeout - Failed 580DD900-385D-11D7-883A-00500473D4EB! -Trying to remove B7D19491-E55A-470D-8508-85A5DFA41974 -+ echo TEST /tmp/dxecleaner389047619/bios.bin -TEST /tmp/dxecleaner389047619/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner389047619/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:33:04 Listening on 192.168.0.1:8080 at 2018-11-16 16:33:04.575256175 -0800 PST m=+0.001104023 -2018/11/16 16:36:04 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:36:04.575728572 -0800 PST m=+180.001576259 -2018/11/16 16:36:04 accept tcp 192.168.0.1:8080: i/o timeout - Failed B7D19491-E55A-470D-8508-85A5DFA41974! -Trying to remove C8339973-A563-4561-B858-D8476F9DEFC4 -+ echo TEST /tmp/dxecleaner512898502/bios.bin -TEST /tmp/dxecleaner512898502/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner512898502/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:36:18 Listening on 192.168.0.1:8080 at 2018-11-16 16:36:18.622611435 -0800 PST m=+0.001005821 -2018/11/16 16:39:18 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-11-16 16:39:18.623070185 -0800 PST m=+180.001464541 -2018/11/16 16:39:18 accept tcp 192.168.0.1:8080: i/o timeout - Failed C8339973-A563-4561-B858-D8476F9DEFC4! -Trying to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -+ echo TEST /tmp/dxecleaner642717293/bios.bin -TEST /tmp/dxecleaner642717293/bios.bin -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/dxecleaner642717293/bios.bin -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently float - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo /bin/reset -+ ./uinit -r -2018/11/16 16:39:32 Listening on 192.168.0.1:8080 at 2018-11-16 16:39:32.797118674 -0800 PST m=+0.001177553 -^CSummary of removed DXEs: - Could not remove any DXEs -2018/11/16 16:41:23 unexpected exit status -1 -Makefile:4: recipe for target 'cleanme' failed -make: *** [cleanme] Error 1 - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit - -Script done on 2018-11-16 16:41:26-0800 diff --git a/mainboards/tyan7106/Makefile b/mainboards/tyan7106/Makefile deleted file mode 100644 index 333be048..00000000 --- a/mainboards/tyan7106/Makefile +++ /dev/null @@ -1,404 +0,0 @@ -GOPATH ?= $(HOME)/go - -default: build - -build: - echo fetch, uroot, flashkernel, or image.bin - -image.bin: flashkernel - cp linux/arch/x86/boot/bzImage flashkernel - $(GOPATH)/bin/utk tyan7106.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - remove AMITSE \ - replace_pe32 FullShell flashkernel \ - save image.bin - -flashkernel: uroot bzImage - cp linux/arch/x86/boot/bzImage flashkernel - -uroot: - u-root -files key.pub:key.pub -files key.pub:authorized_keys -files ssh_host_rsa_key:id_rsa github.com/u-root/u-root/cmds/core/* github.com/u-root/cpu/cmds/cpu - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bzImage: - cp config-4.14.111 linux/.config - (cd linux && make oldconfig && make -j32) - -fetch: - rm -rf linux - wget -O kernel.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.xz - xzcat kernel.xz | tar x - mv linux-5.15 linux - go get -u github.com/linuxboot/fiano/cmds/utk - wget ftp://ftp.tyan.com/bios/S7106GM2NR-L2_v204.zip - unzip -o S7106GM2NR-L2_v204.zip - cp 7106V204.ROM tyan7106.bin - touch key.pub - touch ssh_host_rsa_key - go get -u github.com/u-root/u-root - go get -u github.com/u-root/cpu/... - -# everything from here below was part of an experiment and can be ignored. -experiment: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - ForthUTK tyan7106.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - ForthUTK 98.splat fv ./DXECLEANER clean - -d4: - ForthUTK RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd $(GOPATH)/src/github.com/linuxboot/dut/uinit/&&go build) - cp $(GOPATH)/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/cmds/scp - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - ForthUTK remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd $(GOPATH)/src/github.com/linuxboot/dut/uinit/&&go build) - cp $(GOPATH)/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd github.com/u-root/u-root/xcmds/pox github.com/u-root/u-root/cmds/scp github.com/u-root/u-root/cmds/cpio - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - $(GOPATH)/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - $(GOPATH)/bin/utk tyan7106.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore diff --git a/mainboards/tyan7106/NOTES b/mainboards/tyan7106/NOTES deleted file mode 100644 index 2860853d..00000000 --- a/mainboards/tyan7106/NOTES +++ /dev/null @@ -1,8 +0,0 @@ -GPIO control functions in -/usr/libexec/itami-host-power-control-common.sh - -/bin/reset works but I can't get power button to do anything useful. - -if I remove CsmDxe, then I can't warm reboot from the kernel - -The power cycle bits are a mess, DXECLEANER now has a reliable one. diff --git a/mainboards/tyan7106/RUN3 b/mainboards/tyan7106/RUN3 deleted file mode 100644 index 1b828f99..00000000 --- a/mainboards/tyan7106/RUN3 +++ /dev/null @@ -1,287997 +0,0 @@ -Script started on 2018-12-13 16:43:02-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d -[?2004lfutk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean -2018/12/13 16:43:05 Found 414 things -2018/12/13 16:43:05 Try to remove D912C7BC-F098-4367-92BA-E911083C7B0E:EFI_FV_FILETYPE_DRIVER:Udp6Dxe (D912C7BC-F098-4367-92BA-E911083C7B0E) -2018/12/13 16:43:05 removed [0xc007096780] -2018/12/13 16:43:05 Try to remove B1DA0ADF-4F77-4070-A88E-BFFE1C60529A:EFI_FV_FILETYPE_DRIVER:AMITSE (B1DA0ADF-4F77-4070-A88E-BFFE1C60529A) -2018/12/13 16:43:05 removed [0xc00776e280] -2018/12/13 16:43:05 Try to remove 2E3AB8B6-AC9D-4D70-A675-54F52FB22D66:EFI_FV_FILETYPE_DRIVER:AtaPassThru (2E3AB8B6-AC9D-4D70-A675-54F52FB22D66) -2018/12/13 16:43:05 removed [0xc007096900] -2018/12/13 16:43:05 Try to remove 0A66E322-3740-4CCE-AD62-BD172CECCA35:EFI_FV_FILETYPE_DRIVER:ScsiDisk (0A66E322-3740-4CCE-AD62-BD172CECCA35) -2018/12/13 16:43:05 removed [0xc007096d00] -2018/12/13 16:43:05 Try to remove 1A7E4468-2F55-4A56-903C-01265EB7622B:EFI_FV_FILETYPE_DRIVER:TcpDxe (1A7E4468-2F55-4A56-903C-01265EB7622B) -2018/12/13 16:43:05 removed [0xc007096200] -2018/12/13 16:43:05 Try to remove B95E9FDA-26DE-48D2-8807-1F9107AC5E3A:EFI_FV_FILETYPE_DRIVER:UefiPxeBcDxe (B95E9FDA-26DE-48D2-8807-1F9107AC5E3A) -2018/12/13 16:43:05 removed [0xc007096280] -2018/12/13 16:43:05 Try to remove 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD:EFI_FV_FILETYPE_DRIVER:Dhcp4Dxe (94734718-0BBC-47FB-96A5-EE7A5AE6A2AD) -2018/12/13 16:43:05 removed [0xc007096500] -2018/12/13 16:43:05 Try to remove 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B:EFI_FV_FILETYPE_DRIVER:Udp4Dxe (6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B) -2018/12/13 16:43:05 removed [0xc007096680] -2018/12/13 16:43:05 Try to remove 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4:EFI_FV_FILETYPE_DRIVER:DiskIoDxe (6B38F7B4-AD98-40E9-9093-ACA2B5A253C4) -2018/12/13 16:43:05 removed [0xc006ec7c80] -2018/12/13 16:43:05 Try to remove 95E3669D-34BE-4775-A651-7EA41B69D89E:EFI_FV_FILETYPE_DRIVER:Dhcp6Dxe (95E3669D-34BE-4775-A651-7EA41B69D89E) -2018/12/13 16:43:05 removed [0xc007096800] -2018/12/13 16:43:05 Try to remove FE612B72-203C-47B1-8560-A66D946EB371:EFI_FV_FILETYPE_FREEFORM:AMITSESetupData (FE612B72-203C-47B1-8560-A66D946EB371) -2018/12/13 16:43:05 removed [0xc00776e300] -2018/12/13 16:43:15 Found 404 things -2018/12/13 16:43:27 script is ./DXECLEANER -2018/12/13 16:43:38 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/13 16:43:38 removed [0xc00dbdc700] -+ echo TEST /tmp/futk199366987/1 -TEST /tmp/futk199366987/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk199366987/1 -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/13 16:45:19 Listening on 192.168.0.1:8080 at 2018-12-13 16:45:19.569684894 -0800 PST m=+0.001875189 -^Cinterrupt -[414 [95E3669D-34BE-4775-A651-7EA41B69D89E:EFI_FV_FILETYPE_DRIVER:Dhcp6Dxe FE612B72-203C-47B1-8560-A66D946EB371:EFI_FV_FILETYPE_FREEFORM:AMITSESetupData D912C7BC-F098-4367-92BA-E911083C7B0E:EFI_FV_FILETYPE_DRIVER:Udp6Dxe B1DA0ADF-4F77-4070-A88E-BFFE1C60529A:EFI_FV_FILETYPE_DRIVER:AMITSE 2E3AB8B6-AC9D-4D70-A675-54F52FB22D66:EFI_FV_FILETYPE_DRIVER:AtaPassThru 0A66E322-3740-4CCE-AD62-BD172CECCA35:EFI_FV_FILETYPE_DRIVER:ScsiDisk 1A7E4468-2F55-4A56-903C-01265EB7622B:EFI_FV_FILETYPE_DRIVER:TcpDxe B95E9FDA-26DE-48D2-8807-1F9107AC5E3A:EFI_FV_FILETYPE_DRIVER:UefiPxeBcDxe 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD:EFI_FV_FILETYPE_DRIVER:Dhcp4Dxe 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B:EFI_FV_FILETYPE_DRIVER:Udp4Dxe 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4:EFI_FV_FILETYPE_DRIVER:DiskIoDxe] 404 [/tmp/futk199366987/0] signal: killed]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fgh -[?2004lbash: fgh: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ jobs -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ j./ (reverse-i-search)`': f': fgv': futk /tmp/x fv ./DXECLEANER clean ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l2018/12/14 15:08:34 Found 405 things -2018/12/14 15:08:34 script is ./DXECLEANER -2018/12/14 15:08:45 Try to remove 81A4F912-E72F-44ED-8931-16A9FE9650E0:EFI_FV_FILETYPE_DRIVER:KbcEmulDxe (81A4F912-E72F-44ED-8931-16A9FE9650E0) -2018/12/14 15:08:45 removed [0xc000023d00] -+ echo TEST /tmp/futk014708097/1 -TEST /tmp/futk014708097/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk014708097/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/14 15:09:51 Listening on 192.168.0.1:8080 at 2018-12-14 15:09:51.473336131 -0800 PST m=+0.004455892 -^Cinterrupt -[405 [/tmp/futk014708097/0] signal: killed]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/x fv ./DXECLEANER clean -[?2004l2018/12/14 15:10:16 Found 405 things -2018/12/14 15:10:16 script is ./DXECLEANER -2018/12/14 15:10:27 Try to remove 628A497D-2BF6-4264-8741-069DBD3399D6:EFI_FV_FILETYPE_DRIVER:ConSplitter (628A497D-2BF6-4264-8741-069DBD3399D6) -2018/12/14 15:10:27 removed [0xc00ffe3b80] -+ echo TEST /tmp/futk336682591/1 -TEST /tmp/futk336682591/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk336682591/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/14 15:10:59 Listening on 192.168.0.1:8080 at 2018-12-14 15:10:59.244891943 -0800 PST m=+0.005510849 -^Cinterrupt -[405 [/tmp/futk336682591/0] signal: killed]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[1279848.891575] usb 4-1.1: new high-speed USB device number 12 using ehci-pci -[1279849.000016] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1279849.000021] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1279849.000561] hub 4-1.1:1.0: USB hub found -[1279849.000728] hub 4-1.1:1.0: 7 ports detected -[1279849.287604] usb 4-1.1.4: new high-speed USB device number 13 using ehci-pci -[1279849.401482] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1279849.401488] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.401492] usb 4-1.1.4: Product: servo:810-10010-02 -[1279849.401495] usb 4-1.1.4: Manufacturer: Google Inc -[1279849.401497] usb 4-1.1.4: SerialNumber: 686203-00010 -[1279849.487559] usb 4-1.1.5: new high-speed USB device number 14 using ehci-pci -[1279849.601329] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1279849.601332] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.601334] usb 4-1.1.5: Product: servo:810-10010-02 -[1279849.601336] usb 4-1.1.5: Manufacturer: Google Inc -[1279849.601337] usb 4-1.1.5: SerialNumber: 686203-00010 -[1279857.370503] usb 4-1.1: USB disconnect, device number 12 -[1279857.370509] usb 4-1.1.4: USB disconnect, device number 13 -[1279857.371210] usb 4-1.1.5: USB disconnect, device number 14 -[1280932.285397] usb 4-1.1: new high-speed USB device number 15 using ehci-pci -[1280932.397765] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280932.397771] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280932.398395] hub 4-1.1:1.0: USB hub found -[1280932.398544] hub 4-1.1:1.0: 7 ports detected -[1280932.570887] usb 4-1.1: USB disconnect, device number 15 -[1280967.097079] usb 4-1.1: new high-speed USB device number 16 using ehci-pci -[1280967.205726] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280967.205732] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280967.206265] hub 4-1.1:1.0: USB hub found -[1280967.206429] hub 4-1.1:1.0: 7 ports detected -[1280967.497076] usb 4-1.1.4: new high-speed USB device number 17 using ehci-pci -[1280967.611211] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1280967.611216] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.611220] usb 4-1.1.4: Product: servo:810-10010-02 -[1280967.611223] usb 4-1.1.4: Manufacturer: Google Inc -[1280967.611226] usb 4-1.1.4: SerialNumber: 686203-00071 -[1280967.697102] usb 4-1.1.5: new high-speed USB device number 18 using ehci-pci -[1280967.815087] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1280967.815092] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.815096] usb 4-1.1.5: Product: servo:810-10010-02 -[1280967.815099] usb 4-1.1.5: Manufacturer: Google Inc -[1280967.815102] usb 4-1.1.5: SerialNumber: 686203-00071 -[1296500.416011] usb 4-1.2.3.2: new high-speed USB device number 19 using ehci-pci -[1296500.529285] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296500.529287] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296500.529289] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296500.529290] usb 4-1.2.3.2: Manufacturer: Linksys -[1296500.529291] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296500.615957] usb 4-1.2.3.2: reset high-speed USB device number 19 using ehci-pci -[1296500.765293] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296500.861448] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296500.979426] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296500.989098] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296519.485261] show_signal_msg: 7043 callbacks suppressed -[1296519.485265] cinnamon-settin[64959]: segfault at c0 ip 00007f4539f4c243 sp 00007ffe78a8b7b8 error 4 in libnetwork.so[7f4539f34000+84000] -[1296519.485277] Code: 8b 38 e8 88 89 ff ff 48 8b 3d 09 df 26 00 be 50 00 00 00 e8 ef 6e ff ff 48 89 df 48 8b 40 30 5b ff e0 0f 1f 44 00 00 48 8b 07 a0 c0 00 00 00 0f 1f 80 00 00 00 00 41 57 41 56 41 55 41 54 55 -[1296583.578384] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296583.578943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296668.539331] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296671.386242] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296689.079721] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296742.369617] usb 4-1.2.3.2: USB disconnect, device number 19 -[1296742.371350] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1296743.873559] usb 4-1.2.3.2: new high-speed USB device number 20 using ehci-pci -[1296743.983891] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296743.983897] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296743.983900] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296743.983903] usb 4-1.2.3.2: Manufacturer: Linksys -[1296743.983906] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296744.069625] usb 4-1.2.3.2: reset high-speed USB device number 20 using ehci-pci -[1296744.219739] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296744.263883] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296744.299688] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296744.308319] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296813.227066] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296813.227686] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296857.261522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296860.299895] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296945.324423] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296948.139304] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296966.190938] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297090.251849] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297142.449724] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297145.291359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297163.114227] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297232.843373] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297317.517285] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297320.332034] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297337.674679] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297407.500206] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297492.427703] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297495.244211] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297512.970958] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297637.259642] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297689.353894] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297692.172541] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297709.619015] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297834.220184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297886.316741] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297889.132592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297907.181077] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298031.692241] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298084.012631] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298086.892635] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298104.621510] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298228.812549] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298281.078585] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298283.851702] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298302.028864] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298426.348224] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298478.457116] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298481.259878] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298498.669250] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298623.308664] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298675.404758] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298678.188932] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298695.693687] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298820.332722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298872.396748] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298875.275980] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298893.259784] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299017.708904] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299069.997801] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299072.812820] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299090.220603] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299214.764985] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299266.956859] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299269.837229] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299287.820000] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299412.716668] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299464.588408] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299467.405058] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299485.198038] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299609.388976] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299661.709461] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299664.524994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299681.999017] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299806.508886] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299858.765021] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299861.549053] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299878.994525] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300003.628819] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300055.913831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300058.765475] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300076.174466] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300201.005398] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300252.974666] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300255.789267] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300273.838511] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300398.412693] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300450.765946] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300453.581097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300471.405128] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300595.500356] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300647.820871] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300650.732403] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300668.752254] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300768.588917] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300833.761591] usb 4-1.2.4: USB disconnect, device number 5 -[1300837.054974] usb 4-1.2.4: new high-speed USB device number 21 using ehci-pci -[1300837.163519] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1300837.163525] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1300837.164259] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1300837.164264] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1300837.164268] usb 4-1.2.4: Product: EM100PRO -[1300837.164271] usb 4-1.2.4: Manufacturer: DediProg -[1300850.445827] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300853.516700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300885.964716] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300889.101347] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301267.181184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301270.284807] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301431.660359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301434.700601] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301625.742531] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301634.125044] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301718.507813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301721.581444] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301724.813450] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301727.853571] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301813.290086] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301816.109722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301833.870351] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301958.605678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302010.894675] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302013.709155] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302031.756775] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302090.317678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302175.565949] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302178.381734] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302196.749831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302296.654023] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302391.883133] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302395.726283] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302524.629861] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302527.662055] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302624.590332] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302628.622209] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302757.324994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302760.462147] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302856.461275] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302860.557659] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302988.685324] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302992.910070] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303088.909842] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303093.070097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303221.261258] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303225.454383] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303321.074027] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303325.197912] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303440.655698] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303565.027530] usb 4-1.2.3.2: USB disconnect, device number 20 -[1303565.029652] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1303566.529654] usb 4-1.2.3.2: new high-speed USB device number 22 using ehci-pci -[1303566.643662] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1303566.643667] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1303566.643671] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1303566.643674] usb 4-1.2.3.2: Manufacturer: Linksys -[1303566.643677] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1303566.729681] usb 4-1.2.3.2: reset high-speed USB device number 22 using ehci-pci -[1303566.883734] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1303566.926943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1303566.962399] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1303566.970680] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1369297.185614] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1369297.186192] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369381.572093] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369384.546343] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369464.385640] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369467.490493] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369491.555122] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369494.625939] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369580.131653] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369583.013817] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369601.504522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369925.601617] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370010.272651] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370013.090923] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370031.656399] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370473.955069] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370559.106942] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370562.018813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370579.842606] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372229.890928] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372314.884700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372317.698952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372335.236592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372514.787008] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372600.227397] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372603.043160] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372620.995161] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372725.495715] usb 4-1.2.3.2: USB disconnect, device number 22 -[1372725.497952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1372747.737833] usb 4-1.2.3.2: new high-speed USB device number 23 using ehci-pci -[1372747.852247] usb 4-1.2.3.2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1372747.852253] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1372747.852256] usb 4-1.2.3.2: Product: USB 10/100/1000 LAN -[1372747.852259] usb 4-1.2.3.2: Manufacturer: Realtek -[1372747.852262] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1372747.945832] usb 4-1.2.3.2: reset high-speed USB device number 23 using ehci-pci -[1372748.095699] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1372748.179723] r8152 4-1.2.3.2:1.0 enx00e04c68000e: renamed from eth0 -[1372748.256713] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1372748.265399] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373513.956230] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373513.956832] r8152 4-1.2.3.2:1.0 enx00e04c68000e: carrier on -[1373567.016830] net_ratelimit: 32 callbacks suppressed -[1373567.016838] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.021063] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.025323] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.029556] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.033808] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.038064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.042308] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.046571] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.050829] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.055064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.223813] usb 4-1.2.3.2: USB disconnect, device number 23 -[1373595.877273] usb 4-1.4: new high-speed USB device number 24 using ehci-pci -[1373595.991449] usb 4-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1373595.991454] usb 4-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1373595.991458] usb 4-1.4: Product: USB 10/100/1000 LAN -[1373595.991461] usb 4-1.4: Manufacturer: Realtek -[1373595.991464] usb 4-1.4: SerialNumber: 000001000000 -[1373596.077280] usb 4-1.4: reset high-speed USB device number 24 using ehci-pci -[1373596.227325] r8152 4-1.4:1.0 eth0: v1.09.9 -[1373596.273179] r8152 4-1.4:1.0 enx00e04c68000e: renamed from eth0 -[1373596.340503] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373596.349125] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373599.093121] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373599.093699] r8152 4-1.4:1.0 enx00e04c68000e: carrier on -[1390218.115806] usb 2-2.3: USB disconnect, device number 5 -[1390218.390659] usb 2-2.3: new low-speed USB device number 6 using xhci_hcd -[1390218.498873] usb 2-2.3: New USB device found, idVendor=046d, idProduct=c03d, bcdDevice=20.00 -[1390218.498876] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1390218.498878] usb 2-2.3: Product: USB-PS/2 Optical Mouse -[1390218.498879] usb 2-2.3: Manufacturer: Logitech -[1390218.519559] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:046D:C03D.0005/input/input17 -[1390218.519870] hid-generic 0003:046D:C03D.0005: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:08:00.0-2.3/input0 -[1392848.636577] usb 4-1.2.4: USB disconnect, device number 21 -[1392854.241802] usb 4-1.2.4: new high-speed USB device number 25 using ehci-pci -[1392854.350539] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1392854.350545] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1392854.351160] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1392854.351165] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1392854.351168] usb 4-1.2.4: Product: EM100PRO -[1392854.351172] usb 4-1.2.4: Manufacturer: DediProg -[1814996.857387] usb 4-1.2.3.1: USB disconnect, device number 6 -[1814996.857775] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[1814996.857813] ftdi_sio 4-1.2.3.1:1.0: device disconnected -[1814996.999438] usb 4-1.2.3.3: USB disconnect, device number 8 -[1814997.098896] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[1814997.098922] keyspan 4-1.2.3.3:1.0: device disconnected -[1814997.880138] usb 4-1.2.3: USB disconnect, device number 4 -[1815004.254951] usb 4-1.2.3: new full-speed USB device number 26 using ehci-pci -[1815004.370722] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[1815004.370728] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1815004.370731] usb 4-1.2.3: Product: FT232R USB UART -[1815004.370734] usb 4-1.2.3: Manufacturer: FTDI -[1815004.370737] usb 4-1.2.3: SerialNumber: AL009FRA -[1815004.373681] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[1815004.373736] usb 4-1.2.3: Detected FT232RL -[1815004.374341] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[1815022.968025] usb 4-1.2.4: USB disconnect, device number 25 -[1815066.458397] usb 4-1.3: new high-speed USB device number 27 using ehci-pci -[1815066.574710] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1815066.574712] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1815066.575086] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1815066.575088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815066.575090] usb 4-1.3: Product: EM100PRO -[1815066.575091] usb 4-1.3: Manufacturer: DediProg -[1815099.734063] usb 4-1.2.4: new full-speed USB device number 28 using ehci-pci -[1815099.861193] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[1815099.861199] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815099.861202] usb 4-1.2.4: Product: Keyspan USA-19H -[1815099.861205] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[1815099.862154] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[1815099.862402] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[1985672.360758] usb 4-1.3: USB disconnect, device number 27 -[1985677.189752] usb 4-1.3: new high-speed USB device number 29 using ehci-pci -[1985677.298515] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1985677.298520] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1985677.299083] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1985677.299088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1985677.299091] usb 4-1.3: Product: EM100PRO -[1985677.299094] usb 4-1.3: Manufacturer: DediProg -[1986064.786992] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986066.818559] EXT4-fs (loop1): mounting ext2 file system using the ext4 subsystem -[1986066.823584] EXT4-fs (loop1): mounted filesystem without journal. Opts: (null) -[1986068.183403] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.102103] EXT4-fs (loop1p3): mounting ext2 file system using the ext4 subsystem -[1986069.107537] EXT4-fs (loop1p3): mounted filesystem without journal. Opts: (null) -[1986069.119832] EXT4-fs (loop1p1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.129592] EXT4-fs (loop1p8): mounted filesystem with ordered data mode. Opts: (null) -[2004015.221731] print_req_error: I/O error, dev loop1, sector 9494400 -[2004015.221866] print_req_error: I/O error, dev loop1, sector 9494616 -[2004015.221901] print_req_error: I/O error, dev loop1, sector 5300224 -[2004015.221970] print_req_error: I/O error, dev loop1, sector 5300232 -[2004015.259406] print_req_error: I/O error, dev loop1, sector 85888 -[2004015.259489] print_req_error: I/O error, dev loop1, sector 86000 -[2004015.259526] print_req_error: I/O error, dev loop1, sector 20480 -[2004015.259598] print_req_error: I/O error, dev loop1, sector 20488 -[2004015.269837] print_req_error: I/O error, dev loop1, sector 5300096 -[2004015.269910] print_req_error: I/O error, dev loop1, sector 5300208 -[2004073.442332] print_req_error: 54 callbacks suppressed -[2004073.442333] print_req_error: I/O error, dev loop1, sector 9494400 -[2004073.442439] print_req_error: I/O error, dev loop1, sector 9494616 -[2004073.442489] print_req_error: I/O error, dev loop1, sector 5300224 -[2004073.442585] print_req_error: I/O error, dev loop1, sector 5300232 -[2004073.503462] print_req_error: I/O error, dev loop1, sector 85888 -[2004073.503602] print_req_error: I/O error, dev loop1, sector 86000 -[2004073.503743] print_req_error: I/O error, dev loop1, sector 20480 -[2004073.503883] print_req_error: I/O error, dev loop1, sector 20488 -[2004073.514021] print_req_error: I/O error, dev loop1, sector 5300096 -[2004073.514176] print_req_error: I/O error, dev loop1, sector 5300208 -[2025609.801518] print_req_error: 54 callbacks suppressed -[2025609.801519] print_req_error: I/O error, dev loop1, sector 9494400 -[2025609.801723] print_req_error: I/O error, dev loop1, sector 9494616 -[2025609.801788] print_req_error: I/O error, dev loop1, sector 5300224 -[2025609.801888] print_req_error: I/O error, dev loop1, sector 5300232 -[2025609.848723] print_req_error: I/O error, dev loop1, sector 85888 -[2025609.848876] print_req_error: I/O error, dev loop1, sector 86000 -[2025609.848962] print_req_error: I/O error, dev loop1, sector 20480 -[2025609.849034] print_req_error: I/O error, dev loop1, sector 20488 -[2025609.880213] print_req_error: I/O error, dev loop1, sector 5300096 -[2025609.880360] print_req_error: I/O error, dev loop1, sector 5300208 -[2025668.370560] print_req_error: 54 callbacks suppressed -[2025668.370562] print_req_error: I/O error, dev loop1, sector 9494400 -[2025668.370709] print_req_error: I/O error, dev loop1, sector 9494616 -[2025668.370772] print_req_error: I/O error, dev loop1, sector 5300224 -[2025668.370897] print_req_error: I/O error, dev loop1, sector 5300232 -[2025668.426083] print_req_error: I/O error, dev loop1, sector 85888 -[2025668.426237] print_req_error: I/O error, dev loop1, sector 86000 -[2025668.426319] print_req_error: I/O error, dev loop1, sector 20480 -[2025668.426464] print_req_error: I/O error, dev loop1, sector 20488 -[2025668.436546] print_req_error: I/O error, dev loop1, sector 5300096 -[2025668.436684] print_req_error: I/O error, dev loop1, sector 5300208 -[2047210.915760] print_req_error: 54 callbacks suppressed -[2047210.915762] print_req_error: I/O error, dev loop1, sector 9494400 -[2047210.915946] print_req_error: I/O error, dev loop1, sector 9494616 -[2047210.916004] print_req_error: I/O error, dev loop1, sector 5300224 -[2047210.916094] print_req_error: I/O error, dev loop1, sector 5300232 -[2047211.010384] print_req_error: I/O error, dev loop1, sector 85888 -[2047211.010546] print_req_error: I/O error, dev loop1, sector 86000 -[2047211.010631] print_req_error: I/O error, dev loop1, sector 20480 -[2047211.010777] print_req_error: I/O error, dev loop1, sector 20488 -[2047211.054805] print_req_error: I/O error, dev loop1, sector 5300096 -[2047211.054960] print_req_error: I/O error, dev loop1, sector 5300208 -[2047271.372119] print_req_error: 54 callbacks suppressed -[2047271.372121] print_req_error: I/O error, dev loop1, sector 9494400 -[2047271.372242] print_req_error: I/O error, dev loop1, sector 9494616 -[2047271.372305] print_req_error: I/O error, dev loop1, sector 5300224 -[2047271.372403] print_req_error: I/O error, dev loop1, sector 5300232 -[2047271.374552] print_req_error: I/O error, dev loop1, sector 85888 -[2047271.374626] print_req_error: I/O error, dev loop1, sector 86000 -[2047271.374777] print_req_error: I/O error, dev loop1, sector 20480 -[2047271.374838] print_req_error: I/O error, dev loop1, sector 20488 -[2047271.388727] print_req_error: I/O error, dev loop1, sector 5300096 -[2047271.388886] print_req_error: I/O error, dev loop1, sector 5300208 -[2068814.523243] print_req_error: 54 callbacks suppressed -[2068814.523244] print_req_error: I/O error, dev loop1, sector 9494400 -[2068814.523474] print_req_error: I/O error, dev loop1, sector 9494616 -[2068814.523550] print_req_error: I/O error, dev loop1, sector 5300224 -[2068814.523617] print_req_error: I/O error, dev loop1, sector 5300232 -[2068814.561992] print_req_error: I/O error, dev loop1, sector 85888 -[2068814.562134] print_req_error: I/O error, dev loop1, sector 86000 -[2068814.562268] print_req_error: I/O error, dev loop1, sector 20480 -[2068814.562403] print_req_error: I/O error, dev loop1, sector 20488 -[2068814.572282] print_req_error: I/O error, dev loop1, sector 5300096 -[2068814.572433] print_req_error: I/O error, dev loop1, sector 5300208 -[2068872.014861] print_req_error: 54 callbacks suppressed -[2068872.014862] print_req_error: I/O error, dev loop1, sector 9494400 -[2068872.015006] print_req_error: I/O error, dev loop1, sector 9494616 -[2068872.015063] print_req_error: I/O error, dev loop1, sector 5300224 -[2068872.015188] print_req_error: I/O error, dev loop1, sector 5300232 -[2068872.072645] print_req_error: I/O error, dev loop1, sector 85888 -[2068872.072801] print_req_error: I/O error, dev loop1, sector 86000 -[2068872.072956] print_req_error: I/O error, dev loop1, sector 20480 -[2068872.073111] print_req_error: I/O error, dev loop1, sector 20488 -[2068872.083090] print_req_error: I/O error, dev loop1, sector 5300096 -[2068872.083243] print_req_error: I/O error, dev loop1, sector 5300208 -[2071293.216887] device enx00e04c68000e entered promiscuous mode -[2071293.217414] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2071976.386838] device enx00e04c68000e left promiscuous mode -[2071978.750492] device enx00e04c68000e entered promiscuous mode -[2071978.750885] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2072001.745762] device enx00e04c68000e left promiscuous mode -[2075186.671912] device enx00e04c68000e entered promiscuous mode -[2075186.672377] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2075198.233081] device enx00e04c68000e left promiscuous mode -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo dmesfgg -c -[?2004l[sudo] password for rminnich: -[1279848.891575] usb 4-1.1: new high-speed USB device number 12 using ehci-pci -[1279849.000016] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1279849.000021] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1279849.000561] hub 4-1.1:1.0: USB hub found -[1279849.000728] hub 4-1.1:1.0: 7 ports detected -[1279849.287604] usb 4-1.1.4: new high-speed USB device number 13 using ehci-pci -[1279849.401482] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1279849.401488] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.401492] usb 4-1.1.4: Product: servo:810-10010-02 -[1279849.401495] usb 4-1.1.4: Manufacturer: Google Inc -[1279849.401497] usb 4-1.1.4: SerialNumber: 686203-00010 -[1279849.487559] usb 4-1.1.5: new high-speed USB device number 14 using ehci-pci -[1279849.601329] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1279849.601332] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1279849.601334] usb 4-1.1.5: Product: servo:810-10010-02 -[1279849.601336] usb 4-1.1.5: Manufacturer: Google Inc -[1279849.601337] usb 4-1.1.5: SerialNumber: 686203-00010 -[1279857.370503] usb 4-1.1: USB disconnect, device number 12 -[1279857.370509] usb 4-1.1.4: USB disconnect, device number 13 -[1279857.371210] usb 4-1.1.5: USB disconnect, device number 14 -[1280932.285397] usb 4-1.1: new high-speed USB device number 15 using ehci-pci -[1280932.397765] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280932.397771] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280932.398395] hub 4-1.1:1.0: USB hub found -[1280932.398544] hub 4-1.1:1.0: 7 ports detected -[1280932.570887] usb 4-1.1: USB disconnect, device number 15 -[1280967.097079] usb 4-1.1: new high-speed USB device number 16 using ehci-pci -[1280967.205726] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[1280967.205732] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[1280967.206265] hub 4-1.1:1.0: USB hub found -[1280967.206429] hub 4-1.1:1.0: 7 ports detected -[1280967.497076] usb 4-1.1.4: new high-speed USB device number 17 using ehci-pci -[1280967.611211] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[1280967.611216] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.611220] usb 4-1.1.4: Product: servo:810-10010-02 -[1280967.611223] usb 4-1.1.4: Manufacturer: Google Inc -[1280967.611226] usb 4-1.1.4: SerialNumber: 686203-00071 -[1280967.697102] usb 4-1.1.5: new high-speed USB device number 18 using ehci-pci -[1280967.815087] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[1280967.815092] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1280967.815096] usb 4-1.1.5: Product: servo:810-10010-02 -[1280967.815099] usb 4-1.1.5: Manufacturer: Google Inc -[1280967.815102] usb 4-1.1.5: SerialNumber: 686203-00071 -[1296500.416011] usb 4-1.2.3.2: new high-speed USB device number 19 using ehci-pci -[1296500.529285] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296500.529287] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296500.529289] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296500.529290] usb 4-1.2.3.2: Manufacturer: Linksys -[1296500.529291] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296500.615957] usb 4-1.2.3.2: reset high-speed USB device number 19 using ehci-pci -[1296500.765293] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296500.861448] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296500.979426] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296500.989098] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296519.485261] show_signal_msg: 7043 callbacks suppressed -[1296519.485265] cinnamon-settin[64959]: segfault at c0 ip 00007f4539f4c243 sp 00007ffe78a8b7b8 error 4 in libnetwork.so[7f4539f34000+84000] -[1296519.485277] Code: 8b 38 e8 88 89 ff ff 48 8b 3d 09 df 26 00 be 50 00 00 00 e8 ef 6e ff ff 48 89 df 48 8b 40 30 5b ff e0 0f 1f 44 00 00 48 8b 07 a0 c0 00 00 00 0f 1f 80 00 00 00 00 41 57 41 56 41 55 41 54 55 -[1296583.578384] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296583.578943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296668.539331] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296671.386242] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296689.079721] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296742.369617] usb 4-1.2.3.2: USB disconnect, device number 19 -[1296742.371350] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1296743.873559] usb 4-1.2.3.2: new high-speed USB device number 20 using ehci-pci -[1296743.983891] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1296743.983897] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1296743.983900] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1296743.983903] usb 4-1.2.3.2: Manufacturer: Linksys -[1296743.983906] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1296744.069625] usb 4-1.2.3.2: reset high-speed USB device number 20 using ehci-pci -[1296744.219739] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1296744.263883] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1296744.299688] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296744.308319] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1296813.227066] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1296813.227686] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296857.261522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296860.299895] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296945.324423] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1296948.139304] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1296966.190938] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297090.251849] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297142.449724] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297145.291359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297163.114227] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297232.843373] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297317.517285] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297320.332034] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297337.674679] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297407.500206] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297492.427703] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297495.244211] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297512.970958] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297637.259642] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297689.353894] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297692.172541] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297709.619015] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297834.220184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297886.316741] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1297889.132592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1297907.181077] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298031.692241] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298084.012631] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298086.892635] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298104.621510] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298228.812549] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298281.078585] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298283.851702] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298302.028864] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298426.348224] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298478.457116] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298481.259878] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298498.669250] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298623.308664] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298675.404758] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298678.188932] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298695.693687] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298820.332722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298872.396748] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1298875.275980] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1298893.259784] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299017.708904] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299069.997801] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299072.812820] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299090.220603] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299214.764985] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299266.956859] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299269.837229] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299287.820000] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299412.716668] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299464.588408] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299467.405058] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299485.198038] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299609.388976] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299661.709461] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299664.524994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299681.999017] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299806.508886] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299858.765021] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1299861.549053] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1299878.994525] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300003.628819] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300055.913831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300058.765475] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300076.174466] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300201.005398] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300252.974666] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300255.789267] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300273.838511] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300398.412693] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300450.765946] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300453.581097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300471.405128] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300595.500356] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300647.820871] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300650.732403] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300668.752254] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300768.588917] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300833.761591] usb 4-1.2.4: USB disconnect, device number 5 -[1300837.054974] usb 4-1.2.4: new high-speed USB device number 21 using ehci-pci -[1300837.163519] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1300837.163525] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1300837.164259] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1300837.164264] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1300837.164268] usb 4-1.2.4: Product: EM100PRO -[1300837.164271] usb 4-1.2.4: Manufacturer: DediProg -[1300850.445827] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300853.516700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1300885.964716] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1300889.101347] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301267.181184] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301270.284807] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301431.660359] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301434.700601] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301625.742531] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301634.125044] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301718.507813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301721.581444] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301724.813450] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301727.853571] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301813.290086] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301816.109722] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1301833.870351] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1301958.605678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302010.894675] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302013.709155] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302031.756775] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302090.317678] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302175.565949] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302178.381734] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302196.749831] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302296.654023] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302391.883133] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302395.726283] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302524.629861] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302527.662055] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302624.590332] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302628.622209] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302757.324994] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302760.462147] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302856.461275] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302860.557659] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1302988.685324] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1302992.910070] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303088.909842] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303093.070097] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303221.261258] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303225.454383] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303321.074027] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303325.197912] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1303440.655698] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1303565.027530] usb 4-1.2.3.2: USB disconnect, device number 20 -[1303565.029652] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1303566.529654] usb 4-1.2.3.2: new high-speed USB device number 22 using ehci-pci -[1303566.643662] usb 4-1.2.3.2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00 -[1303566.643667] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1303566.643671] usb 4-1.2.3.2: Product: Linksys USB3GIGV1 -[1303566.643674] usb 4-1.2.3.2: Manufacturer: Linksys -[1303566.643677] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1303566.729681] usb 4-1.2.3.2: reset high-speed USB device number 22 using ehci-pci -[1303566.883734] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1303566.926943] r8152 4-1.2.3.2:1.0 enx94103eb93b78: renamed from eth0 -[1303566.962399] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1303566.970680] IPv6: ADDRCONF(NETDEV_UP): enx94103eb93b78: link is not ready -[1369297.185614] IPv6: ADDRCONF(NETDEV_CHANGE): enx94103eb93b78: link becomes ready -[1369297.186192] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369381.572093] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369384.546343] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369464.385640] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369467.490493] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369491.555122] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369494.625939] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369580.131653] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369583.013817] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1369601.504522] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1369925.601617] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370010.272651] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370013.090923] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370031.656399] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370473.955069] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370559.106942] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1370562.018813] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1370579.842606] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372229.890928] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372314.884700] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372317.698952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372335.236592] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372514.787008] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372600.227397] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372603.043160] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier on -[1372620.995161] r8152 4-1.2.3.2:1.0 enx94103eb93b78: carrier off -[1372725.495715] usb 4-1.2.3.2: USB disconnect, device number 22 -[1372725.497952] r8152 4-1.2.3.2:1.0 enx94103eb93b78: Stop submitting intr, status -108 -[1372747.737833] usb 4-1.2.3.2: new high-speed USB device number 23 using ehci-pci -[1372747.852247] usb 4-1.2.3.2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1372747.852253] usb 4-1.2.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1372747.852256] usb 4-1.2.3.2: Product: USB 10/100/1000 LAN -[1372747.852259] usb 4-1.2.3.2: Manufacturer: Realtek -[1372747.852262] usb 4-1.2.3.2: SerialNumber: 000001000000 -[1372747.945832] usb 4-1.2.3.2: reset high-speed USB device number 23 using ehci-pci -[1372748.095699] r8152 4-1.2.3.2:1.0 eth0: v1.09.9 -[1372748.179723] r8152 4-1.2.3.2:1.0 enx00e04c68000e: renamed from eth0 -[1372748.256713] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1372748.265399] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373513.956230] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373513.956832] r8152 4-1.2.3.2:1.0 enx00e04c68000e: carrier on -[1373567.016830] net_ratelimit: 32 callbacks suppressed -[1373567.016838] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.021063] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.025323] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.029556] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.033808] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.038064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.042308] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.046571] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.050829] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.055064] r8152 4-1.2.3.2:1.0 enx00e04c68000e: Rx status -71 -[1373567.223813] usb 4-1.2.3.2: USB disconnect, device number 23 -[1373595.877273] usb 4-1.4: new high-speed USB device number 24 using ehci-pci -[1373595.991449] usb 4-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00 -[1373595.991454] usb 4-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6 -[1373595.991458] usb 4-1.4: Product: USB 10/100/1000 LAN -[1373595.991461] usb 4-1.4: Manufacturer: Realtek -[1373595.991464] usb 4-1.4: SerialNumber: 000001000000 -[1373596.077280] usb 4-1.4: reset high-speed USB device number 24 using ehci-pci -[1373596.227325] r8152 4-1.4:1.0 eth0: v1.09.9 -[1373596.273179] r8152 4-1.4:1.0 enx00e04c68000e: renamed from eth0 -[1373596.340503] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373596.349125] IPv6: ADDRCONF(NETDEV_UP): enx00e04c68000e: link is not ready -[1373599.093121] IPv6: ADDRCONF(NETDEV_CHANGE): enx00e04c68000e: link becomes ready -[1373599.093699] r8152 4-1.4:1.0 enx00e04c68000e: carrier on -[1390218.115806] usb 2-2.3: USB disconnect, device number 5 -[1390218.390659] usb 2-2.3: new low-speed USB device number 6 using xhci_hcd -[1390218.498873] usb 2-2.3: New USB device found, idVendor=046d, idProduct=c03d, bcdDevice=20.00 -[1390218.498876] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1390218.498878] usb 2-2.3: Product: USB-PS/2 Optical Mouse -[1390218.498879] usb 2-2.3: Manufacturer: Logitech -[1390218.519559] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:046D:C03D.0005/input/input17 -[1390218.519870] hid-generic 0003:046D:C03D.0005: input,hidraw3: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:08:00.0-2.3/input0 -[1392848.636577] usb 4-1.2.4: USB disconnect, device number 21 -[1392854.241802] usb 4-1.2.4: new high-speed USB device number 25 using ehci-pci -[1392854.350539] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1392854.350545] usb 4-1.2.4: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1392854.351160] usb 4-1.2.4: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1392854.351165] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1392854.351168] usb 4-1.2.4: Product: EM100PRO -[1392854.351172] usb 4-1.2.4: Manufacturer: DediProg -[1814996.857387] usb 4-1.2.3.1: USB disconnect, device number 6 -[1814996.857775] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[1814996.857813] ftdi_sio 4-1.2.3.1:1.0: device disconnected -[1814996.999438] usb 4-1.2.3.3: USB disconnect, device number 8 -[1814997.098896] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[1814997.098922] keyspan 4-1.2.3.3:1.0: device disconnected -[1814997.880138] usb 4-1.2.3: USB disconnect, device number 4 -[1815004.254951] usb 4-1.2.3: new full-speed USB device number 26 using ehci-pci -[1815004.370722] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[1815004.370728] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[1815004.370731] usb 4-1.2.3: Product: FT232R USB UART -[1815004.370734] usb 4-1.2.3: Manufacturer: FTDI -[1815004.370737] usb 4-1.2.3: SerialNumber: AL009FRA -[1815004.373681] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[1815004.373736] usb 4-1.2.3: Detected FT232RL -[1815004.374341] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[1815022.968025] usb 4-1.2.4: USB disconnect, device number 25 -[1815066.458397] usb 4-1.3: new high-speed USB device number 27 using ehci-pci -[1815066.574710] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1815066.574712] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1815066.575086] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1815066.575088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815066.575090] usb 4-1.3: Product: EM100PRO -[1815066.575091] usb 4-1.3: Manufacturer: DediProg -[1815099.734063] usb 4-1.2.4: new full-speed USB device number 28 using ehci-pci -[1815099.861193] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[1815099.861199] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1815099.861202] usb 4-1.2.4: Product: Keyspan USA-19H -[1815099.861205] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[1815099.862154] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[1815099.862402] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[1985672.360758] usb 4-1.3: USB disconnect, device number 27 -[1985677.189752] usb 4-1.3: new high-speed USB device number 29 using ehci-pci -[1985677.298515] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[1985677.298520] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[1985677.299083] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[1985677.299088] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[1985677.299091] usb 4-1.3: Product: EM100PRO -[1985677.299094] usb 4-1.3: Manufacturer: DediProg -[1986064.786992] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986066.818559] EXT4-fs (loop1): mounting ext2 file system using the ext4 subsystem -[1986066.823584] EXT4-fs (loop1): mounted filesystem without journal. Opts: (null) -[1986068.183403] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.102103] EXT4-fs (loop1p3): mounting ext2 file system using the ext4 subsystem -[1986069.107537] EXT4-fs (loop1p3): mounted filesystem without journal. Opts: (null) -[1986069.119832] EXT4-fs (loop1p1): mounted filesystem with ordered data mode. Opts: (null) -[1986069.129592] EXT4-fs (loop1p8): mounted filesystem with ordered data mode. Opts: (null) -[2004015.221731] print_req_error: I/O error, dev loop1, sector 9494400 -[2004015.221866] print_req_error: I/O error, dev loop1, sector 9494616 -[2004015.221901] print_req_error: I/O error, dev loop1, sector 5300224 -[2004015.221970] print_req_error: I/O error, dev loop1, sector 5300232 -[2004015.259406] print_req_error: I/O error, dev loop1, sector 85888 -[2004015.259489] print_req_error: I/O error, dev loop1, sector 86000 -[2004015.259526] print_req_error: I/O error, dev loop1, sector 20480 -[2004015.259598] print_req_error: I/O error, dev loop1, sector 20488 -[2004015.269837] print_req_error: I/O error, dev loop1, sector 5300096 -[2004015.269910] print_req_error: I/O error, dev loop1, sector 5300208 -[2004073.442332] print_req_error: 54 callbacks suppressed -[2004073.442333] print_req_error: I/O error, dev loop1, sector 9494400 -[2004073.442439] print_req_error: I/O error, dev loop1, sector 9494616 -[2004073.442489] print_req_error: I/O error, dev loop1, sector 5300224 -[2004073.442585] print_req_error: I/O error, dev loop1, sector 5300232 -[2004073.503462] print_req_error: I/O error, dev loop1, sector 85888 -[2004073.503602] print_req_error: I/O error, dev loop1, sector 86000 -[2004073.503743] print_req_error: I/O error, dev loop1, sector 20480 -[2004073.503883] print_req_error: I/O error, dev loop1, sector 20488 -[2004073.514021] print_req_error: I/O error, dev loop1, sector 5300096 -[2004073.514176] print_req_error: I/O error, dev loop1, sector 5300208 -[2025609.801518] print_req_error: 54 callbacks suppressed -[2025609.801519] print_req_error: I/O error, dev loop1, sector 9494400 -[2025609.801723] print_req_error: I/O error, dev loop1, sector 9494616 -[2025609.801788] print_req_error: I/O error, dev loop1, sector 5300224 -[2025609.801888] print_req_error: I/O error, dev loop1, sector 5300232 -[2025609.848723] print_req_error: I/O error, dev loop1, sector 85888 -[2025609.848876] print_req_error: I/O error, dev loop1, sector 86000 -[2025609.848962] print_req_error: I/O error, dev loop1, sector 20480 -[2025609.849034] print_req_error: I/O error, dev loop1, sector 20488 -[2025609.880213] print_req_error: I/O error, dev loop1, sector 5300096 -[2025609.880360] print_req_error: I/O error, dev loop1, sector 5300208 -[2025668.370560] print_req_error: 54 callbacks suppressed -[2025668.370562] print_req_error: I/O error, dev loop1, sector 9494400 -[2025668.370709] print_req_error: I/O error, dev loop1, sector 9494616 -[2025668.370772] print_req_error: I/O error, dev loop1, sector 5300224 -[2025668.370897] print_req_error: I/O error, dev loop1, sector 5300232 -[2025668.426083] print_req_error: I/O error, dev loop1, sector 85888 -[2025668.426237] print_req_error: I/O error, dev loop1, sector 86000 -[2025668.426319] print_req_error: I/O error, dev loop1, sector 20480 -[2025668.426464] print_req_error: I/O error, dev loop1, sector 20488 -[2025668.436546] print_req_error: I/O error, dev loop1, sector 5300096 -[2025668.436684] print_req_error: I/O error, dev loop1, sector 5300208 -[2047210.915760] print_req_error: 54 callbacks suppressed -[2047210.915762] print_req_error: I/O error, dev loop1, sector 9494400 -[2047210.915946] print_req_error: I/O error, dev loop1, sector 9494616 -[2047210.916004] print_req_error: I/O error, dev loop1, sector 5300224 -[2047210.916094] print_req_error: I/O error, dev loop1, sector 5300232 -[2047211.010384] print_req_error: I/O error, dev loop1, sector 85888 -[2047211.010546] print_req_error: I/O error, dev loop1, sector 86000 -[2047211.010631] print_req_error: I/O error, dev loop1, sector 20480 -[2047211.010777] print_req_error: I/O error, dev loop1, sector 20488 -[2047211.054805] print_req_error: I/O error, dev loop1, sector 5300096 -[2047211.054960] print_req_error: I/O error, dev loop1, sector 5300208 -[2047271.372119] print_req_error: 54 callbacks suppressed -[2047271.372121] print_req_error: I/O error, dev loop1, sector 9494400 -[2047271.372242] print_req_error: I/O error, dev loop1, sector 9494616 -[2047271.372305] print_req_error: I/O error, dev loop1, sector 5300224 -[2047271.372403] print_req_error: I/O error, dev loop1, sector 5300232 -[2047271.374552] print_req_error: I/O error, dev loop1, sector 85888 -[2047271.374626] print_req_error: I/O error, dev loop1, sector 86000 -[2047271.374777] print_req_error: I/O error, dev loop1, sector 20480 -[2047271.374838] print_req_error: I/O error, dev loop1, sector 20488 -[2047271.388727] print_req_error: I/O error, dev loop1, sector 5300096 -[2047271.388886] print_req_error: I/O error, dev loop1, sector 5300208 -[2068814.523243] print_req_error: 54 callbacks suppressed -[2068814.523244] print_req_error: I/O error, dev loop1, sector 9494400 -[2068814.523474] print_req_error: I/O error, dev loop1, sector 9494616 -[2068814.523550] print_req_error: I/O error, dev loop1, sector 5300224 -[2068814.523617] print_req_error: I/O error, dev loop1, sector 5300232 -[2068814.561992] print_req_error: I/O error, dev loop1, sector 85888 -[2068814.562134] print_req_error: I/O error, dev loop1, sector 86000 -[2068814.562268] print_req_error: I/O error, dev loop1, sector 20480 -[2068814.562403] print_req_error: I/O error, dev loop1, sector 20488 -[2068814.572282] print_req_error: I/O error, dev loop1, sector 5300096 -[2068814.572433] print_req_error: I/O error, dev loop1, sector 5300208 -[2068872.014861] print_req_error: 54 callbacks suppressed -[2068872.014862] print_req_error: I/O error, dev loop1, sector 9494400 -[2068872.015006] print_req_error: I/O error, dev loop1, sector 9494616 -[2068872.015063] print_req_error: I/O error, dev loop1, sector 5300224 -[2068872.015188] print_req_error: I/O error, dev loop1, sector 5300232 -[2068872.072645] print_req_error: I/O error, dev loop1, sector 85888 -[2068872.072801] print_req_error: I/O error, dev loop1, sector 86000 -[2068872.072956] print_req_error: I/O error, dev loop1, sector 20480 -[2068872.073111] print_req_error: I/O error, dev loop1, sector 20488 -[2068872.083090] print_req_error: I/O error, dev loop1, sector 5300096 -[2068872.083243] print_req_error: I/O error, dev loop1, sector 5300208 -[2071293.216887] device enx00e04c68000e entered promiscuous mode -[2071293.217414] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2071976.386838] device enx00e04c68000e left promiscuous mode -[2071978.750492] device enx00e04c68000e entered promiscuous mode -[2071978.750885] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2072001.745762] device enx00e04c68000e left promiscuous mode -[2075186.671912] device enx00e04c68000e entered promiscuous mode -[2075186.672377] r8152 4-1.4:1.0 enx00e04c68000e: Promiscuous mode enabled -[2075198.233081] device enx00e04c68000e left promiscuous mode -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo dmesg -c -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004lbin.reset commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -blacklist config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -bzImage DIT fail.bin L Makefile removesetupcrap.bin uinit -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ci vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 14L, 309C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi DXECLEANER -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi DXECLEANER -[?2004h]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?1049h[?1h=[?2004h[?12h[?12l[?25l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 7,1All[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l0[?25h[?25l9,1 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25lecho "./0" > /dev/ttyUSB112,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l1[?25h[?25l -~ 11,1All[?25h[?25lsleep 512,1All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 15L, 335C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': .': futk /tmp/x fv ./DXECLEANER clean[1@/f': ./futk ./futk.remove.99/99 fv[1@u ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk ./futk.remove.99/99 fv -[?2004lbash: ./futk: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk ./futk.remove.99/99 fv -[?2004l2018/12/20 09:53:29 Found 311 things -[311]OK ./DXECLEANER clane   ean -2018/12/20 09:53:41 script is ./DXECLEANER -2018/12/20 09:53:48 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 09:53:48 removed [0xc00cfceb80] -+ echo TEST /tmp/futk329102038/1 -TEST /tmp/futk329102038/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk329102038/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 09:54:25 Listening on 192.168.0.1:8080 at 2018-12-20 09:54:25.378036454 -0800 PST m=+0.005088899 -2018/12/20 09:57:25 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 09:57:25.378514264 -0800 PST m=+180.005566547 -2018/12/20 09:57:25 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 09:57:25 We are now done ...................... -2018/12/20 09:57:25 accept tcp 192.168.0.1:8080: i/o timeout -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK -[311 [/tmp/futk329102038/0] exit status 1]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./futk remove9 -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove -removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk removedfutk.remove.99/50 fv ./DXECLEANER futk.remove.99/50 -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 5 because this piece of shit can'\''t take it' -sleeping 5 because this piece of shit can't take it -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 09:58:45 Listening on 192.168.0.1:8080 at 2018-12-20 09:58:45.019291348 -0800 PST m=+0.004257262 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 15L, 335C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 5 because this piece of shit can't take it" -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l1[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l9,1 [?25h[?25l10,1[?25h[?25l-- INSERT --11,1Top11,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25lk2[?25h[?25l11,1All[?25h[?25l0[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l-- INSERT --10,17All[?25h[?25l0 because this piece of shit can't take it"8[?25h[?25l10,17All[?25h[?25l1,1 [?25h[?25l~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ --No lines in buffer--0,0-1All[?25h[?25l[?25h[?25l16 more lines; before #3 1 seconds ago#!/bin/bash -set -eset -xecho TEST $1echo "date" > /dev/ttyUSB1echo "./0" > /dev/ttyUSB1echo "./pg" > /dev/ttyUSB1sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -recho "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it"kecho "./0" > /dev/ttyUSB1sleep 5echo "./1" > /dev/ttyUSB1sleep 10./uinit -r1,1All[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l0-1[?25h[?25l-- INSERT --11,1All[?25h[?25ls2[?25h[?25ll3[?25h[?25le4[?25h[?25le5[?25h[?25lp6[?25h[?25l7[?25h[?25l58[?25h[?25l09[?25h[?25l11,8All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 16L, 345C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [32@f': ./DXECLEANER futk.remove.99/50[1@u ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/50  -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:05:33 Listening on 192.168.0.1:8080 at 2018-12-20 10:05:33.942521123 -0800 PST m=+0.004347236 -2018/12/20 10:08:33 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 10:08:33.942872927 -0800 PST m=+180.004698842 -2018/12/20 10:08:33 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 10:08:33 We are now done ...................... -2018/12/20 10:08:33 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/50 tmp/x/tmp/x -[?2004l+ echo TEST /tmp/x -TEST /tmp/x -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/x -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:10:51 Listening on 192.168.0.1:8080 at 2018-12-20 10:10:51.299328523 -0800 PST m=+0.003712910 -2018/12/20 10:13:17 Accepted &{{0xc000174000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:14:45 Accepted &{{0xc000174100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:14:45 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/xfyuutk.remove.99/50 -[?2004l+ echo TEST futk.remove.99/50 -TEST futk.remove.99/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:20:47 Listening on 192.168.0.1:8080 at 2018-12-20 10:20:47.915444974 -0800 PST m=+0.004240111 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER futk.remove.99/5098 -[?2004l+ echo TEST futk.remove.99/98 -TEST futk.remove.99/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d futk.remove.99/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:24:31 Listening on 192.168.0.1:8080 at 2018-12-20 10:24:31.312246003 -0800 PST m=+0.005015879 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 bzImage splat //tmp98.splat saverom -[?2004lpanic: runtime error: invalid memory address or nil pointer dereference [recovered] - panic: runtime error: invalid memory address or nil pointer dereference -[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x51c027] - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc000089ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x558a00, 0x6a7000) - /usr/local/src/projects/nobinaryblobs/go1.6/src/runtime/panic.go:513 +0x1b9 -github.com/linuxboot/fiano/pkg/visitors.(*Find).Run(0xc0000ae1c0, 0x0, 0x0, 0xc0000899b8, 0x2) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/find.go:41 +0x37 -github.com/linuxboot/fiano/pkg/visitors.(*ReplacePE32).Run(0xc0000ae000, 0x0, 0x0, 0x24, 0xc00009e090) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/replacepe32.go:36 +0xf5 -github.com/linuxboot/fiano/pkg/visitors.ExecuteCLI(0x0, 0x0, 0xc0000a6040, 0x1, 0x1, 0x1, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/pkg/visitors/cli.go:68 +0x6d -main.runit(0xc0000b03f0, 0x3, 0x3, 0x7, 0xc0000a62c0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:336 +0x189 -main.splat(0x5aed00, 0xc0000dc000) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:358 +0xc9 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x5aed00, 0xc0000dc000, 0xc00009e060, 0x30) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x5aed00, 0xc0000dc000, 0xc00009e060, 0x30, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:526 +0x15c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 bzImage splat 98.splat saverom[1@f[1@v[1@ -[?2004l2018/12/20 10:27:17 Found 312 things -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -[?2004l+ echo TEST -TEST -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d -r - -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration - - -Chip set to W25Q256FV -Could not open upload file: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.slplat -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently stopped -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:28:57 Listening on 192.168.0.1:8080 at 2018-12-20 10:28:57.130349689 -0800 PST m=+0.003203771 -2018/12/20 10:31:17 Accepted &{{0xc000148100}} -2018/12/20 10:31:17 We are now done ...................... -2018/12/20 10:31:17 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -bin.reset commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -blacklist config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -bzImage DIT fail.bin L Makefile removesetupcrap.bin uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github -.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -2018/12/20 10:32:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2018/12/20 10:32:22 Filename is /tmp/initramfs.linux_amd64.cpio -2018/12/20 10:32:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 2852697 Dec 20 10:32 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -[?2004l2018/12/20 10:32:36 here we are in uinit -2018/12/20 10:32:36 UINIT uid is 156049 -2018/12/20 10:32:36 Now dial 192.168.0.1:8080 -2018/12/20 10:32:36 Dial went poorly -2018/12/20 10:32:36 We are now done ...................... -2018/12/20 10:32:36 dial tcp 192.168.0.1:8080: connect: connection refused -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -r -[?2004l2018/12/20 10:32:43 Listening on 192.168.0.1:8080 at 2018-12-20 10:32:43.520864341 -0800 PST m=+0.003818012 -2018/12/20 10:32:48 Accepted &{{0xc000020180}} -2018/12/20 10:32:48 We are now done ...................... -2018/12/20 10:32:48 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mak e b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/utsrelease.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5141 kB -CRC d3d66d47 -Kernel: arch/x86/boot/bzImage is ready (#73) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5279792 Dec 20 10:33 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [15@f': more Makefileu': futk futk.remove.99/98 fv bzImage splat 98.splat saverom [1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 fv bzImage splat 98.splat saverom -[?2004l2018/12/20 10:33:16 Found 312 things -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@D': ./DXECLEANER 98.splat[1@X ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat  -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:34:43 Listening on 192.168.0.1:8080 at 2018-12-20 10:34:43.714596027 -0800 PST m=+0.004301378 -2018/12/20 10:36:59 Accepted &{{0xc000020100}} -2018/12/20 10:36:59 We are now done ...................... -2018/12/20 10:36:59 gob: bad data: undefined type arrayType = struct { CommonType CommonType = struct { Name string; Id int; }; Elem int; Len int; } -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -h -[?2004lflag needs an argument: -h -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") - -r run as the DUT controller -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -C false && & -[?2004l[1] 204310 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ 2018/12/20 10:37:25 here we are in uinit -2018/12/20 10:37:25 UINIT uid is 156049 -2018/12/20 10:37:25 Now dial 192.168.0.1:8080 -2018/12/20 10:37:25 Dial went poorly -2018/12/20 10:37:25 We are now done ...................... -2018/12/20 10:37:25 dial tcp 192.168.0.1:8080: connect: connection refused -./uinit  -[?2004l[1]+ Exit 1 ./uinit -C false -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uiitnit -r & ./uinit -C C=false -[?2004l[1] 204368 -2018/12/20 10:37:41 here we are in uinit -2018/12/20 10:37:41 UINIT uid is 156049 -2018/12/20 10:37:41 Now dial 192.168.0.1:8080 -2018/12/20 10:37:41 Listening on 192.168.0.1:8080 at 2018-12-20 10:37:41.590045582 -0800 PST m=+0.003383016 -2018/12/20 10:37:41 Start the RPC server -2018/12/20 10:37:41 rpc server is &{{{0 0} {} map[] 0} {0 0} {0 0} } -2018/12/20 10:37:41 Accepted &{{0xc000020100}} -2018/12/20 10:37:41 Serve and protect -2018/12/20 10:37:41 welcome -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:37:41 reboot returns -2018/12/20 10:37:41 operation not permitted -Command.Reboot(&{0s}): -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github -.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/uinit/ -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ (reverse-i-search)`':.': pushd ~/go/src/github.com/linuxboot/dut/uinit/ /': ./uinit -r & ./uinit -C=false ]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ./uinit -r & ./uinit -C=false -[?2004l[2] 204773 -2018/12/20 10:38:51 here we are in uinit -2018/12/20 10:38:51 listen tcp 192.168.0.1:8080: bind: address already in use -2018/12/20 10:38:51 UINIT uid is 156049 -2018/12/20 10:38:51 We are now done ...................... -2018/12/20 10:38:51 Now dial 192.168.0.1:8080 -2018/12/20 10:38:51 listen tcp 192.168.0.1:8080: bind: address already in use -2018/12/20 10:38:51 Start the RPC server -2018/12/20 10:38:51 rpc server is &{{{0 0} {} map[] 0} {0 0} {0 0} } -2018/12/20 10:38:51 Accepted &{{0xc000020200}} -2018/12/20 10:38:51 Serve and protect -2018/12/20 10:38:51 welcome -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:38:51 We are now done ...................... -2018/12/20 10:38:51 And uinit is all done. -2018/12/20 10:38:51 We are now done ...................... -[1]- Done ./uinit -r (wd: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) -(wd now: ~/go/src/github.com/linuxboot/dut/uinit) -[2]+ Exit 1 ./uinit -r -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ fg\ -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ps ax | grep uinit -[?2004l204865 pts/27 S+ 0:00 grep --color=auto uinit -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ./uinit C -C=false -[?2004l2018/12/20 10:39:40 here we are in uinit -2018/12/20 10:39:40 UINIT uid is 156049 -2018/12/20 10:39:40 Now dial 192.168.0.1:8080 -2018/12/20 10:39:40 Dial went poorly -2018/12/20 10:39:40 We are now done ...................... -2018/12/20 10:39:40 dial tcp 192.168.0.1:8080: connect: connection refused -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ popd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l bzImage -[?2004l-rw-r----- 1 rminnich primarygroup 5578800 Nov 20 10:49 bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm bzImage -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ qemu (reverse-i-search)`': [15@s': ls -l bzImage[9@p': ./DXECLEANER 98.splat[1@l[1@a[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat hsito (reverse-i-search)`': f': futk futk.remove.99/98 fv bzImage splat 98.splat saverom [1@u[1@t [8@failed reverse-i-search)`futh ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk futk.remove.99/98 fv bzImage splat 98.splat saverom[1@l[1@i[1@n[3@ux/[1@a[1@r[3@ch/[1@x[1@8[1@6[1@/[1@b[1@o[3@ot/[1@b[1@zImage splat 98.splat save erom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$  - -[?2004l2018/12/20 10:41:35 Found 312 things - - - -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[312 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': .': futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom /': ./uinit -C=falseD': ./DXECLEANER 98.splat  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER 98.splat  -[?2004l+ echo TEST 98.splat -TEST 98.splat -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d 98.splat -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:43:04 Listening on 192.168.0.1:8080 at 2018-12-20 10:43:04.832175106 -0800 PST m=+0.004296397 -2018/12/20 10:45:28 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:47:35 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:47:35 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vo <./DXECLEANER 98.splat futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat save erom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$  - vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 323L, 9502C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init githubb.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \comment here \comment PcRtc \comment FpgaDxe \comment LegacyInterrupt \comment SmartTimer \comment LegacySredir \comment LegacyRegion2 \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l1,1 [?25h[?25l0,0-1[?25h[?25l9,1-8 [?25h[?25l8,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l9,1-8 [?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25ld:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean11,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l2,1-8[?25h[?25l-- INSERT --13,1Top13,1Top[?25h[?25l13,0-1Top[?25h[?25l2,1-8[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l2-9[?25h[?25l3-10[?25h[?25l4-11[?25h[?25l5-12[?25h[?25l6-13[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l9-16[?25h[?25l10-17[?25h[?25l9-16 [?25h[?25l8-15[?25h[?25l7-14[?25h[?25lyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot//bzImage splat drop /tmp/x saverom [?25h[?25lan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bbzImage splat drop /tmp/x saverom [?25h[?25ln7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzzImage splat drop /tmp/x saverom [?25h[?25l7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom [?25h[?25l102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l02.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom [?25h[?25l2.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom [?25h[?25l.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom [?25h[?25lbin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom [?25h[?25ln fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom [?25h[?25l fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom [?25h[?25l - futk fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER cleancomment LegacyInterrupt \12,7-14Top[?25h[?25l-- INSERT --12,7-14Topfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lpfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom8-15[?25h[?25llfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom9-16[?25h[?25l12,8-15Top[?25h[?25l1 change; before #16 1 seconds ago fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom 12,7-14Top[?25h[?25l5 2'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom./DXECLEANER clean12,7-14Top[?25h[?25l1 change; before #14 4 seconds agon fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom12,7-14Top[?25h[?25l3in fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom12,7-14Top[?25h[?25l2 5bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l1.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom12,7-14Top[?25h[?25l0 62.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom12,7-14Top[?25h[?25l9 7 seconds ago02.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom12,7-14Top[?25h[?25l8102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom12,7-14Top[?25h[?25l77102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom ./DXECLEANER clean12,7-14Top[?25h[?25l6n7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l5 8an7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bbzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l4yan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot//bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25l3 9tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom12,7-14Top[?25h[?25lfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splaat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l-- INSERT --12,7-14Top[?25h[?25l9fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spllat drop /tmp/x saverom ./DXECLEANER clean8-15[?25h[?25l8fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage spplat drop /tmp/x saverom9-16[?25h[?25l.fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage ssplat drop /tmp/x saverom10-17[?25h[?25lsfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom1-18[?25h[?25lpfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagee splat drop /tmp/x saverom2-19[?25h[?25llfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImagge splat drop /tmp/x saverom3-20[?25h[?25lafv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImaage splat drop /tmp/x saverom4-21[?25h[?25ltfv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImmage splat drop /tmp/x saverom5-22[?25h[?25l fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzIImage splat drop /tmp/x saverom ./DXECLEANER clean6-23[?25h[?25l12,15-22 Top[?25h[?25l6-23[?25h[?25l7-24[?25h[?25l8-25[?25h[?25l9-26[?25h[?25l - futk 98.splat fv ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER cleancomment LegacyInterrupt \12,19-26 Top[?25h[?25l6-23[?25h[?25lix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25lr r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25lr tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25ltag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25l /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l/tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom [?25h[?25l7-24[?25h[?25l8-25[?25h[?25l9-26[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l5-42[?25h[?25l2-39[?25h[?25l1-38[?25h[?25l23-30[?25h[?25l1-28[?25h[?25l0-27[?25h[?25l17-24[?25h[?25l6-23[?25h[?25lsaverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l/tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25lfv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean[?25h[?25l7-24[?25h[?25l9-26[?25h[?25l24-31[?25h[?25l5-32[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l47-54[?25h[?25l53-60[?25h[?25l8-65[?25h[?25lsaverom ./DXECLEANER clean[?25h[?25lclean[?25h[?25l1 change; before #30 1 seconds agosaverom ./DXECLEANER clean12,58-65 Top[?25h[?25l./DXECLEANER clean[?25h[?25l3-60[?25h[?25l47-54[?25h[?25l39-46[?25h[?25l8-45[?25h[?25l4-41[?25h[?25l3-40[?25h[?25l0-37[?25h[?25l29-36[?25h[?25l5-32[?25h[?25l4-31[?25h[?25l19-26[?25h[?25lsplat drop ./DXECLEANER clean[?25h[?25ldrop ./DXECLEANER clean[?25h[?25l./DXECLEANER clean[?25h[?25l1,2 [?25h[?25l0,0-1[?25h[?25l1,2 [?25h[?25l-- INSERT --11,2Top[?25h[?25l9:3[?25h[?25l0:4[?25h[?25l:3[?25h[?25l8:4[?25h[?25l11,3Top[?25h[?25l2,1-8[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 326L, 9545C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2018/12/20 10:49:31 Found 313 things -2018/12/20 10:49:31 script is ./DXECLEANER -2018/12/20 10:49:40 Try to remove 77EB6C06-FD48-488B-A1B3-AE0A70801369:EFI_FV_FILETYPE_DRIVER:CryptoDXE (77EB6C06-FD48-488B-A1B3-AE0A70801369) -2018/12/20 10:49:40 removed [0xc00bf05280] -+ echo TEST /tmp/futk824997279/1 -TEST /tmp/futk824997279/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:50:59 Listening on 192.168.0.1:8080 at 2018-12-20 10:50:59.60160588 -0800 PST m=+0.004628087 -2018/12/20 10:53:23 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 10:55:28 Accepted &{{0xc00013e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 10:55:28 We are now done ...................... -2018/12/20 10:55:28 Removed &{77EB6C06-FD48-488B-A1B3-AE0A70801369 77EB6C06-FD48-488B-A1B3-AE0A70801369:EFI_FV_FILETYPE_DRIVER:CryptoDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/1 -2018/12/20 10:55:28 Try to remove C9A6DE36-FDFF-4FAF-8343-85D9E3470F43:EFI_FV_FILETYPE_DRIVER:NvmeInt13 (C9A6DE36-FDFF-4FAF-8343-85D9E3470F43) -2018/12/20 10:55:28 removed [0xc000025380] -+ echo TEST /tmp/futk824997279/2 -TEST /tmp/futk824997279/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 10:56:48 Listening on 192.168.0.1:8080 at 2018-12-20 10:56:48.050349952 -0800 PST m=+0.005221750 -2018/12/20 10:59:11 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:01:17 Accepted &{{0xc00013e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:01:17 We are now done ...................... -2018/12/20 11:01:17 Removed &{C9A6DE36-FDFF-4FAF-8343-85D9E3470F43 C9A6DE36-FDFF-4FAF-8343-85D9E3470F43:EFI_FV_FILETYPE_DRIVER:NvmeInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/2 -2018/12/20 11:01:17 Try to remove 2DCA4D79-884F-46BD-8561-A290B1237109:EFI_FV_FILETYPE_DRIVER:TyanDxe (2DCA4D79-884F-46BD-8561-A290B1237109) -2018/12/20 11:01:17 removed [0xc00bf04e00] -+ echo TEST /tmp/futk824997279/3 -TEST /tmp/futk824997279/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:02:36 Listening on 192.168.0.1:8080 at 2018-12-20 11:02:36.263628608 -0800 PST m=+0.005619205 -2018/12/20 11:04:59 Accepted &{{0xc000178000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:07:05 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:07:05 We are now done ...................... -2018/12/20 11:07:05 Removed &{2DCA4D79-884F-46BD-8561-A290B1237109 2DCA4D79-884F-46BD-8561-A290B1237109:EFI_FV_FILETYPE_DRIVER:TyanDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk824997279/3 -2018/12/20 11:07:05 Try to remove 8B7E5420-1B71-442A-9916-C13A4FE02482:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXRP (8B7E5420-1B71-442A-9916-C13A4FE02482) -2018/12/20 11:07:05 removed [0xc000025d80] -+ echo TEST /tmp/futk824997279/4 -TEST /tmp/futk824997279/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:08:24 Listening on 192.168.0.1:8080 at 2018-12-20 11:08:24.694037977 -0800 PST m=+0.004816498 -2018/12/20 11:10:48 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:12:54 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:12:54 We are now done ...................... -2018/12/20 11:12:54 Removed &{8B7E5420-1B71-442A-9916-C13A4FE02482 8B7E5420-1B71-442A-9916-C13A4FE02482:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk824997279/4 -2018/12/20 11:12:54 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 11:12:54 removed [0xc000025280] -+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:14:13 Listening on 192.168.0.1:8080 at 2018-12-20 11:14:13.256591089 -0800 PST m=+0.003390009 -2018/12/20 11:16:36 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:19:36 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 11:19:36.606046751 -0800 PST m=+323.352845603 -2018/12/20 11:19:36 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 11:19:36 We are now done ...................... -2018/12/20 11:19:36 accept tcp 192.168.0.1:8080: i/o timeout -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK -[313 [/tmp/futk824997279/0 /tmp/futk824997279/1 /tmp/futk824997279/2 /tmp/futk824997279/3 /tmp/futk824997279/4] exit status 1]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98ls /tmp/futk* -[?2004l/tmp/futk014708097: -0 1 - -/tmp/futk070264706: -0 1 2 - -/tmp/futk121032350: -0 1 - -/tmp/futk127840641: -0 1 10 11 12 13 14 15 16 17 2 3 4 5 6 7 8 9 - -/tmp/futk162948653: -0 1 - -/tmp/futk189567496: -0 1 - -/tmp/futk198840797: -0 1 2 - -/tmp/futk199366987: -0 1 - -/tmp/futk329102038: -0 1 - -/tmp/futk336682591: -0 1 - -/tmp/futk537381858: -0 1 2 3 - -/tmp/futk574132931: -0 1 - -/tmp/futk641441460: -0 1 - -/tmp/futk708851694: - -/tmp/futk824997279: -0 1 2 3 4 5 - -/tmp/futk896688887: -0 1 - -/tmp/futk988397015: -0 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/futk824997279/4 fv ./DXECLEANER /tmp/futk824997279/4 -[?2004l+ echo TEST /tmp/futk824997279/4 -TEST /tmp/futk824997279/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/4 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 11:32:16 Listening on 192.168.0.1:8080 at 2018-12-20 11:32:16.176030264 -0800 PST m=+0.005587516 -2018/12/20 11:34:37 Accepted &{{0xc00016e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 11:36:43 Accepted &{{0xc00016e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 11:36:43 We are now done ...................... -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/4ls /tmp/futk*./DXECLEANER /tmp/futk824997279/45 -[?2004l+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:17:02 Listening on 192.168.0.1:8080 at 2018-12-20 12:17:02.889907672 -0800 PST m=+0.004593722 -2018/12/20 12:19:23 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:22:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:22:23.662165333 -0800 PST m=+320.776851295 -2018/12/20 12:22:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:22:23 We are now done ...................... -2018/12/20 12:22:23 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/5 -[?2004l+ echo TEST /tmp/futk824997279/5 -TEST /tmp/futk824997279/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk824997279/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:26:30 Listening on 192.168.0.1:8080 at 2018-12-20 12:26:30.136062592 -0800 PST m=+0.004862191 -2018/12/20 12:28:53 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:31:53 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:31:53.224521133 -0800 PST m=+323.093320584 -2018/12/20 12:31:53 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:31:53 We are now done ...................... -2018/12/20 12:31:53 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 xxx -bin.reset config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin tyan7102.bin yyy -blacklist DIT fail.bin L Makefile removesetupcrap.bin uinit -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi NOTESvi LIST -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"LIST" 15L, 673C▽ [>c]10;?]11;?remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF \ - remove 53BCC14F-C24F-434C-B294-8ED2D4CC1860 \ - remove 9B680FCE-AD6B-4F3A-B60B-F59899003443 \ - remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 \ - remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 \ - remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B \ - remove C10194E7-DEB2-4AF4-9EEE-BFFDE4D7D4C7 \ - remove A19B1FE7-C1BC-49F8-875F-54A5D542443F \ - remove 62D171CB-78CD-4480-8678-C6A2A797A8DE \ - remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E \ - remove 378D7B65-8DA9-4773-B6E4-A47826A833E1 \ - remove 40BEAB40-CECE-4909-B133-20A413AE19E9 \ - remove 63809859-F029-41C3-9F34-EEEB9EA787A5 \ - -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,3All]2;LIST (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;LIST[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hN[?25l[?25hO[?25l[?25hT[?25l[?25hE[?25l[?25hS[?25l[?25h [?25l"NOTES" 4L, 144CGPIO control functions in/usr/libexec/itami-host-power-control-common.sh/bin/reset works but I can't get power button to do anything useful. -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;NOTES (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;NOTES[?25h[?25l2[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l-- INSERT --5,1All]2;NOTES + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;NOTES[?25h[?25l6[?25h[?25li2[?25h[?25lf3[?25h[?25l4[?25h[?25lI5[?25h[?25l6[?25h[?25lr7[?25h[?25le8[?25h[?25lm9[?25h[?25lo10[?25h[?25lv1[?25h[?25le2[?25h[?25l3[?25h[?25lC4[?25h[?25ls5[?25h[?25lm6[?25h[?25lD7[?25h[?25lx8[?25h[?25le9[?25h[?25l,20[?25h[?25l1[?25h[?25lt2[?25h[?25lh3[?25h[?25le4[?25h[?25ln5[?25h[?25l6[?25h[?25lI7[?25h[?25l8[?25h[?25lc9[?25h[?25la30[?25h[?25ln1[?25h[?25l'2[?25h[?25lt3[?25h[?25l4[?25h[?25lr5[?25h[?25le6[?25h[?25l5[?25h[?25l4[?25h[?25lw5[?25h[?25la6[?25h[?25lr7[?25h[?25lm8[?25h[?25l9[?25h[?25lr40[?25h[?25le1[?25h[?25lb2[?25h[?25lo3[?25h[?25lo4[?25h[?25lt5[?25h[?25l6[?25h[?25lf7[?25h[?25lr8[?25h[?25lo9[?25h[?25lm50[?25h[?25l1[?25h[?25lt2[?25h[?25lh3[?25h[?25le4[?25h[?25l5[?25h[?25lk6[?25h[?25le7[?25h[?25lr8[?25h[?25ln9[?25h[?25le60[?25h[?25ll1[?25h[?25l7,1 [?25h[?25l8[?25h[?25lT2[?25h[?25lH3[?25h[?25le4[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25lh3[?25h[?25le4[?25h[?25l5[?25h[?25lp6[?25h[?25lo7[?25h[?25lw8[?25h[?25le9[?25h[?25l10[?25h[?25lc1[?25h[?25ly2[?25h[?25lc3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l9 [?25h[?25lr10[?25h[?25l1[?25h[?25lc2[?25h[?25ly3[?25h[?25lc4[?25h[?25ll5[?25h[?25le6[?25h[?25l7[?25h[?25lb8[?25h[?25li9[?25h[?25lt20[?25h[?25ls1[?25h[?25l2[?25h[?25la3[?25h[?25lr4[?25h[?25le5[?25h[?25l6[?25h[?25la7[?25h[?25l8[?25h[?25lm9[?25h[?25le30[?25h[?25ls1[?25h[?25ls2[?25h[?25l,3[?25h[?25l4[?25h[?25lD5[?25h[?25lX6[?25h[?25lE7[?25h[?25lC8[?25h[?25lL9[?25h[?25lE40[?25h[?25lR1[?25h[?25lN2[?25h[?25lA3[?25h[?25lE4[?25h[?25lR5[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25lA1[?25h[?25lN2[?25h[?25lE3[?25h[?25lR4[?25h[?25l5[?25h[?25ln6[?25h[?25lo7[?25h[?25lw8[?25h[?25l9[?25h[?25lh50[?25h[?25la1[?25h[?25ls2[?25h[?25l3[?25h[?25la4[?25h[?25l5[?25h[?25lr6[?25h[?25le7[?25h[?25ll8[?25h[?25li9[?25h[?25la60[?25h[?25lb1[?25h[?25ll2[?25h[?25le3[?25h[?25l4[?25h[?25lo5[?25h[?25ln6[?25h[?25le7[?25h[?25l.8[?25h[?25l8,67All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"NOTES" 8L, 275C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add ditgit status . -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: DXECLEANER - modified: Makefile - modified: NOTES - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - L - LIST - LOG - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - uinit - xxx - yyy - -no changes added to commit (use "git add" and/or "git commit -a") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git commit -as -[?2004lhint: Waiting for your editor to close the file... [?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"/usr/local/src/projects/nobinaryblobs/mainboards/.git/COMMIT_EDITMSG" 27L, 503C▽ [>c]10;?]11;?Signed-off-by: Ronald G. Minnich - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch master -# Your branch is up to date with 'origin/master'. -# -# Changes to be committed: -#modified: DXECLEANER -#modified: Makefile -#modified: NOTES -#modified: RUN3 -# -# Untracked files: -#98.splat -#L -#LIST -#LOG -#futk.remove.99/ -#initramfs.linux_amd64.cpio.lzma -#uinit -#xxx -#yyy -# -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,0-1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l3,6 [?25h[?25l5[?25h[?25l2,0-1[?25h[?25l1[?25h[?25l-- INSERT --1,1All[?25h[?25lF2]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25li3[?25h[?25ln4[?25h[?25la5[?25h[?25ll6[?25h[?25ly7[?25h[?25l6[?25h[?25ll7[?25h[?25ly8[?25h[?25l9[?25h[?25lg10[?25h[?25le1[?25h[?25lt2[?25h[?25l3[?25h[?25lp4[?25h[?25lo5[?25h[?25lw6[?25h[?25le7[?25h[?25lr8[?25h[?25l9[?25h[?25lr20[?25h[?25li1[?25h[?25lg2[?25h[?25lh3[?25h[?25lt4[?25h[?25l.5[?25h[?25l1,24All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l".git/COMMIT_EDITMSG" 27L, 527C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l [master a5333ed] Finally get power right. - 4 files changed, 2448 insertions(+), 673 deletions(-) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pusdh -[?2004lbash: pusdh: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd -[?2004lbash: pushd: no other directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/ -.bb/ .git/ uinit/ -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/ -.bb/ .git/ uinit/ -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ~/go/src/github.com/linuxboot/dut/uinit/u.in..bb/ -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ ls -[?2004ldut.go dut_test.go rpc.go uinit uinit.go -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ vi dut.go -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"dut.go" 97L, 2155C▽ [>c]10;?]11;?// This is a very simple dut program. It builds into one binary to implement -// both client and server. It's just easier to see both sides of the code and test -// that way. -package main - -import ("flag""fmt""log""net""net/rpc""time" -) - -var (host = flag.String("h", "192.168.0.1", "hostname")me = flag.String("me", "192.168.0.2", "dut hostname")port = flag.String("p", "8080", "port number")dir = flag.String("d", ".", "directory to serve")runDUT = flag.Bool("r", false, "run as the DUT controller")configNet = flag.Bool("C", true, "configure the network") -) - -func dutStart(t, host, port string) (net.Listener, error) {ln, err := net.Listen(t, host+":"+port)if err != nil {log.Print(err)return nil, err}log.Printf("Listening on %v at %v", ln.Addr(), time.Now())return ln, nil -} - -func dutAccept(l net.Listener) (net.Conn, error) {if err := l.(*net.TCPListener).SetDeadline(time.Now().Add(3 * time.Minute)); err != nil {return nil, err}c, err := l.Accept()if err != nil {log.Printf("Listen failed: %v at %v", err, time.Now())log.Print(err)return nil, err}log.Printf("Accepted %v", c)return c, nil -} - -func dutRPC(host, port string) error {l, err := dutStart("tcp", host, port)if err != nil {return err}c, err := dutAccept(l)if err != nil {return err}cl := rpc.NewClient(c)for _, cmd := range []struct {call stringargs interface{}} {{ "Command.Welcome", &RPCWelcome{}},{ "Command.Reboot", &RPCReboot{}},} {var r RPCResif err := cl.Call(cmd.call, cmd.args, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n", cmd.call, cmd.args, string(r.C))}if c, err = dutAccept(l); err != nil {return err}cl = rpc.NewClient(c)var r RPCResif err := cl.Call("Command.Welcome", &RPCWelcome{}, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n","Command.Welcome", nil, string(r.C))1,1Top]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lreturn nil -} - -func main() {flag.Parse()var err errorif *runDUT {err = dutRPC(*host, *port)} else {err = uinit(*host, *me, *port)}log.Printf("We are now done ......................")if err != nil{log.Fatal(err)} -}97,1Bot[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5,1 [?25h[?25l4,0-1[?25h[?25l{}3,1 [?25h[?25l{}2,1-8[?25h[?25l1,0-1[?25h[?25l0,1-8[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1,0-1[?25h[?25l0,1-8[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25l[?25hU[?25l[?25h[?25l[?25h[?25l67,1-8Bot[?25h[?25l drop]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go6-13[?25h[?25l1 change; before #1 0 seconds ago 67,1-8Bot]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l-- INSERT --67,1Botreturn err]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25lh2[?25h[?25ld3[?25h[?25lreturn err68,194%[?25h[?25l68,1-894%[?25h[?25l1 line less; before #2 1 seconds ago - return err}67,1-8Bot]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l:[?2004h[?25hq[?25l[?25h![?25l[?25h [?25l[?2004l]2;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit]1;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ pushd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 16L, 345C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -r -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l-- INSERT --17,1All]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le2[?25h[?25lc3[?25h[?25lh4[?25h[?25lo5[?25h[?25l6[?25h[?25l"7[?25h[?25lA8[?25h[?25lL9[?25h[?25lL10[?25h[?25l1[?25h[?25lD2[?25h[?25lO3[?25h[?25lN4[?25h[?25lE5[?25h[?25l"6[?25h[?25l17,15All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 361C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd -[?2004l~/go/src/github.com/linuxboot/dut/uinit /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ vi dut.go -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"dut.go" 97L, 2155C▽ [>c]10;?]11;?// This is a very simple dut program. It builds into one binary to implement -// both client and server. It's just easier to see both sides of the code and test -// that way. -package main - -import ("flag""fmt""log""net""net/rpc""time" -) - -var (host = flag.String("h", "192.168.0.1", "hostname")me = flag.String("me", "192.168.0.2", "dut hostname")port = flag.String("p", "8080", "port number")dir = flag.String("d", ".", "directory to serve")runDUT = flag.Bool("r", false, "run as the DUT controller")configNet = flag.Bool("C", true, "configure the network") -) - -func dutStart(t, host, port string) (net.Listener, error) {ln, err := net.Listen(t, host+":"+port)if err != nil {log.Print(err)return nil, err}log.Printf("Listening on %v at %v", ln.Addr(), time.Now())return ln, nil -} - -func dutAccept(l net.Listener) (net.Conn, error) {if err := l.(*net.TCPListener).SetDeadline(time.Now().Add(3 * time.Minute)); err != nil {return nil, err}c, err := l.Accept()if err != nil {log.Printf("Listen failed: %v at %v", err, time.Now())log.Print(err)return nil, err}log.Printf("Accepted %v", c)return c, nil -} - -func dutRPC(host, port string) error {l, err := dutStart("tcp", host, port)if err != nil {return err}c, err := dutAccept(l)if err != nil {return err}cl := rpc.NewClient(c)for _, cmd := range []struct {call stringargs interface{}} {{ "Command.Welcome", &RPCWelcome{}},{ "Command.Reboot", &RPCReboot{}},} {var r RPCResif err := cl.Call(cmd.call, cmd.args, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n", cmd.call, cmd.args, string(r.C))}if c, err = dutAccept(l); err != nil {return err}cl = rpc.NewClient(c)var r RPCResif err := cl.Call("Command.Welcome", &RPCWelcome{}, &r); err != nil {return err}fmt.Printf("%v(%v): %v\n","Command.Welcome", nil, string(r.C))1,1Top]2;dut.go (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lreturn nil -} - -func main() {flag.Parse()var err errorif *runDUT {err = dutRPC(*host, *port)} else {err = uinit(*host, *me, *port)}log.Printf("We are now done ......................")if err != nil{log.Fatal(err)} -}97,1Bot[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l-- INSERT --95,194% log.Fatal(err) - }]2;dut.go + (~/go/src/github.com/linuxboot/dut/uinit) - VIM]1;dut.go[?25h[?25l2-9[?25h[?25l3-17[?25h[?25ll4-18[?25h[?25ls5-19[?25h[?25l.6-20[?25h[?25lE7-21[?25h[?25lx8-22[?25h[?25l7-21[?25h[?25l6-20[?25h[?25l5-19[?25h[?25l4-18[?25h[?25l3-17[?25h[?25ll4-18[?25h[?25lo5-19[?25h[?25lg6-20[?25h[?25l.7-21[?25h[?25lP8-22[?25h[?25lrt10-24[?25h[?25li1-25[?25h[?25ln2-26[?25h[?25lt3-27[?25h[?25lf4-28[?25h[?25l3-27[?25h[?25l2-26[?25h[?25l1-25[?25h[?25l0-24[?25h[?25l9-23 [?25h[?25li10-24[?25h[?25ln1-25[?25h[?25lt2-26[?25h[?25l(3-27[?25h[?25l"4-28[?25h[?25l%5-29[?25h[?25lv6-30[?25h[?25l5-29[?25h[?25l4-28[?25h[?25l3-27[?25h[?25l2-26[?25h[?25lf3-27[?25h[?25l(4-28[?25h[?25l"5-29[?25h[?25l%6-30[?25h[?25lv7-31[?25h[?25l"8-32[?25h[?25l,9-33[?25h[?25l20-34[?25h[?25le1-35[?25h[?25lr2-36[?25h[?25lr3-37[?25h[?25l()4-38[?25h[?25l() log.Fatal(err)6,1 88[?25h[?25l2-9[?25h[?25l3-17[?25h[?25l4-25[?25h[?25l3-17[?25h[?25lo4-18[?25h[?25ls5-19[?25h[?25l.6-20[?25h[?25lE7-21[?25h[?25lx8-22[?25h[?25li9-23[?25h[?25lt10-24[?25h[?25l(1-25[?25h[?25l22-26[?25h[?25l(2)3-27[?25h[?25l96,12-26 88%[?25h[?25l(2)(err)7[?25h[?25l{}2-9 94[?25h[?25l{}6,2-16[?25h[?25l5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"dut.go" 98L, 2175C written ]2;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit]1;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinit -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l# github.com/linuxboot/dut/uinit -./dut.go:96:3: undefined: os -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ goimports 8-w *.go -[?2004lgo build -[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ go build -[?2004l[?2004h]0;rminnich@xcpu: ~/go/src/github.com/linuxboot/dut/uinitrminnich@xcpu:~/go/src/github.com/linuxboot/dut/uinit$ pushd -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -2018/12/20 12:35:59 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2018/12/20 12:35:59 Filename is /tmp/initramfs.linux_amd64.cpio -2018/12/20 12:36:07 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 2853746 Dec 20 12:36 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek bmake b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5141 kB -CRC bcf362bf -Kernel: arch/x86/boot/bzImage is ready (#74) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5279792 Dec 20 12:37 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [15@D': vi DXECLEANER[1@X./DXECLEANER /tmp/futk824997279/5  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER /tmp/futk824997279/5 (reverse-i-search)`': c': futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom p': cp /tmp/me.bin 3rdparty/blobs/baseboard-dragonegg/ [1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/me.bin 3rdparty/blobs/baseboard-dragonegg/ (reverse-i-search)`': f': make menuconfigu': ls /tmp/futk120101721/[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk120101721/history -[?2004l 1064 [2018-10-19 09:25:46 -0700] ls - 1065 [2018-10-19 09:25:49 -0700] tmux - 1066 [2018-11-01 14:35:04 -0700] cd /usr/local/src/projects/NERF/ - 1067 [2018-11-01 14:35:04 -0700] ls - 1068 [2018-11-01 14:35:20 -0700] find .. -name EATIT -print - 1069 [2018-11-01 14:35:25 -0700] ls prod - 1070 [2018-11-01 14:35:36 -0700] ls - 1071 [2018-11-01 14:35:43 -0700] cd ../nobinaryblobs/linux-4HEAD/ - 1072 [2018-11-01 14:35:43 -0700] ls - 1073 [2018-11-01 14:35:57 -0700] ~/go/bin/utk tyan7102.bin count - 1074 [2018-11-01 14:36:15 -0700] ~/go/bin/utk removesetupcrap.bin count|grep DRIVER - 1075 [2018-11-01 14:48:28 -0700] vi EATIT - 1076 [2018-11-01 14:50:12 -0700] ./EATIT - 1077 [2018-11-15 14:15:54 -0800] make cleanme - 1078 [2018-11-06 13:20:15 -0800] sudo minicom - 1079 [2018-11-06 13:21:02 -0800] dmesg - 1080 [2018-11-06 13:22:09 -0800] sudo minicom - 1081 [2018-11-09 16:24:23 -0800] echo reset > /dev/ttyUSB0 - 1082 [2018-11-09 16:24:33 -0800] cat /dev/ttyUSB0 - 1083 [2018-11-09 16:24:36 -0800] bg - 1084 [2018-11-09 16:24:41 -0800] echo reset > /dev/ttyUSB0 - 1085 [2018-11-09 16:24:47 -0800] fg - 1086 [2018-11-09 16:24:51 -0800] which reset - 1087 [2018-11-09 16:25:00 -0800] ls /etc/minicom usb1 - 1088 [2018-11-09 16:25:05 -0800] sudo minicom usb1 - 1089 [2018-11-09 16:25:19 -0800] cat /dev/ttyUSB0 - 1090 [2018-11-09 16:25:21 -0800] bg - 1091 [2018-11-09 16:25:28 -0800] echo /bin/reset > /dev/ttyUSB0 - 1092 [2018-11-09 16:25:43 -0800] fg - 1093 [2018-11-09 16:25:50 -0800] ls /etc/minicom - 1094 [2018-11-09 16:25:56 -0800] sudo minicom - 1095 [2018-11-09 16:28:33 -0800] cat /dev/ttyUSB0 - 1096 [2018-11-09 16:28:35 -0800] bg - 1097 [2018-11-09 16:35:17 -0800] echo cat /bin/reset > /dev/ttyUSB0 - 1098 [2018-11-09 16:50:29 -0800] cd go/src/github.com/linuxboot/dut/ - 1099 [2018-11-09 16:50:30 -0800] ls - 1100 [2018-11-09 16:50:39 -0800] vi uinit/uinit.go - 1101 [2018-11-09 16:50:44 -0800] vi dut - 1102 [2018-11-09 16:56:23 -0800] vi dut.go - 1103 [2018-11-09 16:56:59 -0800] git diff - 1104 [2018-11-09 16:57:18 -0800] git commit -as - 1105 [2018-11-09 16:57:29 -0800] git push - 1106 [2018-11-15 10:50:34 -0800] git log - 1107 [2018-11-15 10:50:45 -0800] git branch - 1108 [2018-11-15 10:50:55 -0800] git checkout -b characterio - 1109 [2018-11-15 12:46:02 -0800] jobs - 1110 [2018-11-15 12:46:22 -0800] echo cat /bin/reset >/dev/ttyUSB0 - 1111 [2018-11-15 12:46:28 -0800] fg - 1112 [2018-11-15 12:46:31 -0800] sudo minicom - 1113 [2018-11-15 12:47:04 -0800] cat /dev/ttyUSB0 - 1114 [2018-11-15 12:47:06 -0800] bg - 1115 [2018-11-16 10:00:59 -0800] echo /bin/reset >/dev/ttyUSB0 - 1116 [2018-11-16 10:01:01 -0800] fg - 1117 [2018-11-16 10:01:04 -0800] sudo minicom - 1118 [2018-11-16 10:01:23 -0800] cat /dev/ttyUSB0 - 1119 [2018-11-16 10:01:25 -0800] bg - 1120 [2018-11-16 10:16:41 -0800] make cleanme - 1121 [2018-11-09 13:46:47 -0800] cd - 1122 [2018-11-09 13:46:53 -0800] cd go/src/github.com/linuxboot/fiano/ - 1123 [2018-11-09 13:46:54 -0800] git pull - 1124 [2018-11-09 13:47:34 -0800] wget https://patch-diff.githubusercontent.com/raw/linuxboot/fiano/pull/227.patch - 1125 [2018-11-09 13:47:36 -0800] git diff - 1126 [2018-11-09 13:47:38 -0800] git show - 1127 [2018-11-09 13:47:46 -0800] history - 1128 [2018-11-09 13:47:50 -0800] more 227.patch - 1129 [2018-11-09 13:47:55 -0800] git patch 227.patch - 1130 [2018-11-09 13:48:02 -0800] git apply 227.patch - 1131 [2018-11-09 13:48:04 -0800] git show - 1132 [2018-11-09 13:48:08 -0800] git status - 1133 [2018-11-09 13:48:10 -0800] git diff - 1134 [2018-11-09 13:48:19 -0800] cd cmds/utk/ - 1135 [2018-11-09 13:48:21 -0800] go install - 1136 [2018-11-15 11:16:33 -0800] cd .././../../dut/ - 1137 [2018-11-15 11:16:34 -0800] ls - 1138 [2018-11-15 11:16:38 -0800] vi dut.go - 1139 [2018-11-15 11:17:15 -0800] git branch - 1140 [2018-11-15 11:17:18 -0800] git checkout master - 1141 [2018-11-15 11:17:19 -0800] git pull - 1142 [2018-11-15 11:17:23 -0800] ls - 1143 [2018-11-15 11:17:25 -0800] ls uinit - 1144 [2018-11-15 11:18:04 -0800] go build dut - 1145 [2018-11-15 11:18:09 -0800] go build - 1146 [2018-11-15 11:18:10 -0800] ls - 1147 [2018-11-15 11:18:14 -0800] ./dut - 1148 [2018-11-15 11:18:41 -0800] vi dut.go - 1149 [2018-11-15 11:45:35 -0800] cd uinit/ - 1150 [2018-11-15 11:45:41 -0800] git mv ../*.go . - 1151 [2018-11-15 11:45:42 -0800] ls - 1152 [2018-11-15 11:45:50 -0800] go build - 1153 [2018-11-15 11:45:51 -0800] ls - 1154 [2018-11-15 11:45:56 -0800] ls .. - 1155 [2018-11-15 11:46:01 -0800] go build - 1156 [2018-11-15 11:46:45 -0800] vi dut.go - 1157 [2018-11-15 11:47:02 -0800] go build - 1158 [2018-11-15 12:41:20 -0800] vi uinit.go - 1159 [2018-11-15 12:41:36 -0800] ./uinit - 1160 [2018-11-15 12:41:40 -0800] fg - 1161 [2018-11-15 12:42:50 -0800] go build - 1162 [2018-11-15 12:42:53 -0800] vi uinit.go - 1163 [2018-11-15 12:42:57 -0800] go build - 1164 [2018-11-15 12:42:59 -0800] ./uinit - 1165 [2018-11-15 12:48:47 -0800] vi uinit.go - 1166 [2018-11-15 12:49:08 -0800] vi dut.go - 1167 [2018-11-15 12:49:26 -0800] go build - 1168 [2018-11-15 12:49:28 -0800] vi dut.go - 1169 [2018-11-15 12:49:38 -0800] go build - 1170 [2018-11-15 12:59:04 -0800] vi dut.go - 1171 [2018-11-15 12:59:11 -0800] go build - 1172 [2018-11-15 12:59:14 -0800] ./uinit - 1173 [2018-11-15 13:09:21 -0800] vi dut.go - 1174 [2018-11-15 13:29:16 -0800] go build - 1175 [2018-11-15 14:02:57 -0800] cd ../../fiano/cmds/utk/ - 1176 [2018-11-15 14:02:58 -0800] ls - 1177 [2018-11-15 14:02:59 -0800] vi utk.go - 1178 [2018-11-15 14:03:05 -0800] ./ut - 1179 [2018-11-15 14:03:15 -0800] ~/go/bin/utk -h - 1180 [2018-11-15 14:03:21 -0800] git grep -i blacklist - 1181 [2018-11-15 14:03:33 -0800] git log - 1182 [2018-11-15 14:03:47 -0800] git show 241969791e4210d0592758149ecfcfdd48f248c0 - 1183 [2018-11-15 14:14:01 -0800] vi 241969791e4210d0592758149ecfcfdd48f248c0 - 1184 [2018-11-15 14:14:04 -0800] vi utk.go - 1185 [2018-11-15 14:14:19 -0800] vi ../../pkg/visitors/dxecleaner.go - 1186 [2018-11-16 10:07:40 -0800] git grep Failed - 1187 [2018-11-16 10:07:43 -0800] git grep Failed .. - 1188 [2018-11-16 10:07:46 -0800] git grep Failed ../.. - 1189 [2018-11-16 10:08:04 -0800] vi ../../pkg/visitors/dxecleaner.go - 1190 [2018-11-16 10:11:12 -0800] cd ../../pkg/visitors/ - 1191 [2018-11-16 10:11:14 -0800] go test -v - 1192 [2018-11-16 10:11:40 -0800] cd ../../cmds/utk/ - 1193 [2018-11-16 10:11:41 -0800] go install - 1194 [2018-11-16 10:11:51 -0800] git diff - 1195 [2018-11-16 10:12:00 -0800] git checkout -b moreinfo origin/master - 1196 [2018-11-16 10:12:04 -0800] git commit -as - 1197 [2018-11-16 10:12:49 -0800] git push rminnich - 1198 [2018-11-16 10:12:52 -0800] hub fork - 1199 [2018-11-16 10:12:59 -0800] vi .git/config - 1200 [2018-11-16 10:13:05 -0800] vi ./../../.git/config - 1201 [2018-11-16 10:13:21 -0800] hub fork - 1202 [2018-11-16 10:13:50 -0800] git remote show - 1203 [2018-11-16 10:13:59 -0800] git remote add rminnich git@github.com:rminnich/fiano - 1204 [2018-11-16 10:14:03 -0800] git push rminnich - 1205 [2018-11-16 10:14:15 -0800] hub pull-request - 1206 [2018-11-16 10:14:31 -0800] git remote show -v - 1207 [2018-11-16 10:14:37 -0800] git remote show - 1208 [2018-11-16 10:14:43 -0800] git remote -v show - 1209 [2018-11-16 10:14:45 -0800] git remote -v - 1210 [2018-11-16 10:15:03 -0800] hub pull-request - 1211 [2018-11-16 10:16:02 -0800] git fetch origin - 1212 [2018-11-16 10:36:10 -0800] pushd ../../pkg/ - 1213 [2018-11-16 10:36:10 -0800] ls - 1214 [2018-11-16 10:36:13 -0800] cd visitors/ - 1215 [2018-11-16 10:36:13 -0800] ls - 1216 [2018-11-16 10:36:17 -0800] vi dxecleaner.go - 1217 [2018-11-16 10:37:02 -0800] git grep -i type.*dxe .. - 1218 [2018-11-16 10:37:20 -0800] cd - 1219 [2018-11-16 10:37:32 -0800] cd go/src/github.com/linuxboot/dut/ - 1220 [2018-11-16 10:37:32 -0800] ls - 1221 [2018-11-16 10:37:47 -0800] cd /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/ - 1222 [2018-11-16 10:37:48 -0800] ls - 1223 [2018-11-16 10:37:57 -0800] jq < xxx - 1224 [2018-11-16 10:38:00 -0800] jq < xxx|less - 1225 [2018-11-16 10:38:10 -0800] jq < xxx - 1226 [2018-11-16 10:38:16 -0800] strace jq < xxx - 1227 [2018-11-16 10:38:25 -0800] jq < xxx > yyy - 1228 [2018-11-16 10:38:37 -0800] jq < xxx - 1229 [2018-11-16 10:38:41 -0800] jq < xxx > yyy - 1230 [2018-11-16 10:38:43 -0800] cat yyy - 1231 [2018-11-16 10:39:00 -0800] jq '.[]' < xxx - 1232 [2018-11-16 10:39:03 -0800] jq '.[]' < xxx |less - 1233 [2018-11-16 10:41:28 -0800] jq '.[]|arrays' < xxx |less - 1234 [2018-11-16 10:41:31 -0800] jq '.[]|arrays' < xxx - 1235 [2018-11-16 10:42:00 -0800] jq '.[]|.["sections"]' < xxx |less - 1236 [2018-11-16 10:42:12 -0800] jq '.[]|.[sections]' < xxx |less - 1237 [2018-11-16 10:42:41 -0800] jq '.[]|["Sections]' < xxx |less - 1238 [2018-11-16 10:42:47 -0800] jq '.[]|["Sections"]' < xxx |less - 1239 [2018-11-16 10:42:56 -0800] jq '.[]|.Sections[]' < xxx |less - 1240 [2018-11-16 10:43:50 -0800] jq '.[]|.Sections[].Encapsulated[]' < xxx |less - 1241 [2018-11-16 10:43:59 -0800] jq '.[]|.Sections[]|.Encapsulated[]' < xxx |less - 1242 [2018-11-16 10:44:09 -0800] jq '.[]|.Sections[]' < xxx |less - 1243 [2018-11-16 10:44:22 -0800] jq '.[]' < xxx - 1244 [2018-11-16 10:45:13 -0800] more xxx - 1245 [2018-11-16 10:46:15 -0800] jq '.[]|.Sections[2]' < xxx |less - 1246 [2018-11-16 10:46:26 -0800] jq '.[]|.Sections[0]' < xxx |less - 1247 [2018-11-16 10:47:20 -0800] jq '.[]|.Sections[.Type==2]' < xxx |less - 1248 [2018-11-16 10:47:48 -0800] jq '.[]|.Sections|.select(.Type==2)' < xxx |less - 1249 [2018-11-16 10:47:52 -0800] jq '.[]|.Sections|.select(.Type==2)' < xxx - 1250 [2018-11-16 10:48:06 -0800] jq '.[]|.Sections.select(.Type==2)' < xxx - 1251 [2018-11-16 10:49:39 -0800] jq '.[]|.Sections|select(.Type=="2")' < xxx - 1252 [2018-11-16 10:50:05 -0800] jq '.[]|.Sections[p)' < xxx - 1253 [2018-11-16 10:51:10 -0800] jq '.[]|.Sections[]|select(.Type=="2")' < xxx - 1254 [2018-11-16 10:51:20 -0800] jq '.[]|.Sections[]' < xxx - 1255 [2018-11-16 10:51:37 -0800] jq '.[]|.Sections[].Encapsulated[]' < xxx - 1256 [2018-11-16 10:51:46 -0800] jq '.[]|.Sections[]|.Encapsulated[]' < xxx - 1257 [2018-11-16 10:52:46 -0800] greo ccess LOG - 1258 [2018-11-16 10:52:50 -0800] grep ccess LOG - 1259 [2018-11-16 10:52:53 -0800] grep FAIL log - 1260 [2018-11-16 10:52:57 -0800] grep -i fail LOG - 1261 [2018-11-16 10:53:24 -0800] ~/go/bin/go utk dxeclean.bin find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 - 1262 [2018-11-16 10:53:28 -0800] ~/go/bin/utk dxeclean.bin find 16D0A23E-C09C-407D-A14A-AD058FDD0CA1 - 1263 [2018-11-16 10:53:42 -0800] cat blacklist - 1264 [2018-11-16 13:16:59 -0800] grep -i fail LOG - 1265 [2018-11-16 13:17:08 -0800] grep -i ucc LOG - 1266 [2018-11-16 13:19:47 -0800] jq -c to_entries < xxx - 1267 [2018-11-16 13:21:15 -0800] jq -c 'to_entries | select ( .Type == "EFI_FV_FILETYPE_DRIVER")' - 1268 [2018-11-16 13:21:19 -0800] jq -c 'to_entries | select ( .Type == "EFI_FV_FILETYPE_DRIVER")' /tmp/list - 1672 [2018-12-03 11:28:31 -0800] vi /tmp/list - 1673 [2018-12-03 11:33:45 -0800] vp futk.remove.99/99 remove99.bin - 1674 [2018-12-03 11:33:47 -0800] vi Makefile - 1675 [2018-12-03 11:34:29 -0800] fg - 1676 [2018-12-03 11:35:23 -0800] tmux - 1677 [2018-12-04 11:52:50 -0800] eval 'set +o history' 2>/dev/null || setopt HIST_IGNORE_SPACE 2>/dev/null - 1678 [2018-12-04 11:53:30 -0800] git ls-remote https://chrome-internal.googlesource.com/a/chromeos/manifest-internal.git - 1679 [2018-12-04 11:53:44 -0800] cd chromiumos/ - 1680 [2018-12-04 11:53:47 -0800] repo init -u https://chrome-internal.googlesource.com/chromeos/manifest-internal.git --repo-url='https://chromium.googlesource.com/external/repo.git' - 1681 [2018-12-04 11:55:27 -0800] repo init -u https://chromium.googlesource.com/chromiumos/manifest.git --repo-url https://chromium.googlesource.com/external/repo.git - 1682 [2018-12-04 11:55:45 -0800] which repo - 1683 [2018-12-04 11:55:57 -0800] ls -l ~/bin/repo - 1684 [2018-12-04 11:56:01 -0800] rm ~/bin/repo - 1685 [2018-12-04 11:56:18 -0800] sudo apt-get install git-core gitk git-gui curl lvm2 thin-provisioning-tools python-pkg-resources python-virtualenv python-oauth2client - 1686 [2018-12-04 11:56:44 -0800] which repo - 1687 [2018-12-04 11:57:29 -0800] cd .. - 1688 [2018-12-04 11:58:37 -0800] git clone https://chromium.googlesource.com/chromium/tools/depot_tools - 1689 [2018-12-04 11:58:40 -0800] vi ~/.git/config - 1690 [2018-12-04 11:59:17 -0800] git --debug - 1691 [2018-12-04 11:59:39 -0800] strace -s 1024 -f git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git - 1692 [2018-12-04 12:00:01 -0800] strace -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1693 [2018-12-04 12:00:10 -0800] strace -o shit -s 1024 -f git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git - 1694 [2018-12-04 12:00:13 -0800] vi shit - 1695 [2018-12-04 12:00:47 -0800] strace -o shit -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1696 [2018-12-04 12:00:49 -0800] vi shit - 1697 [2018-12-04 12:01:46 -0800] strace -ttt -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1698 [2018-12-04 12:02:02 -0800] wget http://chromium.googlesource.com/chromium/tools/depot_tools.git/ - 1699 [2018-12-04 12:02:14 -0800] strace -ttt -s 1024 -f git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1700 [2018-12-04 12:02:18 -0800] git clone http://chromium.googlesource.com/chromium/tools/depot_tools.git - 1701 [2018-12-04 12:02:27 -0800] git clone http://chromium.googlesource.com/chromium/tools/depot_tools - 1702 [2018-12-04 12:02:32 -0800] vi ~/.gitconfig - 1703 [2018-12-04 12:03:45 -0800] vi ~/.gitcookies - 1704 [2018-12-04 12:04:04 -0800] rm ~/.gitcookies - 1705 [2018-12-03 11:35:30 -0800] ls - 1706 [2018-12-03 11:35:31 -0800] cat ma - 1707 [2018-12-03 11:35:34 -0800] cat Makefile - 1708 [2018-12-03 11:35:38 -0800] make removefrom99 - 1709 [2018-12-03 11:35:49 -0800] echo *99* - 1710 [2018-12-03 11:35:57 -0800] ls - 1711 [2018-12-03 11:36:05 -0800] ls -l - 1712 [2018-12-03 11:36:25 -0800] cp futk.remove.99/99 remove99.bin - 1713 [2018-12-03 11:36:29 -0800] make removefrom99 - 1714 [2018-12-04 12:29:14 -0800] fg - 1715 [2018-12-04 12:29:16 -0800] history - 1716 [2018-12-10 13:06:19 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1717 [2018-12-10 13:06:19 -0800] ls - 1718 [2018-12-10 13:16:04 -0800] cd /usr/local/src/chromiumos/ - 1719 [2018-12-10 13:16:04 -0800] ls - 1720 [2018-12-10 13:16:06 -0800] ls .. - 1721 [2018-12-10 13:16:11 -0800] grep repo ./* - 1722 [2018-12-10 13:16:17 -0800] grep repo * - 1723 [2018-12-10 13:16:20 -0800] grep repo ../* - 1724 [2018-12-10 13:16:29 -0800] ls .. - 1725 [2018-12-10 13:16:50 -0800] ls - 1726 [2018-12-10 13:17:14 -0800] history | grep script - 1727 [2018-12-10 13:20:01 -0800] ls /usr/local/sc - 1728 [2018-12-10 13:20:05 -0800] ls /usr/local/src - 1729 [2018-12-10 13:20:26 -0800] history - 1730 [2018-12-10 13:21:00 -0800] ls - 1731 [2018-12-10 13:21:02 -0800] ls .. - 1732 [2018-12-10 13:21:05 -0800] ls ~ - 1733 [2018-12-10 13:21:18 -0800] more ~/L1NUXB00T - 1734 [2018-12-10 13:21:28 -0800] ls /usr/local/src/projects/ - 1735 [2018-12-10 13:21:31 -0800] ls /usr/local/src/projects/nobinaryblobs/ - 1736 [2018-12-10 13:21:41 -0800] ls /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1737 [2018-12-10 13:25:09 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1738 [2018-12-10 13:25:10 -0800] ls - 1739 [2018-12-10 13:25:19 -0800] cbfstool coreboot.rom print - 1740 [2018-12-10 13:28:40 -0800] cd /usr/local/src/chromiumos/ - 1741 [2018-12-10 13:28:42 -0800] du -s * - 1742 [2018-12-10 13:28:45 -0800] cd .. - 1743 [2018-12-10 13:28:51 -0800] sudo du -s chromiumos/ - 1744 [2018-12-10 14:02:14 -0800] cd projects/nobinaryblobs/dragonsegg/ - 1745 [2018-12-10 14:02:15 -0800] ls - 1746 [2018-12-10 14:02:20 -0800] cbfstool coreboot.rom print - 1747 [2018-12-11 10:23:29 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1748 [2018-12-11 10:23:30 -0800] ls - 1749 [2018-12-11 10:23:38 -0800] git clone git@github.com:torvalds/linux - 1750 [2018-12-11 10:27:56 -0800] cd linux/ - 1751 [2018-12-11 10:28:12 -0800] cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG . - 1752 [2018-12-11 10:28:17 -0800] cp CONFIG .config - 1753 [2018-12-11 10:28:21 -0800] make menuconfig - 1754 [2018-12-11 10:29:17 -0800] grep 64 .config - 1755 [2018-12-11 10:29:27 -0800] make - 1756 [2018-12-11 10:32:42 -0800] make -j32 - 1757 [2018-12-11 10:33:20 -0800] ls -l arch/x86/boot/bzImage - 1758 [2018-12-11 10:33:34 -0800] grep INITR .config - 1759 [2018-12-11 10:33:39 -0800] grep NET .config - 1760 [2018-12-11 10:33:44 -0800] cat CONFIG - 1761 [2018-12-11 10:34:09 -0800] rm .config - 1762 [2018-12-11 10:34:11 -0800] make mrproper - 1763 [2018-12-11 10:34:23 -0800] cat > .config - 1764 [2018-12-11 10:34:33 -0800] make -j64 - 1765 [2018-12-11 10:34:45 -0800] make mrproper - 1766 [2018-12-11 10:34:53 -0800] cat > .config - 1767 [2018-12-11 10:34:57 -0800] make menuconfig - 1768 [2018-12-11 10:35:07 -0800] make -j40 - 1769 [2018-12-11 10:35:51 -0800] ls -l arch/x86/boot/bzImage - 1770 [2018-12-11 10:36:12 -0800] make mrproper - 1771 [2018-12-11 10:36:22 -0800] more CONFIG - 1772 [2018-12-11 10:36:46 -0800] make -j40 - 1773 [2018-12-11 10:47:14 -0800] ls -l arch/x86/boot/bzImage - 1774 [2018-12-11 10:47:48 -0800] cat >> .config - 1775 [2018-12-11 10:47:52 -0800] make -j40 - 1776 [2018-12-11 10:48:23 -0800] make mrproper - 1777 [2018-12-11 10:51:21 -0800] make -j40 - 1778 [2018-12-11 10:51:45 -0800] make tinyconfig - 1779 [2018-12-11 10:51:52 -0800] make -j40 - 1780 [2018-12-11 10:58:31 -0800] ls -l arch/x86/boot/bzImage - 1781 [2018-12-11 10:58:35 -0800] cat >> .config - 1782 [2018-12-11 10:58:39 -0800] make menuconfig - 1783 [2018-12-11 10:58:48 -0800] make -j40 - 1784 [2018-12-11 11:03:21 -0800] ls -l arch/x86/boot/bzImage - 1785 [2018-12-11 11:04:15 -0800] cd ../coreboot/ - 1786 [2018-12-11 11:04:16 -0800] ls - 1787 [2018-12-11 11:05:10 -0800] cd .. - 1788 [2018-12-11 11:05:11 -0800] ls - 1789 [2018-12-11 11:05:38 -0800] cbfstool coreboot.rom print - 1790 [2018-12-11 11:05:40 -0800] cbfstool coreboot.rom - 1791 [2018-12-11 11:05:54 -0800] cbfstool coreboot.rom print - 1792 [2018-12-11 11:06:52 -0800] cbfstool coreboot.rom extract -n fallback/payload -f initramfs - 1793 [2018-12-11 11:07:19 -0800] cbfstool -m 386 coreboot.rom extract -n fallback/payload -f initramfs - 1794 [2018-12-11 11:15:25 -0800] cbfstool coreboot.rom extract -m x86 -n fallback/payload -f initramfs - 1795 [2018-12-11 11:15:29 -0800] file initramfs - 1796 [2018-12-11 11:16:34 -0800] (cd ~/go/src/github.com/u-root/u-root/cmds/bzimage/ && go install) - 1797 [2018-12-11 11:16:45 -0800] ls ~/go/bin - 1798 [2018-12-11 11:16:51 -0800] PATH=$PATH:~/go/bin - 1799 [2018-12-11 11:16:55 -0800] bzimage - 1800 [2018-12-11 11:17:29 -0800] bzimage extract initramfs i - 1801 [2018-12-11 11:17:39 -0800] hexdump -C initramfs |less - 1802 [2018-12-11 11:17:52 -0800] nm -n initramfs - 1803 [2018-12-11 11:17:56 -0800] file initramfs - 1804 [2018-12-11 11:18:04 -0800] readelf -l initramfs |less - 1805 [2018-12-11 11:23:19 -0800] pushd ~/go/src/github.com/u-root/u-root/ - 1806 [2018-12-11 11:23:24 -0800] go build ./u-root - 1807 [2018-12-11 11:23:26 -0800] go build ./u-root.go - 1808 [2018-12-11 11:24:25 -0800] ./u-root -build=bb minimal - 1809 [2018-12-11 11:24:43 -0800] popd - 1810 [2018-12-11 11:24:53 -0800] cp /tmp/initramfs.linux_amd64.cpio minimal.cpio - 1811 [2018-12-11 11:25:01 -0800] make menuconfig - 1812 [2018-12-11 11:25:06 -0800] cd linux/ - 1813 [2018-12-11 11:25:09 -0800] make menuconfig - 1814 [2018-12-11 11:25:50 -0800] cp ../minimal.cpio . - 1815 [2018-12-11 11:25:52 -0800] xz minimal.cpio - 1816 [2018-12-11 11:25:56 -0800] ls -l mini* - 1817 [2018-12-11 11:27:03 -0800] make -j40 - 1818 [2018-12-11 11:27:33 -0800] ls -l arch/x86/boot/bzImage - 1819 [2018-12-11 11:28:48 -0800] cd .. - 1820 [2018-12-11 11:28:56 -0800] cp coreboot.rom coreboot_minimal.rom - 1821 [2018-12-11 11:29:11 -0800] vi Makefile - 1822 [2018-12-11 11:29:33 -0800] rm coreboot_minimal.rom - 1823 [2018-12-11 11:29:34 -0800] fg - 1824 [2018-12-11 11:30:14 -0800] make minimal - 1825 [2018-12-11 11:30:38 -0800] fg - 1826 [2018-12-11 11:30:40 -0800] vi Makefile - 1827 [2018-12-11 11:30:49 -0800] make minimal - 1828 [2018-12-11 11:30:58 -0800] vi Makefile - 1829 [2018-12-11 11:31:03 -0800] make minimal - 1830 [2018-12-11 11:31:26 -0800] fg - 1831 [2018-12-11 11:31:28 -0800] vi Makefile - 1832 [2018-12-11 11:31:49 -0800] make - 1833 [2018-12-11 11:31:54 -0800] make minimal - 1834 [2018-12-11 11:32:09 -0800] cbfstool - 1835 [2018-12-11 11:32:47 -0800] fg - 1836 [2018-12-11 11:32:50 -0800] fgh - 1837 [2018-12-11 11:32:52 -0800] vi Makefile - 1838 [2018-12-11 11:34:10 -0800] vi ../coreboot/util/cbfstool/cbfs-payload-linux.c - 1839 [2018-12-11 11:35:14 -0800] strace -f -o shit make minimal - 1840 [2018-12-11 11:35:17 -0800] vi shit - 1841 [2018-12-11 11:36:02 -0800] cbfstool - 1842 [2018-12-11 11:36:54 -0800] cbfstool minimal.rom add-payload linux/vmlinux - 1843 [2018-12-11 11:37:08 -0800] cbfstool minimal.rom add-payload -n fallback/payload -f linux/vmlinux - 1844 [2018-12-11 11:37:19 -0800] make minimal - 1845 [2018-12-11 11:37:27 -0800] cbfstool minimal.rom print - 1846 [2018-12-11 11:38:16 -0800] cbfstool coreboot.rom print - 1847 [2018-12-11 11:39:49 -0800] pusdh - 1848 [2018-12-11 11:39:51 -0800] pushd - 1849 [2018-12-11 11:39:55 -0800] pushd ~/go/src/github.com/u-root/u-root/ - 1850 [2018-12-11 11:40:30 -0800] ./u-root -build=bb github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/init github.com/u-root/u-root/cmds/{ls,cat,date} - 1851 [2018-12-11 11:41:01 -0800] cpio -ivt < /tmp/initramfs.linux_amd64.cpio - 1852 [2018-12-11 11:41:06 -0800] pushd - 1853 [2018-12-11 11:41:18 -0800] cp /tmp/initramfs.linux_amd64.cpio 5commands.cpio - 1854 [2018-12-11 11:41:21 -0800] vi Makefile - 1855 [2018-12-11 11:41:53 -0800] cbfstool - 1856 [2018-12-11 11:42:01 -0800] fg - 1857 [2018-12-11 11:44:23 -0800] ls - 1858 [2018-12-11 11:44:29 -0800] make 5commands - 1859 [2018-12-11 11:44:39 -0800] vi Makefile - 1860 [2018-12-11 11:45:01 -0800] maek 5commands. - 1861 [2018-12-11 11:45:06 -0800] make 5commands - 1862 [2018-12-11 11:45:10 -0800] vi Makefile - 1863 [2018-12-11 11:45:24 -0800] make 5commands - 1864 [2018-12-11 11:45:28 -0800] vi Makefile - 1865 [2018-12-11 11:45:33 -0800] ls - 1866 [2018-12-11 11:45:45 -0800] rm 5commands.cpio.xz - 1867 [2018-12-11 11:45:48 -0800] cp /tmp/initramfs.linux_amd64.cpio 5commands.cpio - 1868 [2018-12-11 11:45:49 -0800] vi Makefile - 1869 [2018-12-11 11:45:51 -0800] fg - 1870 [2018-12-11 11:46:02 -0800] make 5commands - 1871 [2018-12-11 11:46:17 -0800] cd linux/ - 1872 [2018-12-11 11:46:19 -0800] vi .config - 1873 [2018-12-11 11:46:30 -0800] make -j40 - 1874 [2018-12-11 11:46:40 -0800] cd .. - 1875 [2018-12-11 11:46:42 -0800] make 5commands - 1876 [2018-12-11 11:46:52 -0800] cd linux/ - 1877 [2018-12-11 11:46:58 -0800] ls -l arch/x86/boot/bzImage - 1878 [2018-12-11 11:47:01 -0800] cd .. - 1879 [2018-12-11 19:54:18 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1880 [2018-12-11 19:54:18 -0800] ls - 1881 [2018-12-11 19:54:26 -0800] cp linux//.config /tmp - 1882 [2018-12-11 19:54:31 -0800] cp 5commands.cpio /tmp - 1883 [2018-12-11 19:55:47 -0800] cp linux/arch/x86/boot/bzImage /tmp - 1884 [2018-12-11 19:57:58 -0800] cat Makefile - 1885 [2018-12-11 16:18:46 -0800] make d - 1886 [2018-12-11 16:26:21 -0800] make i - 1887 [2018-12-11 16:26:35 -0800] make b - 1888 [2018-12-11 16:27:17 -0800] cat Makefile - 1889 [2018-12-11 16:27:55 -0800] : - 1890 [2018-12-11 16:27:58 -0800] acme Makefile - 1891 [2018-12-11 16:28:16 -0800] make d - 1892 [2018-12-11 16:31:21 -0800] ip a - 1893 [2018-12-11 16:31:29 -0800] ./uinit - - 1894 [2018-12-11 16:31:30 -0800] ./uinit -r - 1895 [2018-12-11 16:31:33 -0800] vi DXECLEANER - 1896 [2018-12-11 16:31:55 -0800] ls -l ./DXECLEANER - 1897 [2018-12-11 16:32:23 -0800] cat Makefile - 1898 [2018-12-11 16:32:40 -0800] futk /tmp/x fv ./DXECLEANER clean - 1899 [2018-12-11 16:47:57 -0800] make i - 1900 [2018-12-11 16:48:10 -0800] make b - 1901 [2018-12-11 16:48:28 -0800] make d - 1902 [2018-12-11 16:49:20 -0800] vi Makefile - 1903 [2018-12-11 16:49:26 -0800] which futk - 1904 [2018-12-11 16:49:55 -0800] futk /tmp/x fv ./DXECLEANER clean - 1905 [2018-12-12 09:20:30 -0800] cd /usr/local/src/projects/ - 1906 [2018-12-12 09:20:48 -0800] cd nobinaryblobs/mainboards/tyan7102/ - 1907 [2018-12-12 09:20:48 -0800] ls - 1908 [2018-12-12 09:20:49 -0800] git diff - 1909 [2018-12-12 09:21:16 -0800] git status - 1910 [2018-12-12 09:21:17 -0800] more LIST - 1911 [2018-12-12 09:21:23 -0800] more RUN3 - 1912 [2018-12-12 09:21:28 -0800] git add RUN3 - 1913 [2018-12-12 09:21:30 -0800] git commit -as - 1914 [2018-12-12 09:21:40 -0800] git push - 1915 [2018-12-12 09:21:54 -0800] ls resert - 1916 [2018-12-12 09:21:56 -0800] ls reset - 1917 [2018-12-12 09:22:01 -0800] ps ax | grep cat - 1918 [2018-12-12 09:22:09 -0800] ps ax | grep cat.*tty - 1919 [2018-12-12 09:22:16 -0800] ps ax | grep minicom - 1920 [2018-12-12 09:22:25 -0800] sudo minicom usb1 - 1921 [2018-12-12 09:22:52 -0800] vi bin.reset - 1922 [2018-12-12 09:23:19 -0800] git add bin.reset - 1923 [2018-12-12 09:23:25 -0800] git commit -as - 1924 [2018-12-12 09:23:35 -0800] git push - 1925 [2018-12-12 09:23:45 -0800] cat bin.reset - 1926 [2018-12-12 09:25:09 -0800] cd ../../dragonsegg/ - 1927 [2018-12-12 09:25:10 -0800] cd coreboot/ - 1928 [2018-12-12 09:25:11 -0800] ls - 1929 [2018-12-12 09:25:12 -0800] git pull - 1930 [2018-12-12 09:27:40 -0800] cd /usr/local/src/chromiumos/ - 1931 [2018-12-12 09:27:40 -0800] ls - 1932 [2018-12-12 09:27:51 -0800] PATH=$PATH:/usr/local/src/depot_tools/ - 1933 [2018-12-12 09:27:54 -0800] cros_sdk - 1934 [2018-12-12 10:12:19 -0800] reset - 1935 [2018-12-12 10:12:39 -0800] cd ../projects/nobinaryblobs/mainboards/tyan7102/ - 1936 [2018-12-12 10:12:40 -0800] ls - 1937 [2018-12-12 10:12:44 -0800] sudo minicom usb1 - 1938 [2018-12-12 09:36:48 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/ - 1939 [2018-12-12 09:36:48 -0800] ls - 1940 [2018-12-12 09:37:00 -0800] ls -l 5commands.rom - 1941 [2018-12-12 09:37:06 -0800] cbfstool print 5commands.rom - 1942 [2018-12-12 09:37:13 -0800] cbfstool 5commands.rom print - 1943 [2018-12-12 09:37:47 -0800] cbfstool 5commands.rom extract -m x86 -n fallback/payload -f 5commands.self - 1944 [2018-12-12 09:37:51 -0800] ls -l 5commands.self - 1945 [2018-12-12 09:38:01 -0800] cat Makefile - 1946 [2018-12-12 09:38:32 -0800] vi Makefile - 1947 [2018-12-12 09:40:01 -0800] cbfstool - 1948 [2018-12-12 09:40:22 -0800] fg - 1949 [2018-12-12 09:41:36 -0800] ls -l /usr/local/src/chromiumos/chroot/home/rminnich/trunk - 1950 [2018-12-12 09:41:56 -0800] ln -s /usr/local/src/chromiumos/chroot/home/rminnich chromehome - 1951 [2018-12-12 09:42:07 -0800] ls chromehome - 1952 [2018-12-12 09:42:22 -0800] vi Makefile - 1953 [2018-12-12 09:42:50 -0800] make shelley - 1954 [2018-12-12 14:40:32 -0800] cd /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/ - 1955 [2018-12-12 14:40:33 -0800] ls - 1956 [2018-12-12 14:40:36 -0800] sudo minicom usb1 - 1957 [2018-12-12 16:54:30 -0800] ls /tmp/futk120101721/ - 1958 [2018-12-12 15:44:15 -0800] sudo minicom - 1959 [2018-12-13 10:23:22 -0800] cd /usr/local/src/projects/nobinaryblobs/dragonsegg/coreboot/ - 1960 [2018-12-13 10:23:22 -0800] ls - 1961 [2018-12-13 10:23:27 -0800] ps ax | grep make - 1962 [2018-12-13 10:23:30 -0800] make - 1963 [2018-12-13 10:23:41 -0800] make iasl - 1964 [2018-12-13 10:23:46 -0800] make - 1965 [2018-12-13 10:27:38 -0800] cp ../config_dragonegg .config - 1966 [2018-12-13 10:27:39 -0800] make - 1967 [2018-12-13 10:27:58 -0800] make menuconfig - 1968 [2018-12-13 10:28:03 -0800] make - 1969 [2018-12-13 10:29:04 -0800] grep MAIN .config - 1970 [2018-12-13 10:36:23 -0800] mkdir -p 3rdparty/blobs/baseboard-dragonegg/fsp - 1971 [2018-12-13 10:36:29 -0800] cp /tmp/Fsp_M.fd 3rdparty/blobs/baseboard-dragonegg/fsp - 1972 [2018-12-13 10:36:30 -0800] make - 1973 [2018-12-13 10:37:03 -0800] cp /tmp/Fsp_S.fd 3rdparty/blobs/baseboard-dragonegg/fsp - 1974 [2018-12-13 10:37:07 -0800] make - 1975 [2018-12-13 10:38:05 -0800] cp /tmp/vbt.bin 3rdparty/blobs/baseboard-dragonegg/ - 1976 [2018-12-13 10:38:06 -0800] make - 1977 [2018-12-13 10:40:36 -0800] find /usr/local/src/chromiumos/ -name dragonsegg -type d -print - 1978 [2018-12-13 10:42:12 -0800] cp /tmp/ucode.bin 3rdparty/blobs/baseboard-dragonegg/ - 1979 [2018-12-13 10:42:14 -0800] make - 1980 [2018-12-13 10:44:26 -0800] vi .config - 1981 [2018-12-13 10:44:41 -0800] cp .config config+payload - 1982 [2018-12-13 10:44:44 -0800] make menuconfig - 1983 [2018-12-13 10:45:11 -0800] make - 1984 [2018-12-13 10:46:52 -0800] make Q= V=1 - 1985 [2018-12-13 10:48:01 -0800] cp /tmp/descriptor.bin 3rdparty/blobs/baseboard-dragonegg/ - 1986 [2018-12-13 10:48:01 -0800] make - 1987 [2018-12-13 10:48:18 -0800] make Q= V=1 - 1988* [2018-12-13 10:49:03 -0800] - 1989 [2018-12-13 10:49:04 -0800] make - 1990 [2018-12-13 10:49:26 -0800] history > ../IBUILTIT - 1991 [2018-12-13 16:43:03 -0800] make d - 1992 [2018-12-13 16:46:13 -0800] fgh - 1993 [2018-12-13 16:46:14 -0800] fg - 1994 [2018-12-13 16:46:19 -0800] jobs - 1995 [2018-12-14 15:08:31 -0800] futk /tmp/x fv ./DXECLEANER clean - 1996 [2018-12-14 16:39:03 -0800] dmesg - 1997 [2018-12-14 16:39:36 -0800] sudo dmesg -c - 1998 [2018-12-14 16:40:04 -0800] dmesg - 1999 [2018-12-20 09:52:31 -0800] ls - 2000 [2018-12-20 09:52:37 -0800] vi DXECLEANER - 2001 [2018-12-20 09:52:51 -0800] fg - 2002 [2018-12-20 09:53:23 -0800] ./futk ./futk.remove.99/99 fv - 2003 [2018-12-20 09:53:27 -0800] futk ./futk.remove.99/99 fv - 2004 [2018-12-20 09:58:24 -0800] ./DXECLEANER futk.remove.99/50 - 2005 [2018-12-20 10:04:00 -0800] vi DXECLEANER - 2006 [2018-12-20 10:04:23 -0800] ./DXECLEANER futk.remove.99/50 - 2007 [2018-12-20 10:09:41 -0800] ./DXECLEANER /tmp/x - 2008 [2018-12-20 10:19:37 -0800] ./DXECLEANER futk.remove.99/50 - 2009 [2018-12-20 10:23:21 -0800] ./DXECLEANER futk.remove.99/98 - 2010 [2018-12-20 10:27:06 -0800] futk futk.remove.99/98 bzImage splat 98.splat saverom - 2011 [2018-12-20 10:27:15 -0800] futk futk.remove.99/98 fv bzImage splat 98.splat saverom - 2012 [2018-12-20 10:27:40 -0800] ./DXECLEANER - 2013 [2018-12-20 10:27:46 -0800] ./DXECLEANER 98.splat - 2014 [2018-12-20 10:31:43 -0800] ls - 2015 [2018-12-20 10:31:58 -0800] more Makefile - 2016 [2018-12-20 10:32:20 -0800] make i - 2017 [2018-12-20 10:32:36 -0800] ./uinit - 2018 [2018-12-20 10:32:43 -0800] ./uinit -r - 2019 [2018-12-20 10:32:54 -0800] make b - 2020 [2018-12-20 10:33:14 -0800] futk futk.remove.99/98 fv bzImage splat 98.splat saverom - 2021* [2018-12-20 10:33:33 -0800] - 2022 [2018-12-20 10:37:06 -0800] ./uinit -h - 2023 [2018-12-20 10:37:25 -0800] ./uinit -C false & - 2024 [2018-12-20 10:37:30 -0800] fg - 2025 [2018-12-20 10:37:41 -0800] ./uinit -r & ./uinit -C=false - 2026 [2018-12-20 10:38:04 -0800] more Makefile - 2027 [2018-12-20 10:38:41 -0800] pushd ~/go/src/github.com/linuxboot/dut/uinit/ - 2028 [2018-12-20 10:38:43 -0800] go build - 2029 [2018-12-20 10:38:51 -0800] ./uinit -r & ./uinit -C=false - 2030 [2018-12-20 10:39:00 -0800] fg - 2031 [2018-12-20 10:39:14 -0800] ps ax | grep uinit - 2032 [2018-12-20 10:39:40 -0800] ./uinit -C=false - 2033 [2018-12-20 10:40:06 -0800] popd - 2034 [2018-12-20 10:40:10 -0800] cat Makefile - 2035 [2018-12-20 10:41:06 -0800] ls -l bzImage - 2036 [2018-12-20 10:41:10 -0800] rm bzImage - 2037 [2018-12-20 10:41:33 -0800] futk futk.remove.99/98 fv linux/arch/x86/boot/bzImage splat 98.splat saverom - 2038 [2018-12-20 10:41:54 -0800] ./DXECLEANER 98.splat - 2039 [2018-12-20 10:47:58 -0800] vi Makefile - 2040 [2018-12-20 10:49:28 -0800] make d98 - 2041 [2018-12-20 11:30:35 -0800] ls /tmp/futk* - 2042 [2018-12-20 11:30:57 -0800] ./DXECLEANER /tmp/futk824997279/4 - 2043* [2018-12-20 12:15:43 -0800] - 2044 [2018-12-20 12:32:13 -0800] ls - 2045 [2018-12-20 12:32:20 -0800] vi LIST - 2046 [2018-12-20 12:33:02 -0800] git status . - 2047 [2018-12-20 12:33:05 -0800] git commit -as - 2048 [2018-12-20 12:33:39 -0800] pusdh - 2049 [2018-12-20 12:33:40 -0800] pushd - 2050 [2018-12-20 12:33:59 -0800] pushd ~/go/src/github.com/linuxboot/dut/uinit/ - 2051 [2018-12-20 12:33:59 -0800] ls - 2052 [2018-12-20 12:34:05 -0800] vi dut.go - 2053 [2018-12-20 12:34:41 -0800] pushd - 2054 [2018-12-20 12:34:43 -0800] vi DXECLEANER - 2055 [2018-12-20 12:35:13 -0800] pushd - 2056 [2018-12-20 12:35:20 -0800] vi dut.go - 2057 [2018-12-20 12:35:41 -0800] go build - 2058 [2018-12-20 12:35:47 -0800] goimports -w *.go - 2059 [2018-12-20 12:35:54 -0800] go build - 2060 [2018-12-20 12:35:57 -0800] pushd - 2061 [2018-12-20 12:35:58 -0800] make i - 2062 [2018-12-20 12:36:51 -0800] make b - 2063 [2018-12-20 12:37:19 -0800] history -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ls /tmp/*/4 -[?2004l/tmp/futk127840641/4 /tmp/futk824997279/4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/futk824997279/tmp/futk824997279/4 runRUN4.4.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 326L, 9545C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init githubb.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \comment here \comment PcRtc \comment FpgaDxe \comment LegacyInterrupt \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25ld98:futk 98.splat fv ./DXECLEANER clean14,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l5,1-8[?25h[?25l2-9[?25h[?25l7-14[?25h[?25l9-16[?25h[?25l7-14[?25h[?25l8.splat fv ./DXECLEANER clean[?25h[?25l.splat fv ./DXECLEANER clean[?25h[?25lsplat fv ./DXECLEANER clean[?25h[?25lplat fv ./DXECLEANER clean[?25h[?25llat fv ./DXECLEANER clean[?25h[?25lat fv ./DXECLEANER clean[?25h[?25lt fv ./DXECLEANER clean[?25h[?25l fv ./DXECLEANER clean[?25h[?25l-- INSERT --15,7-14Top[?25h[?25lR fv ./DXECLEANER clean8-15[?25h[?25lU fv ./DXECLEANER clean9-16[?25h[?25lN fv ./DXECLEANER clean10-17[?25h[?25l4 fv ./DXECLEANER clean1-18[?25h[?25l. fv ./DXECLEANER clean2-19[?25h[?25l4 fv ./DXECLEANER clean3-20[?25h[?25l. fv ./DXECLEANER clean4-21[?25h[?25lr fv ./DXECLEANER clean5-22[?25h[?25lo fv ./DXECLEANER clean6-23[?25h[?25lm fv ./DXECLEANER clean7-24[?25h[?25l15,16-23 Top[?25h[?25l-- INSERT --16,1Top16,1Top[?25h[?25l16,0-1Top[?25h[?25l5,1-8[?25h[?25l4,4 [?25h[?25l3[?25h[?25l2[?25h[?25l8:[?25h[?25l5[?25h[?25l4[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9589C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sls -[?2004l98.splat commentsetupcrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LIST removeBMCcrap.bin RUN3 x.bin -bin.reset config-4.13.0-rc7 EATIT ipmisucks.bin LOG removemorecrap.bin RUN4.4.rom xxx -blacklist DIT fail.bin L Makefile removesetupcrap.bin tyan7102.bin yyy -commentmorecrap.bin dxeclean.bin futk.remove.99 linux NOTES removesomecrap.bin uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN -RUN3 RUN4.4.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ script RUN4 -[?2004lScript started, file is RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:46:03 Listening on 192.168.0.1:8080 at 2018-12-20 12:46:03.780886704 -0800 PST m=+0.005034144 -2018/12/20 12:48:24 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:50:31 Accepted &{{0xc00013a080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:50:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/2 -2018/12/20 12:50:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2018/12/20 12:50:31 removed [0xc000025c80] -+ echo TEST /tmp/futk925337781/3 -TEST /tmp/futk925337781/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:51:50 Listening on 192.168.0.1:8080 at 2018-12-20 12:51:50.227456387 -0800 PST m=+0.005158566 -2018/12/20 12:54:14 Accepted &{{0xc000148080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:56:20 Accepted &{{0xc000148180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:56:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3 -2018/12/20 12:56:20 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2018/12/20 12:56:20 removed [0xc0081d1c80] -+ echo TEST /tmp/futk925337781/4 -TEST /tmp/futk925337781/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:57:35 Listening on 192.168.0.1:8080 at 2018-12-20 12:57:35.623116445 -0800 PST m=+0.005039982 -2018/12/20 13:00:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 13:00:35.623594932 -0800 PST m=+180.005518262 -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 We are now done ...................... -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2018/12/20 13:00:35 removed [0xc000024180] -+ echo TEST /tmp/futk925337781/5 -TEST /tmp/futk925337781/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:01:54 Listening on 192.168.0.1:8080 at 2018-12-20 13:01:54.539280467 -0800 PST m=+0.004759517 -2018/12/20 13:04:18 Accepted &{{0xc000136080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:06:24 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:06:24 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/5 -2018/12/20 13:06:24 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2018/12/20 13:06:24 removed [0xc008190280] -+ echo TEST /tmp/futk925337781/6 -TEST /tmp/futk925337781/6 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/6 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:07:42 Listening on 192.168.0.1:8080 at 2018-12-20 13:07:42.852856141 -0800 PST m=+0.004094102 -2018/12/20 13:10:06 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:12:12 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:12:12 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6 -2018/12/20 13:12:12 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2018/12/20 13:12:12 removed [0xc008191a80] -+ echo TEST /tmp/futk925337781/7 -TEST /tmp/futk925337781/7 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/7 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:13:31 Listening on 192.168.0.1:8080 at 2018-12-20 13:13:31.437604493 -0800 PST m=+0.004177998 -2018/12/20 13:15:54 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:18:00 Accepted &{{0xc00014e080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:18:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/7 -2018/12/20 13:18:00 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2018/12/20 13:18:00 removed [0xc008191380] -+ echo TEST /tmp/futk925337781/8 -TEST /tmp/futk925337781/8 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/8 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:19:19 Listening on 192.168.0.1:8080 at 2018-12-20 13:19:19.603503008 -0800 PST m=+0.004415854 -2018/12/20 13:21:43 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:23:49 Accepted &{{0xc00013a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/8 -2018/12/20 13:23:49 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2018/12/20 13:23:49 removed [0xc000025d00] -+ echo TEST /tmp/futk925337781/9 -TEST /tmp/futk925337781/9 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/9 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:25:07 Listening on 192.168.0.1:8080 at 2018-12-20 13:25:07.76282306 -0800 PST m=+0.004422579 -2018/12/20 13:27:31 Accepted &{{0xc000148100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:29:37 Accepted &{{0xc000148200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:29:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9 -2018/12/20 13:29:37 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2018/12/20 13:29:37 removed [0xc008191480] -+ echo TEST /tmp/futk925337781/10 -TEST /tmp/futk925337781/10 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/10 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:30:56 Listening on 192.168.0.1:8080 at 2018-12-20 13:30:56.15073056 -0800 PST m=+0.004445203 -2018/12/20 13:33:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:35:25 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:35:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/10 -2018/12/20 13:35:25 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2018/12/20 13:35:25 removed [0xc008191980] -+ echo TEST /tmp/futk925337781/11 -TEST /tmp/futk925337781/11 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/11 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:36:43 Listening on 192.168.0.1:8080 at 2018-12-20 13:36:43.750202933 -0800 PST m=+0.004256668 -2018/12/20 13:39:07 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:41:13 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:41:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/11 -2018/12/20 13:41:13 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2018/12/20 13:41:13 removed [0xc0084f8500] -+ echo TEST /tmp/futk925337781/12 -TEST /tmp/futk925337781/12 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/12 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:42:32 Listening on 192.168.0.1:8080 at 2018-12-20 13:42:32.023047406 -0800 PST m=+0.003844326 -2018/12/20 13:44:55 Accepted &{{0xc00015c000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:47:01 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:47:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12 -2018/12/20 13:47:01 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2018/12/20 13:47:01 removed [0xc008190a80] -+ echo TEST /tmp/futk925337781/13 -TEST /tmp/futk925337781/13 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/13 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:48:20 Listening on 192.168.0.1:8080 at 2018-12-20 13:48:20.25521162 -0800 PST m=+0.005265737 -2018/12/20 13:50:43 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:52:49 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:52:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/13 -2018/12/20 13:52:49 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2018/12/20 13:52:49 removed [0xc008191100] -+ echo TEST /tmp/futk925337781/14 -TEST /tmp/futk925337781/14 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/14 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:54:08 Listening on 192.168.0.1:8080 at 2018-12-20 13:54:08.051297567 -0800 PST m=+0.004703264 -2018/12/20 13:56:31 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:58:37 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:58:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/14 -2018/12/20 13:58:37 Try to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347:EFI_FV_FILETYPE_DRIVER:AmiBoardInfo2 (9F3A0016-AE55-4288-829D-D55FD3AAC347) -2018/12/20 13:58:37 removed [0xc000025180] -+ echo TEST /tmp/futk925337781/15 -TEST /tmp/futk925337781/15 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/15 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:59:55 Listening on 192.168.0.1:8080 at 2018-12-20 13:59:55.875862819 -0800 PST m=+0.005233399 -2018/12/20 14:02:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:02:55.876362681 -0800 PST m=+180.005733076 -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 We are now done ...................... -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2018/12/20 14:02:55 removed [0xc000025900] -+ echo TEST /tmp/futk925337781/16 -TEST /tmp/futk925337781/16 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/16 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:04:14 Listening on 192.168.0.1:8080 at 2018-12-20 14:04:14.279108354 -0800 PST m=+0.004512363 -2018/12/20 14:06:38 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:08:44 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:08:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16 -2018/12/20 14:08:44 Try to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017:EFI_FV_FILETYPE_DRIVER:PciPlatform (E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017) -2018/12/20 14:08:44 removed [0xc000025580] -+ echo TEST /tmp/futk925337781/17 -TEST /tmp/futk925337781/17 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/17 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:10:02 Listening on 192.168.0.1:8080 at 2018-12-20 14:10:02.898391295 -0800 PST m=+0.005366065 -2018/12/20 14:13:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:13:02.898837903 -0800 PST m=+180.005812477 -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 We are now done ...................... -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 Try to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1:EFI_FV_FILETYPE_DRIVER:ACPI (16D0A23E-C09C-407D-A14A-AD058FDD0CA1) -2018/12/20 14:13:02 removed [0xc000024d00] -+ echo TEST /tmp/futk925337781/18 -TEST /tmp/futk925337781/18 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/18 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:14:21 Listening on 192.168.0.1:8080 at 2018-12-20 14:14:21.227350863 -0800 PST m=+0.004798021 -2018/12/20 14:17:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:17:21.227773117 -0800 PST m=+180.005220134 -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 We are now done ...................... -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2018/12/20 14:17:21 removed [0xc000025080] -+ echo TEST /tmp/futk925337781/19 -TEST /tmp/futk925337781/19 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/19 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:18:39 Listening on 192.168.0.1:8080 at 2018-12-20 14:18:39.454710481 -0800 PST m=+0.005468106 -2018/12/20 14:20:59 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:23:05 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:23:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/19 -2018/12/20 14:23:05 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2018/12/20 14:23:05 removed [0xc000024f80] -+ echo TEST /tmp/futk925337781/20 -TEST /tmp/futk925337781/20 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/20 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:24:23 Listening on 192.168.0.1:8080 at 2018-12-20 14:24:23.70163879 -0800 PST m=+0.005006947 -2018/12/20 14:26:47 Accepted &{{0xc000160100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:28:52 Accepted &{{0xc000160200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:28:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/20 -2018/12/20 14:28:52 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2018/12/20 14:28:52 removed [0xc000024d80] -+ echo TEST /tmp/futk925337781/21 -TEST /tmp/futk925337781/21 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/21 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:30:10 Listening on 192.168.0.1:8080 at 2018-12-20 14:30:10.891835915 -0800 PST m=+0.005548472 -2018/12/20 14:32:34 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:34:40 Accepted &{{0xc000156080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:34:40 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/21 -2018/12/20 14:34:40 Try to remove 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe (80CF7257-87AB-47F9-A3FE-D50B76D89541) -2018/12/20 14:34:40 removed [0xc0084f8380] -+ echo TEST /tmp/futk925337781/22 -TEST /tmp/futk925337781/22 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/22 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:35:58 Listening on 192.168.0.1:8080 at 2018-12-20 14:35:58.491482834 -0800 PST m=+0.003533855 -2018/12/20 14:38:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:38:58.491841772 -0800 PST m=+180.003892685 -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 We are now done ...................... -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2018/12/20 14:38:58 removed [0xc008191900] -+ echo TEST /tmp/futk925337781/23 -TEST /tmp/futk925337781/23 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/23 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:40:16 Listening on 192.168.0.1:8080 at 2018-12-20 14:40:16.584140961 -0800 PST m=+0.005293856 -2018/12/20 14:42:40 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:44:46 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:44:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/23 -2018/12/20 14:44:46 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2018/12/20 14:44:46 removed [0xc008191200] -+ echo TEST /tmp/futk925337781/24 -TEST /tmp/futk925337781/24 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/24 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:46:04 Listening on 192.168.0.1:8080 at 2018-12-20 14:46:04.680644696 -0800 PST m=+0.005399078 -2018/12/20 14:48:28 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:50:33 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:50:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24 -2018/12/20 14:50:33 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2018/12/20 14:50:33 removed [0xc000025880] -+ echo TEST /tmp/futk925337781/25 -TEST /tmp/futk925337781/25 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/25 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:51:52 Listening on 192.168.0.1:8080 at 2018-12-20 14:51:52.161382596 -0800 PST m=+0.002835227 -2018/12/20 14:54:12 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:56:17 Accepted &{{0xc00014a100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:56:17 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/25 -2018/12/20 14:56:17 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2018/12/20 14:56:17 removed [0xc008191400] -+ echo TEST /tmp/futk925337781/26 -TEST /tmp/futk925337781/26 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/26 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:57:36 Listening on 192.168.0.1:8080 at 2018-12-20 14:57:36.140896232 -0800 PST m=+0.004997766 -2018/12/20 14:59:59 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:02:05 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:02:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/26 -2018/12/20 15:02:05 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2018/12/20 15:02:05 removed [0xc0084f8580] -+ echo TEST /tmp/futk925337781/27 -TEST /tmp/futk925337781/27 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/27 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:03:23 Listening on 192.168.0.1:8080 at 2018-12-20 15:03:23.554884706 -0800 PST m=+0.004972462 -2018/12/20 15:05:47 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:07:52 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:07:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/27 -2018/12/20 15:07:52 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2018/12/20 15:07:52 removed [0xc008190680] -+ echo TEST /tmp/futk925337781/28 -TEST /tmp/futk925337781/28 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/28 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:09:10 Listening on 192.168.0.1:8080 at 2018-12-20 15:09:10.874233313 -0800 PST m=+0.004453773 -2018/12/20 15:11:35 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:13:41 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:13:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28 -2018/12/20 15:13:41 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2018/12/20 15:13:41 removed [0xc000025500] -+ echo TEST /tmp/futk925337781/29 -TEST /tmp/futk925337781/29 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/29 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:14:59 Listening on 192.168.0.1:8080 at 2018-12-20 15:14:59.488662872 -0800 PST m=+0.004774153 -2018/12/20 15:17:22 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:20:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 15:20:22.574051137 -0800 PST m=+323.090162248 -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 We are now done ...................... -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2018/12/20 15:20:22 removed [0xc000025400] -+ echo TEST /tmp/futk925337781/30 -TEST /tmp/futk925337781/30 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/30 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:21:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:21:41.383482233 -0800 PST m=+0.002904115 -2018/12/20 15:24:05 Accepted &{{0xc000158000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:26:10 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:26:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/30 -2018/12/20 15:26:10 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2018/12/20 15:26:10 removed [0xc008191580] -+ echo TEST /tmp/futk925337781/31 -TEST /tmp/futk925337781/31 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/31 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:27:29 Listening on 192.168.0.1:8080 at 2018-12-20 15:27:29.258208759 -0800 PST m=+0.005189823 -2018/12/20 15:29:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:31:58 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:31:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/31 -2018/12/20 15:31:58 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2018/12/20 15:31:58 removed [0xc000024400] -+ echo TEST /tmp/futk925337781/32 -TEST /tmp/futk925337781/32 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/32 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:33:17 Listening on 192.168.0.1:8080 at 2018-12-20 15:33:17.128157519 -0800 PST m=+0.004507699 -2018/12/20 15:35:40 Accepted &{{0xc00014c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:37:46 Accepted &{{0xc00014c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:37:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/32 -2018/12/20 15:37:46 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2018/12/20 15:37:46 removed [0xc000024e00] -+ echo TEST /tmp/futk925337781/33 -TEST /tmp/futk925337781/33 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/33 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:39:05 Listening on 192.168.0.1:8080 at 2018-12-20 15:39:05.286626817 -0800 PST m=+0.004493377 -2018/12/20 15:41:28 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:43:34 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:43:34 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33 -2018/12/20 15:43:34 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2018/12/20 15:43:34 removed [0xc008191280] -+ echo TEST /tmp/futk925337781/34 -TEST /tmp/futk925337781/34 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/34 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:44:53 Listening on 192.168.0.1:8080 at 2018-12-20 15:44:53.383915713 -0800 PST m=+0.004908909 -2018/12/20 15:47:17 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:49:22 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:49:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/34 -2018/12/20 15:49:22 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2018/12/20 15:49:22 removed [0xc000025f00] -+ echo TEST /tmp/futk925337781/35 -TEST /tmp/futk925337781/35 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/35 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:50:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:50:41.334210235 -0800 PST m=+0.005179862 -2018/12/20 15:53:04 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:55:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:55:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35 -2018/12/20 15:55:10 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2018/12/20 15:55:10 removed [0xc000024b00] -+ echo TEST /tmp/futk925337781/36 -TEST /tmp/futk925337781/36 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/36 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:56:28 Listening on 192.168.0.1:8080 at 2018-12-20 15:56:28.978216852 -0800 PST m=+0.004335817 -2018/12/20 15:58:52 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:00:58 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:00:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/36 -2018/12/20 16:00:58 Try to remove A0BAD9F7-AB78-491B-B583-C52B7F84B9E0:EFI_FV_FILETYPE_DRIVER:SmmControl (A0BAD9F7-AB78-491B-B583-C52B7F84B9E0) -2018/12/20 16:00:58 removed [0xc008191080] -+ echo TEST /tmp/futk925337781/37 -TEST /tmp/futk925337781/37 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/37 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:02:16 Listening on 192.168.0.1:8080 at 2018-12-20 16:02:16.903857431 -0800 PST m=+0.005434827 -2018/12/20 16:05:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:05:16.904347909 -0800 PST m=+180.005925115 -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 We are now done ...................... -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2018/12/20 16:05:16 removed [0xc000025b00] -+ echo TEST /tmp/futk925337781/38 -TEST /tmp/futk925337781/38 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/38 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:06:35 Listening on 192.168.0.1:8080 at 2018-12-20 16:06:35.058778571 -0800 PST m=+0.004941072 -2018/12/20 16:08:58 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:11:04 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:11:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38 -2018/12/20 16:11:04 Try to remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF:EFI_FV_FILETYPE_DRIVER:Bds (8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF) -2018/12/20 16:11:04 removed [0xc000024300] -+ echo TEST /tmp/futk925337781/39 -TEST /tmp/futk925337781/39 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/39 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:12:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:12:22.712610466 -0800 PST m=+0.005274340 -2018/12/20 16:15:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:15:22.713095197 -0800 PST m=+180.005758864 -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 We are now done ...................... -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 Try to remove 2FA2A6DA-11D5-4DC3-999A-749648B03C56:EFI_FV_FILETYPE_DRIVER:PiSmmIpl (2FA2A6DA-11D5-4DC3-999A-749648B03C56) -2018/12/20 16:15:22 removed [0xc008190e00] -+ echo TEST /tmp/futk925337781/40 -TEST /tmp/futk925337781/40 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/40 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:16:40 Listening on 192.168.0.1:8080 at 2018-12-20 16:16:40.97049864 -0800 PST m=+0.004998527 -2018/12/20 16:19:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:19:40.970921052 -0800 PST m=+180.005420863 -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 We are now done ...................... -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2018/12/20 16:19:40 removed [0xc008191300] -+ echo TEST /tmp/futk925337781/41 -TEST /tmp/futk925337781/41 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/41 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:20:59 Listening on 192.168.0.1:8080 at 2018-12-20 16:20:59.024877143 -0800 PST m=+0.005239209 -2018/12/20 16:23:22 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:25:28 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:25:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41 -2018/12/20 16:25:28 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2018/12/20 16:25:28 removed [0xc008190800] -+ echo TEST /tmp/futk925337781/42 -TEST /tmp/futk925337781/42 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/42 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:26:46 Listening on 192.168.0.1:8080 at 2018-12-20 16:26:46.6244388 -0800 PST m=+0.005275603 -2018/12/20 16:29:10 Accepted &{{0xc00017e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:31:15 Accepted &{{0xc00015c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:31:15 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42 -2018/12/20 16:31:15 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2018/12/20 16:31:15 removed [0xc000025700] -+ echo TEST /tmp/futk925337781/43 -TEST /tmp/futk925337781/43 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/43 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:32:34 Listening on 192.168.0.1:8080 at 2018-12-20 16:32:34.901920731 -0800 PST m=+0.005000936 -2018/12/20 16:34:58 Accepted &{{0xc00013c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:37:04 Accepted &{{0xc00013c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:37:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/43 -2018/12/20 16:37:04 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2018/12/20 16:37:04 removed [0xc000025a80] -+ echo TEST /tmp/futk925337781/44 -TEST /tmp/futk925337781/44 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/44 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:38:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:38:22.544225362 -0800 PST m=+0.005281778 -2018/12/20 16:40:45 Accepted &{{0xc000172000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:42:51 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:42:51 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/44 -2018/12/20 16:42:51 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2018/12/20 16:42:51 removed [0xc008191800] -+ echo TEST /tmp/futk925337781/45 -TEST /tmp/futk925337781/45 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/45 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:44:09 Listening on 192.168.0.1:8080 at 2018-12-20 16:44:09.975817317 -0800 PST m=+0.001989953 -2018/12/20 16:46:33 Accepted &{{0xc000134180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:48:38 Accepted &{{0xc000134280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:48:38 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/45 -2018/12/20 16:48:38 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2018/12/20 16:48:38 removed [0xc000025e00] -+ echo TEST /tmp/futk925337781/46 -TEST /tmp/futk925337781/46 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/46 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:49:56 Listening on 192.168.0.1:8080 at 2018-12-20 16:49:56.744182636 -0800 PST m=+0.005385736 -2018/12/20 16:52:20 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:54:25 Accepted &{{0xc000154080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:54:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46 -2018/12/20 16:54:25 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2018/12/20 16:54:25 removed [0xc0084f8a80] -+ echo TEST /tmp/futk925337781/47 -TEST /tmp/futk925337781/47 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/47 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:55:44 Listening on 192.168.0.1:8080 at 2018-12-20 16:55:44.193157595 -0800 PST m=+0.004100483 -2018/12/20 16:58:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:00:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:00:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47 -2018/12/20 17:00:13 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2018/12/20 17:00:13 removed [0xc000024a00] -+ echo TEST /tmp/futk925337781/48 -TEST /tmp/futk925337781/48 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/48 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:01:31 Listening on 192.168.0.1:8080 at 2018-12-20 17:01:31.714342556 -0800 PST m=+0.005571708 -2018/12/20 17:03:52 Accepted &{{0xc000162180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:05:56 Accepted &{{0xc000162280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:05:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/48 -2018/12/20 17:05:56 Try to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910:EFI_FV_FILETYPE_DRIVER:PciRootBridge (80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910) -2018/12/20 17:05:56 removed [0xc000024f00] -+ echo TEST /tmp/futk925337781/49 -TEST /tmp/futk925337781/49 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/49 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:07:14 Listening on 192.168.0.1:8080 at 2018-12-20 17:07:14.347287953 -0800 PST m=+0.005317861 -2018/12/20 17:10:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:10:14.34774936 -0800 PST m=+180.005779118 -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 We are now done ...................... -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2018/12/20 17:10:14 removed [0xc008190980] -+ echo TEST /tmp/futk925337781/50 -TEST /tmp/futk925337781/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:11:32 Listening on 192.168.0.1:8080 at 2018-12-20 17:11:32.514093772 -0800 PST m=+0.005061727 -2018/12/20 17:13:53 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:15:56 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:15:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/50 -2018/12/20 17:15:56 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2018/12/20 17:15:56 removed [0xc000025e80] -+ echo TEST /tmp/futk925337781/51 -TEST /tmp/futk925337781/51 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/51 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:17:15 Listening on 192.168.0.1:8080 at 2018-12-20 17:17:15.563732949 -0800 PST m=+0.004555196 -2018/12/20 17:19:36 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:21:39 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:21:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51 -2018/12/20 17:21:39 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2018/12/20 17:21:39 removed [0xc0084f8300] -+ echo TEST /tmp/futk925337781/52 -TEST /tmp/futk925337781/52 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/52 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:22:58 Listening on 192.168.0.1:8080 at 2018-12-20 17:22:58.055475377 -0800 PST m=+0.005275386 -2018/12/20 17:25:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:25:58.05594419 -0800 PST m=+180.005744008 -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 We are now done ...................... -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 Try to remove 274F0C8F-9E57-41D8-9966-29CCD48D31C2:EFI_FV_FILETYPE_DRIVER:SmmAccess (274F0C8F-9E57-41D8-9966-29CCD48D31C2) -2018/12/20 17:25:58 removed [0xc000024880] -+ echo TEST /tmp/futk925337781/53 -TEST /tmp/futk925337781/53 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/53 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:27:16 Listening on 192.168.0.1:8080 at 2018-12-20 17:27:16.344360431 -0800 PST m=+0.004669901 -2018/12/20 17:30:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:30:16.344836429 -0800 PST m=+180.005145740 -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 We are now done ...................... -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2018/12/20 17:30:16 removed [0xc008190b80] -+ echo TEST /tmp/futk925337781/54 -TEST /tmp/futk925337781/54 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/54 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:31:34 Listening on 192.168.0.1:8080 at 2018-12-20 17:31:34.83324492 -0800 PST m=+0.004844957 -2018/12/20 17:33:55 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:35:59 Accepted &{{0xc00014c180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:35:59 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/54 -2018/12/20 17:35:59 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2018/12/20 17:35:59 removed [0xc008191880] -+ echo TEST /tmp/futk925337781/55 -TEST /tmp/futk925337781/55 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/55 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:37:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:37:17.556741855 -0800 PST m=+0.005026625 -2018/12/20 17:39:38 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:41:41 Accepted &{{0xc000150100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:41:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/55 -2018/12/20 17:41:41 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2018/12/20 17:41:41 removed [0xc008190880] -+ echo TEST /tmp/futk925337781/56 -TEST /tmp/futk925337781/56 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/56 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:42:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:42:59.629389097 -0800 PST m=+0.004689203 -2018/12/20 17:45:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:45:59.629831992 -0800 PST m=+180.005131895 -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 We are now done ...................... -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2018/12/20 17:45:59 removed [0xc008190d00] -+ echo TEST /tmp/futk925337781/57 -TEST /tmp/futk925337781/57 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/57 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:47:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:47:17.495849789 -0800 PST m=+0.004930173 -2018/12/20 17:49:38 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:51:42 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:51:42 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/57 -2018/12/20 17:51:42 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2018/12/20 17:51:42 removed [0xc008190f00] -+ echo TEST /tmp/futk925337781/58 -TEST /tmp/futk925337781/58 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/58 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:52:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:52:59.756822581 -0800 PST m=+0.005077237 -2018/12/20 17:55:20 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:57:23 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:57:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/58 -2018/12/20 17:57:23 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2018/12/20 17:57:23 removed [0xc008190c00] -+ echo TEST /tmp/futk925337781/59 -TEST /tmp/futk925337781/59 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/59 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:58:41 Listening on 192.168.0.1:8080 at 2018-12-20 17:58:41.174667602 -0800 PST m=+0.005240425 -2018/12/20 18:01:01 Accepted &{{0xc00014e100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:03:05 Accepted &{{0xc00014e200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:03:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/59 -2018/12/20 18:03:05 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2018/12/20 18:03:05 removed [0xc000024480] -+ echo TEST /tmp/futk925337781/60 -TEST /tmp/futk925337781/60 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/60 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:04:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:04:23.37435198 -0800 PST m=+0.005182644 -2018/12/20 18:07:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:07:23.374708801 -0800 PST m=+180.005539427 -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 We are now done ...................... -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2018/12/20 18:07:23 removed [0xc008190c80] -+ echo TEST /tmp/futk925337781/61 -TEST /tmp/futk925337781/61 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/61 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:08:41 Listening on 192.168.0.1:8080 at 2018-12-20 18:08:41.132668085 -0800 PST m=+0.005357167 -2018/12/20 18:11:02 Accepted &{{0xc000152080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:13:05 Accepted &{{0xc000152180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:13:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/61 -2018/12/20 18:13:05 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:13:05 removed [0xc0084f9580] -+ echo TEST /tmp/futk925337781/62 -TEST /tmp/futk925337781/62 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/62 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:14:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:14:23.443464198 -0800 PST m=+0.005498427 -2018/12/20 18:16:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:18:47 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:18:47 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/62 -2018/12/20 18:18:47 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2018/12/20 18:18:47 removed [0xc000025f80] -+ echo TEST /tmp/futk925337781/63 -TEST /tmp/futk925337781/63 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/63 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:20:05 Listening on 192.168.0.1:8080 at 2018-12-20 18:20:05.127781304 -0800 PST m=+0.004805826 -2018/12/20 18:22:26 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:24:29 Accepted &{{0xc000150180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:24:29 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63 -2018/12/20 18:24:29 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2018/12/20 18:24:29 removed [0xc008190f80] -+ echo TEST /tmp/futk925337781/64 -TEST /tmp/futk925337781/64 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/64 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:25:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:25:47.41812751 -0800 PST m=+0.005003202 -2018/12/20 18:28:08 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:30:11 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:30:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/64 -2018/12/20 18:30:11 Try to remove 06D20D84-A032-4E25-969A-346D255E46D1:EFI_FV_FILETYPE_DRIVER:CpuCsrAccess (06D20D84-A032-4E25-969A-346D255E46D1) -2018/12/20 18:30:11 removed [0xc008190e80] -+ echo TEST /tmp/futk925337781/65 -TEST /tmp/futk925337781/65 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/65 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:31:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:31:29.417255251 -0800 PST m=+0.004313930 -2018/12/20 18:34:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:34:29.417711988 -0800 PST m=+180.004770540 -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 We are now done ...................... -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:34:29 removed [0xc0084f9500] -+ echo TEST /tmp/futk925337781/66 -TEST /tmp/futk925337781/66 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/66 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:35:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:35:47.322068839 -0800 PST m=+0.005147984 -2018/12/20 18:38:08 Accepted &{{0xc000156080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:40:11 Accepted &{{0xc000156180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:40:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/66 -2018/12/20 18:40:11 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2018/12/20 18:40:11 removed [0xc008190580] -+ echo TEST /tmp/futk925337781/67 -TEST /tmp/futk925337781/67 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/67 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:41:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:41:29.40350807 -0800 PST m=+0.004335908 -2018/12/20 18:43:50 Accepted &{{0xc00016c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:45:53 Accepted &{{0xc00016c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:45:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67 -2018/12/20 18:45:53 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2018/12/20 18:45:53 removed [0xc000025100] -+ echo TEST /tmp/futk925337781/68 -TEST /tmp/futk925337781/68 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/68 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:47:11 Listening on 192.168.0.1:8080 at 2018-12-20 18:47:11.508995353 -0800 PST m=+0.005627683 -2018/12/20 18:49:32 Accepted &{{0xc000146180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:51:35 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:51:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/68 -2018/12/20 18:51:35 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2018/12/20 18:51:35 removed [0xc0084f8680] -+ echo TEST /tmp/futk925337781/69 -TEST /tmp/futk925337781/69 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/69 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:52:53 Listening on 192.168.0.1:8080 at 2018-12-20 18:52:53.756505644 -0800 PST m=+0.004630321 -2018/12/20 18:55:15 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:57:18 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:57:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/69 -2018/12/20 18:57:18 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 18:57:18 removed [0xc008190b00] -+ echo TEST /tmp/futk925337781/70 -TEST /tmp/futk925337781/70 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/70 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:58:36 Listening on 192.168.0.1:8080 at 2018-12-20 18:58:36.431655716 -0800 PST m=+0.002397625 -2018/12/20 19:00:57 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:03:00 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:03:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/70 -2018/12/20 19:03:00 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2018/12/20 19:03:00 removed [0xc008190400] -+ echo TEST /tmp/futk925337781/71 -TEST /tmp/futk925337781/71 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/71 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:04:18 Listening on 192.168.0.1:8080 at 2018-12-20 19:04:18.911352222 -0800 PST m=+0.004901757 -2018/12/20 19:06:39 Accepted &{{0xc000180000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:08:43 Accepted &{{0xc000166100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:08:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71 -2018/12/20 19:08:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2018/12/20 19:08:43 removed [0xc0084f8180] -+ echo TEST /tmp/futk925337781/72 -TEST /tmp/futk925337781/72 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/72 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:10:00 Listening on 192.168.0.1:8080 at 2018-12-20 19:10:00.965019013 -0800 PST m=+0.004917582 -2018/12/20 19:12:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:14:21 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:14:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/72 -2018/12/20 19:14:21 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2018/12/20 19:14:21 removed [0xc000025380] -+ echo TEST /tmp/futk925337781/73 -TEST /tmp/futk925337781/73 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/73 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:15:39 Listening on 192.168.0.1:8080 at 2018-12-20 19:15:39.027754537 -0800 PST m=+0.005721429 -2018/12/20 19:17:57 Accepted &{{0xc000166180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:19:58 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:19:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/73 -2018/12/20 19:19:58 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2018/12/20 19:19:59 removed [0xc000024800] -+ echo TEST /tmp/futk925337781/74 -TEST /tmp/futk925337781/74 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/74 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:21:16 Listening on 192.168.0.1:8080 at 2018-12-20 19:21:16.76222149 -0800 PST m=+0.002446848 -2018/12/20 19:23:35 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:25:36 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:25:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/74 -2018/12/20 19:25:36 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2018/12/20 19:25:36 removed [0xc008191500] -+ echo TEST /tmp/futk925337781/75 -TEST /tmp/futk925337781/75 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/75 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:26:54 Listening on 192.168.0.1:8080 at 2018-12-20 19:26:54.495710155 -0800 PST m=+0.004446478 -2018/12/20 19:29:13 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:31:14 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:31:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/75 -2018/12/20 19:31:14 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2018/12/20 19:31:14 removed [0xc000024780] -+ echo TEST /tmp/futk925337781/76 -TEST /tmp/futk925337781/76 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/76 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:32:32 Listening on 192.168.0.1:8080 at 2018-12-20 19:32:32.151543091 -0800 PST m=+0.004464779 -2018/12/20 19:34:50 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:36:52 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:36:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/76 -2018/12/20 19:36:52 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2018/12/20 19:36:52 removed [0xc008190900] -+ echo TEST /tmp/futk925337781/77 -TEST /tmp/futk925337781/77 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/77 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:38:09 Listening on 192.168.0.1:8080 at 2018-12-20 19:38:09.788551728 -0800 PST m=+0.005509443 -2018/12/20 19:41:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:41:09.789007908 -0800 PST m=+180.005965453 -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 We are now done ...................... -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2018/12/20 19:41:09 removed [0xc0084f8480] -+ echo TEST /tmp/futk925337781/78 -TEST /tmp/futk925337781/78 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/78 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:42:27 Listening on 192.168.0.1:8080 at 2018-12-20 19:42:27.715166318 -0800 PST m=+0.005238798 -2018/12/20 19:44:21 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:45:57 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:45:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78 -2018/12/20 19:45:57 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2018/12/20 19:45:57 removed [0xc000025780] -+ echo TEST /tmp/futk925337781/79 -TEST /tmp/futk925337781/79 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/79 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:47:14 Listening on 192.168.0.1:8080 at 2018-12-20 19:47:14.919859548 -0800 PST m=+0.005266410 -2018/12/20 19:49:09 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:50:45 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:50:45 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/79 -2018/12/20 19:50:45 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2018/12/20 19:50:45 removed [0xc008190380] -+ echo TEST /tmp/futk925337781/80 -TEST /tmp/futk925337781/80 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/80 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:52:02 Listening on 192.168.0.1:8080 at 2018-12-20 19:52:02.894600896 -0800 PST m=+0.004930883 -2018/12/20 19:53:56 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:55:33 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:55:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80 -2018/12/20 19:55:33 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2018/12/20 19:55:33 removed [0xc000024700] -+ echo TEST /tmp/futk925337781/81 -TEST /tmp/futk925337781/81 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/81 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:56:50 Listening on 192.168.0.1:8080 at 2018-12-20 19:56:50.572002523 -0800 PST m=+0.005085717 -2018/12/20 19:59:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:59:50.572501272 -0800 PST m=+180.005584263 -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 We are now done ...................... -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 Try to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A:EFI_FV_FILETYPE_DRIVER:PlatformCpuPolicy (76A7B4FC-C8D5-462D-A4D2-6E88338A772A) -2018/12/20 19:59:50 removed [0xc000025480] -+ echo TEST /tmp/futk925337781/82 -TEST /tmp/futk925337781/82 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/82 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:01:07 Listening on 192.168.0.1:8080 at 2018-12-20 20:01:07.942057836 -0800 PST m=+0.005391989 -2018/12/20 20:04:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:04:07.942537723 -0800 PST m=+180.005871718 -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 We are now done ...................... -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2018/12/20 20:04:07 removed [0xc000025300] -+ echo TEST /tmp/futk925337781/83 -TEST /tmp/futk925337781/83 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/83 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:05:25 Listening on 192.168.0.1:8080 at 2018-12-20 20:05:25.340812113 -0800 PST m=+0.005316999 -2018/12/20 20:07:19 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:08:55 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:08:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83 -2018/12/20 20:08:55 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2018/12/20 20:08:55 removed [0xc0084f9380] -+ echo TEST /tmp/futk925337781/84 -TEST /tmp/futk925337781/84 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/84 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:10:12 Listening on 192.168.0.1:8080 at 2018-12-20 20:10:12.92855434 -0800 PST m=+0.005379744 -2018/12/20 20:12:02 Accepted &{{0xc000166080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:13:39 Accepted &{{0xc000166180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:13:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/84 -2018/12/20 20:13:39 Try to remove 56D60EE4-5CCF-485C-BBBB-FEDAE2B24146:EFI_FV_FILETYPE_DRIVER:RegAccessDxe (56D60EE4-5CCF-485C-BBBB-FEDAE2B24146) -2018/12/20 20:13:39 removed [0xc0084f8700] -+ echo TEST /tmp/futk925337781/85 -TEST /tmp/futk925337781/85 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/85 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:14:56 Listening on 192.168.0.1:8080 at 2018-12-20 20:14:56.481147437 -0800 PST m=+0.004919323 -2018/12/20 20:17:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:17:56.481601462 -0800 PST m=+180.005373158 -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 We are now done ...................... -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2018/12/20 20:17:56 removed [0xc000025800] -+ echo TEST /tmp/futk925337781/86 -TEST /tmp/futk925337781/86 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/86 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:19:14 Listening on 192.168.0.1:8080 at 2018-12-20 20:19:14.036470475 -0800 PST m=+0.005226324 -2018/12/20 20:21:07 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:22:43 Accepted &{{0xc000164080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:22:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86 -2018/12/20 20:22:43 Try to remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E:EFI_FV_FILETYPE_DRIVER:Legacy8259 (79CA4208-BBA1-4A9A-8456-E1E66A81484E) -2018/12/20 20:22:43 removed [0xc000024680] -+ echo TEST /tmp/futk925337781/87 -TEST /tmp/futk925337781/87 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/87 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:24:00 Listening on 192.168.0.1:8080 at 2018-12-20 20:24:00.924543717 -0800 PST m=+0.005290866 -2018/12/20 20:27:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:27:00.925019656 -0800 PST m=+180.005766622 -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 We are now done ...................... -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2018/12/20 20:27:00 removed [0xc008190480] -+ echo TEST /tmp/futk925337781/88 -TEST /tmp/futk925337781/88 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/88 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:28:18 Listening on 192.168.0.1:8080 at 2018-12-20 20:28:18.251326435 -0800 PST m=+0.004860247 -2018/12/20 20:30:08 Accepted &{{0xc000138180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:31:44 Accepted &{{0xc000138280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:31:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88 -2018/12/20 20:31:44 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2018/12/20 20:31:44 removed [0xc000024c80] -+ echo TEST /tmp/futk925337781/89 -TEST /tmp/futk925337781/89 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/89 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:33:02 Listening on 192.168.0.1:8080 at 2018-12-20 20:33:02.283415483 -0800 PST m=+0.005258247 -2018/12/20 20:34:55 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:36:31 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:36:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/89 -2018/12/20 20:36:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2018/12/20 20:36:31 removed [0xc000024500] -+ echo TEST /tmp/futk925337781/90 -TEST /tmp/futk925337781/90 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/90 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:37:49 Listening on 192.168.0.1:8080 at 2018-12-20 20:37:49.134772319 -0800 PST m=+0.002789523 -2018/12/20 20:39:43 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:41:19 Accepted &{{0xc000146080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:41:19 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90 -2018/12/20 20:41:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2018/12/20 20:41:19 removed [0xc008190300] -+ echo TEST /tmp/futk925337781/91 -TEST /tmp/futk925337781/91 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/91 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:42:36 Listening on 192.168.0.1:8080 at 2018-12-20 20:42:36.724654358 -0800 PST m=+0.004763851 -2018/12/20 20:44:30 Accepted &{{0xc00015e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:46:06 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:46:06 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91 -2018/12/20 20:46:06 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2018/12/20 20:46:06 removed [0xc008191000] -+ echo TEST /tmp/futk925337781/92 -TEST /tmp/futk925337781/92 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/92 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:47:23 Listening on 192.168.0.1:8080 at 2018-12-20 20:47:23.579420321 -0800 PST m=+0.005093306 -2018/12/20 20:49:17 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:50:53 Accepted &{{0xc000150080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:50:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92 -2018/12/20 20:50:53 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2018/12/20 20:50:53 removed [0xc008191780] -+ echo TEST /tmp/futk925337781/93 -TEST /tmp/futk925337781/93 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/93 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:52:10 Listening on 192.168.0.1:8080 at 2018-12-20 20:52:10.354211095 -0800 PST m=+0.005311245 -2018/12/20 20:54:00 Accepted &{{0xc000164100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:55:36 Accepted &{{0xc000164200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:55:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/93 -2018/12/20 20:55:36 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2018/12/20 20:55:36 removed [0xc008190000] -+ echo TEST /tmp/futk925337781/94 -TEST /tmp/futk925337781/94 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/94 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:56:53 Listening on 192.168.0.1:8080 at 2018-12-20 20:56:53.613061296 -0800 PST m=+0.005014177 -2018/12/20 20:58:47 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:00:23 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:00:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94 -2018/12/20 21:00:23 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2018/12/20 21:00:23 removed [0xc008190180] -+ echo TEST /tmp/futk925337781/95 -TEST /tmp/futk925337781/95 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/95 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:01:40 Listening on 192.168.0.1:8080 at 2018-12-20 21:01:40.701053391 -0800 PST m=+0.004683518 -2018/12/20 21:03:34 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:05:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:05:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95 -2018/12/20 21:05:10 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/20 21:05:10 removed [0xc000025b80] -+ echo TEST /tmp/futk925337781/96 -TEST /tmp/futk925337781/96 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/96 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:06:27 Listening on 192.168.0.1:8080 at 2018-12-20 21:06:27.528188918 -0800 PST m=+0.005195378 -2018/12/20 21:08:21 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:09:57 Accepted &{{0xc000142100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:09:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96 -2018/12/20 21:09:57 Try to remove 2E6A521C-F697-402D-9774-98B2B7E140F3:EFI_FV_FILETYPE_DRIVER:PlatformType (2E6A521C-F697-402D-9774-98B2B7E140F3) -2018/12/20 21:09:57 removed [0xc000025680] -+ echo TEST /tmp/futk925337781/97 -TEST /tmp/futk925337781/97 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/97 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:11:14 Listening on 192.168.0.1:8080 at 2018-12-20 21:11:14.768610516 -0800 PST m=+0.005840572 -2018/12/20 21:14:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:14:14.769035167 -0800 PST m=+180.006265062 -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 We are now done ...................... -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2018/12/20 21:14:14 removed [0xc000024e80] -+ echo TEST /tmp/futk925337781/98 -TEST /tmp/futk925337781/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:15:32 Listening on 192.168.0.1:8080 at 2018-12-20 21:15:32.114669369 -0800 PST m=+0.004777217 -2018/12/20 21:17:25 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:19:02 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:19:02 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/98 -2018/12/20 21:19:02 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2018/12/20 21:19:02 removed [0xc000025600] -+ echo TEST /tmp/futk925337781/99 -TEST /tmp/futk925337781/99 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/99 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:20:19 Listening on 192.168.0.1:8080 at 2018-12-20 21:20:19.466768989 -0800 PST m=+0.004988781 -2018/12/20 21:22:13 Accepted &{{0xc00015a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:23:49 Accepted &{{0xc00015a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99 -2018/12/20 21:23:49 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2018/12/20 21:23:49 removed [0xc008190500] -+ echo TEST /tmp/futk925337781/100 -TEST /tmp/futk925337781/100 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/100 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:25:06 Listening on 192.168.0.1:8080 at 2018-12-20 21:25:06.333436059 -0800 PST m=+0.004846825 -2018/12/20 21:26:56 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:28:33 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:28:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100 -2018/12/20 21:28:33 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2018/12/20 21:28:33 removed [0xc000025d80] -+ echo TEST /tmp/futk925337781/101 -TEST /tmp/futk925337781/101 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/101 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:29:50 Listening on 192.168.0.1:8080 at 2018-12-20 21:29:50.189982224 -0800 PST m=+0.004673167 -2018/12/20 21:31:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:33:20 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:33:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101 -2018/12/20 21:33:20 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2018/12/20 21:33:20 removed [0xc008191700] -+ echo TEST /tmp/futk925337781/102 -TEST /tmp/futk925337781/102 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/102 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:34:37 Listening on 192.168.0.1:8080 at 2018-12-20 21:34:37.715295132 -0800 PST m=+0.005162615 -2018/12/20 21:36:31 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:38:07 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:38:07 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102 -2018/12/20 21:38:07 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2018/12/20 21:38:07 removed [0xc008191680] -+ echo TEST /tmp/futk925337781/103 -TEST /tmp/futk925337781/103 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/103 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504 -2018/12/20 21:41:18 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:42:54 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:42:54 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/103 -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2018/12/20 21:42:54 removed [0xc000024380] -+ echo TEST /tmp/futk925337781/104 -TEST /tmp/futk925337781/104 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410 -2018/12/20 21:46:05 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:47:41 Accepted &{{0xc000142080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:47:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/104 -2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2018/12/20 21:47:41 removed [0xc000025c00] -+ echo TEST /tmp/futk925337781/105 -TEST /tmp/futk925337781/105 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:48:58 Listening on 192.168.0.1:8080 at 2018-12-20 21:48:58.690742703 -0800 PST m=+0.004760520 -2018/12/20 21:50:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:52:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:52:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105 -2018/12/20 21:52:28 Try to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD:EFI_FV_FILETYPE_DRIVER:SystemBoardDxe (788DD6A1-F1EE-4BBA-A925-C0E7D66271BD) -2018/12/20 21:52:28 removed [0xc000025a00] -+ echo TEST /tmp/futk925337781/106 -TEST /tmp/futk925337781/106 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/106 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:53:45 Listening on 192.168.0.1:8080 at 2018-12-20 21:53:45.754837562 -0800 PST m=+0.005289240 -2018/12/20 21:56:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:56:45.755291306 -0800 PST m=+180.005742827 -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 We are now done ...................... -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2018/12/20 21:56:45 removed [0xc000024980] -+ echo TEST /tmp/futk925337781/107 -TEST /tmp/futk925337781/107 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/107 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:58:03 Listening on 192.168.0.1:8080 at 2018-12-20 21:58:03.298097231 -0800 PST m=+0.004954004 -2018/12/20 22:01:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:01:03.29856244 -0800 PST m=+180.005418999 -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 We are now done ...................... -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2018/12/20 22:01:03 removed [0xc000025980] -+ echo TEST /tmp/futk925337781/108 -TEST /tmp/futk925337781/108 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/108 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:02:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:02:20.257288701 -0800 PST m=+0.004764903 -2018/12/20 22:04:14 Accepted &{{0xc000140080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:05:49 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:05:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/108 -2018/12/20 22:05:49 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2018/12/20 22:05:49 removed [0xc008190d80] -+ echo TEST /tmp/futk925337781/109 -TEST /tmp/futk925337781/109 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/109 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:07:06 Listening on 192.168.0.1:8080 at 2018-12-20 22:07:06.847850404 -0800 PST m=+0.005167920 -2018/12/20 22:10:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:10:06.848302351 -0800 PST m=+180.005619719 -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 We are now done ...................... -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2018/12/20 22:10:06 removed [0xc008190200] -+ echo TEST /tmp/futk925337781/110 -TEST /tmp/futk925337781/110 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/110 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:11:23 Listening on 192.168.0.1:8080 at 2018-12-20 22:11:23.961190693 -0800 PST m=+0.005224928 -2018/12/20 22:13:17 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:14:53 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:14:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110 -2018/12/20 22:14:53 Try to remove C1C418F9-591D-461C-82A2-B9CD96DFEA86:EFI_FV_FILETYPE_DRIVER:LegacyInterrupt (C1C418F9-591D-461C-82A2-B9CD96DFEA86) -2018/12/20 22:14:53 removed [0xc000024900] -+ echo TEST /tmp/futk925337781/111 -TEST /tmp/futk925337781/111 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/111 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:16:10 Listening on 192.168.0.1:8080 at 2018-12-20 22:16:10.861995689 -0800 PST m=+0.004932345 -2018/12/20 22:18:03 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:21:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:21:03.797324572 -0800 PST m=+292.940261077 -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 We are now done ...................... -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2018/12/20 22:21:03 removed [0xc008190100] -+ echo TEST /tmp/futk925337781/112 -TEST /tmp/futk925337781/112 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/112 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:22:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:22:20.816990902 -0800 PST m=+0.005099742 -2018/12/20 22:24:14 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:25:50 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:25:50 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112 -2018/12/20 22:25:50 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 22:25:50 removed [0xc000025280] -+ echo TEST /tmp/futk925337781/113 -TEST /tmp/futk925337781/113 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/113 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:27:07 Listening on 192.168.0.1:8080 at 2018-12-20 22:27:07.652741885 -0800 PST m=+0.005140945 -2018/12/20 22:28:57 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:31:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:31:57.349093708 -0800 PST m=+289.701492554 -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 We are now done ...................... -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2018/12/20 22:31:57 removed [0xc008191a00] -+ echo TEST /tmp/futk925337781/114 -TEST /tmp/futk925337781/114 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/114 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:33:14 Listening on 192.168.0.1:8080 at 2018-12-20 22:33:14.943430764 -0800 PST m=+0.005762702 -2018/12/20 22:35:08 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:36:44 Accepted &{{0xc000158200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:36:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/114 -2018/12/20 22:36:44 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2018/12/20 22:36:44 removed [0xc008190700] -+ echo TEST /tmp/futk925337781/115 -TEST /tmp/futk925337781/115 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/115 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:38:01 Listening on 192.168.0.1:8080 at 2018-12-20 22:38:01.625109288 -0800 PST m=+0.004427742 -2018/12/20 22:39:55 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:41:31 Accepted &{{0xc000196000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:41:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115 -2018/12/20 22:41:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2018/12/20 22:41:31 removed [0xc000025000] -+ echo TEST /tmp/futk925337781/116 -TEST /tmp/futk925337781/116 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/116 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:42:48 Listening on 192.168.0.1:8080 at 2018-12-20 22:42:48.916248401 -0800 PST m=+0.004366302 -2018/12/20 22:44:42 Accepted &{{0xc000140100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:46:18 Accepted &{{0xc000140200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:46:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116 -2018/12/20 22:46:18 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2018/12/20 22:46:18 removed [0xc000024600] -+ echo TEST /tmp/futk925337781/117 -TEST /tmp/futk925337781/117 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/117 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:47:35 Listening on 192.168.0.1:8080 at 2018-12-20 22:47:35.582221866 -0800 PST m=+0.004836803 -2018/12/20 22:49:25 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:51:01 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:51:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/117 -2018/12/20 22:51:01 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2018/12/20 22:51:01 removed [0xc008190780] -+ echo TEST /tmp/futk925337781/118 -TEST /tmp/futk925337781/118 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/118 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:52:18 Listening on 192.168.0.1:8080 at 2018-12-20 22:52:18.725295322 -0800 PST m=+0.005087849 -2018/12/20 22:54:12 Accepted &{{0xc000146100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:55:48 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:55:48 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118 -2018/12/20 22:55:48 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2018/12/20 22:55:48 removed [0xc000024c00] -+ echo TEST /tmp/futk925337781/119 -TEST /tmp/futk925337781/119 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/119 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:57:05 Listening on 192.168.0.1:8080 at 2018-12-20 22:57:05.963597055 -0800 PST m=+0.004854273 -2018/12/20 22:58:59 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:00:35 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:00:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/119 -2018/12/20 23:00:35 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2018/12/20 23:00:35 removed [0xc008190080] -+ echo TEST /tmp/futk925337781/120 -TEST /tmp/futk925337781/120 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/120 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:01:52 Listening on 192.168.0.1:8080 at 2018-12-20 23:01:52.499126546 -0800 PST m=+0.002942545 -2018/12/20 23:03:46 Accepted &{{0xc00013a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:05:22 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:05:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120 -2018/12/20 23:05:22 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2018/12/20 23:05:22 removed [0xc008191600] -+ echo TEST /tmp/futk925337781/121 -TEST /tmp/futk925337781/121 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/121 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:06:39 Listening on 192.168.0.1:8080 at 2018-12-20 23:06:39.391761255 -0800 PST m=+0.004991323 -2018/12/20 23:08:33 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:10:08 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:10:08 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/121 -2018/12/20 23:10:08 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2018/12/20 23:10:08 removed [0xc008190a00] -+ echo TEST /tmp/futk925337781/122 -TEST /tmp/futk925337781/122 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/122 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:11:25 Listening on 192.168.0.1:8080 at 2018-12-20 23:11:25.846974946 -0800 PST m=+0.005090289 -2018/12/20 23:13:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:14:55 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:14:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122 -2018/12/20 23:14:55 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2018/12/20 23:14:55 removed [0xc008190600] -+ echo TEST /tmp/futk925337781/123 -TEST /tmp/futk925337781/123 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/123 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:16:12 Listening on 192.168.0.1:8080 at 2018-12-20 23:16:12.096148547 -0800 PST m=+0.005148276 -2018/12/20 23:18:05 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:19:41 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:19:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123 -2018/12/20 23:19:41 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2018/12/20 23:19:41 removed [0xc008191180] -+ echo TEST /tmp/futk925337781/124 -TEST /tmp/futk925337781/124 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/124 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:20:58 Listening on 192.168.0.1:8080 at 2018-12-20 23:20:58.284506368 -0800 PST m=+0.004793942 -2018/12/20 23:22:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:24:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:24:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/124 -2018/12/20 23:24:28 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2018/12/20 23:24:28 removed [0xc0084f8980] -+ echo TEST /tmp/futk925337781/125 -TEST /tmp/futk925337781/125 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/125 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:25:44 Listening on 192.168.0.1:8080 at 2018-12-20 23:25:44.854032771 -0800 PST m=+0.005205096 -2018/12/20 23:27:38 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:29:14 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:29:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/125 -2018/12/20 23:29:14 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2018/12/20 23:29:14 removed [0xc000024a80] -+ echo TEST /tmp/futk925337781/126 -TEST /tmp/futk925337781/126 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/126 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:30:31 Listening on 192.168.0.1:8080 at 2018-12-20 23:30:31.183744468 -0800 PST m=+0.005385213 -2018/12/20 23:32:24 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:34:00 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:34:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/126 -2018/12/20 23:34:00 Try to remove 62D171CB-78CD-4480-8678-C6A2A797A8DE:EFI_FV_FILETYPE_DRIVER:CpuArchDxe (62D171CB-78CD-4480-8678-C6A2A797A8DE) -2018/12/20 23:34:00 removed [0xc000024580] -+ echo TEST /tmp/futk925337781/127 -TEST /tmp/futk925337781/127 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/127 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:35:17 Listening on 192.168.0.1:8080 at 2018-12-20 23:35:17.59639142 -0800 PST m=+0.005489228 -2018/12/20 23:38:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:38:17.596917075 -0800 PST m=+180.006014652 -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 We are now done ...................... -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 Try to remove CBC59C4A-383A-41EB-A8EE-4498AEA567E4:EFI_FV_FILETYPE_DRIVER:FlashDriver (CBC59C4A-383A-41EB-A8EE-4498AEA567E4) -2018/12/20 23:38:17 removed [0xc0084f8280] -+ echo TEST /tmp/futk925337781/128 -TEST /tmp/futk925337781/128 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/128 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:39:34 Listening on 192.168.0.1:8080 at 2018-12-20 23:39:34.420211304 -0800 PST m=+0.005312749 -2018/12/20 23:42:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:42:34.420688673 -0800 PST m=+180.005789950 -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:42:34 We are now done ...................... -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk925337781/ -[?2004l128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l !$ -[?2004lls -l /tmp/futk925337781/ -total 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 fail.bin linux removeBMCcrap.bin RUN3 x.bin -bin.reset DIT futk.remove.99 LIST removemorecrap.bin RUN4 xxx -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentmorecrap.bin DXECLEANER ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -commentsetupcrap.bin EATIT L NOTES rom211.rom uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mroe Makefile -[?2004lbash: mroe: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u --root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/c -mds/elvish github.com/u-root/u-root/cmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo *128* -[?2004l*128* -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/fucp /tmp/futk925337781/128 futk.ls -l /tmp/futk925337781/ -[?2004ltotal 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/ -0_motd_lastrun futk925337781/ -bad Grammar__py_binary_resource_gagent__qaVS9l.pickle -cacert__py_binary_resource_gagent__WVJMJH.pem .ICE-unix/ -cacerts__py_binary_resource_goobuntu-bridge-server__0cFwbz.txt initgoogle_syslog_dir.120/ -cacerts__py_binary_resource_goobuntu-bridge-server__BRBH19.txt initgoogle_syslog_dir.65534/ -cacerts__py_binary_resource_goobuntu-bridge-server__kzdZ03.txt initramfs.linux_amd64.cpio -cacerts__py_binary_resource_goobuntu-bridge-server___LaR15.txt libcapstone__py_binary_resource_gagent__HpHB0Q.so -cacerts__py_binary_resource_goobuntu-bridge-server__mnqRnb.txt ns.rminnich.:0/ -cacerts__py_binary_resource_goobuntu-bridge-server__ONKyLI.txt PatternGrammar__py_binary_resource_gagent__x6BiZ6.pickle -cacerts__py_binary_resource_goobuntu-bridge-server__R9ZskZ.txt ssh-bllrPgoTRFh5/ -cacerts__py_binary_resource_goobuntu-bridge-server__xvu6eS.txt swapcheck_record_156049 -cacerts__py_binary_resource_goobuntu-bridge-server__zJQzMh.txt tmpAVIbld__unpar__.runfiles/ -.com.google.Chrome.aE4Nzc/ tmplql2t9d_/ -.com.google.Chrome.qSI7TY/ tmpm1q2cyn4/ -.com.google.Chrome.sCGM9z/ tmp_m2klrxx/ -.com.google.Chrome.svwoCa/ tmux-156049/ -env.boot.1544790141.286376.174830.d/ .X0-lock -env.boot.1545057395.563833.8971.d/ .X11-unix/ -env.boot.1545224367.436330.68006.d/ .XIM-unix/ -env.boot.1545300877.259088.21394.d/ xxx -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/futk925337781/128 rom.futk /tmpfu/futk925337781/128 fv -[?2004l2019/01/03 11:26:28 Found 211 things -[211]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *211* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cmp rom211.rom /tm/fp/futk925337781/128 rom128 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm /tmpfu/futk925337781/*-/tmp/futk925337781r/tmp/futk925337781f/tmp/futk925337781 /tmp/futk925337781 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls idls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com config~ github id_rsa_corp-old.pub jkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa git.pub id_rsa_corp.pub jkhh5root.pub -authorized_keys console_rsa.pub google_compute_engine id_rsa_google-cert.pub john -authorized_keys2 devlabs_id_rsa google_compute_engine.pub id_rsa_google-old-cert.pub known_hosts -backup-20170411-104708 devlabs_id_rsa.pub google_compute_known_hosts id_rsa_google-old.pub localjkhh5.pub -chromium dropbear_rsa id_rsa id_rsa_google.pub sk-passwords -chromium.pub dropbear_rsa.pub id_rsa_corp-cert.pub id_rsa.pub skynet -config git id_rsa_corp-old-cert.pub jkhh34.pub skynet.pub -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25h-[?25l[?25hr[?25l[?25h [?25l23,35-42 Top[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l [?25h/[?25l[?25h=[?25l[?25h-[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25hp[?25l[?25h [?25lPattern not found: -r23,35-42 Top[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25lECLEANER[?25h [?25l"DXECLEANER" 17L, 361C#!/bin/bashset -e -set -x -echo TEST $1echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -recho "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l0[?25h[?25l]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER9 [?25h[?25l-- INSERT --16,10All[?25h[?25lm1[?25h[?25lo2[?25h[?25ld3[?25h[?25le4[?25h[?25l5[?25h[?25lt6[?25h[?25le7[?25h[?25ls8[?25h[?25lt9[?25h[?25le20[?25h[?25lr1[?25h[?25l16,20All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 371C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l3[?25h[?25l335-342[?25h[?25l0-337[?25h[?25l29-336[?25h[?25l5-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l2-319[?25h[?25l3-320[?25h[?25l7-324[?25h[?25l8-325[?25h[?25l9-326[?25h[?25l20-327[?25h[?25l1-328[?25h[?25l2-329[?25h[?25l3-330[?25h[?25l4-331[?25h[?25l5-332[?25h[?25l-- INSERT --23,325-332 Top[?25h[?25lxcmds/sshd6-333]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l23,325-332 Top[?25h[?25l36-343[?25h[?25l-- INSERT --23,337-344 Top[?25h[?25l8-345[?25h[?25li9-346[?25h[?25ld40-347[?25h[?25l_1-348[?25h[?25lr2-349[?25h[?25ls3-350[?25h[?25la4-351[?25h[?25l.5-352[?25h[?25lp6-353[?25h[?25lu7-354[?25h[?25lb8-355[?25h[?25l23,347-354 Top[?25h[?25l1 change; before #2 8 seconds ago23,336-343 Top[?25h[?25l1-338[?25h[?25l0-337[?25h[?25l25-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l0-317[?25h[?25l07-314[?25h[?25l6-313[?25h[?25l0-307[?25h[?25l290-29[?25h[?25l89-296[?25h[?25l5-292[?25h[?25l4-291[?25h[?25l0-287[?25h[?25l79-286[?25h[?25l8-285[?25h[?25l7-284[?25h[?25l3-280[?25h[?25l2-279[?25h[?25l1-278[?25h[?25l0-277[?25h[?25l67-274[?25h[?25l6-273[?25h[?25l0-267[?25h[?25l55-262[?25h[?25l4-261[?25h[?25l0-257[?25h[?25l49-256[?25h[?25l1-8 [?25h[?25l2-9[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)uu-ccm7-24[?25h[?25l(GOPATH)uu-ccm9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l64-71[?25h[?25l5-72[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l75-82[?25h[?25l6-83[?25h[?25l5-82[?25h[?25lusr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u--root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rroot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdss/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lbin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd [?25h[?25ln/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd [?25h[?25lshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd [?25h[?25lhfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25lfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l-- INSERT --23,75-82 Top[?25h[?25li github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd6-83[?25h[?25ld github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25l_ github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lr github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25la github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25l. github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25lp github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25lu github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25lb github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd5-92[?25h[?25l23,84-91 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9666C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l idcp ~/.ssh/id_rsa.pub . -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:28:24 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:28:24 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:28:24 "github.com/u-root/u-root/xcmds/sshd" is neither package or path/glob: cannot find package "github.com/u-root/u-root/xcmds/sshd" in any of: - /usr/local/src/projects/nobinaryblobs/go1.6/src/github.com/u-root/u-root/xcmds/sshd (from $GOROOT) - /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/sshd (from $GOPATH) -exit status 1 -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -# command-line-arguments -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go:151:13: undefined: templates -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [13@v': vi Makefile[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9666C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hg[?25l[?25ho[?25l[?25h.[?25l[?25hr[?25l[?25hu[?25l[?25hn[?25l[?25h [?25l23,2-9Top[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)oot//e7-24[?25h[?25l(GOPATH)oot//e9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25lot.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9656C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:46:52 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:46:52 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:47:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3027359 Jan 3 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o -ls KSYM .tmp_kallsyms2.o -rom LD vmlinux -* - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5337 kB -CRC 32331d5c -Kernel: arch/x86/boot/bzImage is ready (#79) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5480496 Jan 3 12:47 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls rom* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk rom211.rom fv bz linux/arch/x86/boot/bzImage splat xxx/tmp/xx.rom saverom -[?2004l2019/01/03 12:48:00 Found 211 things -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r - echo "date" > /dev/ttyUSB1 - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER futk rom211.rom fv linux/arch/x86/boot/bzImage splat /tmp/xx.rom saverom^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d /tmp/xx.rom -r -[?2004l[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo "./0" > /dev/ttyUSB1 - sleep 5 - echo "./1" > /dev/ttyUSB1 - sleep 10 -  -[?2004l' - - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ' -[?2004l[?2004h> -[?2004l[?2004h> -[?2004l[?2004h> ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -mode tester -flag provided but not defined: -mode -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -m string - what mode to run in -- device, tester, or ssh starter (default "device") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 17L, 371C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hm[?25l[?25ho[?25l[?25hd[?25l[?25he[?25l[?25h [?25l16,10All[?25h[?25l1[?25h[?25lde tester]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le tester[?25h[?25l tester[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 368C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER  -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%)  comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ ---More--(55%)  comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ ---More--(66%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2019/01/03 13:03:22 Found 313 things -2019/01/03 13:03:22 script is ./DXECLEANER -2019/01/03 13:03:32 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 13:03:32 removed [0xc00ae98900] -+ echo TEST /tmp/futk077126222/1 -TEST /tmp/futk077126222/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk077126222/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:04:51 Listening on 192.168.0.1:8080 at 2019-01-03 13:04:51.512528012 -0800 PST m=+0.004948128 -dmesg -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make d98 & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mount -[?2004lsysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) -proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) -udev on /dev type devtmpfs (rw,nosuid,relatime,size=32916052k,nr_inodes=8229013,mode=755) -devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) -tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=6595740k,mode=755) -securityfs on /sys/kernel/security type securityfs (rw,relatime) -/dev/mapper/dhcp--100--123--187--143--vg-root on / type ext4 (rw,relatime,errors=remount-ro,i_version) -tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) -tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) -tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) -cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate) -cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd) -pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) -bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700) -cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids) -cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct) -cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer) -cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio) -cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event) -cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset) -cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory) -cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) -cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices) -systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1187) -mqueue on /dev/mqueue type mqueue (rw,relatime) -debugfs on /sys/kernel/debug type debugfs (rw,relatime) -sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime) -hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M) -/dev/sdb1 on /usr/local/src type ext4 (rw,relatime,data=ordered) -/dev/sda3 on /boot type ext2 (rw,relatime,block_validity,barrier,user_xattr,acl,i_version,stripe=4) -/dev/sdc1 on /usr/local/google type ext4 (rw,relatime,data=writeback) -/dev/sda2 on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro) -binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime) -fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) -/etc/auto.auto on /auto type autofs (rw,relatime,fd=7,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=41400) -/etc/auto.home on /home type autofs (rw,relatime,fd=13,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=48654) -tmpfs on /run/user/114 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=114,gid=120) -tmpfs on /run/user/156049 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=156049,gid=89939) -gvfsd-fuse on /run/user/156049/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -cros on /sys/fs/cgroup/cpuset/cros type cgroup (rw,relatime,cpuset) -/dev/mapper/cros_usr+local+src+chromiumos+chroot_000-chroot on /usr/local/src/chromiumos/chroot type ext4 (rw,noatime,stripe=64) -srcfsd on /google/src type fuse.srcfsd (rw,nosuid,nodev,relatime,user_id=125,group_id=65534,default_permissions,allow_other) -binfs on /google/bin type fuse.binfs (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -objfsd on /google/obj type fuse.objfsd (rw,nosuid,nodev,relatime,user_id=126,group_id=65534,default_permissions,allow_other) -x20fsd on /google/data type fuse.x20fsd (rw,nosuid,nodev,relatime,user_id=124,group_id=65534,allow_other) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ l2019/01/03 13:07:15 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:09:21 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:09:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1 -2019/01/03 13:09:21 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 13:09:21 removed [0xc007b78500] -+ echo TEST /tmp/futk077126222/2 -TEST /tmp/futk077126222/2 -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mountdmesgbgmake d98./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:11:31 Listening on 192.168.0.1:8080 at 2019-01-03 13:11:31.600020092 -0800 PST m=+0.005290149 -2019/01/03 13:14:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:14:31.600473929 -0800 PST m=+180.005743803 -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:14:31 We are now done ...................... -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fls -[?2004l98.splat config-4.13.0-rc7 fail.bin L NOTES rom211.rom uinit -bin.reset DIT futk.remove.99 linux removeBMCcrap.bin RUN3 x.bin -blacklist dxeclean.bin id_rsa.pub LIST removemorecrap.bin RUN4 xxx -commentmorecrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentsetupcrap.bin EATIT ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk 98.splat fv -[?2004l2019/01/03 13:15:36 Found 313 things -[313]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ furtk RUN4RUN4.4.rom fv - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:44:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:44:24.684082266 -0800 PST m=+320.401630498 -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 We are now done ...................... -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 13:44:24 removed [0xc00fff1500] -+ echo TEST /tmp/futk219719675/2 -TEST /tmp/futk219719675/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk219719675/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301 -2019/01/03 13:48:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:50:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:50:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk219719675/2 -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 13:50:13 removed [0xc000026180] -^Cinterrupt -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -m ssh -[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821 - - -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk219719675/ -[?2004l0 1 2 3 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tmpfutk more RUN4 -[?2004l[more RUN4]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ morvi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" [noeol] 11690L, 581632C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11690,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l11668,21 Bot[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l[] -[]4[?25h[?25l[] -[]3[?25h[?25l[]2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -Press ENTER or type command to continue[?25h[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11668,1Bot[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Cinterrupt -^C^C^C -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ u -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kill -09 9 %1 -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[1]+ Killed make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -Script done, file is RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi RUN54 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" 12116L, 623524C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2019/01/03 13:50:13 We are now done ......................^[[34m^M^[[m^M -+ echo 'ALL DONE'^[[34m^M^[[m^M -ALL DONE^[[34m^M^[[m^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443)))^[[51;1H^[[34m^M^[[m^M -2019/01/03 13:50:13 removed [0xc000026180]^[[34m^M^[[m^M -^Cinterrupt^[[34m^M^[[m^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[59;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[61;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[63;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[65;1Hbs/mainboards/tyan7102$ ./uinit -m ssh^[[34m^M^M -^[^[[m[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^[[34m^M^M -^M^M -^M^[[m^M -^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[71;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[73;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[75;1Hbs/mainboards/tyan7102$ ls /tmp/fu^[[34m^G^[[mtk219719675/^[[34m^M^M -^[^[[m[?2004l0 1 2 3^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[78;1Hards/tyan7102$ /tmp^[[34m^H^H^H^H^[^[[m[Kfutk more RUN4^[[34m^G^M^M -^[^[[m[?2004l[more RUN4]OK ^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[81;1Hards/tyan7102$ m^[[82;129H11668,1^[[7CBot^[[48;1H^[[?25h^[[?25l^[[82;135H2^[[48;2H^[[?25h^[[?25l^[[82;135H3^[[48;;3H^[[?25h^[[?25l^[[82;135H4^[[48;4H^[[?25h^[[?25l^[[82;135H5^[[48;5H^[[?25h^[[?25l^[[82;135H6^[[48;6H^[[?25h^[[?25l^[[82;135H7^[[48;7H^[[?25h^[[?225l^[[82;135H8^[[48;8H^[[?25h^[[?25l^[[82;135H9^[[48;9H^[[?25h^[[?25l^[[82;135H10^[[48;10H^[[?25h^[[?25l^[[82;136H1^[[48;11H^[[?25h^[[?25l^[[82;1366H2^[[48;12H^[[?25h^[[?25l^[[82;136H3^[[48;13H^[[?25h^[[?25l^[[82;136H4^[[48;14H^[[?25h^[[?25l^[[82;136H5^[[48;15H^[[?25h^[[?25l^[[82;136H6^[[48;166H^[[?25h^[[?25l^[[82;136H7^[[48;17H^[[?25h^[[?25l^[[82;132H90,1 ^[[80;1H^[[?25h^[[?25l^[[82;132H89^[[79;1H^[[?25h^[[?25l^[[82;133H8^[[77;1H^[[?25hh^[[?25l^[[82;133H7^[[76;1H^[[?25h^[[?25l^[[82;133H6^[[74;1H^[[?25h^[[?25l^[[82;133H5^[[72;1H^[[?25h^[[?25l^[[82;133H4^[[70;1H^[[?25h^[[?25l^[[82;1133H3^[[69;1H^[[?25h^[[?25l^[[82;133H2^[[68;1H^[[?25h^[[?25l^[[82;133H1^[[67;1H^[[?25h^[[?25l^[[82;133H0^[[66;1H^[[?25h^[[?25l^[[82;132H79^[[64;1H^^[[?25h^[[?25l^[[82;133H8^[[62;1H^[[?25h^[[?25l^[[82;133H7^[[60;1H^[[?25h^[[?25l^[[82;133H6^[[58;1H^[[?25h^[[?25l^[[57;1H^[[106m[^[[64C]^[[m^[[82;1133H5^[[57;1H^[[?25h^[[?25l^[[82;129H^[[K^[[82;1H:^[[?2004h^[[?25hq^[[?25l^[[?25h^M^[[?25l^[[?2004l^[]2;rminnich@xcpu: /usr/local/src/projects/nobiinaryblobs/mainboards/tyan7102^G^[]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^G^[[82;1H^[[K^[[82;1H^[[?2004l^[[?1l^^[>^[[?25h^[[?1049l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/noobinaryblobs/mainboards/tyan7102$ ^[[?2004lexit^M -There are stopped jobs.^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ fg^M -^[[?2004lmake d98^M -^Cinterrupt^M -^C^C^C^M -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^Gu^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^[[?2004lexit^M -There are stopped jobs.^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ fg^M -^[[?2004lmake d98^M -^Z^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ kill -09 ^H^[[K^H^[[K^H^[[K9 %1^M -^[[?2004l^M -[1]+ Stoppedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l[1]+ Killedmake d98^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^[[?2004lexit^M - -Script done on 2019-01-03 13:52:38-080012116,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l12070,21 Bot[?25h[?25l2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle^^M^M -^[[81;146Ha^[[82;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M^M -^[[32mPress ENTER or type command to continue^[[?25h^[[27m^[[23m^[[29m^[[m^[[H^[[2J^[[?25l^[[1;1HSent 12582912 bytes of 33554432^[[34m^M^[[m^M -Sent 14680064 bytes of 33554432^[[34m^M^[[m^M -Sent 16777216 bytes of 33554432^[[34m^M^[[m^M -Sent 18874368 bytes of 33554432^[[34m^M^[[m^M -Sent 20971520 bytes of 33554432^[[34m^M^[[m^M -Sent 23068672 bytes of 33554432^[[34m^M^[[m^M -Sent 25165824 bytes of 33554432^[[34m^M^[[m^M -Sent 27262976 bytes of 33554432^[[34m^M^[[m^M -Sent 29360128 bytes of 33554432^[[34m^M^[[m^M -Sent 31457280 bytes of 33554432^[[34m^M^[[m^M -Sent 33554432 bytes of 33554432^[[34m^M^[[m^M -Transfer Succeeded^[[34m^M^[[m^M -Started EM100Pro^[[34m^M^[[m^M -+ echo date^[[34m^M^[[m^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^[[34m^M^[[m^M -sleeping 50 because this piece of shit can't take it^[[34m^M^[[m^M -+ sleep 50^[[34m^M^[[m^M -+ echo ./0^[[34m^M^[[m^M -+ sleep 5^[[34m^M^[[m^M -+ echo ./1^[[34m^M^[[m^M -+ sleep 10^[[34m^M^[[m^M -+ ./uinit -m tester^[[34m^M^[[m^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^[[34m^M^[[m^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^[[34m^M^[[m^M -Command.Welcome(&{}): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[28;10H\ ^__^ ^[[34m^M^[[m^[[29;11H\ (oo)\_______^[[34m^M^[[m^[[30;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[31;18H||----w |^[[34m^M^[[m^[[32;18H|| ||^[[34m^M^M -^M^[[m^M -Command.Reboot(&{0s}): ^[[34m^M^[[m^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^[[34m^M^[[m^M -Command.Welcome(): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[39;10H\ ^__^ ^[[34m^M^[[m^[[40;11H\ (oo)\_______^[[34m^M^[[m^[[41;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[42;18H||----w |^[[34m^M^[[m^[[43;18H|| ||^[[34m^M^M -^M^[[m^M@ @ @ @ @ @ @ 12031,21 99%[?25h[?25l?Remove2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -^[[81;146HC^[[82;1HityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^[[34m^M^[[m^M^M12029,21 99%[?25h[?25l?Remove2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav^^M^M -^[[81;146He^[[82;1Hrom r:cleaner]}: file is /tmp/futk925337781/126^[[34m^M^[[m^M^M12027,21 99%[?25h[?25l?Remove2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^^M^M -^[[81;146Hp^[[82;1H[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^[[34m^M^[[m^M^M@ 12025,21 99%[?25h[?25l?Remove2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map^^M^M -^[[81;146H[^[[82;1Hr:cleaner R:saverom]}: file is /tmp/futk925337781/124^[[34m^M^[[m^M^M@ 12023,21 99%[?25h[?25l?Remove2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -^[[81;146He^[[82;1HLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^[[34m^M^[[m^M^M12021,21 99%[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -^M^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -^M^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -^M^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -^M^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -^M^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -^M^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -^M^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -^M^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -^M^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -^M^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -^M^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7^ -M^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -^M^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -^M^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -[34m^M^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -^M^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -^M^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -^M^M --- More --[?25h[?25l2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -^M^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -^M^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -^M^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -^M^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -^M^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -^M^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -^M^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -^M^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -^M^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^ -M^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -^M^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -^M^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -^M^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -^M^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -^M^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -^M^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -^M^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -^[[32m-- More --^[[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483- -609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c^M^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -^M^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -^M^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -^M^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -^M^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -^M^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -^M^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -^M^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -^M^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -^M^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -^M^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -^M^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -^M^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -^M^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -^M^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -^M^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -^-- More --[?25hM^M -[?25l2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -^M^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -^M^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -^M^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -^M^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -^M^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^ -M^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -^M^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^ -M^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^ -M^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -^M^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -^M^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -^M^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -^M^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -^M^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -^M^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -^M^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -^M^M -^[[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -7map[r^M^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -^M^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -^M^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -^M^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -^M^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -^M^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -^M^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -^M^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -^M^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -^M^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -^M^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -^M^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -^M^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -^M^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -^M^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -^M^M --- More --[?25h[?25l2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -Press ENTER or type command to continue[?25h[?25l2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -^[[81;146He^[[82;1HLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^[[34m^M^[[m^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map^^M^M -^[[81;146H[^[[82;1Hr:cleaner R:saverom]}: file is /tmp/futk925337781/124^[[34m^M^[[m^M^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^^M^M -^[[81;146Hp^[[82;1H[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^[[34m^M^[[m^M^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav^^M^M -^[[81;146He^[[82;1Hrom r:cleaner]}: file is /tmp/futk925337781/126^[[34m^M^[[m^M^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -^[[81;146HC^[[82;1HityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^[[34m^M^[[m^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle^^M^M -^[[81;146Ha^[[82;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M^M -^[[32mPress ENTER or type command to continue^[[?25h^[[27m^[[23m^[[29m^[[m^[[H^[[2J^[[?25l^[[1;1HSent 12582912 bytes of 33554432^[[34m^M^[[m^M -Sent 14680064 bytes of 33554432^[[34m^M^[[m^M -Sent 16777216 bytes of 33554432^[[34m^M^[[m^M -Sent 18874368 bytes of 33554432^[[34m^M^[[m^M -Sent 20971520 bytes of 33554432^[[34m^M^[[m^M -Sent 23068672 bytes of 33554432^[[34m^M^[[m^M -Sent 25165824 bytes of 33554432^[[34m^M^[[m^M -Sent 27262976 bytes of 33554432^[[34m^M^[[m^M -Sent 29360128 bytes of 33554432^[[34m^M^[[m^M -Sent 31457280 bytes of 33554432^[[34m^M^[[m^M -Sent 33554432 bytes of 33554432^[[34m^M^[[m^M -Transfer Succeeded^[[34m^M^[[m^M -Started EM100Pro^[[34m^M^[[m^M -+ echo date^[[34m^M^[[m^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^[[34m^M^[[m^M -sleeping 50 because this piece of shit can't take it^[[34m^M^[[m^M -+ sleep 50^[[34m^M^[[m^M -+ echo ./0^[[34m^M^[[m^M -+ sleep 5^[[34m^M^[[m^M -+ echo ./1^[[34m^M^[[m^M -+ sleep 10^[[34m^M^[[m^M -+ ./uinit -m tester^[[34m^M^[[m^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^[[34m^M^[[m^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^[[34m^M^[[m^M -Command.Welcome(&{}): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[28;10H\ ^__^ ^[[34m^M^[[m^[[29;11H\ (oo)\_______^[[34m^M^[[m^[[30;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[31;18H||----w |^[[34m^M^[[m^[[32;18H|| ||^[[34m^M^M -^M^[[m^M -Command.Reboot(&{0s}): ^[[34m^M^[[m^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^[[34m^M^[[m^M -Command.Welcome(): ______________^[[34m^M^[[m^M -< welcome to DUT >^[[34m^M^[[m^M - --------------^[[34m^M^[[m^[[39;10H\ ^__^ ^[[34m^M^[[m^[[40;11H\ (oo)\_______^[[34m^M^[[m^[[41;14H(__)\^[[7C)\/\^[[34m^M^[[m^[[42;18H||----w |^[[34m^M^[[m^[[43;18H|| ||^[[34m^M^M -^M^[[m^M -2019/01/03 13:50:13 We are now done ......................^[[34m^M^[[m^M -+ echo 'ALL DONE'^[[34m^M^[[m^M -ALL DONE^[[34m^M^[[m^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443)))^[[51;1H^[[34m^M^[[m^M -2019/01/03 13:50:13 removed [0xc000026180]^[[34m^M^[[m^M -^Cinterrupt^[[34m^M^[[m^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^[[m^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[59;1Hards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[61;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[63;1Hbs/mainboards/tyan7102$ ^[[34m^M^M -^[^[[m[?2004l^[[34m^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu://usr/local/src/projects/nobinarybloo^[[65;1Hbs/mainboards/tyan7102$ ./uinit -m ssh^[[34m^M^M -^[^[[m[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^[[34m^M^M -^M^M -^M^[[m^M -^C^[[34m^M^M -^[^[[m[?2004h^[[34m^[^[[m]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^[[34m^G^[[mrminnich@xcpu:/usr/local/src/projeects/nobinaryblobs/mainboo^[[71;1Hards/tyan7102$ ^[[34m^M^M12070,199%[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l69,12-13[?25h[?25l8,13 [?25h[?25l7[?25h[?25l6,6-7[?25h[?25l5,13 [?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,6-7[?25h[?25l59,13 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3,12-13[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8,13 [?25h[?25l7[?25h[?25l6,12[?25h[?25l5,13[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3,12-13[?25h[?25l2,11-12[?25h[?25l1,13 [?25h[?25l0,11-12[?25h[?25l29,13 [?25h[?25l8,11-12[?25h[?25l7,13 [?25h[?25l6,11-12[?25h[?25l5,13 [?25h[?25l6,11-12[?25h[?25l7,13 [?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25hf[?25l[?25h[?25l [?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hf[?25l[?25he[?25l[?25h[?25l[?25h[?25l[?25hv[?25l[?25he[?25l[?25hi[?25l[?25ht[?25l[?25h [?25l"removeit" [Not edited] 12116 lines --99%--12027,13 99%]2;removeit (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;removeit[?25h[?25l:[?2004h[?25hg[?25l[?25h[?25l[?25hv[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hd[?25l[?25h [?25l11912 fewer lines9/01/03 13:50:133C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 7 map[r:cleaaa[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 204,1Bot]2;removeit + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;removeit204,1Bot[?25h[?25l:[?2004h[?25h [?25l204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25hs[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h[?25l [?25h.[?25l[?25h}[?25l[?25h[?25l[?25h{[?25l[?25h [?25l204 substitutions on 204 lines3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaa^[[49;1Hnner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25hm[?25l[?25ha[?25l[?25hp[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l153 substitutions on 153 lines~ 204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h.[?25l[?25h*[?25l[?25h [?25l204 substitutions on 204 lines204,1Bot204,1Bot[?25h[?25lchanges; before #4 1 seconds ago8/12/20 12:50:31 00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -2018/12/20 12:56:20 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRPP 7 2018/12/20 13:06:24 9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 2018/12/20 13:12:12 6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightninggRidgeEXECB2 7 2018/12/20 13:18:00 634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 2018/12/20 13:23:49 BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 2018/12/20 13:29:37 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeeEXRP 7 2018/12/20 13:35:25 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 2018/12/20 13:41:13 86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 2018/12/20 13:47:01 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 2018/12/20 13:52:49 580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 2018/12/20 13:58:37 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 2018/12/20 14:08:44 24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 2018/12/20 14:23:05 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 2018/12/20 14:28:52 502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 2018/12/20 14:34:40 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 2018/12/20 14:44:46 961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 2018/12/20 14:50:33 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRunttimeDxe 7 2018/12/20 14:56:17 AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 2018/12/20 15:02:05 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 2018/12/20 15:07:52 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 2018/12/20 15:13:41 7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEEXECB4 7 2018/12/20 15:26:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 2018/12/20 15:31:58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 2018/12/20 15:37:46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 2018/12/20 15:43:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 2018/12/20 15:49:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 2018/12/20 15:55:10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPPGA 7 2018/12/20 16:00:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 2018/12/20 16:11:04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEEPRP 7 2018/12/20 16:25:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 2018/12/20 16:31:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 77 2018/12/20 16:37:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 2018/12/20 16:42:51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 2018/12/20 16:48:38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 2018/12/20 16:54:25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 2018/12/20 17:00:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 2018/12/20 17:05:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 2018/12/20 17:15:56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 2018/12/20 17:21:39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFFPGA 7 2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 2018/12/20 17:41:41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 2018/12/20 17:51:42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 2018/12/20 17:57:23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 2018/12/20 18:03:05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 2018/12/20 18:13:05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 2018/12/20 18:18:47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 18:24:29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 2018/12/20 18:30:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 2018/12/20 18:40:11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 18:45:53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeeEXECB4 7 2018/12/20 18:51:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 2018/12/20 18:57:18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 2018/12/20 19:03:00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 2018/12/20 19:08:43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEEXECB3 7 2018/12/20 19:14:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 2018/12/20 19:19:58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 2018/12/20 19:25:36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 2018/12/20 19:31:14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 2018/12/20 19:36:52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 2018/12/20 19:45:57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 2018/12/20 19:50:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 2018/12/20 19:55:33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEEXECB2 7 2018/12/20 20:08:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 2018/12/20 20:13:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 2018/12/20 20:22:43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 2018/12/20 20:31:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightninggRidgeEXECB3 7 1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 :58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 :46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 :10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 :04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M -:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 :51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 :38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 :25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M -:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 :56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 :39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE__DRIVER:UsbInt13 7 :41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 :42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M -:23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 :05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M -:05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 :47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M -:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 :11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 :18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 :00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 :43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M -:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M:58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 :36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M -:14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 :57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M -:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 :33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 :43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:31 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 :19 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M:06 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:53 BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M:36 DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 :23 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M:10 D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M:57 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M:02 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 :49 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M -:33 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M:20 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M -:07 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M:54 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7  21:47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 :28 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -:49 DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 :53 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M:50 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M:44 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 :31 CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M -:18 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M:01 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 :48 E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M:35 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 :22 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M:08 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 :55 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M:41 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M:28 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 -:14 4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M:00 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 :21 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M:13 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :13 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7  97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7  13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7  FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7  68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7  52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7  69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7  25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7  B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7  858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7  6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M5h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIIVER:UsbInt13 7  29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7  2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7  F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7  5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7  5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7  3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7  171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7  D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7  3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7  6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7  8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7  BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7  F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7  7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7  7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 :47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7  7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7  9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7  CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7  E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7  7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7  0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7  4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7  9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,2Bot204,2Bot[?25h[?25l -204 changes; before #6 0 seconds ago:31 00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -:20 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 -:24 9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 -:12 6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 -:00 634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 :49 BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 :37 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -:25 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 :13 86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 :01 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -:49 580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -:37 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -:44 24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -:05 271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 :52 502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 :40 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 -:46 961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 :33 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 -:17 AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 :05 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 -:52 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 -:41 7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -:10 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7:58 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7:46 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -:34 FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 -:22 BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 :10 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 -:58 E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -:04 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 -:28 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -:15 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 -:04 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -:51 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 :38 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo:25 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 -:13 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 -:56 E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -:56 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -:39 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 -:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -:41 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 :42 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 :23 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -:05 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 :05 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 :47 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :29 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 -:11 DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 :11 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 :53 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 -:35 A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 :18 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 :00 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 :43 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 -:21 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 :58 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 :36 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 :14 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 :52 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -:57 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -:45 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 :33 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 -:55 B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 -:39 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 :43 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -:44 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -:31 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 :19 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -:06 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 -:53 BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -:36 DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 :23 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -:10 D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 -:57 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 -:02 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -:49 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -:33 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 -:20 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 -:07 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -:54 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 71,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h4[?25l[?25h[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines 64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7  97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7  13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7  FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 - 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7  52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe - 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe - 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7  B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M - E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7  858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 - 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M5h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIIVER:UsbInt13 7  29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 - 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 - F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M - 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7  5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7  5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7  018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7  3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7  171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M - 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7  3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7  6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup - 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M - B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M - 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7  BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M - 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 - F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M - DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7  7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7  7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M - F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M - 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M - 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M - 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7  7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7  9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7  CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7  E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7  7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7  0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7  4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M - 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7  9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7  3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,2Bot204,2Bot[?25h[?25l[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l59[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l3[?25h[?25l -517:35:59 4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7~ 143,2Bot[?25h[?25l4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 [?25h[?25l64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 - 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 - 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 - FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M - BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 - 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 - 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 - 69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 - 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 - B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - 196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M - E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 - 858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 - 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M -54C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 - 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 - 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^M - C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 - F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M - 16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 - 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 - CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 - 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 - 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M - A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 - 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 - 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 - D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M - 87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 - 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 - 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 - 6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M - 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 - 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M - B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M - 217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 - BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M - 72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 - F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M - 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^M - DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 - 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M - 4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 - 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^M - F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M - 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M - 22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M - 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 -:47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 - 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 - 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 - CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M - CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - 67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 - E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M - BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 - 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M - 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 - 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M - 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 - 4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M - 5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 - 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 - 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -~ 143,2Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7^M^M9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m^M^MC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma^M^M16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^MA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma^M^M87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7^M^M72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7^M^M9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7^M^MDC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 -7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^MD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7^M^MF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7^M^M529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 -47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MDC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 -CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 -0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7^M^M8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma^M^M5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 204,1Bot204,1Bot[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l59[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l49[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25h%[?25l[?25hs[?25l[?25h/[?25l[?25h^^M[?25l[?25h/[?25l[?25h/[?25l[?25hg[?25l[?25h [?25lE488: Trailing characters132,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h^^M[?25l[?25h/[?25l[?25h/[?25l[?25hg[?25l[?25h [?25l102 substitutions on 51 lines202,1Bot202,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h[?25l [?25h [?25l204 substitutions on 204 lines:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD7:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDmma:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighmama:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE7:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx7:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh7:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxma:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon204,0-1Bot204,0-1Bot[?25h[?25lchanges; before #12 1 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 -7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h$[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCAUsbOcUpdateDxeLig -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 77C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 713AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7EbcDxe 7FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecuto -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 768D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDE8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 752C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdate -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089sbOcUpdateDxeNeo -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063UuidDxe -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 75ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo 7B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeo -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupP -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DPchSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412cgLegacy 76AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdate -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 7 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063CsmVideo 7 -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe 7 C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer 7 m -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRB -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 7CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeN -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 75038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 7018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLiA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 73237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 7171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30sbRtDxe 7 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLig -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe 7 m -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 73FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize 7 m3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7iBus 763809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 7372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916DxeIpmiBmcInitial6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666SocketSetup 7 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F735UsbOcUpdateDxeLig -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignature -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 7BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2SetupConfigUpdate -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb 7 -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCecurityStubDxe 9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBSmbiosDataUpdateD -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 77AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBABUsbOcUpdateDxeNeo -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateD -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47StaticSkuDataDxeN -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir 77F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFPlatformEarlyDxe -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeL -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9SlotDataUpdateDxe -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe 747:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 77474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52mbiosDataUpdateD -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06AFpkSetup 79AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189OpromUpdateDxeLig7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965CSetupConfigUpdate -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36DcScreen 7CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649AOpromUpdateDxeNeoCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109PciOutOfResourceS -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63Aint13 7E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152lotDataUpdateDxeC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4BmcLanConfig 77D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57OpromUpdateDxeLig -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4AMnpDxe 70718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707Tpm20PlatformDxe 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768mbiosDataUpdateD34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0SvSmmSupport -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1SecureBootDXE 7 m5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453WdtDxe 79BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE08UsbOcUpdateDxeNeo3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 73C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus204,1Bot204,1Bot[?25h[?25l -204 changes; before #13 2 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6TyanBoardDXE 7 DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5SlotDataUpdateDxeNeonCityEPRP 7 -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443DevicePathDxe 7 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86SetupConfigUpdateDxeLightningRidgeEXECB2 7 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458Nvme 7 65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2ataController 7 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97EGenericSio 7 -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725FIScsiDxe 7 AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1FDxeSelStatusCode 7 -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EBhcd 7 43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5MePolicyInitDxe 7 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3ExportHiiDb 7 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4PciDxeInit 7 BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581S3SaveStateDxe 7 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1FFat 7 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85raceHubStatusCodeHandlerRuntimeDxe 7 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1EOemVtdRmrr 7 8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552Ahci 7 9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907DxeFrb 77D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCAUsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 7 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 7 3AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7Ebc -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecutorDxe 7 -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 7 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDxeNeonCityFPGA 7 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 7 -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdateDxeNeonCityEPRP 7 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole 7 -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089UsbOcUpdateDxeNeonCityEPECB 7 -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063uidDxe 7 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 7 25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo 7 B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeonCityFPGA 7 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupPolicy 7 -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DhSmbusDxe 7 -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412TcgLegacy 7 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdateDxeNeonCityFPGA 7 -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 7 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD06CsmVideo 7 2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe 7 -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge 7 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer 7 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRBDxe 7 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA 7 CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeNeonCityFPGA 7 -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 7 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 7 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLightningRidgeEXECB4 7 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 7 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 7 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30UsbRtDxe 7 D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLightningRidgeEXECB3 7 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe 7 -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 7 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize 7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 7 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 7 -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666ocketSetup 7 8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353UsbOcUpdateDxeLightningRidgeEXECB2 7 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignatureEntry 7 -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 7 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup 7 -72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb 7 F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCSecurityStubDxe 7 -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBmbiosDataUpdateDxeLightningRidgeEXECB2 7 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime 7 -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 7 7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBABUsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateDxeLightningRidgeEXECB1 7 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47taticSkuDataDxeNeonCityEPRP 7 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFPlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeLightningRidgeEXECB3 7 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3DSlotDataUpdateDxeLightningRidgeEXRP 7 -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe 7 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe1,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h8[?25l[?25h[?25l[?25h7[?25l[?25h [?25l177 substitutions on 177 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65EAcpiVTD 7C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4FSerialIo 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7EbcDxe FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CECBootScriptExecutor -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5FmiFlashDxe 68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928SmbiosDataUpdateDxE8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACSpsDxe 52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306SetupConfigUpdateD -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5CGraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089sbOcUpdateDxeNeon -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82AUbaInitDxe 5ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7CsmBlockIo B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1OpromUpdateDxeNeon -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188TcgPlatformSetupPo -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364DPchSmbusDxe -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412cgLegacy 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78SetupConfigUpdateD -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFCUsbInt13 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807TyanBadDimmDxe mC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908CrystalRidge -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8WatchdogTimer ma -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6CRB5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890AtaticSkuDataDxeNe -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87JedecNvDimm 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA 018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8IioCfgUpdateDxeLigA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABADpcDxe 3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726CmosDxe 171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30sbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3OpromUpdateDxeLigh -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBAStatusCodeDxe ma -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55FAcpiPlatform 3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43BPpmInitialize ma3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7iBus 63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5IioInit 372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916DxeIpmiBmcInitiali6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666SocketSetup -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F735UsbOcUpdateDxeLigh -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470HardwareSignatureE -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101 BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CEFpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D22FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551DxeIpmiUsb -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFCecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BBSmbiosDataUpdateDx -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFEPchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454BMtftp4Dxe 7AB22C56-2510-4FD2-AC18-57394419FBABAB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BCSmbiosDataUpdateDx -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47StaticSkuDataDxeNe -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5LegacySredir 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4StaticSkuDataDxeLi -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9SlotDataUpdateDxeL -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113ArpDxe 47:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06AFpkSetup 9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189OpromUpdateDxeLigh7FD082A9-3D6B-44E3-9C31-74D6B80F965CFD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36DcScreen CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649AOpromUpdateDxeNeonCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109PciOutOfResourceSe -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63Aint13 E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152lotDataUpdateDxeNC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4BmcLanConfig 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4AMnpDxe 0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707Tpm20PlatformDx8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768mbiosDataUpdateDx34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1SecureBootDXE ma5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453WdtDxe 9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE08UsbOcUpdateDxeNeon3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus 3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7PciBus204,1Bot204,1Bot[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l199[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l7:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l:41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l41 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l1 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25l CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25lCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe [?25h[?25lF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 -B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry -217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -72FE44FF-44FC-4653-918A-0D5E76C416D22FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -7AB22C56-2510-4FD2-AC18-57394419FBABAB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 -D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 -45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP -22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 -DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 -7FD082A9-3D6B-44E3-9C31-74D6B80F965CFD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe ma -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController m -74346897-9E0C-4B41-BF1F-BAA1ECB85DA64346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe m -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD125,135%[?25h[?25l00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP -9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 -634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -74346897-9E0C-4B41-BF1F-BAA1ECB85DA64346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe -AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -7D77B32E-BAB2-4CC7-8378-7550513F3FCAD77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 -64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB -536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA -196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy -E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA -4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge46,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l29[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l:[?2004h[?25hq[?25l[?25h![?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" 12116L, 623524C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25hE[?25l[?25hn[?25l[?25hg[?25l[?25hl[?25l[?25hi[?25l[?25hs[?25l[?25hh[?25l[?25h[?25l[?25h [?25lSent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504^M -2018/12/20 21:41:18 Accepted &{{0xc000154080}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2018/12/20 21:42:54 Accepted &{{0xc000154180}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2018/12/20 21:42:54 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saveerom r:cleaner]}: file is /tmp/futk925337781/103^M -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600)^M -2018/12/20 21:42:54 removed [0xc000024380]^M -+ echo TEST /tmp/futk925337781/104^M -TEST /tmp/futk925337781/104^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M6972,9557%[?25h[?25l3,43[?25h[?25l4,35[?25h[?25l5,28[?25h[?25l6,12[?25h[?25l7,11[?25h[?25l8,12[?25h[?25l9,94[?25h[?25l80,25[?25h[?25l1,18[?25h[?25l2,26[?25h[?25l3,24[?25h[?25l4,27[?25h[?25l5[?25h[?25l6,32[?25h[?25l7,1 [?25h[?25l8,17[?25h[?25l9,33[?25h[?25l90,22[?25h[?25l1,31[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5,32[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l7000[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7,19[?25h[?25l8,17[?25h[?25l9,12[?25h[?25l10,65[?25h[?25l1,53[?25h[?25l2,11[?25h[?25l -+ echo ./0^M7013,1157%[?25h[?25l -+ sleep 5^M7014,1057%[?25h[?25l -+ echo ./1^M7015,1157%[?25h[?25l -+ sleep 10^M7016,1157%[?25h[?25l -+ ./uinit -r^M7017,1357%[?25h[?25l -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410^M7018,9557%[?25h[?25l -2018/12/20 21:46:05 Accepted &{{0xc000022100}}^M7019,4757%[?25h[?25l -Command.Welcome(&{}): ______________^M7020,3957%[?25h[?25l -< welcome to DUT >^M7021,1957%[?25h[?25l ---------------^M7022,1757%[?25h[?25l -\ ^__^ ^M7023,1957%[?25h[?25l -\ (oo)\_______^M7024,2657%[?25h[?25l -(__)\)\/\^M7025,3057%[?25h[?25l -||----w |^M7026,2757%[?25h[?25l -|| ||^M7027,2757%[?25h[?25l -^M7028,157%[?25h[?25l -Command.Reboot(&{0s}): ^M7029,2457%[?25h[?25l -2018/12/20 21:47:41 Accepted &{{0xc000142080}}^M7030,4757%[?25h[?25l -Command.Welcome(): ______________^M7031,4157%[?25h[?25l -< welcome to DUT >^M7032,1957%[?25h[?25l ---------------^M7033,1757%[?25h[?25l -\ ^__^ ^M7034,1957%[?25h[?25l -\ (oo)\_______^M7035,2657%[?25h[?25l -(__)\)\/\^M7036,3057%[?25h[?25l -||----w |^M7037,2757%[?25h[?25l -|| ||^M7038,2757%[?25h[?25l -^M7039,157%[?25h[?25l -2018/12/20 21:47:41 We are now done ......................^M7040,5957%[?25h[?25l -+ echo 'ALL DONE'^M7041,1857%[?25h[?25l -ALL DONE^M7042,957%[?25h[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r::cleaner R:saverom]}: file is /tmp/futk925337781/104^M7043,9557%[?25h[?25l2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1--BC68-DA5EFE615B52)^M7044,9557%[?25h[?25l -2018/12/20 21:47:41 removed [0xc000025c00]^M7045,4357%[?25h[?25l -+ echo TEST /tmp/futk925337781/105^M7046,3557%[?25h[?25l -TEST /tmp/futk925337781/105^M7047,2857%[?25h[?25l -+ echo date^M7048,1257%[?25h[?25l+ echo ./0^M -+ echo ./pg^M7049,1157%[?25h[?25l50,12[?25h[?25l -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r^M7051,9457%[?25h[?25l -will emulate 'W25Q256FV'^M7052,2557%[?25h[?25l -MCU version: 3.03^M7053,1857%[?25h[?25l -FPGA version: 2.10 (3.3V)^M7054,2657%[?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25hf[?25l[?25h[?25l [?25hr[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h1[?25l[?25h0[?25l[?25h0[?25l[?25h [?25l"remove100" [Not edited] 12116 lines --58%--7054,2657%]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25l:[?2004h[?25hv[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h/[?25l[?25hd[?25l[?25h [?25l11912 fewer lines2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaa^[[49;1Hner R:saverom]}: file is /tmp/futk219719675/2^[[34m^M^[[m^M -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 204,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25hm[?25l[?25ha[?25l[?25hp[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l153 substitutions on 153 lines~ 204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h7[?25l[?25h.[?25l[?25h*[?25l[?25h [?25l177 substitutions on 177 lines204,1Bot204,1Bot[?25h[?25l2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -^[[32m-- More --^[[?25h^[[m^[[82;1H^[[K^[[?25l^[[82;1H2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-6609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^^M^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^^M^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^^M^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^^M^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^^M^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^^M^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^^M^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^^M^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^^M^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -^[[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^^M^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^^M^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^^M^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^^M^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus203,199%[?25h[?25l2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB2 -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityEPECB -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSettupPage -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPECB -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB4 -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^^M^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode^^M^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^^M^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^^M^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^^M^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^^M^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^^M^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^^M^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy143,156%[?25h[?25l2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDDxe -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeNeonCityFPGA -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityEPRP -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityFPGA -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPollicy -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityFPGA -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityFPGA -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLighhtningRidgeEXECB4 -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB3 -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitializze -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLighttningRidgeEXECB2 -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEnntry -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB2 -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeLightningRidgeEXECB1 -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityEPRP -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLigghtningRidgeEXECB3 -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLiightningRidgeEXRP -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe81,113%[?25h[?25l2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPRP -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeLightningRidgeEXECB2 -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHHandlerRuntimeDxe -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr21,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l:[?2004h[?25h,[?25l[?25h[?25l[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h[?25l [?25h[?25l[?25hd[?25l[?25h.[?25l[?25h*[?25l[?25h{[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxeFA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe5ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIoB11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt1329CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxeC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidgeF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M -A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: -BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsbF80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe7AB22C56-2510-4FD2-AC18-57394419FBABD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxeCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe7474A4C6-7F30-4DE1-BC68-DA5EFE615B52DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup -9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreenCD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe -9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l -204 changes; before #4 3 seconds ago2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeeonCityEPRP2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeLightningRidgeEXECB22018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA62018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHHandlerRuntimeDxe018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDDxe2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeeNeonCityFPGA2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityEPRP2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCCityEPECB2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCCityFPGA2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPollicy2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxxeNeonCityFPGA2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeoonCityFPGA2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLighhtningRidgeEXECB42018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLighttningRidgeEXECB32018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitializze2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLighttningRidgeEXECB22018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEnntry2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:1,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l20[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l30[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l40[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h4[?25l[?25h[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25hd[?25l[?25h [?25l204 substitutions on 204 lines &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo - &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe - &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M - &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo - &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe - &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M - &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe - &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform - &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit - &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: - &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup &{72FE44FF-44FC-4653-918A-0D5E76C416D2 - &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime - &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe &{7AB22C56-2510-4FD2-AC18-57394419FBAB &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe - &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup - &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M - &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M - &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe - &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus - &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,2Bot204,2Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines&{7D77B32E-BAB2-4CC7-8378-7550513F3FCA&{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD&{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo&{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe&{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^M^M&{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe&{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe&{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M&{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole&{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M&{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe&{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe&{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo&{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M&{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^M^M&{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe&{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy&{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M^M&{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13&{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo&{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe&{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge&{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer&{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe&{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:&{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M&{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDim&{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:&{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^M^M&{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe&{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe&{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe&{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M&{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe&{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform&{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus&{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit&{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M^M&{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup&{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^M^M&{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M^M&{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:&{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup&{72FE44FF-44FC-4653-918A-0D5E76C416D2&{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb&{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe&{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime&{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe&{7AB22C56-2510-4FD2-AC18-57394419FBAB&{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M^M&{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir&{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF&{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M^M&{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M^M&{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe&{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe&{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe&{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52&{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup&{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M^M&{7FD082A9-3D6B-44E3-9C31-74D6B80F965C&{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen&{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M^M&{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M^M&{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13&{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^M^M&{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig&{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57&{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe&{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe&{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M^M&{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport&{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE&{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe&{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M^M&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus&{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h.[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxeFA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor^MBB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^ME8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIoB11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^M196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo^ME052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD^M4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt1329CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxeC4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidgeF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^MDEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig^MA210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxeD93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali^M6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh^MB7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE^M217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup72FE44FF-44FC-4653-918A-0D5E76C416D21015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsbF80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^MBB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntimeDC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe7AB22C56-2510-4FD2-AC18-57394419FBAD6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe^M4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFF8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi^M5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL^M22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxeCD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe7474A4C6-7F30-4DE1-BC68-DA5EFE615B52DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh^M7FD082A9-3D6B-44E3-9C31-74D6B80F965C9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreenCD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon^MCDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe^M67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN^MBC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx^M34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon^M3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus204,1Bot204,1Bot[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h.[?25l[?25h*[?25l[?25h [?25l188 substitutions on 188 lines204,1Bot204,1Bot[?25h[?25l[?25h[?25lF099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA -CF6BCADD-D4C4-4095-B2BC-417D7247890A -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -A210F973-229D-4F4D-AA37-9895E6C9EABA -3237418A-478C-4700-B59F-768E2CCBC726 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA -87AB821C-79B8-4EF6-A913-21D22063F55F -3FFCAE95-23CF-4967-94F5-16352F68E43B -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -63809859-F029-41C3-9F34-EEEB9EA787A5 -6372357A-06D7-43EF-B55C-1964F3DD6916 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 -B7EE4835-84CE-4B15-BF52-2D11574CE470 -217828C1-DA75-5BC1-7B58-91954FED0101 -BCEA6548-E204-4486-8F2A-36E13C7838CE -72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 -F80697E9-7FD6-4665-8646-88E33EF71DFC -9E8DD95D-868B-41A4-966C-107338C291BB -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B -7AB22C56-2510-4FD2-AC18-57394419FBAB -D6207835-B7E3-4FF8-B276-CDE3E52206BC -45055A79-B385-4705-A3AC-11CE99A1CB47 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -22EA234F-E72A-11E4-91F9-28D2447C4829 -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 -DC92A37B-4AC5-4117-AABB-019FFC0FD06A -9AE51047-E0B9-4A50-9E72-84E359D20189 -7FD082A9-3D6B-44E3-9C31-74D6B80F965C -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 -CD7C839D-0521-4B26-9476-9FF2CB70649A -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A -0718AD81-F26A-4850-A6EC-F268E309D707 -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 -9BB65D37-8CA8-4789-BE45-EE18536EE089 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E125,135%[?25h[?25l00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F -68D89864-C0A8-490D-BE18-C83D67240928 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -52C877FD-C27C-4779-B750-7880B28B4306 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C -9BB65D37-8CA8-4789-BE45-EE18536EE089 -536DF136-BD96-4E1E-ADF5-6B637C139063 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A -25ACF158-DD61-4E64-9A49-55851E9A26C7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 -E052D8A6-224A-4C32-8D37-2E0AE162364D -858EBE6F-360F-415B-B7DC-463AAEB03412 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -4C006CD9-19BA-4617-8483-609194A1ACFC -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 -2ACA4F79-324F-4D6D-8268-A210B1537807 -C4EB3614-4986-42B9-8C0D-9FE11827890846,1Top[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l:[?2004h[?25hq[?25l[?25h,[?25l[?25h$[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h/[?25l[?25h[?25l [?25hi[?25l[?25hx[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25ht[?25l[?25ha[?25l[?25hg[?25l[?25hh[?25l[?25h[?25l[?25h [?25l204 substitutions on 204 lines ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag ix r r tag204,2Bot204,2Bot[?25h[?25l -204 changes; before #9 0 seconds ago00CC581D-5687-47C8-96C3-44EB1240A9F6 -DE141A05-FA40-432D-9631-5E3E990F44D5 -9B680FCE-AD6B-4F3A-B60B-F59899003443 -6C160B26-E04C-4098-A6AC-C8C7B6471A86 -634E8DB5-C432-43BE-A653-9CA2922CC458 -BB65942B-521F-4EC3-BAF9-A92540CF60D2 -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E -86CDDF93-4872-4597-8AF9-A35AE4D3725F -AE587172-CC15-48E1-8BE0-29DDF05C6A1F -580DD900-385D-11D7-883A-00500473D4EB -43788BEB-638F-434C-8A84-46D33A589E76 -24A44CAF-0BF2-4514-90C4-C794B3E778F5 -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 -502B04F3-71AB-47B4-BEAE-4736EA190AA4 -BDCE85BB-FBAA-4F4E-9264-501A2C249581 -961578FE-B6B7-44C3-AF35-6BC705CD2B1F -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 -AE587172-CC15-48E1-8BE1-29DDF05C6A1E -8F5A2E02-538C-4D59-B920-C4786ACBC552 -9D0CEA63-745B-417D-BBA4-E5193061C907 -7D77B32E-BAB2-4CC7-8378-7550513F3FCA -64A11188-5B86-4F59-A702-73365896E65E -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F -68D89864-C0A8-490D-BE18-C83D67240928 -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC -52C877FD-C27C-4779-B750-7880B28B4306 -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C -9BB65D37-8CA8-4789-BE45-EE18536EE089 -536DF136-BD96-4E1E-ADF5-6B637C139063 -69E6DD6D-F09E-485F-9627-EB70E9CFC82A -25ACF158-DD61-4E64-9A49-55851E9A26C7 -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 -196CA3D8-9A5A-4735-B328-8FFC1D93D188 -E052D8A6-224A-4C32-8D37-2E0AE162364D -858EBE6F-360F-415B-B7DC-463AAEB03412 -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 -4C006CD9-19BA-4617-8483-609194A1ACFC -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 -2ACA4F79-324F-4D6D-8268-A210B1537807 -C4EB3614-4986-42B9-8C0D-9FE118278908 -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 -5038E34E-0774-47A0-A5EF-4B94AF1A43DA -CF6BCADD-D4C4-4095-B2BC-417D7247890A -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 -5038F34E-0774-47A0-A5EF-4B94AF1A43DA -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 -A210F973-229D-4F4D-AA37-9895E6C9EABA -3237418A-478C-4700-B59F-768E2CCBC726 -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 -D93DE2E3-3727-4D5B-B49F-777C93A971D3 -61422D26-81EC-47FF-B6CF-939EAEE73FBA -87AB821C-79B8-4EF6-A913-21D22063F55F -3FFCAE95-23CF-4967-94F5-16352F68E43B -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 -63809859-F029-41C3-9F34-EEEB9EA787A5 -6372357A-06D7-43EF-B55C-1964F3DD6916 -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 -8C9D8537-9479-40F4-8C82-70D1EF5F7353 -B7EE4835-84CE-4B15-BF52-2D11574CE470 -217828C1-DA75-5BC1-7B58-91954FED0101 -BCEA6548-E204-4486-8F2A-36E13C7838CE -72FE44FF-44FC-4653-918A-0D5E76C416D2 -1015EA63-7421-417D-BB51-E5193061C551 -F80697E9-7FD6-4665-8646-88E33EF71DFC -9E8DD95D-868B-41A4-966C-107338C291BB -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B -7AB22C56-2510-4FD2-AC18-57394419FBAB -D6207835-B7E3-4FF8-B276-CDE3E52206BC -45055A79-B385-4705-A3AC-11CE99A1CB47 -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 -22EA234F-E72A-11E4-91F9-28D2447C4829 -529D3F93-E8E9-4E73-B1E1-BDF6A9D501131,1Top[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h.[?25l[?25h*[?25l[?25h/[?25l[?25h&[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25hr[?25l[?25h[?25l [?25ht[?25l[?25ha[?25l[?25hg[?25l[?25h [?25l204 substitutions on 204 lines7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag204,1Bot204,1Bot[?25h[?25l:[?2004h[?25hf[?25l[?25h [?25l"remove100" [Modified][Not edited] 204 lines --100%--204,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" [New] 204L, 9180C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more RUN4 -[?2004lScript started on 2018-12-20 12:38:28-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/t -yan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 ---More--(0%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove -remove100 removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove -remove100 removeBMCcrap.bin removemorecrap.bin removesetupcrap.bin removesomecrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove100 -[?2004l00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag ---More--(39%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more mMakefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kfutvi vi vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 204L, 9180C▽ [>c]10;?]11;?00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l-- INSERT --1,1Top1,1Top]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25lR2[?25h[?25lU3[?25h[?25lN4[?25h[?25l45[?25h[?25l.6[?25h[?25l47[?25h[?25l.8[?25h[?25lr9[?25h[?25lo10[?25h[?25lm1[?25h[?25l2[?25h[?25lr3[?25h[?25lv4[?25h[?25l3[?25h[?25l2[?25h[?25lf3[?25h[?25lv4[?25h[?25l1,13Top[?25h[?25l7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag205,1Bot[?25h[?25l --- INSERT --206,1Bot -206,1Bot[?25h[?25l/2[?25h[?25lt3[?25h[?25lm4[?25h[?25lp5[?25h[?25l/6[?25h[?25lr7[?25h[?25le8[?25h[?25lm9[?25h[?25lo10[?25h[?25lv1[?25h[?25le2[?25h[?25l13[?25h[?25l04[?25h[?25l05[?25h[?25l6[?25h[?25ls7[?25h[?25la8[?25h[?25lv9[?25h[?25le20[?25h[?25lr1[?25h[?25lo2[?25h[?25lm3[?25h[?25le4[?25h[?25l206,23Bot[?25h[?25l:[?2004h[?25h [?25l206,23Bot[?25h[?25l2[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9217C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100 -[?2004l2019/01/03 13:59:06 Empty stack -[]OK 2019/01/03 13:59:08 Found 310 things -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc00696dca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc008a4f230) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0000d8000, 0x200) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0000d8000, 0x200, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove11001` -[?2004l2019/01/03 13:59:23 Found 310 things -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc010ff9ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc00696e840) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0000c2500, 0x2400) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0000c2500, 0x2400, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:526 +0x15c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat removehead remofe1ve100 -[?2004lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ uffutk -[?2004l2019/01/03 13:59:35 Empty stack -[]OK RUN4.4.rom fv -2019/01/03 13:59:43 Found 310 things -[310]OK 00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -panic: interface conversion: forth.Cell is string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc007563ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc0088acb70) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.tag(0x6de580, 0xc00000c160) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:312 +0x59b -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c160, 0xc0088a74a0, 0x2d) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c160, 0xc0088a74a0, 0x2d, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9217C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F r r tag -580DD900-385D-11D7-883A-00500473D4EB r r tag -43788BEB-638F-434C-8A84-46D33A589E76 r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA r r tag -64A11188-5B86-4F59-A702-73365896E65E r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F r r tag -68D89864-C0A8-490D-BE18-C83D67240928 r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC r r tag -52C877FD-C27C-4779-B750-7880B28B4306 r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA r r tag -3237418A-478C-4700-B59F-768E2CCBC726 r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 r r tag -1015EA63-7421-417D-BB51-E5193061C551 r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC r r tag -9E8DD95D-868B-41A4-966C-107338C291BB r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l:[?2004h[?25h.[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h[?25l [?25h/[?25l[?25h[?25l [?25hi[?25l[?25hx[?25l[?25h[?25l [?25h [?25l205 substitutions on 205 lines64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 ix saverom206,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100206,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9832C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': futk[1@u[1@t[1@k `cat remove100` ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove100` -[?2004l2019/01/03 14:00:03 Found 310 things -2019/01/03 14:00:03 Can't convert [] to a string -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat (reverse-i-search)`': [16@h': head remove100[1@e[1@a[1@d ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ head remove100  -[?2004lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk RUN4.4.rom fv -[?2004l2019/01/03 14:00:38 Found 310 things -[310]OK 00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE]]OK DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop]OK p[op -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop]OK pop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop p[op]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] pop]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP]]OK drop -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE]]OK drop -[310]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9832C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 ix saverom206,1Bot[?25h[?25l2[?25h[?25l5[?25h[?25l6[?25h[?25l16[?25h[?25l9[?25h[?25l6[?25h[?25lsaverom]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 9829C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100 -[?2004l2019/01/03 14:01:28 Empty stack -[]OK 2019/01/03 14:01:31 Found 310 things -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA]OK [310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM:: r already marked by re r 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir 39E8CA1A-7A69-4A73-834A-D06381933286:EFI_FV_FILETYPE_PEIM: C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM:: r already marked by re r 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM:: r already marked by re r BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport: r already marked by re r 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] 3C1DE39F-D207-408A]OK 2019/01/03 14:01:31 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:01:31 removed [0xc00b1a5580] -2019/01/03 14:01:31 Try to remove 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: (0DCA793A-EA96-42D8-BD7B-DC7F684E38C1) -2019/01/03 14:01:31 removed [0xc013ff9100] -2019/01/03 14:01:31 Try to remove 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: (9029F23E-E1EE-40D1-9382-36DD61A63EAA) -2019/01/03 14:01:31 removed [0xc013ff9300] -2019/01/03 14:01:31 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:01:31 removed [0xc00aebe100] -2019/01/03 14:01:31 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:01:31 removed [0xc00aebe480] -2019/01/03 14:01:31 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:01:31 removed [0xc00b1a4180] -2019/01/03 14:01:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:01:31 removed [0xc000026500] -2019/01/03 14:01:31 Try to remove 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: (34989D8E-930A-4A95-AB04-2E6CFDFF6631) -2019/01/03 14:01:31 removed [0xc013ff8900] -2019/01/03 14:01:31 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:01:31 removed [0xc00aebe080] -2019/01/03 14:01:31 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:01:31 removed [0xc00b1a4b00] -2019/01/03 14:01:31 Try to remove BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: (BDAD7D1A-4C48-4C75-B5BC-D002D17F6397) -2019/01/03 14:01:31 removed [0xc00b1a5f80] -2019/01/03 14:01:31 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:01:31 removed [0xc00aebf680] -2019/01/03 14:01:31 Try to remove 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul (3B24F79D-91A0-46FF-BE29-458AE211FAC5) -2019/01/03 14:01:31 removed [0xc00b178e00] -2019/01/03 14:01:31 Try to remove F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: (F303AF22-6804-494B-A28A-A03BE7D5C742) -2019/01/03 14:01:31 removed [0xc00b179f80] -2019/01/03 14:01:31 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:01:31 removed [0xc000027700] -2019/01/03 14:01:31 Try to remove E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit (E2A74738-8934-48F5-8412-99E948C8DC1B) -2019/01/03 14:01:31 removed [0xc00b179800] -2019/01/03 14:01:31 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:01:31 removed [0xc00b1a4680] -2019/01/03 14:01:31 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:01:31 removed [0xc00aebe500] -2019/01/03 14:01:31 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:01:31 removed [0xc00aebe700] -2019/01/03 14:01:31 Try to remove 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm (59287178-59B2-49CA-BC63-532B12EA2C53) -2019/01/03 14:01:31 removed [0xc00b178400] -2019/01/03 14:01:31 Try to remove 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: (63819805-67BB-46EF-AA8D-1524A19A01E4) -2019/01/03 14:01:31 removed [0xc00b179d00] -2019/01/03 14:01:31 Try to remove 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: (38705437-5697-4715-85C6-29933073C212) -2019/01/03 14:01:31 removed [0xc013ff8600] -2019/01/03 14:01:31 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:01:31 removed [0xc000026e00] -2019/01/03 14:01:31 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2019/01/03 14:01:31 removed [0xc000027200] -2019/01/03 14:01:31 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:01:31 removed [0xc00aebe580] -2019/01/03 14:01:31 Try to remove 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi (15CCACBE-2A4A-45ED-9EC2-53135F98AB24) -2019/01/03 14:01:31 removed [0xc00b178780] -2019/01/03 14:01:31 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:01:31 removed [0xc00b1a4a80] -2019/01/03 14:01:31 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:01:31 removed [0xc00aebe980] -2019/01/03 14:01:31 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2019/01/03 14:01:31 removed [0xc00b179c80] -2019/01/03 14:01:31 Try to remove 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 (2CAD98FC-1897-4837-B313-E6F095F4F84C) -2019/01/03 14:01:31 removed [0xc00b1a5480] -2019/01/03 14:01:31 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:01:31 removed [0xc000027380] -2019/01/03 14:01:31 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:01:31 removed [0xc000027a80] -2019/01/03 14:01:31 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:01:31 removed [0xc00aebe200] -2019/01/03 14:01:31 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:01:31 removed [0xc00aebe300] -2019/01/03 14:01:31 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:01:31 removed [0xc00aebe280] -2019/01/03 14:01:31 Try to remove A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler (A630B937-3AB3-4263-85B1-A63E98F29949) -2019/01/03 14:01:31 removed [0xc00b179400] -2019/01/03 14:01:31 Try to remove 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog (60798953-1E91-46C9-B521-316623424522) -2019/01/03 14:01:31 removed [0xc00b179500] -2019/01/03 14:01:31 Try to remove 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup (9BFE0707-8174-4B8A-A5F5-556FB10E8843) -2019/01/03 14:01:31 removed [0xc00b179780] -2019/01/03 14:01:31 Try to remove 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: (4896840D-46BB-412B-A30A-A62ABFB3682F) -2019/01/03 14:01:31 removed [0xc00b1a4900] -2019/01/03 14:01:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:01:31 removed [0xc000027000] -2019/01/03 14:01:31 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:01:31 removed [0xc000026180] -2019/01/03 14:01:31 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:01:31 removed [0xc000027e80] -2019/01/03 14:01:31 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:01:31 removed [0xc00aebf700] -2019/01/03 14:01:31 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:01:31 removed [0xc000026800] -2019/01/03 14:01:31 Try to remove F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform (F5AC7057-5650-466E-B692-76A47223EFB0) -2019/01/03 14:01:31 removed [0xc00b178f80] -2019/01/03 14:01:31 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2019/01/03 14:01:31 removed [0xc000026480] -2019/01/03 14:01:31 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:01:31 removed [0xc00aebe600] -2019/01/03 14:01:31 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:01:31 removed [0xc00aebf500] -2019/01/03 14:01:31 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:01:31 removed [0xc000027400] -2019/01/03 14:01:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:01:31 removed [0xc000027c80] -2019/01/03 14:01:31 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:01:31 removed [0xc00aebfa00] -2019/01/03 14:01:31 Try to remove 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: (17088572-377F-44EF-8F4E-B09FFF46A070) -2019/01/03 14:01:31 removed [0xc00b1a4e00 0xc013ff9880] -2019/01/03 14:01:31 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:01:31 removed [0xc00aebe400] -2019/01/03 14:01:31 Try to remove E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport (E954929C-5BAC-4494-B963-3B23D4A13AD2) -2019/01/03 14:01:31 removed [0xc00b178280] -2019/01/03 14:01:31 Try to remove 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler (893BF598-FA5D-4B6C-8829-6016ECC443E7) -2019/01/03 14:01:31 removed [0xc00b179180] -2019/01/03 14:01:31 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:01:31 removed [0xc000026a80] -2019/01/03 14:01:31 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:01:31 removed [0xc00aebf100] -2019/01/03 14:01:31 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:01:31 removed [0xc00aebea00] -2019/01/03 14:01:31 Try to remove 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: (9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50) -2019/01/03 14:01:31 removed [0xc013ff9200] -2019/01/03 14:01:31 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:01:31 removed [0xc000026f80] -2019/01/03 14:01:31 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:01:31 removed [0xc000027100] -2019/01/03 14:01:31 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:01:31 removed [0xc000027f00] -2019/01/03 14:01:31 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:01:31 removed [0xc00aebec00] -2019/01/03 14:01:31 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:01:31 removed [0xc00aebf000] -2019/01/03 14:01:31 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:01:31 removed [0xc00aebfa80] -2019/01/03 14:01:31 Try to remove EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot (EA1D58A2-EA3D-4C14-928A-80A14545E681) -2019/01/03 14:01:31 removed [0xc00b178d00] -2019/01/03 14:01:31 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:01:31 removed [0xc00aebe680] -2019/01/03 14:01:31 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:01:31 removed [0xc00aebec80] -2019/01/03 14:01:31 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:01:31 removed [0xc00aebf880] -2019/01/03 14:01:31 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:01:31 removed [0xc00aebf980] -2019/01/03 14:01:31 Try to remove C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm (C56EDB22-3D78-4705-A222-BDD6BD154DA0) -2019/01/03 14:01:31 removed [0xc00b179980] -2019/01/03 14:01:31 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2019/01/03 14:01:31 removed [0xc000026700] -2019/01/03 14:01:31 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:01:31 removed [0xc00aebe800] -2019/01/03 14:01:31 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:01:31 removed [0xc00aebf380] -2019/01/03 14:01:31 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:01:31 removed [0xc00aebf800] -2019/01/03 14:01:31 Try to remove 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm (0C375A90-4C4C-4428-8EA0-531BE8959BF7) -2019/01/03 14:01:31 removed [0xc00aebfb80] -2019/01/03 14:01:31 Try to remove 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: (0D1ED2F7-E92B-4562-92DD-5C82EC917EAE) -2019/01/03 14:01:31 removed [0xc013ff8d80] -2019/01/03 14:01:31 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2019/01/03 14:01:31 removed [0xc00aebed80] -2019/01/03 14:01:31 Try to remove 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler (5FB81FA3-BF65-43AD-A47B-DF70C3112B5A) -2019/01/03 14:01:31 removed [0xc00b179680] -2019/01/03 14:01:31 Try to remove 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 (4FD1BC5E-0A53-4501-B913-56D362989E13) -2019/01/03 14:01:31 removed [0xc00b1a5400] -2019/01/03 14:01:31 Try to remove DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: (DACF705C-71DF-497D-AABE-10186B2E1DDE) -2019/01/03 14:01:31 removed [0xc013ff9580] -2019/01/03 14:01:31 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:01:31 removed [0xc000027b80] -2019/01/03 14:01:31 Try to remove B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: (B41956E1-7CA2-42DB-9562-168389F0F066) -2019/01/03 14:01:31 removed [0xc013ff8480] -2019/01/03 14:01:31 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:01:31 removed [0xc000026600] -2019/01/03 14:01:31 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:01:31 removed [0xc00aebf180] -2019/01/03 14:01:31 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:01:31 removed [0xc00aebf300] -2019/01/03 14:01:31 Try to remove 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio (2486829B-D3F3-47EC-827A-FC104907FC5C) -2019/01/03 14:01:31 removed [0xc00b178900] -2019/01/03 14:01:31 Try to remove DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm (DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7) -2019/01/03 14:01:31 removed [0xc00b1a4200] -2019/01/03 14:01:31 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:01:31 removed [0xc00b1a4980] -2019/01/03 14:01:31 Try to remove DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: (DAF4BF89-CE71-4917-B522-C89D32FBC59F) -2019/01/03 14:01:31 removed [0xc00b1a4a00] -2019/01/03 14:01:31 Try to remove 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: (299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9) -2019/01/03 14:01:31 removed [0xc00b1a5d00] -2019/01/03 14:01:31 Try to remove AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: (AB8F1705-7EB6-4D08-A9B3-918BDE24F479) -2019/01/03 14:01:31 removed [0xc013ff8780] -2019/01/03 14:01:31 Try to remove 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore (52C05B14-0B98-496C-BC3B-04B50211D680) -2019/01/03 14:01:31 removed [0xc00b1a5780] -2019/01/03 14:01:31 Try to remove 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog (543323CE-9F0C-4DDF-A33C-BC3B3A5AC227) -2019/01/03 14:01:31 removed [0xc00b178800] -2019/01/03 14:01:31 Try to remove 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler (2DE648CB-3102-43CA-A02E-42E38EA5E789) -2019/01/03 14:01:31 removed [0xc00b179280] -2019/01/03 14:01:31 Try to remove 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable (750890A6-7ACF-4F4F-81BD-B400C2BEA95A) -2019/01/03 14:01:31 removed [0xc00b179b00] -2019/01/03 14:01:31 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:01:31 removed [0xc000026780] -2019/01/03 14:01:31 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:01:31 removed [0xc000026a00] -2019/01/03 14:01:31 Try to remove 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM (870E0F5A-1981-45F6-AE26-0391425CC46F) -2019/01/03 14:01:31 removed [0xc00aebff00] -2019/01/03 14:01:31 Try to remove 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: (968C1D9F-80C4-43B7-8CAE-668AA56C4E71) -2019/01/03 14:01:31 removed [0xc013ff8880] -2019/01/03 14:01:31 Try to remove F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: (F7FDE4A6-294C-493C-B50F-9734553BB757) -2019/01/03 14:01:31 removed [0xc013ff9180] -2019/01/03 14:01:31 Try to remove 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: (86D70125-BAA3-4296-A62F-602BEBBB9081) -2019/01/03 14:01:31 removed [0xc00b1a5880] -2019/01/03 14:01:31 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:01:31 removed [0xc000026380] -2019/01/03 14:01:31 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:01:31 removed [0xc000027d80] -2019/01/03 14:01:31 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:01:31 removed [0xc00aebef00] -2019/01/03 14:01:31 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:01:31 removed [0xc00aebf580] -2019/01/03 14:01:31 Try to remove 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: (709E6472-1BCD-43BD-8B6B-CD2D6D08B967) -2019/01/03 14:01:31 removed [0xc00b179e00] -2019/01/03 14:01:31 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:01:31 removed [0xc00b1a4480] -2019/01/03 14:01:31 Try to remove 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: (1BA0062E-C779-4582-8566-336AE8F78F09) -2019/01/03 14:01:31 removed [0xc013ff9c00] -2019/01/03 14:01:31 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2019/01/03 14:01:31 removed [0xc000026980] -2019/01/03 14:01:31 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:01:31 removed [0xc000027b00] -2019/01/03 14:01:31 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:01:31 removed [0xc000026b00] -2019/01/03 14:01:31 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:01:31 removed [0xc000026e80] -2019/01/03 14:01:31 Try to remove E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm (E21F35A8-42FF-4050-82D6-93F7CDFA7073) -2019/01/03 14:01:31 removed [0xc00b179b80] -2019/01/03 14:01:31 Try to remove DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: (DEF30E37-7AEC-4F69-91A2-CF099E2729F2) -2019/01/03 14:01:31 removed [0xc013ff8d00] -2019/01/03 14:01:31 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:01:31 removed [0xc00aebf480] -2019/01/03 14:01:31 Try to remove 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox (33FB3535-F15E-4C17-B303-5EB94595ECB6) -2019/01/03 14:01:31 removed [0xc00aebfd00] -2019/01/03 14:01:31 Try to remove 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo (37A01080-2346-4A54-9900-D22B7B687C22) -2019/01/03 14:01:31 removed [0xc00b178a80] -2019/01/03 14:01:31 Try to remove 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog (935D2F78-3A1F-4DE6-B28D-123A40DD2DEC) -2019/01/03 14:01:31 removed [0xc00b178d80] -2019/01/03 14:01:31 Try to remove EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: (EE685731-CFF3-4EE7-9388-7E63FC5A59B0) -2019/01/03 14:01:31 removed [0xc013ff8300] -2019/01/03 14:01:31 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2019/01/03 14:01:31 removed [0xc000027500] -2019/01/03 14:01:31 Try to remove B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: (B894C949-A1F8-41C1-A7C0-DF523AD91C15) -2019/01/03 14:01:31 removed [0xc013ff8280] -2019/01/03 14:01:31 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:01:31 removed [0xc000027600] -2019/01/03 14:01:31 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:01:31 removed [0xc00aebe780] -2019/01/03 14:01:31 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:01:31 removed [0xc00aebf780] -2019/01/03 14:01:31 Try to remove 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: (7D113AA9-6280-48C6-BACE-DFE7668E8307) -2019/01/03 14:01:31 removed [0xc00b1a4100] -2019/01/03 14:01:31 Try to remove 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: (7ECD9C20-68B9-4A6F-B515-D64FF500B109) -2019/01/03 14:01:31 removed [0xc013ff9600] -2019/01/03 14:01:31 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:01:31 removed [0xc000026c80] -2019/01/03 14:01:31 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:01:31 removed [0xc000027e00] -2019/01/03 14:01:31 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2019/01/03 14:01:31 removed [0xc00aebe900] -2019/01/03 14:01:31 Try to remove C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler (C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2) -2019/01/03 14:01:31 removed [0xc00b179100] -2019/01/03 14:01:31 Try to remove 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM: (9FE7DE69-0AEA-470A-B50A-139813649189) -2019/01/03 14:01:31 removed [0xc00b1a5200] -2019/01/03 14:01:31 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2019/01/03 14:01:31 removed [0xc00aebe880] -2019/01/03 14:01:31 Try to remove E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: (E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10) -2019/01/03 14:01:31 removed [0xc013ff8f80] -2019/01/03 14:01:31 Try to remove 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: (0EF53039-3A38-42D1-BCEC-CE966E87061A) -2019/01/03 14:01:31 removed [0xc013ff9500] -2019/01/03 14:01:31 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:01:31 removed [0xc000027780] -2019/01/03 14:01:31 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:01:31 removed [0xc000027800] -2019/01/03 14:01:31 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:01:31 removed [0xc00aebed00] -2019/01/03 14:01:31 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:01:31 removed [0xc00aebf400] -2019/01/03 14:01:31 Try to remove 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm (8F0B5301-C79B-44F1-8FD3-26D73E316700) -2019/01/03 14:01:31 removed [0xc00b178180] -2019/01/03 14:01:31 Try to remove 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: (93390241-7D4D-4986-8A06-D46C982F5ECD) -2019/01/03 14:01:31 removed [0xc00b1a5b80] -2019/01/03 14:01:31 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:01:31 removed [0xc000027880] -2019/01/03 14:01:31 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:01:31 removed [0xc00aebe380] -2019/01/03 14:01:31 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:01:31 removed [0xc00aebeb80] -2019/01/03 14:01:31 Try to remove CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: (CA9D8617-D652-403B-B6C5-BA47570116AD) -2019/01/03 14:01:31 removed [0xc013ff8800] -2019/01/03 14:01:31 Try to remove 4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm (4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B) -2019/01/03 14:01:31 removed [0xc00b178c00] -2019/01/03 14:01:31 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2019/01/03 14:01:31 removed [0xc00b1a4300] -2019/01/03 14:01:31 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:01:31 removed [0xc000027300] -2019/01/03 14:01:31 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:01:31 removed [0xc00aebf900] -2019/01/03 14:01:31 Try to remove 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain (39D1EDC0-C9ED-4663-90DB-7457FF0548C5) -2019/01/03 14:01:31 removed [0xc00b179300] -2019/01/03 14:01:31 Try to remove E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore (E94F54CD-81EB-47ED-AEC3-856F5DC157A9) -2019/01/03 14:01:31 removed [0xc00aebfb00] -2019/01/03 14:01:31 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:01:31 removed [0xc000026c00] -2019/01/03 14:01:31 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:01:31 removed [0xc000027080] -2019/01/03 14:01:31 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:01:31 removed [0xc00aebea80] -2019/01/03 14:01:31 Try to remove A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: (A08276EC-A0FE-4E06-8670-385336C7D093) -2019/01/03 14:01:31 removed [0xc00b179e80] -2019/01/03 14:01:31 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:01:31 removed [0xc00b1a5500] -2019/01/03 14:01:31 Try to remove CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: (CBC91F44-A4BC-4A5B-8696-703451D0B053) -2019/01/03 14:01:31 removed [0xc013ff9700] -2019/01/03 14:01:31 Try to remove AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: (AF516361-B4C5-436E-A7E3-A149A31B1461) -2019/01/03 14:01:31 removed [0xc013ff9b00] -2019/01/03 14:01:31 Try to remove D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore (D6A2CB7F-6A18-4E2F-B43B-9920A733700A) -2019/01/03 14:01:31 removed [0xc000026280] -2019/01/03 14:01:31 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:01:31 removed [0xc000027900] -2019/01/03 14:01:31 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:01:31 removed [0xc000027f80] -2019/01/03 14:01:31 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:01:31 removed [0xc00b1a4500] -2019/01/03 14:01:31 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:01:31 removed [0xc000026400] -2019/01/03 14:01:31 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:01:31 removed [0xc00b1a4580] -2019/01/03 14:01:31 Try to remove 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir (291E46D4-CA63-4D33-9857-1397C9AD7C0D) -2019/01/03 14:01:31 removed [0xc00b178980] -2019/01/03 14:01:31 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:01:31 removed [0xc00b1a5380] -2019/01/03 14:01:31 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:01:31 removed [0xc00aebf600] -2019/01/03 14:01:31 Try to remove DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: (DAC2B117-B5FB-4964-A312-0DCC77061B9B) -2019/01/03 14:01:31 removed [0xc00b1a4e80] -2019/01/03 14:01:31 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:01:31 removed [0xc000027c00] -2019/01/03 14:01:31 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:01:31 removed [0xc00aebe000] -2019/01/03 14:01:31 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:01:31 removed [0xc00aebf280] -2019/01/03 14:01:31 Try to remove 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: (17088572-377F-44EF-8F4E-B09FFF46A070) -Can't happen: &{17088572-377F-44EF-8F4E-B09FFF46A070 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 1 map[r:r]} not found -[310 [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2] [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode] 580DD900-385D-11D7 [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit] [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb] 7D [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe] [FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole] 9BB65D37-8CA8-4789-BE45-EE18536EE0 [4A6D890F-93C3-4B6D-A67D-5F2C4DCE347B:EFI_FV_FILETYPE_MM:RuntimeSmm CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM: E2A74738-8934-48F5-8412-99E948C8DC1B:EFI_FV_FILETYPE_MM:SmbiosDmiEdit 2CAD98FC-1897-4837-B313-E6F095F4F84C:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt1 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 60798953-1E91-46C9-B521-316623424522:EFI_FV_FILETYPE_MM:WheaErrorLog 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM: 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 0C375A90-4C4C-4428-8EA0-531BE8959BF7:EFI_FV_FILETYPE_MM:FlashDriverSmm 4FD1BC5E-0A53-4501-B913-56D362989E13:EFI_FV_FILETYPE_FREEFORM:OPAPlatConfigSkt0 B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM: 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport DAF4BF89-CE71-4917-B522-C89D32FBC59F:EFI_FV_FILETYPE_FREEFORM: 2DE648CB-3102-43CA-A02E-42E38EA5E789:EFI_FV_FILETYPE_MM:ProcessorErrorHandler 750890A6-7ACF-4F4F-81BD-B400C2BEA95A:EFI_FV_FILETYPE_MM:AcpiModeEnable C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer B894C949-A1F8-41C1-A7C0-DF523AD91C15:EFI_FV_FILETYPE_PEIM: 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA] [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo] 2ACA4F79-324F-4D6D [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe] 17 [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform] [3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2] B7EE4835-84CE-4B15-BF52-2D11574CE4 [70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r 9BFE0707-8174-4B8A-A5F5-556FB10E8843:EFI_FV_FILETYPE_MM:RTCWakeup F5AC7057-5650-466E-B692-76A47223EFB0:EFI_FV_FILETYPE_MM:AcpiSmmPlatform 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe C56EDB22-3D78-4705-A222-BDD6BD154DA0:EFI_FV_FILETYPE_MM:TpmClearOnRollbackSmm DACF705C-71DF-497D-AABE-10186B2E1DDE:EFI_FV_FILETYPE_PEIM: 5FB81FA3-BF65-43AD-A47B-DF70C3112B5A:EFI_FV_FILETYPE_MM:SvSmmHandler 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP AB8F1705-7EB6-4D08-A9B3-918BDE24F479:EFI_FV_FILETYPE_PEIM: 870E0F5A-1981-45F6-AE26-0391425CC46F:EFI_FV_FILETYPE_MM:CpuCsrAccessSMM 86D70125-BAA3-4296-A62F-602BEBBB9081:EFI_FV_FILETYPE_PEIM: 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM: E21F35A8-42FF-4050-82D6-93F7CDFA7073:EFI_FV_FILETYPE_MM:PiSmmCommunicationSmm AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 9FE7DE69-0AEA-470A-B50A-139813649189:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM: 8F0B5301-C79B-44F1-8FD3-26D73E316700:EFI_FV_FILETYPE_MM:HwpLvtSmm CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r CBC91F44-A4BC-4A5B-8696-703451D0B053:EFI_FV_FILETYPE_FREEFORM: A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM: D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore DAC2B117-B5FB-4964-A312-0DCC77061B9B:EFI_FV_FILETYPE_FREEFORM: 17088572-377F-44EF-8F4E-B09FFF46A070:EFI_FV_FILETYPE_RAW: 2700F72F-E0EA-4767-9A1E-D172F0704778:EFI_FV_FILETYPE_PEIM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r 38705437-5697-4715-85C6-29933073C212:EFI_FV_FILETYPE_PEIM: CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb] [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1] 45055A79-B385-4705 [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP] [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] 7F [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage] [67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] 8958EDFF-02F7-4E49-87B1-FBA4BE4E87 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 4896840D-46BB-412B-A30A-A62ABFB3682F:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r EA1D58A2-EA3D-4C14-928A-80A14545E681:EFI_FV_FILETYPE_MM:WheaPlatformBoot B41956E1-7CA2-42DB-9562-168389F0F066:EFI_FV_FILETYPE_PEIM:: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM: 37A01080-2346-4A54-9900-D22B7B687C22:EFI_FV_FILETYPE_MM:SmmPciRbIo EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM: AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2: r already marked by re r 7D113AA9-6280-48C6-BACE-DFE7668E8307:EFI_FV_FILETYPE_FREEFORM: 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM: CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r 9AB047AF-C26E-4DBF-B468-27AC6536482E:EFI_FV_FILETYPE_PEIM: 28A88A39-DD84-483F-9BEF-BA1168C2F850:EFI_FV_FILETYPE_PEIM: 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 0DCA793A-EA96-42D8-BD7B-DC7F684E38C1:EFI_FV_FILETYPE_FREEFORM: 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM: 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE: r already marked by re r] [DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r] [9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe: r already marked by re r] [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r] 634E8DB5-C432-43BE [634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r] [BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r] [74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r] [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r] [86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe: r already marked by re r] [AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode: r already marked by re r] [580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd: r already marked by re r] [43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r] [24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe: r already marked by re r] [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb: r already marked by re r] [502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit: r already marked by re r] BD [BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe: r already marked by re r] [961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat: r already marked by re r] [DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe: r already marked by re r] [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr: r already marked by re r] [8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci: r already marked by re r] [9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r] [7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD: r already marked by re r] [97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo: r already marked by re r] [13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe: r already marked by re r] FA20568B-548B-4B2B-81EF-1BA08D4A3C [40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController: r already marked by re r 0D1ED2F7-E92B-4562-92DD-5C82EC917EAE:EFI_FV_FILETYPE_PEIM: 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r 2486829B-D3F3-47EC-827A-FC104907FC5C:EFI_FV_FILETYPE_MM:SmmGenericSio: r already marked by re r DB08F6CA-3048-4CD8-9B1F-20BED33ECFE7:EFI_FV_FILETYPE_MM:StatusCodeSmm 299D6F8B-2EC9-4E40-9EC6-DDAA7EBF5FD9:EFI_FV_FILETYPE_PEIM: 1BA0062E-C779-4582-8566-336AE8F78F09:EFI_FV_FILETYPE_SECURITY_CORE: 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer: r already marked by re r DEF30E37-7AEC-4F69-91A2-CF099E2729F2:EFI_FV_FILETYPE_PEIM: 935D2F78-3A1F-4DE6-B28D-123A40DD2DEC:EFI_FV_FILETYPE_MM:SmmGenericElog 33FB3535-F15E-4C17-B303-5EB94595ECB6:EFI_FV_FILETYPE_MM:SmmLockBox 7ECD9C20-68B9-4A6F-B515-D64FF500B109:EFI_FV_FILETYPE_PEIM:: r already marked by re r E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r C1D61CB0-78B0-42F0-BC3F-F54DFEC65DB2:EFI_FV_FILETYPE_MM:PartialMirrorHandler 0EF53039-3A38-42D1-BCEC-CE966E87061A:EFI_FV_FILETYPE_PEIM:: r already marked by re r E9DD7F62-25EC-4F9D-A4AB-AAD20BF59A10:EFI_FV_FILETYPE_PEIM: 93390241-7D4D-4986-8A06-D46C982F5ECD:EFI_FV_FILETYPE_PEIM: 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r E94F54CD-81EB-47ED-AEC3-856F5DC157A9:EFI_FV_FILETYPE_MM_CORE:PiSmmCore A08276EC-A0FE-4E06-8670-385336C7D093:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP: r already marked by re r 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r 15CCACBE-2A4A-45ED-9EC2-53135F98AB24:EFI_FV_FILETYPE_MM:BmcAcpi FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe: r already marked by re r 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4: r already marked by re r] [BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe: r already marked by re r] [68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA: r already marked by re r] [E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe: r already marked by re r] [52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP: r already marked by re r] [43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r] [69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe: r already marked by re r] [25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo: r already marked by re r] [B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA: r already marked by re r] 196CA3D8-9A5A-4735 [196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy: r already marked by re r] [E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe: r already marked by re r] [858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r] [6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA: r already marked by re r] [4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13: r already marked by re r] [29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r] [2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe: r already marked by re r] [C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge: r already marked by re r] [F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer: r already marked by re r] [16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe: r already marked by re r] [5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] CF [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA: r already marked by re r] [DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm: r already marked by re r] [5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4: r already marked by re r] [A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe: r already marked by re r] [3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe: r already marked by re r] [171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe: r already marked by re r] [D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3: r already marked by re r] [61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe: r already marked by re r] [87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r] 3FFCAE95-23CF-4967-94F5-16352F68E4 [CA9D8617-D652-403B-B6C5-BA47570116AD:EFI_FV_FILETYPE_PEIM:: r already marked by re r D6A2CB7F-6A18-4E2F-B43B-9920A733700A:EFI_FV_FILETYPE_DXE_CORE:DxeCore: r already marked by re r C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM: 3B24F79D-91A0-46FF-BE29-458AE211FAC5:EFI_FV_FILETYPE_MM:KbcEmul F303AF22-6804-494B-A28A-A03BE7D5C742:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase: r already marked by re r 893BF598-FA5D-4B6C-8829-6016ECC443E7:EFI_FV_FILETYPE_MM:MainErrorHandler: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50:EFI_FV_FILETYPE_PEIM: 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe 52C05B14-0B98-496C-BC3B-04B50211D680:EFI_FV_FILETYPE_PEI_CORE:PeiCore: r already marked by re r 543323CE-9F0C-4DDF-A33C-BC3B3A5AC227:EFI_FV_FILETYPE_MM:SmmBmcElog 968C1D9F-80C4-43B7-8CAE-668AA56C4E71:EFI_FV_FILETYPE_PEIM:: r already marked by re r F7FDE4A6-294C-493C-B50F-9734553BB757:EFI_FV_FILETYPE_PEIM: CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r 709E6472-1BCD-43BD-8B6B-CD2D6D08B967:EFI_FV_FILETYPE_FREEFORM:: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r] [6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup: r already marked by re r] [8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2: r already marked by re r] [B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry: r already marked by re r] [217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER:: r already marked by re r] [BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup: r already marked by re r] [72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3: r already marked by re r] [1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r] F80697E9-7FD6-4665 [F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe: r already marked by re r] [9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2: r already marked by re r] [BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime: r already marked by re r] [DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe: r already marked by re r] [7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA: r already marked by re r] [D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1: r already marked by re r] [45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP: r already marked by re r] [4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir: r already marked by re r] [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe: r already marked by re r] [F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3: r already marked by re r] [5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP: r already marked by re r] 22 [22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe: r already marked by re r] [529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe: r already marked by re r] [CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe: r already marked by re r] [7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP: r already marked by re r] [DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup: r already marked by re r] [9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2: r already marked by re r] [7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1: r already marked by re r] [9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen: r already marked by re r] [CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB: r already marked by re r] [CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage: r already marked by re r] 67820532-7613-4DD3-9ED7-3D9BE3A7DA [8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio: r already marked by re r EE685731-CFF3-4EE7-9388-7E63FC5A59B0:EFI_FV_FILETYPE_PEIM:: r already marked by re r 39D1EDC0-C9ED-4663-90DB-7457FF0548C5:EFI_FV_FILETYPE_MM:AmiErrorHandlerMain 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13: r already marked by re r AF516361-B4C5-436E-A7E3-A149A31B1461:EFI_FV_FILETYPE_FREEFORM: 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb: r already marked by re r 291E46D4-CA63-4D33-9857-1397C9AD7C0D:EFI_FV_FILETYPE_MM:LegacySmmSredir 39E8CA1A-7A69-4A73-834A-D06381933286:EFI_FV_FILETYPE_PEIM: C779F6D8-7113-4AA1-9648-EB1633C7D53B:EFI_FV_FILETYPE_PEIM:: r already marked by re r 9029F23E-E1EE-40D1-9382-36DD61A63EAA:EFI_FV_FILETYPE_PEIM: 34989D8E-930A-4A95-AB04-2E6CFDFF6631:EFI_FV_FILETYPE_PEIM:: r already marked by re r BDAD7D1A-4C48-4C75-B5BC-D002D17F6397:EFI_FV_FILETYPE_PEIM: 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r 59287178-59B2-49CA-BC63-532B12EA2C53:EFI_FV_FILETYPE_MM:PchSmbusSmm 63819805-67BB-46EF-AA8D-1524A19A01E4:EFI_FV_FILETYPE_FREEFORM: 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy: r already marked by re r 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform: r already marked by re r A630B937-3AB3-4263-85B1-A63E98F29949:EFI_FV_FILETYPE_MM:PcieErrorHandler 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize: r already marked by re r DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP: r already marked by re r E954929C-5BAC-4494-B963-3B23D4A13AD2:EFI_FV_FILETYPE_MM:QuiesceSupport: r already marked by re r 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog: r already marked by re r 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme: r already marked by re r 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo: r already marked by re r 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb: r already marked by re r 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit: r already marked by re r 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize: r already marked by re r] [E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB: r already marked by re r] [BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig: r already marked by re r] [7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1: r already marked by re r] [025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe: r already marked by re r] [0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe: r already marked by re r] [8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4: r already marked by re r] [34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport: r already marked by re r] [4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE: r already marked by re r] [5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe: r already marked by re r] [9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB: r already marked by re r] 3C1DE39F-D207-408A [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r] [3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus: r already marked by re r]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9829C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h1[?25l[?25h7[?25l[?25h-[?25l[?25h8[?25l[?25h8[?25l[?25h5[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25h[?25l[?25h0[?25l[?25h8[?25l[?25h8[?25l[?25h5[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: 1708851,1Top[?25h[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 saverom206,1Bot[?25h - -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi remove100 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi remove100 -[?2004h]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?1049h[?1h=[?2004h[?12h[?12l[?25l64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -/tmp/remove100 saverom206,1Bot[?25h[?25l/[?2004h[?25hB[?25l[?25hB[?25l[?25h8[?25l[?25hC[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOPRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag28,1Top search hit BOTTOM, continuing at TOP28,1Top[?25h[?25l529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag68,132%[?25h[?25lRUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag1,1Top[?25h[?25l2[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': fgu': futk < remove100 [1@t[1@kRUN4.4.rom fv ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk RUN4.4.rom fv -[?2004l2019/01/03 14:02:35 Found 310 things -[310]OK 271B424E-A4CC-4E0E-90A2-7EA484 isx  x -[310 [0xc000010e10]]OK r r tag -[310 [271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb]]OK status -panic: interface conversion: forth.Cell is []string, not []*main.info [recovered] - panic: interface conversion: forth.Cell is []string, not []*main.info - -goroutine 1 [running]: -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.errRecover(0xc006a33ca0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:154 +0x10b -panic(0x685160, 0xc008b78390) - /usr/lib/google-golang/src/runtime/panic.go:513 +0x1b9 -main.status(0x6de580, 0xc00000c120) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:301 +0x218 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.iEval(0x6de580, 0xc00000c120, 0xc0086ac4e8, 0x7) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:172 +0xd3 -github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth.Eval(0x6de580, 0xc00000c120, 0xc0086ac4e8, 0x7, 0x0, 0x0, 0x0, 0x0) - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/vendor/github.com/u-root/u-root/pkg/forth/forth.go:189 +0x80 -main.main() - /usr/local/google/home/rminnich/go/src/github.com/linuxboot/fiano/cmds/futk/futk.go:545 +0x384 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi remove100 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"remove100" 206L, 9829C▽ [>c]10;?]11;?RUN4.4.rom fv -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag -580DD900-385D-11D7-883A-00500473D4EB ix r r tag -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag -64A11188-5B86-4F59-A702-73365896E65E ix r r tag -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag1,1Top]2;remove100 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l:[?2004h[?25h1[?25l[?25h,[?25l[?25h$[?25l[?25hs[?25l[?25h/[?25l[?25h$[?25l[?25h/[?25l[?25h[?25l [?25hd[?25l[?25hr[?25l[?25ho[?25l[?25hp[?25l[?25h [?25l206 substitutions on 206 lines64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4Fdrop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CECdrop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5Fdrop -68D89864-C0A8-490D-BE18-C83D6724092drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EACdrop -52C877FD-C27C-4779-B750-7880B28B430drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5Cdrop -9BB65D37-8CA8-4789-BE45-EE18536EE089drop -536DF136-BD96-4E1E-ADF5-6B637C139063drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82Adrop -25ACF158-DD61-4E64-9A49-55851E9A26C7drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188drop -E052D8A6-224A-4C32-8D37-2E0AE162364Ddrop -858EBE6F-360F-415B-B7DC-463AAEB03412drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78drop -4C006CD9-19BA-4617-8483-609194A1ACFCdrop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063drop -2ACA4F79-324F-4D6D-8268-A210B1537807drop -C4EB3614-4986-42B9-8C0D-9FE118278908drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DAdrop -CF6BCADD-D4C4-4095-B2BC-417D7247890Adrop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DAdrop -018A5C7A-12EB-429D-9DEF-6FCC410B04Edrop -A210F973-229D-4F4D-AA37-9895E6C9EABAdrop -3237418A-478C-4700-B59F-768E2CCBC72drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3drop -61422D26-81EC-47FF-B6CF-939EAEE73FBAdrop -87AB821C-79B8-4EF6-A913-21D22063F55Fdrop -3FFCAE95-23CF-4967-94F5-16352F68E43Bdrop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -63809859-F029-41C3-9F34-EEEB9EA787A5drop -6372357A-06D7-43EF-B55C-1964F3DD6916drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353drop -B7EE4835-84CE-4B15-BF52-2D11574CE470drop -217828C1-DA75-5BC1-7B58-91954FED0101drop -BCEA6548-E204-4486-8F2A-36E13C7838CEdrop -72FE44FF-44FC-4653-918A-0D5E76C416D2drop -1015EA63-7421-417D-BB51-E5193061C551drop -F80697E9-7FD6-4665-8646-88E33EF71DFCdrop -9E8DD95D-868B-41A4-966C-107338C291BBdrop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFEdrop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454Bdrop -7AB22C56-2510-4FD2-AC18-57394419FBABdrop -D6207835-B7E3-4FF8-B276-CDE3E52206BCdrop -45055A79-B385-4705-A3AC-11CE99A1CB47drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABFdrop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9drop -22EA234F-E72A-11E4-91F9-28D2447C4829drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06Adrop -9AE51047-E0B9-4A50-9E72-84E359D20189drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965Cdrop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36drop -CD7C839D-0521-4B26-9476-9FF2CB70649Adrop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4Adrop -0718AD81-F26A-4850-A6EC-F268E309D707drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453drop -9BB65D37-8CA8-4789-BE45-EE18536EE089drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7drop -/tmp/remove100 saverom drop206,1Bot]2;remove100 + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;remove100206,1Bot[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"remove100" 206L, 10859C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': f': futk RUN4.4.rom fv[1@u[1@t< remove100  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk < remove100  -[?2004l2019/01/03 14:03:16 Empty stack -[]OK 2019/01/03 14:03:19 Found 310 things -[AE587172-CC15-48]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421-]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD [6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2: r already marked by re r]]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA [536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe: r already marked by re r]]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t]OK [AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t 3C1DE39F-D207-408A-AACC-731]OK 2019/01/03 14:03:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:03:19 removed [0xc00aeca300] -2019/01/03 14:03:19 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:03:19 removed [0xc000027e00] -2019/01/03 14:03:19 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:03:19 removed [0xc00aeca280] -2019/01/03 14:03:19 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:03:19 removed [0xc00aecba80] -2019/01/03 14:03:19 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2019/01/03 14:03:19 removed [0xc000026d80] -2019/01/03 14:03:19 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:03:19 removed [0xc00aecab80] -2019/01/03 14:03:19 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:03:19 removed [0xc008368b00] -2019/01/03 14:03:19 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:19 removed [0xc008369500] -2019/01/03 14:03:19 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:03:19 removed [0xc00aeca480] -2019/01/03 14:03:19 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:03:19 removed [0xc000027080] -2019/01/03 14:03:19 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:03:19 removed [0xc000026500] -2019/01/03 14:03:19 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:03:19 removed [0xc00aecb580] -2019/01/03 14:03:19 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:03:19 removed [0xc000027f00] -2019/01/03 14:03:19 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:03:19 removed [0xc008368480] -2019/01/03 14:03:19 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:03:19 removed [0xc00aecb000] -2019/01/03 14:03:19 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:03:19 removed [0xc000027b00] -2019/01/03 14:03:19 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:03:19 removed [0xc00aeca000] -2019/01/03 14:03:19 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:03:19 removed [0xc000027f80] -2019/01/03 14:03:19 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:03:19 removed [0xc000026c80] -2019/01/03 14:03:19 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:03:19 removed [0xc00aeca980] -2019/01/03 14:03:19 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:03:19 removed [0xc00aecb180] -2019/01/03 14:03:19 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:03:19 removed [0xc00aeca080] -2019/01/03 14:03:19 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2019/01/03 14:03:19 removed [0xc00aecab00] -2019/01/03 14:03:19 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:03:19 removed [0xc00aecb600] -2019/01/03 14:03:19 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2019/01/03 14:03:19 removed [0xc00aeca180] -2019/01/03 14:03:19 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:03:19 removed [0xc00aecaf00] -2019/01/03 14:03:19 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:03:19 removed [0xc00aecb300] -2019/01/03 14:03:19 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:03:19 removed [0xc00aeca500] -2019/01/03 14:03:19 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:03:19 removed [0xc00aecb400] -2019/01/03 14:03:19 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:03:19 removed [0xc008368980] -2019/01/03 14:03:19 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:03:19 removed [0xc000026800] -2019/01/03 14:03:19 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:03:19 removed [0xc000027380] -2019/01/03 14:03:19 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:03:19 removed [0xc00aecac80] -2019/01/03 14:03:19 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:03:19 removed [0xc000027300] -2019/01/03 14:03:19 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:03:19 removed [0xc000027b80] -2019/01/03 14:03:19 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:03:19 removed [0xc000026780] -2019/01/03 14:03:19 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:03:19 removed [0xc000026f80] -2019/01/03 14:03:19 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:03:19 removed [0xc000027c80] -2019/01/03 14:03:19 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:03:19 removed [0xc000026a80] -2019/01/03 14:03:19 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:03:19 removed [0xc00aeca800] -2019/01/03 14:03:19 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2019/01/03 14:03:19 removed [0xc00aecaf80] -2019/01/03 14:03:19 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:03:19 removed [0xc00aecb900] -2019/01/03 14:03:19 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:03:19 removed [0xc00aeca380] -2019/01/03 14:03:19 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:03:19 removed [0xc00aeca700] -2019/01/03 14:03:19 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:03:19 removed [0xc00aecad00] -2019/01/03 14:03:19 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:03:19 removed [0xc00aecb680] -2019/01/03 14:03:19 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:03:19 removed [0xc00aecb700] -2019/01/03 14:03:19 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:03:19 removed [0xc00aecb800] -2019/01/03 14:03:19 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:03:19 removed [0xc00aeca100] -2019/01/03 14:03:19 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:03:19 removed [0xc00aecb500] -2019/01/03 14:03:19 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:03:19 removed [0xc00aecac00] -2019/01/03 14:03:19 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:03:19 removed [0xc000027800] -2019/01/03 14:03:19 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:03:19 removed [0xc008369380] -2019/01/03 14:03:19 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:03:19 removed [0xc000027700] -2019/01/03 14:03:19 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:03:19 removed [0xc000026c00] -2019/01/03 14:03:19 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:03:19 removed [0xc00aeca580] -2019/01/03 14:03:19 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2019/01/03 14:03:19 removed [0xc000027d00] -2019/01/03 14:03:19 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:19 removed [0xc008369580] -2019/01/03 14:03:19 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:03:19 removed [0xc00aeca780] -2019/01/03 14:03:19 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:03:19 removed [0xc008368680] -2019/01/03 14:03:19 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:03:19 removed [0xc000027780] -2019/01/03 14:03:19 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:03:19 removed [0xc000026180] -2019/01/03 14:03:19 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:03:19 removed [0xc000027a80] -2019/01/03 14:03:19 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:03:19 removed [0xc00aeca600] -2019/01/03 14:03:19 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:03:19 removed [0xc00aecb880] -2019/01/03 14:03:19 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:03:19 removed [0xc000027100] -2019/01/03 14:03:19 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:03:19 removed [0xc000027900] -2019/01/03 14:03:19 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:03:19 removed [0xc00aeca680] -2019/01/03 14:03:19 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:03:19 removed [0xc008368a80] -2019/01/03 14:03:19 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:03:19 removed [0xc000027000] -2019/01/03 14:03:19 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:03:19 removed [0xc00aecb480] -2019/01/03 14:03:19 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:03:19 removed [0xc008368180] -2019/01/03 14:03:19 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:03:19 removed [0xc000026b00] -2019/01/03 14:03:19 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2019/01/03 14:03:19 removed [0xc00aecb200] -2019/01/03 14:03:19 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:03:19 removed [0xc000026e00] -2019/01/03 14:03:19 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:03:19 removed [0xc008368500] -2019/01/03 14:03:19 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:03:19 removed [0xc000027600] -2019/01/03 14:03:19 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:03:19 removed [0xc000027c00] -2019/01/03 14:03:19 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:03:19 removed [0xc00aeca200] -2019/01/03 14:03:19 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:03:19 removed [0xc00aecaa00] -2019/01/03 14:03:19 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:03:19 removed [0xc000026400] -2019/01/03 14:03:19 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:03:19 removed [0xc000027400] -2019/01/03 14:03:19 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2019/01/03 14:03:19 removed [0xc000027980] -2019/01/03 14:03:19 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:03:19 removed [0xc000027e80] -2019/01/03 14:03:19 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:03:19 removed [0xc00aecb100] -2019/01/03 14:03:19 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:03:19 removed [0xc000027d80] -2019/01/03 14:03:19 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:03:19 removed [0xc00aecb380] -2019/01/03 14:03:19 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:03:19 removed [0xc00aecb780] -2019/01/03 14:03:19 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:03:19 removed [0xc000027880] -2019/01/03 14:03:19 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:03:19 removed [0xc000026380] -2019/01/03 14:03:19 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:03:19 removed [0xc00aecba00] -2019/01/03 14:03:19 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:03:19 removed [0xc008368580] -2019/01/03 14:03:19 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:03:19 removed [0xc000026e80] -2019/01/03 14:03:19 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:03:19 removed [0xc000026a00] -2019/01/03 14:03:19 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:03:19 removed [0xc000026600] -2019/01/03 14:03:19 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:03:19 removed [0xc00aecb980] -2019/01/03 14:03:19 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:03:19 removed [0xc00aecb280] -2019/01/03 14:03:19 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:03:19 removed [0xc00aecaa80] -2019/01/03 14:03:19 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:03:19 removed [0xc00aeca400] -[AE587172-CC15-48 [AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr] dro p E8F6A75C-3CDA-4B00-9837-8CA2A1F34 858EBE6F-360F-4 [CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA] dr op 3FFCAE95-23CF-4967-94F5-16352F68 1015EA63-7421- [7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe] d rop 9C65AFA1-9A5E-49D9-AA81-3915CCB 34FB5A1B-E3CD 271B424E-A4CC-4E0E-90A2-7EA484 97C81E5D-8FA 2ACA4F79-324F-4D6D-8268-A210B 3237418A-47 [0xc0000a1ec0] r r ta DC3641B8-2FA8-4ED3-BC1F-F996 CD3BAFB6-5 [0xc00ff96b40] r r t]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': c': futk `cat remove100`[1@a[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk `cat remove100` -[?2004l2019/01/03 14:03:43 Found 310 things -2019/01/03 14:03:43 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2019/01/03 14:03:43 removed [0xc00002f300] -2019/01/03 14:03:43 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2019/01/03 14:03:43 removed [0xc00002e400] -2019/01/03 14:03:43 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2019/01/03 14:03:43 removed [0xc00002eb00] -2019/01/03 14:03:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2019/01/03 14:03:43 removed [0xc009dc4180] -2019/01/03 14:03:43 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2019/01/03 14:03:43 removed [0xc00002ff00] -2019/01/03 14:03:43 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2019/01/03 14:03:43 removed [0xc008178500] -2019/01/03 14:03:43 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2019/01/03 14:03:43 removed [0xc008178600] -2019/01/03 14:03:43 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2019/01/03 14:03:43 removed [0xc008178700] -2019/01/03 14:03:43 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2019/01/03 14:03:43 removed [0xc008179a80] -2019/01/03 14:03:43 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2019/01/03 14:03:43 removed [0xc008179980] -2019/01/03 14:03:43 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2019/01/03 14:03:43 removed [0xc008179100] -2019/01/03 14:03:43 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2019/01/03 14:03:43 removed [0xc008178100] -2019/01/03 14:03:43 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2019/01/03 14:03:43 removed [0xc008178d00] -2019/01/03 14:03:43 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2019/01/03 14:03:43 removed [0xc008178b00] -2019/01/03 14:03:43 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2019/01/03 14:03:43 removed [0xc00002f600] -2019/01/03 14:03:43 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2019/01/03 14:03:43 removed [0xc008179480] -2019/01/03 14:03:43 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2019/01/03 14:03:43 removed [0xc008178080] -2019/01/03 14:03:43 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2019/01/03 14:03:43 removed [0xc008178680] -2019/01/03 14:03:43 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2019/01/03 14:03:43 removed [0xc00002fd80] -2019/01/03 14:03:43 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2019/01/03 14:03:43 removed [0xc008179900] -2019/01/03 14:03:43 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2019/01/03 14:03:43 removed [0xc008178b80] -2019/01/03 14:03:43 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2019/01/03 14:03:43 removed [0xc008179180] -2019/01/03 14:03:43 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2019/01/03 14:03:43 removed [0xc00002f080] -2019/01/03 14:03:43 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2019/01/03 14:03:43 removed [0xc00002ec80] -2019/01/03 14:03:43 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2019/01/03 14:03:43 removed [0xc00002ed80] -2019/01/03 14:03:43 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2019/01/03 14:03:43 removed [0xc00002f800] -2019/01/03 14:03:43 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2019/01/03 14:03:43 removed [0xc008179300] -2019/01/03 14:03:43 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2019/01/03 14:03:43 removed [0xc008178380] -2019/01/03 14:03:43 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2019/01/03 14:03:43 removed [0xc008178180] -2019/01/03 14:03:43 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2019/01/03 14:03:43 removed [0xc008179580] -2019/01/03 14:03:43 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 14:03:43 removed [0xc009dc4500] -2019/01/03 14:03:43 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2019/01/03 14:03:43 removed [0xc009dc4a80] -2019/01/03 14:03:43 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2019/01/03 14:03:43 removed [0xc008178a80] -2019/01/03 14:03:43 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2019/01/03 14:03:43 removed [0xc00002f400] -2019/01/03 14:03:43 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2019/01/03 14:03:43 removed [0xc008178a00] -2019/01/03 14:03:43 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2019/01/03 14:03:43 removed [0xc008178780] -2019/01/03 14:03:43 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2019/01/03 14:03:43 removed [0xc008178f00] -2019/01/03 14:03:43 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2019/01/03 14:03:43 removed [0xc008179280] -2019/01/03 14:03:43 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2019/01/03 14:03:43 removed [0xc008179800] -2019/01/03 14:03:43 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2019/01/03 14:03:43 removed [0xc008179a00] -2019/01/03 14:03:43 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:43 removed [0xc009dc5580] -2019/01/03 14:03:43 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2019/01/03 14:03:43 removed [0xc008178280] -2019/01/03 14:03:43 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2019/01/03 14:03:43 removed [0xc008178580] -2019/01/03 14:03:43 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2019/01/03 14:03:43 removed [0xc008179700] -2019/01/03 14:03:43 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2019/01/03 14:03:43 removed [0xc00002fc80] -2019/01/03 14:03:43 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2019/01/03 14:03:43 removed [0xc00002f000] -2019/01/03 14:03:43 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2019/01/03 14:03:43 removed [0xc009dc5500] -2019/01/03 14:03:43 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2019/01/03 14:03:43 removed [0xc00002fe80] -2019/01/03 14:03:43 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2019/01/03 14:03:43 removed [0xc009dc4680] -2019/01/03 14:03:43 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2019/01/03 14:03:43 removed [0xc008178c00] -2019/01/03 14:03:43 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2019/01/03 14:03:43 removed [0xc00002ea00] -2019/01/03 14:03:43 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2019/01/03 14:03:43 removed [0xc008179200] -2019/01/03 14:03:43 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2019/01/03 14:03:43 removed [0xc008179600] -2019/01/03 14:03:43 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2019/01/03 14:03:43 removed [0xc008179780] -2019/01/03 14:03:43 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2019/01/03 14:03:43 removed [0xc00002f980] -2019/01/03 14:03:43 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2019/01/03 14:03:43 removed [0xc00002fd00] -2019/01/03 14:03:43 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2019/01/03 14:03:43 removed [0xc00002fe00] -2019/01/03 14:03:43 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2019/01/03 14:03:43 removed [0xc008178300] -2019/01/03 14:03:43 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2019/01/03 14:03:43 removed [0xc00002ee80] -2019/01/03 14:03:43 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2019/01/03 14:03:43 removed [0xc00002e500] -2019/01/03 14:03:43 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2019/01/03 14:03:43 removed [0xc00002f780] -2019/01/03 14:03:43 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2019/01/03 14:03:43 removed [0xc008178400] -2019/01/03 14:03:43 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2019/01/03 14:03:43 removed [0xc009dc4580] -2019/01/03 14:03:43 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2019/01/03 14:03:43 removed [0xc00002e780] -2019/01/03 14:03:43 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2019/01/03 14:03:43 removed [0xc00002f380] -2019/01/03 14:03:43 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2019/01/03 14:03:43 removed [0xc008178f80] -2019/01/03 14:03:43 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 14:03:43 removed [0xc008179500] -2019/01/03 14:03:43 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2019/01/03 14:03:43 removed [0xc00002fa80] -2019/01/03 14:03:43 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2019/01/03 14:03:43 removed [0xc00002e380] -2019/01/03 14:03:43 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2019/01/03 14:03:43 removed [0xc008179880] -2019/01/03 14:03:43 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2019/01/03 14:03:43 removed [0xc008178000] -2019/01/03 14:03:43 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2019/01/03 14:03:43 removed [0xc008178480] -2019/01/03 14:03:43 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2019/01/03 14:03:43 removed [0xc008179400] -2019/01/03 14:03:43 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2019/01/03 14:03:43 removed [0xc008179380] -2019/01/03 14:03:43 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2019/01/03 14:03:43 removed [0xc009dc4480] -2019/01/03 14:03:43 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2019/01/03 14:03:43 removed [0xc009dc4880] -2019/01/03 14:03:43 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2019/01/03 14:03:43 removed [0xc00002f100] -2019/01/03 14:03:43 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2019/01/03 14:03:43 removed [0xc00002f700] -2019/01/03 14:03:43 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2019/01/03 14:03:43 removed [0xc008179680] -2019/01/03 14:03:43 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2019/01/03 14:03:43 removed [0xc00002ec00] -2019/01/03 14:03:43 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2019/01/03 14:03:43 removed [0xc008178980] -2019/01/03 14:03:43 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2019/01/03 14:03:43 removed [0xc00002f900] -2019/01/03 14:03:43 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2019/01/03 14:03:43 removed [0xc008178200] -2019/01/03 14:03:43 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2019/01/03 14:03:43 removed [0xc009dc5380] -2019/01/03 14:03:43 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2019/01/03 14:03:43 removed [0xc00002ed00] -2019/01/03 14:03:43 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2019/01/03 14:03:43 removed [0xc00002f880] -2019/01/03 14:03:43 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2019/01/03 14:03:43 removed [0xc00002fb80] -2019/01/03 14:03:43 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 14:03:43 removed [0xc008178800] -2019/01/03 14:03:43 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2019/01/03 14:03:43 removed [0xc00002e800] -2019/01/03 14:03:43 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2019/01/03 14:03:43 removed [0xc009dc4980] -2019/01/03 14:03:43 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2019/01/03 14:03:43 removed [0xc00002ff80] -2019/01/03 14:03:43 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2019/01/03 14:03:43 removed [0xc008179000] -2019/01/03 14:03:43 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2019/01/03 14:03:43 removed [0xc008178c80] -2019/01/03 14:03:43 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2019/01/03 14:03:43 removed [0xc00002ef80] -2019/01/03 14:03:43 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2019/01/03 14:03:43 removed [0xc00002ee00] -2019/01/03 14:03:43 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2019/01/03 14:03:43 removed [0xc00002fb00] -2019/01/03 14:03:43 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 14:03:43 removed [0xc00002e180] -2019/01/03 14:03:43 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2019/01/03 14:03:43 removed [0xc00002ea80] -2019/01/03 14:03:43 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2019/01/03 14:03:43 removed [0xc00002fc00] -2019/01/03 14:03:49 Empty stack -[]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat remove100 -[?2004lRUN4.4.rom fv drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag drop -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag drop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag drop -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag drop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag drop -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop -529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 ix r r tag drop -CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 ix r r tag drop -7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 ix r r tag drop -DC92A37B-4AC5-4117-AABB-019FFC0FD06A ix r r tag drop -9AE51047-E0B9-4A50-9E72-84E359D20189 ix r r tag drop -7FD082A9-3D6B-44E3-9C31-74D6B80F965C ix r r tag drop -9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 ix r r tag drop -CD7C839D-0521-4B26-9476-9FF2CB70649A ix r r tag drop -CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 ix r r tag drop -67820532-7613-4DD3-9ED7-3D9BE3A7DA63 ix r r tag drop -E6DC9900-CCF6-452B-85FA-C7F1E52F0152 ix r r tag drop -BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 ix r r tag drop -7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 ix r r tag drop -025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A ix r r tag drop -0718AD81-F26A-4850-A6EC-F268E309D707 ix r r tag drop -8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 ix r r tag drop -34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 ix r r tag drop -4551F2F5-C684-4F27-936F-C7B04A5C5FF1 ix r r tag drop -5AAB83E5-F027-4CA7-BFD0-16358CC9E453 ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -/tmp/remove100 saverom drop -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l /tmp/remove100 -[?2004l-rw-r--r-- 1 rminnich primarygroup 33554432 Jan 3 14:03 /tmp/remove100 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100 fv c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l0,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l8,0-1[?25h[?25l:[?2004h[?25h2[?25l[?25h0[?25l[?25hl[?25l[?25h.[?25l[?25h[?25l[?25h[?25l[?25h,[?25l[?25h.[?25l[?25ht[?25l[?25h.[?25l[?25h [?25l9 more linesi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux37,0-1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile 9 more lines37,0-1Top[?25h[?25l6,1-8[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l29,1 [?25h[?25l-- INSERT --29,1Top[?25h[?25lbi:2[?25h[?25lii:3[?25h[?25lgi:4[?25h[?25l29,3Top[?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2[?25h[?25l2-9[?25h[?25l3-10[?25h[?25l4-11[?25h[?25l5-12[?25h[?25l6-13[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l9-16[?25h[?25l$(GOPATH)iit g10-17[?25h[?25l(GOPATH)iit g1-18[?25h[?25l2-19[?25h[?25l3-20[?25h[?25l4-21[?25h[?25l5-22[?25h[?25l6-23[?25h[?25l(GOPATH)iit g7-24[?25h[?25l(GOPATH)iit g8-25[?25h[?25l9-26[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l1-58[?25h[?25l2-59[?25h[?25l3-60[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l6-63[?25h[?25l7-64[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l60-67[?25h[?25l1-68[?25h[?25l2-69[?25h[?25l3-70[?25h[?25l4-71[?25h[?25l5-72[?25h[?25l6-73[?25h[?25l7-74[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l70-77[?25h[?25l1-78[?25h[?25l2-79[?25h[?25l3-80[?25h[?25l4-81[?25h[?25l5-82[?25h[?25l6-83[?25h[?25l-- INSERT --32,76-83 Top[?25h[?25lmgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25ligithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lngithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ligithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25lmgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25lagithub.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25llgithub.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25l32,83-90 Top[?25h[?25l4-91[?25h[?25lu-root/u-root/cmds/init github.com/u-root/u-rroot/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-rooot/xcmds/sshd [?25h[?25l - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.comu-root/xcmds/rush github.com/u-root/u--root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdremove SmmIpmiBmcInitialize \32,84-91 Top[?25h[?25lcmds/ls github.com/u-root/u-rooot/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lip github.com/u-root/u-rroot/cmds/elvish github.comu-root/xcmds/sshd [?25h[?25l github.com/u-root/u-root/cmds/elvish github.com/u-rroot/u-root/xcmds/sshd [?25h[?25lgithub.com/u-root/u-root/cmds/elvish github.com/u-rooot/u-root/xcmds/sshd [?25h[?25l - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshdremove BmcElog \32,84-91 Top[?25h[?25l1,51-58[?25h[?25l()0,56-63[?25h[?25l()29,5 [?25h[?25l8,0-1[?25h[?25l7,15-22[?25h[?25l6,17-24[?25h[?25l5,35-42[?25h[?25l4,37-44[?25h[?25l3,84-91[?25h[?25l2,51-58[?25h[?25l3,84-91[?25h[?25l6-93[?25h[?25l7-94[?25h[?25l96-103[?25h[?25l7-104[?25h[?25l100-107[?25h[?25l1-108[?25h[?25l7-114[?25h[?25l13-120[?25h[?25l4-121[?25h[?25l7-124[?25h[?25l8-125[?25h[?25l9-126[?25h[?25l20-127[?25h[?25l4-131[?25h[?25l5-132[?25h[?25l6-133[?25h[?25l7-134[?25h[?25l31-138[?25h[?25l2-139[?25h[?25l6-143[?25h[?25l7-144[?25h[?25l42-149[?25h[?25l8-155[?25h[?25l9-156[?25h[?25l52-159[?25h[?25l3-160[?25h[?25l4-161[?25h[?25l5-162[?25h[?25l9-166[?25h[?25l4,37-44 [?25h[?25l5,35-42[?25h[?25l6,17-24[?25h[?25l7,15-22[?25h[?25l8,0-1 [?25h[?25l9,5 [?25h[?25l()30,56-63[?25h[?25l()1,51-58[?25h[?25l2,123-130[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 338L, 10004C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek bigke bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshd -2019/01/03 14:11:54 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 14:11:54 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 14:12:02 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3402926 Jan 3 14:12 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - CC arch/x86/boot/version.o - Building modules, stage 2. - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5705 kB -CRC bb0b0620 -Kernel: arch/x86/boot/bzImage is ready (#80) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5857328 Jan 3 14:13 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [29@D': ./DXECLEANER /tmp/remove100[1@X[1@E^C[?2004l[?2004h^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100 fv linux/arch/x86/boot//bzImage splat /tmp/remove100b ig saverom -[?2004l2019/01/03 14:14:09 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fut -[?2004lbash: fut: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk /tmp/remove100big fv c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l/[?2004h[?25hu[?25l[?25hj[?25l[?25hi[?25l[?25h[?25l[?25h[?25l[?25hi[?25l[?25hi[?25l[?25ht[?25l[?25h[?25l[?25h[?25l[?25hn[?25l[?25hi[?25l[?25ht[?25l[?25h [?25l22,39-46 Top[?25h[?25l22,45-52 Top[?25h[?25l23,101-108 Top[?25h[?25l0-107[?25h[?25l97-104 [?25h[?25l6-103[?25h[?25l87-94 [?25h[?25l6-93[?25h[?25l3-90[?25h[?25l2-89[?25h[?25l76-83[?25h[?25l2-79[?25h[?25l3-80[?25h[?25l4-81[?25h[?25l5-82[?25h[?25l6-83[?25h[?25lu-root/u-root/cmds/init github.com/u-root/u-root/xcmdds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds//sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l1 change; before #1 0 seconds agolinuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd23,76-83 Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l4,37-44[?25h[?25l5,35-42[?25h[?25l6,17-24[?25h[?25l7,15-22[?25h[?25l8,0-1 [?25h[?25l9,5 [?25h[?25l()30,56-63[?25h[?25l()1,51-58[?25h[?25l2,76-83[?25h[?25l2-79[?25h[?25l1-78[?25h[?25l2-79[?25h[?25l6-83[?25h[?25l87-94[?25h[?25l6-93[?25h[?25l5-92[?25h[?25lgithub.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshd32,115-122 Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 338L, 10035C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bim -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-ro -ot/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make big -[?2004lmake: *** No rule to make target 'big'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 14:25:51 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 14:25:51 Filename is /tmp/initramfs.linux_amd64.cpio -make b -2019/01/03 14:26:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670889 Jan 3 14:26 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 8bed2d2c -Kernel: arch/x86/boot/bzImage is ready (#81) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 14:26 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tcp /tmp/remove100 remove.rom100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom fv linux/arch/axxx86/boot/bzImage splat remove100.bit.romg.rom saverom -[?2004l2019/01/03 14:26:58 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER remove100big.rom -[?2004l+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 14:28:25 Listening on 192.168.0.1:8080 at 2019-01-03 14:28:25.458756522 -0800 PST m=+0.002028354 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uniinit  (reverse-i-search)`': s': futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom h': ssh -p 2222 192.168.0.2 ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh -p 2222 192.168.0.2 -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:BWCnSU327bX/VcCXDpzVZzCBt2iiVtasOrR6tw0L4+E. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Enter passphrase for key '/usr/local/google/home/rminnich/.ssh/id_rsa': -rminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ tr5tt667cx./uinit ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/con -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/con" [New File]▽ [>c]10;?]11;?~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 0,0-1All]2;con (~/.ssh) - VIM]1;con[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 131L, 2387C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster autoControlPersist 10m - -Host sarahcHostName 100.96.221.132Port 221,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lUser piIdentityFile ~/.ssh/console_rsa - -Host johncHostName 100.96.221.133Port 22User piIdentityFile ~/.ssh/console_rsa - -Host maxcHostName 100.96.221.134Port 22User piIdentityFile ~/.ssh/console_rsa - -Host reesecHostName 100.96.221.135Port 22User piIdentityFile ~/.ssh/console_rsa - -Host sarahHostName 100.96.221.140Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host johnHostName 100.96.221.141Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host maxHostName 100.96.221.142Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -Host reeseHostName 100.96.221.143Port 22User rootIdentityFile ~/.ssh/dropbear_rsa - -host chriskoHostName 35.237.181.185Port 22User chriskoIdentitiesOnly yes131,2-9Bot[?25h[?25l0[?25h[?25l29[?25h[?25l8[?25h[?25l7,9 [?25h[?25l6,0-1[?25h[?25l5,2-9[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1,9 [?25h[?25l0,0-1[?25h[?25l19,2-9[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5,8 [?25h[?25l4,0-1[?25h[?25l3,2-9[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l09,9 [?25h[?25lIdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynet52,2-9Top[?25h[?25l1[?25h[?25l0,9 [?25h[?25l49,0-1[?25h[?25l8,2-9[?25h[?25l7[?25h[?25l6[?25h[?25l5,6 [?25h[?25l4,0-1[?25h[?25l3,2-9[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l39,8 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5[?25h[?25l4,7 [?25h[?25l3,0-1[?25h[?25l2,2-9[?25h[?25l1[?25h[?25l0[?25h[?25l29,7 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5,9 [?25h[?25l6,2-9[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,7 [?25h[?25l8,0-1[?25h[?25l7,2-9[?25h[?25l6[?25h[?25l5,9 [?25h[?25l6,2-9[?25h[?25l7[?25h[?25l-- INSERT --28,1Top28,1Top]2;config + (~/.ssh) - VIM]1;config[?25h[?25l29,1Top[?25h[?25lH2[?25h[?25lO3[?25h[?25ls4[?25h[?25lt5[?25h[?25l6[?25h[?25li7[?25h[?25lt8[?25h[?25la9[?25h[?25lm10[?25h[?25li1[?25h[?25l0[?25h[?25l9 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25lo3[?25h[?25ls4[?25h[?25lt5[?25h[?25l6[?25h[?25li7[?25h[?25lt8[?25h[?25la9[?25h[?25lm10[?25h[?25li1[?25h[?25l30,1Top[?25h[?25l2-9[?25h[?25lH3-10[?25h[?25lo4-11[?25h[?25ls5-12[?25h[?25lt6-13[?25h[?25ln7-14[?25h[?25l6-13[?25h[?25lN7-14[?25h[?25la8-15[?25h[?25lm9-16[?25h[?25le10-17[?25h[?25l1-18[?25h[?25l12-19[?25h[?25l93-20[?25h[?25l24-21[?25h[?25l.5-22[?25h[?25l16-23[?25h[?25l67-24[?25h[?25l88-25[?25h[?25l.9-26[?25h[?25l020-27[?25h[?25l.1-28[?25h[?25l22-29[?25h[?25l31,1Top[?25h[?25l2-9[?25h[?25lP3-10[?25h[?25lo4-11[?25h[?25lr5-12[?25h[?25lt6-13[?25h[?25l7-14[?25h[?25l28-15[?25h[?25l29-16[?25h[?25l210-17[?25h[?25l21-18[?25h[?25l32,1Top[?25h[?25l2-9[?25h[?25lI3-10[?25h[?25ld4-11[?25h[?25le5-12[?25h[?25ln6-13[?25h[?25lt7-14[?25h[?25li8-15[?25h[?25ly9-16[?25h[?25l8-15[?25h[?25lt9-16[?25h[?25ly10-17[?25h[?25lF1-18[?25h[?25li2-19[?25h[?25ll3-20[?25h[?25le4-21[?25h[?25l5-22[?25h[?25l%d/.ssh/github29-36[?25h[?25l32,28-35 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2461C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/configgit -git github git.pub -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/git -git github git.pub -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/github  (reverse-i-search)`': v': vi ~/.ssh/config[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2461C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h -[?2004l[?1l>[?1049l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l -[1]+ Stopped vi ~/.ssh/config -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lvi ~/.ssh/config -[?2004h]2;config (~/.ssh) - VIM]1;config[?1049h[?1h=[?2004h[?12h[?12l[?25lIdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/github - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto23,1-8Top[?25h[?25l28-35[?25h[?25l]2;config + (~/.ssh) - VIM]1;config7-34[?25h[?25l6-33[?25h[?25l5-32[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2458C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/config/gi.t.git.pub .id_rsa.pub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:17:40 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:17:40 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:17:50 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670896 Jan 3 15:17 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek ke b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC da2ed494 -Kernel: arch/x86/boot/bzImage is ready (#82) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 15:18 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ histvi DXECLEANER [1@c[1@p[1@ BURN && vi BURN -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"BURN" 17L, 368C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -m tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;BURN (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;BURN[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l7,1[?25h[?25l6[?25h[?25l5[?25h[?25l-- INSERT --16,1Top16,1All]2;BURN + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;BURN[?25h[?25le2[?25h[?25lx3[?25h[?25li4[?25h[?25lt5[?25h[?25l6[?25h[?25l07[?25h[?25l16,6All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"BURN" 18L, 375C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ chmod +X Bx BURN -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ historhistr (reverse-i-search)`': [30@s': cp ~/.ssh/git.pub id_rsa.pub p': futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom [1@l [1@a ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom - saverom ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ splat remove100big.rom saverom - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 338L, 10035C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l-- INSERT --29,1Top29,1Top]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lb2[?25h[?25lu3[?25h[?25lr4[?25h[?25ln5[?25h[?25l:6[?25h[?25l7[?25h[?25lb8[?25h[?25li9[?25h[?25lg10[?25h[?25li1[?25h[?25l2[?25h[?25lb3[?25h[?25l30,1Top[?25h[?25lfutk remove100.rom fv linux/arch/x86/boot/bzImage s[?25h[?25lplat remove100big.rom saverom31,1Top[?25h[?25l31,0-1Top[?25h[?25l0,1 [?25h[?25l-- INSERT --30,1Top[?25h[?25l futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom2-9[?25h[?25l30,1-8Top[?25h[?25l-- INSERT --31,1Top31,1Top[?25h[?25l2-9[?25h[?25l.3-10[?25h[?25l/4-11[?25h[?25lB5-12[?25h[?25lU6-13[?25h[?25lR7-14[?25h[?25lN8-15[?25h[?25l9-16[?25h[?25lr10-17[?25h[?25le1-18[?25h[?25lm2-19[?25h[?25lo3-20[?25h[?25le4-21[?25h[?25l3-20[?25h[?25lv4-21[?25h[?25le5-22[?25h[?25l16-23[?25h[?25l07-24[?25h[?25l08-25[?25h[?25lb9-26[?25h[?25li20-27[?25h[?25lg1-28[?25h[?25l.2-29[?25h[?25lr3-30[?25h[?25lo4-31[?25h[?25lm5-32[?25h[?25l31,24-31 Top[?25h[?25l0[?25h[?25l29,12 [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10156C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:19:45 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:19:45 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:19:55 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670896 Jan 3 15:19 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 7fd312b9 -Kernel: arch/x86/boot/bzImage is ready (#83) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 3 15:20 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 15:20:19 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [30@s': cp ~/.ssh/git.pub id_rsa.pub [1@s[1@hvi ~/.ssh/config ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/configssh itimaami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:miENHPv981aePKtKWpHMzoL8RloswFMqgignFIMxOdg. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/conknown_hosts -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtAFfDPPq9QKJjbj+JG3eXowoL4tziF8z4eA+9Jb8JMO4irStc0qq+FBTSfAGCRaY0woqUN4cV9hVsF8HyzQ9Y+K++uijdjwfANIaF6WFa/w6YxQSpWYoKKOJawZ2bt0qn3Pv2CMTDuR/Ws3Sv+OuEbeFMDI+XypOcIAoQ11WkZAjT33Au9nEyDBPtM7ffhCFKUkKisgBU7LeQDgYz14C/8LrTaM2Kdn10YgSjdUiTpwwL4XqQGMAJWxErkxG4Ne90a10kPvAJ3rhtPoHw53CWoFkHfTLhIn5cXxoq+eraFNVc7RwMnOJbKzVtV7nDNxAlUUVW/s8UA+QapJTJ3G4hFT -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h1[?25l[?25h9[?25l[?25h2[?25l[?25h [?25l1,12All[?25h[?25l2,1All[?25h[?25l4,1All[?25h[?25l6,2All[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5,1[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:miENHPv981aePKtKWpHMzoL8RloswFMqgignFIMxOdg. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -rminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 LIST remove100.rom RUN3 xxx -bin.reset DIT id_rsa.pub LOG removeBMCcrap.bin RUN4 yyy -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma Makefile removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin NOTES removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT L remove100 removesomecrap.bin uinit -commentsetupcrap.bin fail.bin linux remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 LIST remove100.rom RUN3 xxx -bin.reset DIT id_rsa.pub LOG removeBMCcrap.bin RUN4 yyy -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma Makefile removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin NOTES removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT L remove100 removesomecrap.bin uinit -commentsetupcrap.bin fail.bin linux remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ lsssh itamivi ~/.ssh/known_hosts ssh itami -[?2004lrminnich@192.168.0.2: Permission denied (publickey). -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/conconfig -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2458C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/git - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h[?25l4,0-1[?25h[?25l5,1 [?25h[?25l6,1-8[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh-key`gen -h -[?2004lGenerating public/private rsa key pair. -Enter file in which to save the key (/usr/local/google/home/rminnich/.ssh/id_rsa): ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh-keygen -h -[?2004lGenerating public/private rsa key pair. -Enter file in which to save the key (/usr/local/google/home/rminnich/.ssh/id_rsa): /usr/local/google/home/rminnich/.ssh/NERF -Enter passphrase (empty for no passphrase): -Enter same passphrase again: -Your identification has been saved in /usr/local/google/home/rminnich/.ssh/NERF. -Your public key has been saved in /usr/local/google/home/rminnich/.ssh/NERF.pub. -The key fingerprint is: -SHA256:Jv+91zAv8uspuLmRuL14K4yd49daVEx4fy5mcSXUBNk rminnich@xcpu.svl.corp.google.com -The key's randomart image is: -+---[RSA 2048]----+ -| o+*.| -| .o+ E| -| .oo.| -| .. +| -| . S . +.| -| + . o * .| -| +o.oo.o * | -| . *=+=+ o.o| -| .+=X*oB=o | -+----[SHA256]-----+ -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com console_rsa google_compute_engine id_rsa_google-old-cert.pub localjkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa.pub google_compute_engine.pub id_rsa_google-old.pub NERF -authorized_keys devlabs_id_rsa google_compute_known_hosts id_rsa_google.pub NERF.pub -authorized_keys2 devlabs_id_rsa.pub id_rsa id_rsa.pub sk-passwords -backup-20170411-104708 dropbear_rsa id_rsa_corp-cert.pub jkhh34.pub skynet -chromium dropbear_rsa.pub id_rsa_corp-old-cert.pub jkhh5.pub skynet.pub -chromium.pub git id_rsa_corp-old.pub jkhh5root.pub -config github id_rsa_corp.pub john -config~ git.pub id_rsa_google-cert.pub known_hosts -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/NERF..ssh/NERF.pub ikeid_rsa.pub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv id_rsa.pub key.bpupub -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10156C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hi[?25l[?25hd[?25l[?25h_[?25l[?25h)[?25l[?25hr[?25l[?25h[?25l[?25h[?25l[?25hr[?25l[?25hs[?25l[?25ha[?25l[?25h [?25l23,65-72 Top[?25h[?25l2,51-58[?25h[?25l()1,56-63[?25h[?25l()0,2 [?25h[?25l19,1-8[?25h[?25l()8,55-62[?25h[?25l()7,13 [?25h[?25l-- INSERT --17,14Top[?25h[?25l5]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk6[?25h[?25le7[?25h[?25ly8[?25h[?25lp9[?25h[?25l8[?25h[?25l.9[?25h[?25lp20[?25h[?25lu1[?25h[?25lb2[?25h[?25l17,21Top[?25h[?25l1 change; before #1 4 seconds ago17,13Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l8,6-13[?25h[?25l9,1-8 [?25h[?25l20,2 [?25h[?25l1,6-13[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,12 [?25h[?25l30,6-13[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l3,5 [?25h[?25l4,6-13[?25h[?25l5[?25h[?25l7-14[?25h[?25l9-16[?25h[?25l10-17[?25h[?25l3-20[?25h[?25l4-21[?25h[?25l20-27[?25h[?25l1-28[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l34-41[?25h[?25l5-42[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l44-51[?25h[?25l5-52[?25h[?25l51-58[?25h[?25l6,2-9 [?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)ooo7-24[?25h[?25l(GOPATH)ooo9-26[?25h[?25l7[?25h[?25l20-27[?25h[?25l6[?25h[?25l5[?25h[?25l1-28[?25h[?25l6[?25h[?25l2-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l54-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l65-72[?25h[?25l71-78[?25h[?25l65-72[?25h[?25l-- INSERT --36,65-72 Top.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xccmds/sshd6-73[?25h[?25le.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xxcmds/sshd7-74[?25h[?25ly.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshd8-75[?25h[?25l36,67-74 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10153C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bitgi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:36:12 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:36:12 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:36:22 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670891 Jan 3 15:36 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 15:40:20 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 15:40:20 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 15:40:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670891 Jan 3 15:40 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 9ad6993d -Kernel: arch/x86/boot/bzImage is ready (#84) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 15:40 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 15:40:54 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': s': mv id_rsa.pub key.pubs': cp ~/.ssh/NERF.pub id_rsa.pub [1@h ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/.ssh/NERF.pub id_rsa.pub svi ~/.ssh/config -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/config" 136L, 2458C▽ [>c]10;?]11;?IdentityFile /usr/local/google/home/rminnich/.ssh/devlabs_id_rsa -Host gerrit.chromium.org - Port 29418 - HostName gerrit.chromium.org - IdentityFile %d/.ssh/git - -Host gerrit-int.chromium.org - HostName gerrit-int.chromium.org - Port 29419 - IdentityFile %d/.ssh/git - -Host review.coreboot.org - Port 29418 - HostName review.coreboot.org - IdentityFile %d/.ssh/id_rsa - -Host xcpu.mtv.corp.google.com xcpu.mtv - ForwardAgent yes - PreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,password - -Host review.gerrithub.ioHostName review.gerrithub.ioIdentityFile %d/.ssh/git - -Host github.comHostName github.comIdentityFile %d/.ssh/github - -Host itamiHostName 192.168.0.2Port 2222IdentityFile %d/.ssh/github - -Host AKHostName 127.0.0.1Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host LPHostName 10.246.7.132Port 5555IdentityFile %d/.ssh/dropbear_rsa - -host BADHostName 100.96.221.129Port 22User rootIdentityFile %d/.ssh/dropbear_rsa - -host JHostName 10.177.147.133Port 22IdentityFile %d/.ssh/dropbear_rsa - -host skynetHostName 100.96.221.129IdentityFile %d/.ssh/skynet - -host camHostName 100.107.10.65IdentityFile %d/.ssh/skynet - -host fuckHostName 172.18.46.1IdentityFile %d/.ssh/skynet - -host fuck2HostName jkhh5IdentityFile %d/.ssh/jkhh5 - -host fuck3HostName jkhh5IdentityFile %d/.ssh/localjkhh5 - -Host fucktopHostname xcpu.mtv.corp.google.comPort 22ForwardAgent yesPreferredAuthentications publickey,gssapi-with-mic,hostbased,keyboard-interactive,passwordControlPath ~/.ssh/controlmasters/%r@%h:%pControlMaster auto1,1Top]2;config (~/.ssh) - VIM]1;config[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1,0-1[?25h[?25l2,1 [?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8[?25h[?25l9[?25h[?25l20,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3[?25h[?25l4,0-1[?25h[?25l5,1 [?25h[?25l6,1-8[?25h[?25l7[?25h[?25l/[?2004h[?25hi[?25l[?25ht[?25l[?25ha[?25l[?25hi[?25l[?25hm[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: itaim27,1-8Top[?25h[?25l8,0-1[?25h[?25l9,8 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2[?25h[?25l3,0-1[?25h[?25l4,7 [?25h[?25l3,0-1[?25h[?25l2,1-8[?25h[?25l28-35[?25h[?25l3-30[?25h[?25l-- INSERT --32,23-30 Top]2;config + (~/.ssh) - VIM]1;config[?25h[?25lN4-31[?25h[?25lE5-32[?25h[?25lR6-33[?25h[?25lF7-34[?25h[?25l32,26-33 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/config" 136L, 2456C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itimami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:72hVZDSWaSc8OfW1GCuKzhtm8WiG5wNc5ZzUREMp1Ps. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ~/.ssh/config[1@i[1@ Makefile ~/.ssh/configknown_hosts  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhHajcOo0P490ZEw41OU9LhUlei1XxLZ27VwdQc54AIrXiUW9mbLUdppi3NV1dMqvrDf9uLlTSWoPFk0LTFu0h5TRRWezAYlOZBA8eX81u/K51b9wf1oXiWrNKjIyNKnLmMhoc3OJy6nhbzvSzPNYeoaZmyL+vYTUjWMxe2pWsq1JPet4N2r15Dhf/UdCEVvCn7XxsYnUhSaJJNOdfQzwxkmhYa/PvzJxblwIKcGOqQggJI9ITIuk9dgLDDAoLcXrqI90USnYk9UVdEYREtN/iPPIUjfWiuA5Z9ZrEHIVsOZx5U3XFtzF6Jm1HgMMGhEiWaz/1ArTQi6paPXaVQ3ZTuh -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]RRWggJ6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:72hVZDSWaSc8OfW1GCuKzhtm8WiG5wNc5ZzUREMp1Ps. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Connection to 192.168.0.2 closed by remote host. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /bin/defaultsh -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:PlIZJEc0bFmmlx/2nFmcBiV4307zd2bu/hbewLOpkXI. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@v': vi ~/.ssh/known_hosts[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDoVqHFMTJsBkz22Y9I6Ib3tsCgegmCPncmxEGy/SQJvUZik7BRRTl0mFjulctuBk9v3TwkFk6Qpn2K8xwcRTNIzkIIbfooZ4trmiO1Lyh9VHSXJCn9mTeAc57pf3+B4zSIZ8Z0U4hbvKcwQQrbvYVPCUusayYpgQZYKwORQWwTMbl8s3Ui+GFICd5Q4h1GzHqRAaQXA8iAlFpXXymdM4QCTgoNCizcnTG6mGuf547gZAACg4CJV5Ktf/p/AhEAsa4lk1gIROxgJqWMq9AMP9H2Appri/S7pC8qh8bCstMcFpw29Vw356SqJ0FAErQq6COouoIJriq4qxZGMTY0HK9o1n -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]IIbAAC6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami /bin/defaultsh -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:PlIZJEc0bFmmlx/2nFmcBiV4307zd2bu/hbewLOpkXI. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -Connection to 192.168.0.2 closed by remote host. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /bin/defaultsh -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:+IvLeDtqn90i4gosl41wXHnM6t6cyqjKgptEi1fIqlA. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -RSA host key for [192.168.0.2]:2222 has changed and you have requested strict checking. -Host key verification failed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [23@v': vi ~/.ssh/known_hosts[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/.ssh/known_hosts" 6L, 2387C▽ [>c]10;?]11;?github.com,192.30.253.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal722J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.253.112 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.4 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -192.30.255.113 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPWW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -140.82.118.3 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RRcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== -[192.168.0.2]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCywaqlgG8TYj2lIMU3Jz2tc5qCLRovWSCFMHIxj0icmQrzsynlyfOj5aXUFEjOWCqhmFni3zIGo/v43En72VQMoq//260FClarbTGov/g/OOowb25k+a3Ros+oOEOQhxI56JpHYz3LzMSR3wxNm9zt9DGcYIvDRx/hpS16K7EiJyXIzQWoAf/SBKR/U2ZDttk268iP1430LuceApbKHQfbsFn38C+EtO522sAse5AZLVVe+tYdedyLu9G6vJk+eoyy63ED/noRmrlDvseAvq81vyMJWgunbCXoqcSHDUIUs46HcLyf3gIjpC2ocfFn8KIqzfuI9WapxiXvirzvLzmL/1 -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;known_hosts (~/.ssh) - VIM]1;known_hosts[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l[]//2VVe6[?25h[?25l~ ~ ~ ]2;known_hosts + (~/.ssh) - VIM]1;known_hosts5[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"~/.ssh/known_hosts" 5L, 1987C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itami -[?2004lThe authenticity of host '[192.168.0.2]:2222 ([192.168.0.2]:2222)' can't be established. -RSA key fingerprint is SHA256:+IvLeDtqn90i4gosl41wXHnM6t6cyqjKgptEi1fIqlA. -Are you sure you want to continue connecting (yes/no)? yes -Warning: Permanently added '[192.168.0.2]:2222' (RSA) to the list of known hosts. -2019/01/04 07:15:29 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l2019/01/04 07:16:22 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l2019/01/04 07:16:49 You need to specify which command to invoke. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ makg bimake burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:32:28 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:32:28 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:32:38 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3669502 Jan 3 16:32 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC c5db778 -Kernel: arch/x86/boot/bzImage is ready (#85) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:33 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:33:05 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -pam_glogin: invalid password -Sorry, try again. -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~go/go/src/github.com/u-root/u-root/xcmds/ru -[?2004lgrep: /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/ru: No such file or directory -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~/go/src/github.com/u-root/u-root/xcmds/rush/ -[?2004l/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: // for now, bg will just happen in background. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ grep -ri background ~/go/src/github.com/u-root/u-root/xcmds/rush/ ~/go/src/github.com/u-root/u-root/xcmds/rush/b ~/go/src/github.com/u-root/u-root/xcmds/rush/g ~/go/src/github.com/u-root/u-root/xcmds/rush/ -[?2004l/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: bg bool -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: //fmt.Printf("BG\n") -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: tokType = "BG" -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: return "BG", tokType -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: // LINK and BG are similar save that LINK requires another command. If we don't get one, well. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: case "BG": -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/parse.go: c.bg = true -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: bg bool -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: //fmt.Printf("BG\n") -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: tokType = "BG" -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: return "BG", tokType -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: // LINK and BG are similar save that LINK requires another command. If we don't get one, well. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: case "BG": -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/parse.go: c.bg = true -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: if c.bg { -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: // for now, bg will just happen in background. -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/.bb/rush.go: if c.bg { -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/r rush/rush.go: -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/go/src/github.com/u-root/u-root/xcmds/rush/rush.go:" [New File]▽ [>c]10;?]11;?~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 0,0-1All]2;rush.go: (~/go/src/github.com/u-root/u-root/xcmds/rush) - VIM]1;rush.go:[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/r rush/rush.go: -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"~/go/src/github.com/u-root/u-root/xcmds/rush/rush.go" 243L, 5260C▽ [>c]10;?]11;?// Copyright 2012-2017 the u-root Authors. All rights reserved -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Rush is an interactive shell similar to sh. -// -// Description: -// Prompt is '% '. -package main - -import ("bufio""fmt""io""io/ioutil""os""os/exec""path""path/filepath""syscall" -) - -type builtin func(c *Command) error - -// TODO: probably have one builtin map and use it for both types? -var (urpath = "/go/bin:/ubin:/buildbin:/bbin:/bin:/usr/local/bin:"builtins = make(map[string]builtin)// the environment dir is INTENDED to be per-user and bound in// a private name space at /env.envDir = "/env" -) - -func addBuiltIn(name string, f builtin) error {if _, ok := builtins[name]; ok {return fmt.Errorf("%v already a builtin", name)}builtins[name] = freturn nil -} - -func wire(cmds []*Command) error {for i, c := range cmds {// IO defaults.var err errorif c.Stdin == nil {if c.Stdin, err = openRead(c, os.Stdin, 0); err != nil {return err}}if c.link != "|" {if c.Stdout, err = openWrite(c, os.Stdout, 1); err != nil {return err}}if c.Stderr, err = openWrite(c, os.Stderr, 2); err != nil {return err}// The validation is such that "|" is not set on the last one.// Also, there won't be redirects and "|" inappropriately.if c.link != "|" {continue}w, err := cmds[i+1].StdinPipe()if err != nil {return err}r, err := cmds[i].StdoutPipe()if err != nil {return err}// Oh, yuck.// There seems to be no way to do the classic// inherited pipes thing in Go. Hard to believe.go func() {io.Copy(w, r)w.Close()}()}return nil1,1Top]2;rush.go (~/go/src/github.com/u-root/u-root/xcmds/rush) - VIM]1;rush.go[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hb[?25l[?25hg[?25l[?25h [?25l} - -func runit(c *Command) error {defer func() {for fd, f := range c.files {f.Close()delete(c.files, fd)}}()if b, ok := builtins[c.cmd]; ok {if err := b(c); err != nil {return err}} else {c.Cmd.SysProcAttr = &syscall.SysProcAttr{}if c.bg {97,8-229%[?25h[?25l -c.Cmd.SysProcAttr.Setpgid = true98,3-2410%[?25h[?25l -} else {99,8-2211%[?25h[?25l -c.Cmd.SysProcAttr.Foreground = true100,3-24 11%[?25h[?25l -c.Cmd.SysProcAttr.Ctty = int(ttyf.Fd())101,3-24 12%[?25h[?25l -{}102,3-17 12%[?25h[?25l -{}if err := c.Start(); err != nil {103,8-22 13%[?25h[?25l -return fmt.Errorf("%v: Path %v", err, os.Getenv("PATH"))104,3-24 14%[?25h[?25l -{}105,3-17 14%[?25h[?25l -{}if err := c.Wait(); err != nil {106,8-22 15%[?25h[?25l -return fmt.Errorf("wait: %v", err)107,3-24 16%[?25h[?25l -{}108,3-17 16%[?25h[?25l -{{}}109,2-917%[?25h[?25l -{}return nil110,11-18 17%[?25h[?25l -{}111,118%[?25h[?25l -{}112,0-119%[?25h[?25l -func openRead(c *Command, r io.Reader, fd int) (io.Reader, error) {113,2219%[?25h[?25l -if c.fdmap[fd] != "" {114,15-22 20%[?25h[?25l -[fd]f, err := os.Open(c.fdmap[fd])115,8-22 20%[?25h[?25l -c.files[fd] = f116,8-22 21%[?25h[?25l -return f, err117,8-22 22%[?25h[?25l -{}118,2-922%[?25h[?25l -{}return r, nil119,14-21 23%[?25h[?25l -{}120,124%[?25h[?25l -{}121,0-124%[?25h[?25l -func openWrite(c *Command, w io.Writer, fd int) (io.Writer, error) {122,2225%[?25h[?25l -if c.fdmap[fd] != "" {123,15-22 25%[?25h[?25l -[fd]f, err := os.Create(c.fdmap[fd])124,8-22 26%[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigburn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:42:31 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:42:31 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:42:41 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670267 Jan 3 16:42 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - MKPIGGY arch/x86/boot/compressed/piggy.S - CC arch/x86/boot/compressed/misc.o - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC ff72a90d -Kernel: arch/x86/boot/bzImage is ready (#86) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:43 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:43:08 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -q -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ q -[?2004l^Cqemu-system-x86_64: terminating on signal 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/03 16:48:59 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 16:48:59 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 16:49:09 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670657 Jan 3 16:49 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 4f28dc9e -Kernel: arch/x86/boot/bzImage is ready (#87) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 3 16:49 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/03 16:49:34 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': s': vi /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/rush/rush.go s': ssh itami[1@h ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:Zqwje8TL/1ZqqZT1SE3IqBez67DYGYIycigD6f8lIzo. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -Password authentication is disabled to avoid man-in-the-middle attacks. -Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks. -Connection to 192.168.0.2 closed by remote host. -Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ssh itami /make burnmake burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:42:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:42:22 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 10:42:33 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3671578 Jan 4 10:42 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 2b3c6a -Kernel: arch/x86/boot/bzImage is ready (#88) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 10:42 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 10:42:58 Found 212 things -[212 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -^Z -[1]+ Stopped make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make burn & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10153C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l/[?2004h[?25hb[?25l[?25hu[?25l[?25hr[?25l[?25hn[?25l[?25h [?25l29,1Top[?25h[?25l30,1-8[?25h[?25l1[?25h[?25l0[?25h[?25l81-88[?25h[?25l-- INSERT --30,82-89 Top[?25h[?25l3-90]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l<4-91[?25h[?25l5-92[?25h[?25l/6-93[?25h[?25ld7-94[?25h[?25le8-95[?25h[?25lv9-96[?25h[?25l/90-97[?25h[?25ln1-98[?25h[?25lu2-99[?25h[?25ll3-100[?25h[?25ll4-101[?25h[?25l30,93-100 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10165C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + echo ./0 -+ sleep 5 - -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status . -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - BURN - RUN4 - RUN4.4.rom - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - remove100 - remove100.rom - remove100big.rom - rom211.rom - uinit - xxx - yyy - -no changes added to commit (use "git add" and/or "git commit -a") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + echo ./1 -+ sleep 10 -gi tadd  -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bgit add BURN -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ + exit 0 -gtit  -[?2004l[1]+ Done make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add RUN4 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi .gitignorevi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 52L, 430C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l52,1[?25h[?25l-- INSERT --53,1All]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25l4[?25h[?25l*2[?25h[?25l.3[?25h[?25lr4[?25h[?25lo5[?25h[?25lm6[?25h[?25l54,5All[?25h[?25l3,0-1[?25h[?25l-- INSERT --54,1Top54,1All[?25h[?25l@2[?25h[?25l#3[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l@2[?25h[?25l#3[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l#2[?25h[?25l3[?25h[?25ld4[?25h[?25lo5[?25h[?25ln6[?25h[?25l'7[?25h[?25lt8[?25h[?25l9[?25h[?25lw10[?25h[?25la1[?25h[?25ln2[?25h[?25lt3[?25h[?25l4[?25h[?25lt5[?25h[?25lh6[?25h[?25le7[?25h[?25ls8[?25h[?25le9[?25h[?25l20[?25h[?25le1[?25h[?25lv2[?25h[?25le3[?25h[?25lr4[?25h[?25l54,23All[?25h[?25l-- INSERT --55,1Top55,1All[?25h[?25lu2[?25h[?25li3[?25h[?25ln4[?25h[?25li5[?25h[?25lt6[?25h[?25l55,5All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 56L, 467C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - remove100 - xxx - yyy - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm xxx yyy -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv removemoorecrap.bin mv remove100 remove.ro100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100 -remove100big.rom remove100.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv remove100bifg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': mv remove100 remove100.romi': vi ../.gitignore[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 56L, 467C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l56,1[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - key.pub - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ../.gitignore[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 56L, 467C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l56,1[?25h[?25l-- INSERT --57,1All]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25l*2[?25h[?25l.3[?25h[?25ll4[?25h[?25la5[?25h[?25l4[?25h[?25lz5[?25h[?25la6[?25h[?25lm7[?25h[?25l8,1[?25h[?25l*2[?25h[?25l.3[?25h[?25lp4[?25h[?25lu5[?25h[?25lb6[?25h[?25l58,5All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 58L, 480C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - initramfs.linux_amd64.cpio.lzma - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': v': vi ../.gitignore[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ../.gitignore -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"../.gitignore" 58L, 480C▽ [>c]10;?]11;?# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# don't want these ever -uinit -*.rom -*.lzam -*.pub -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;.gitignore (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l58,1[?25h[?25l7[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l-- REPLACE --57,5All[?25h[?25lm6]2;.gitignore + (/usr/local/src/projects/nobinaryblobs/mainboards) - VIM]1;.gitignore[?25h[?25la7[?25h[?25l57,6All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"../.gitignore" 58L, 480C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git status -[?2004lOn branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: BURN - new file: RUN4 - -Changes not staged for commit: - (use "git add ..." to update what will be committed) - (use "git checkout -- ..." to discard changes in working directory) - - modified: ../.gitignore - modified: DXECLEANER - modified: Makefile - modified: RUN3 - -Untracked files: - (use "git add ..." to include in what will be committed) - - 98.splat - futk.remove.99/ - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git add ../.gitignore -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git commit -as -[?2004lhint: Waiting for your editor to close the file... [?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"/usr/local/src/projects/nobinaryblobs/mainboards/.git/COMMIT_EDITMSG" 22L, 478C▽ [>c]10;?]11;?Signed-off-by: Ronald G. Minnich - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch master -# Your branch is up to date with 'origin/master'. -# -# Changes to be committed: -#modified: ../.gitignore -#new file: BURN -#modified: DXECLEANER -#modified: Makefile -#modified: RUN3 -#new file: RUN4 -# -# Untracked files: -#98.splat -#futk.remove.99/ -# -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,0-1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l1,1 [?25h[?25l-- INSERT --12,1Top12,1All]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25lr2[?25h[?25le3[?25h[?25l4[?25h[?25l12,3All[?25h[?25l1 line less; before #1 1 seconds ago -~ 11,1All]2;COMMIT_EDITMSG (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25l0[?25h[?25l9,1 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4,0-1[?25h[?25l3,1 [?25h[?25l2,0-1[?25h[?25l1[?25h[?25l-- INSERT --1,1All[?25h[?25lm2]2;COMMIT_EDITMSG + (/usr/local/src/projects/nobinaryblobs/mainboards/.git) - VIM]1;COMMIT_EDITMSG[?25h[?25lo3[?25h[?25li4[?25h[?25lr5[?25h[?25le6[?25h[?25l7[?25h[?25lm8[?25h[?25la9[?25h[?25lk10[?25h[?25l9 [?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25lr4[?25h[?25le5[?25h[?25l6[?25h[?25lm7[?25h[?25la8[?25h[?25lk9[?25h[?25le10[?25h[?25l1[?25h[?25ls2[?25h[?25lt3[?25h[?25la4[?25h[?25ln5[?25h[?25lz6[?25h[?25la7[?25h[?25ls8[?25h[?25l,9[?25h[?25l20[?25h[?25lr1[?25h[?25lu2[?25h[?25ln3[?25h[?25l4[?25h[?25lr5[?25h[?25le6[?25h[?25ls7[?25h[?25lu8[?25h[?25ll9[?25h[?25lt30[?25h[?25ls1[?25h[?25l1,30All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l".git/COMMIT_EDITMSG" 22L, 508C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l [master b49685a] more make stanzas, run results - 6 files changed, 29811 insertions(+), 4 deletions(-) - create mode 100755 tyan7102/BURN - create mode 100644 tyan7102/RUN4 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ git push -[?2004lEnumerating objects: 15, done. -Counting objects: 6% (1/15) Counting objects: 13% (2/15) Counting objects: 20% (3/15) Counting objects: 26% (4/15) Counting objects: 33% (5/15) Counting objects: 40% (6/15) Counting objects: 46% (7/15) Counting objects: 53% (8/15) Counting objects: 60% (9/15) Counting objects: 66% (10/15) Counting objects: 73% (11/15) Counting objects: 80% (12/15) Counting objects: 86% (13/15) Counting objects: 93% (14/15) Counting objects: 100% (15/15) Counting objects: 100% (15/15), done. -Delta compression using up to 16 threads -Compressing objects: 11% (1/9) Compressing objects: 22% (2/9) Compressing objects: 33% (3/9) Compressing objects: 44% (4/9) Compressing objects: 55% (5/9) Compressing objects: 66% (6/9) Compressing objects: 77% (7/9) Compressing objects: 88% (8/9) Compressing objects: 100% (9/9) Compressing objects: 100% (9/9), done. -Writing objects: 11% (1/9) Writing objects: 22% (2/9) Writing objects: 33% (3/9) Writing objects: 44% (4/9) Writing objects: 66% (6/9) Writing objects: 77% (7/9) Writing objects: 88% (8/9) Writing objects: 100% (9/9) Writing objects: 100% (9/9), 252.59 KiB | 1014.00 KiB/s, done. -Total 9 (delta 5), reused 0 (delta 0) -remote: Resolving deltas: 0% (0/5)  remote: Resolving deltas: 20% (1/5)  remote: Resolving deltas: 40% (2/5)  remote: Resolving deltas: 80% (4/5)  remote: Resolving deltas: 100% (5/5)  remote: Resolving deltas: 100% (5/5), completed with 4 local objects. -To github.com:linuxboot/mainboards.git - 98955b7..b49685a master -> master -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:55:06 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:55:06 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 10:55:10 error building: failed to parse AST in file "/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/pkg/bb/cmd/main.go": /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/pkg/bb/cmd/main.go:34:50: expected ';', found '{' (and 2 more errors) -exit status 1 -Makefile:34: recipe for target 'bigi' failed -make: *** [bigi] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 10:56:20 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 10:56:20 Filename is /tmp/initramfs.linux_amd64.cpio -jnh   2019/01/04 10:56:30 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3672268 Jan 4 10:56 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 6e664068 -Kernel: arch/x86/boot/bzImage is ready (#89) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 10:56 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 10:56:55 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:02:21 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:02:21 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:02:31 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670975 Jan 4 11:02 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 5911bf6a -Kernel: arch/x86/boot/bzImage is ready (#90) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 11:02 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 11:02:57 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -^Z -[1]+ Stopped make burn -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make burn & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/ -xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make q -[?2004l/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #90 SMP Fri Jan 4 11:02:40 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Unable to calibrate against PIT -tsc: No reference (HPET/PMTIMER) available -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #90 SMP Fri Jan 4 11:02:40 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Unable to calibrate against PIT -tsc: No reference (HPET/PMTIMER) available -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -console [ttyS0] enabled -console [ttyS0] enabled -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -tsc: Fast TSC calibration using PIT -tsc: Fast TSC calibration using PIT -tsc: Detected 2893.110 MHz processor -tsc: Detected 2893.110 MHz processor -Calibrating delay loop (skipped), value calculated using timer frequency.. 5786.22 BogoMIPS (lpj=2893110) -Calibrating delay loop (skipped), value calculated using timer frequency.. 5786.22 BogoMIPS (lpj=2893110) -pid_max: default: 32768 minimum: 301 -pid_max: default: 32768 minimum: 301 -ACPI: Core revision 20170531 -ACPI: Core revision 20170531 -ACPI: 1 ACPI AML tables successfully acquired and loaded -ACPI: 1 ACPI AML tables successfully acquired and loaded -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Freeing SMP alternatives memory: 16K -Freeing SMP alternatives memory: 16K -smpboot: Max logical packages: 1 -smpboot: Max logical packages: 1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -Performance Events: PMU not available due to virtualization, using software events only. -Performance Events: PMU not available due to virtualization, using software events only. -Hierarchical SRCU implementation. -Hierarchical SRCU implementation. -smp: Bringing up secondary CPUs ... -smp: Bringing up secondary CPUs ... -smp: Brought up 1 node, 1 CPU -smp: Brought up 1 node, 1 CPU -smpboot: Total of 1 processors activated (5786.22 BogoMIPS) -smpboot: Total of 1 processors activated (5786.22 BogoMIPS) -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -futex hash table entries: 256 (order: 2, 16384 bytes) -futex hash table entries: 256 (order: 2, 16384 bytes) -pinctrl core: initialized pinctrl subsystem -pinctrl core: initialized pinctrl subsystem -NET: Registered protocol family 16 -NET: Registered protocol family 16 -cpuidle: using governor ladder -cpuidle: using governor ladder -cpuidle: using governor menu -cpuidle: using governor menu -PCCT header not found. -PCCT header not found. -ACPI: bus type PCI registered -ACPI: bus type PCI registered -PCI: Using configuration type 1 for base access -PCI: Using configuration type 1 for base access -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Interpreter enabled -ACPI: Interpreter enabled -ACPI: (supports S0 S5) -ACPI: (supports S0 S5) -ACPI: Using IOAPIC for interrupt routing -ACPI: Using IOAPIC for interrupt routing -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -PCI host bridge to bus 0000:00 -PCI host bridge to bus 0000:00 -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: Enabled 2 GPEs in block 00 to 0F -ACPI: Enabled 2 GPEs in block 00 to 0F -SCSI subsystem initialized -SCSI subsystem initialized -pps_core: LinuxPPS API ver. 1 registered -pps_core: LinuxPPS API ver. 1 registered -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -PTP clock support registered -PTP clock support registered -PCI: Using ACPI for IRQ routing -PCI: Using ACPI for IRQ routing -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -clocksource: Switched to clocksource hpet -clocksource: Switched to clocksource hpet -pnp: PnP ACPI init -pnp: PnP ACPI init -pnp: PnP ACPI: found 6 devices -pnp: PnP ACPI: found 6 devices -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -NET: Registered protocol family 2 -NET: Registered protocol family 2 -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP: Hash tables configured (established 65536 bind 65536) -TCP: Hash tables configured (established 65536 bind 65536) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -NET: Registered protocol family 1 -NET: Registered protocol family 1 -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -PCI-DMA: Using software bounce buffering for IO (SWIOTLB) -software IO TLB [mem 0xbbfe0000-0xbffe0000] (64MB) mapped at [ffff8800bbfe0000-ffff8800bffdffff] -software IO TLB [mem 0xbbfe0000-0xbffe0000] (64MB) mapped at [ffff8800bbfe0000-ffff8800bffdffff] -workingset: timestamp_bits=62 max_order=21 bucket_order=0 -workingset: timestamp_bits=62 max_order=21 bucket_order=0 -fuse init (API version 7.26) -fuse init (API version 7.26) -Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) -Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) -io scheduler noop registered -io scheduler noop registered -io scheduler deadline registered -io scheduler deadline registered -io scheduler cfq registered (default) -io scheduler cfq registered (default) -io scheduler mq-deadline registered -io scheduler mq-deadline registered -io scheduler kyber registered -io scheduler kyber registered -input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -ACPI: Power Button [PWRF] -ACPI: Power Button [PWRF] -Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A -Non-volatile memory driver v1.3 -Non-volatile memory driver v1.3 -tsc: Refined TSC clocksource calibration: 2893.002 MHz -tsc: Refined TSC clocksource calibration: 2893.002 MHz -clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b37060c47, max_idle_ns: 440795280605 ns -clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b37060c47, max_idle_ns: 440795280605 ns -clocksource: Switched to clocksource tsc -clocksource: Switched to clocksource tsc -+ echo ./0 -+ sleep 5 -loop: module loaded -loop: module loaded -e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -e1000: Copyright (c) 1999-2006 Intel Corporation. -e1000: Copyright (c) 1999-2006 Intel Corporation. -ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 -ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 -e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56 -e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56 -e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection -e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection -e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k -e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k -e1000e: Copyright(c) 1999 - 2015 Intel Corporation. -e1000e: Copyright(c) 1999 - 2015 Intel Corporation. -igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k -igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k -igb: Copyright (c) 2007-2014 Intel Corporation. -igb: Copyright (c) 2007-2014 Intel Corporation. -i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 -serio: i8042 KBD port at 0x60,0x64 irq 1 -serio: i8042 KBD port at 0x60,0x64 irq 1 -serio: i8042 AUX port at 0x60,0x64 irq 12 -serio: i8042 AUX port at 0x60,0x64 irq 12 -hidraw: raw HID events driver (C) Jiri Kosina -hidraw: raw HID events driver (C) Jiri Kosina -oprofile: using NMI interrupt. -oprofile: using NMI interrupt. -NET: Registered protocol family 10 -NET: Registered protocol family 10 -input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 -input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 -Segment Routing with IPv6 -Segment Routing with IPv6 -NET: Registered protocol family 17 -NET: Registered protocol family 17 -Key type dns_resolver registered -Key type dns_resolver registered -sched_clock: Marking stable (13064292248, 0)->(13928299953, -864007705) -sched_clock: Marking stable (13064292248, 0)->(13928299953, -864007705) -console [netcon0] enabled -console [netcon0] enabled -netconsole: network logging started -netconsole: network logging started -Freeing unused kernel memory: 4520K -Freeing unused kernel memory: 4520K -Write protecting the kernel read-only data: 6144k -Write protecting the kernel read-only data: 6144k -Freeing unused kernel memory: 568K -Freeing unused kernel memory: 568K -Freeing unused kernel memory: 692K -Freeing unused kernel memory: 692K -rodata_test: all tests were successful -rodata_test: all tests were successful -+ echo ./1 -+ sleep 10 -2019/01/04 19:03:55 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:03:56 Created dir "/buildbin" (mode 0777) -2019/01/04 19:03:56 Created dir "/ubin" (mode 0777) -2019/01/04 19:03:56 Created dir "/tmp" (mode 0777) -2019/01/04 19:03:56 Created dir "/env" (mode 0777) -2019/01/04 19:03:56 Created dir "/tcz" (mode 0777) -2019/01/04 19:03:56 Created dir "/lib" (mode 0777) -2019/01/04 19:03:56 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:03:56 Created dir "/var/log" (mode 0777) -2019/01/04 19:03:56 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:03:56 Created dir "/etc" (mode 0777) -2019/01/04 19:03:56 Created dir "/proc" (mode 0555) -2019/01/04 19:03:56 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:03:56 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:03:56 Created dir "/dev" (mode 0777) -2019/01/04 19:03:56 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:03:56 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:03:56 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:03:56 Error creating mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0: no such device -2019/01/04 19:03:56 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:03:56 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:03:56 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:03:56 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:03:56 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:03:56 Created dir "/sys" (mode 0555) -2019/01/04 19:03:56 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:03:56 Error creating mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/memory" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/freezer" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/devices" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/blkio" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/cpuset" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/pids" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/hugetlb" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating dir "/sys/fs/cgroup/perf_event" (mode 0555): mkdir /sys/fs/cgroup: operation not permitted -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct": symlink /sys/fs/cgroup/cpu,cpuacct /sys/fs/cgroup/cpu: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct": symlink /sys/fs/cgroup/cpu,cpuacct /sys/fs/cgroup/cpuacct: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio": symlink /sys/fs/cgroup/net_cls,net_prio /sys/fs/cgroup/net_cls: no such file or directory -2019/01/04 19:03:56 Error creating symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio": symlink /sys/fs/cgroup/net_cls,net_prio /sys/fs/cgroup/net_prio: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:03:56 Error creating mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0: no such file or directory -2019/01/04 19:03:56 Done Rootfs -2019/01/04 19:03:56 envs [HOME=/ TERM=linux LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin] -2019/01/04 19:03:56 Let's try to run /inito -2019/01/04 19:03:56 it's not there -2019/01/04 19:03:56 Let's try to run /bbin/uinit -2019/01/04 19:03:56 Run &{/bbin/uinit [/bbin/uinit] [HOME=/ TERM=linux LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin] 0xc00000c018 0xc00000c020 0xc00000c028 [] 0xc00006d360 false [] [] [] [] } -2019/01/04 19:03:56 here we are in uinit -2019/01/04 19:03:56 UINIT uid is 0 -IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready -IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready -e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX -e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX -IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -1: lo: mtu 65536 state DOWN - link/loopback -2: dummy0: mtu 1500 state DOWN - link/ether ba:39:31:93:ef:85 -3: eth0: mtu 1500 state UP - link/ether 52:54:00:12:34:56 - inet 192.168.0.2 brd 192.168.0.255 scope global eth0 - valid_lft forever preferred_lft forever - inet6 fe80::5054:ff:fe12:3456 scope link - valid_lft forever preferred_lft forever -2019/01/04 19:03:57 Sleeping 16 seconds for stupid network to come up - - - -+ exit 0 -2019/01/04 19:04:13 up all done -2019/01/04 19:04:13 Start an sshd -2019/01/04 19:04:13 Now dial 192.168.0.1:8080 -2019/01/04 19:04:13 starting ssh server on port 2222 - - - -qemu-system-x86_64: terminating on signal 2 -[1]+ Done make burn - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:07:00 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:07:00 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:07:09 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3670975 Jan 4 11:07 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o -^CMakefile:1000: recipe for target 'vmlinux' failed -make[1]: *** [vmlinux] Error 1 -Makefile:18: recipe for target 'buildbzimage' failed -make: *** [buildbzimage] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ testramfs -i initramfs.linux_amd64.cpio.lzma  -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10165C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hl[?25l[?25hz[?25l[?25ha[?25l[?25h[?25l[?25hm[?25l[?25ha[?25l[?25h [?25l25,2-9Top[?25h[?25l7-14[?25h[?25l8-15[?25h[?25l7-14[?25h[?25l-- INSERT --25,7-14Top[?25h[?25l--f initramfs.linux_amd64.cpio8-15]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk-f initramfs.linux_amd64.cpio9-16[?25h[?25l -f initramfs.linux_amd64.cpio10-17[?25h[?25l25,9-16Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10168C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mtestramfs -i /tmp/initramfs.linux_amd64.cpio -[?2004l2019/01/04 11:07:45 operation not permitted -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo !! -[?2004lsudo testramfs -i /tmp/initramfs.linux_amd64.cpio -sudo: testramfs: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rmbin/bin/tesgo/bin/testramfs -i /t p/inmp/initramfs.linux_amd64.cpio -[?2004l2019/01/04 19:08:06 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:08:06 Created dir "/buildbin" (mode 0777) -2019/01/04 19:08:06 Created dir "/ubin" (mode 0777) -2019/01/04 19:08:06 Created dir "/tmp" (mode 0777) -2019/01/04 19:08:06 Created dir "/env" (mode 0777) -2019/01/04 19:08:06 Created dir "/tcz" (mode 0777) -2019/01/04 19:08:06 Created dir "/lib" (mode 0777) -2019/01/04 19:08:06 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:08:06 Created dir "/var/log" (mode 0777) -2019/01/04 19:08:06 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:08:06 Created dir "/etc" (mode 0777) -2019/01/04 19:08:06 Created dir "/proc" (mode 0555) -2019/01/04 19:08:06 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:08:06 Created dir "/dev" (mode 0777) -2019/01/04 19:08:06 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:08:06 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:08:06 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:08:06 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:08:06 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:08:06 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:08:06 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:08:06 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:08:06 Created dir "/sys" (mode 0555) -2019/01/04 19:08:06 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:08:06 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:08:06 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:08:06 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:08:06 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:08:06 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:08:06 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:08:06 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:08:06 Done Rootfs -2019/01/04 19:08:06 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] -2019/01/04 19:08:06 Let's try to run /inito -2019/01/04 19:08:06 it's not there -2019/01/04 19:08:06 Let's try to run /bbin/uinit -2019/01/04 19:08:06 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] 0xc0000a8000 0xc0000a8008 0xc0000a8010 [] 0xc0001585a0 false [] [] [] [] } -2019/01/04 19:08:06 here we are in uinit -2019/01/04 19:08:06 UINIT uid is 0 -ip: Link not found -2019/01/04 19:08:06 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:08:06 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:08:06 Sleeping 16 seconds for stupid network to come up - - -2019/01/04 19:08:22 up all done -2019/01/04 19:08:22 Start an sshd -2019/01/04 19:08:22 Now dial 192.168.0.1:8080 -2019/01/04 19:08:22 Dial went poorly -2019/01/04 19:08:22 We are now done ...................... -2019/01/04 19:08:22 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:08:22 Shell exited, exit status 2 -2019/01/04 19:08:22 Let's try to run /bin/uinit -2019/01/04 19:08:22 it's not there -2019/01/04 19:08:22 Let's try to run /buildbin/uinit -2019/01/04 19:08:22 it's not there -2019/01/04 19:08:22 Let's try to run /bin/defaultsh -2019/01/04 19:08:22 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:08:22 is now /bbin/elvish -2019/01/04 19:08:22 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/] 0xc0000a8000 0xc0000a8008 0xc0000a8010 [] 0xc000158640 false [] [] [] [] } -2019/01/04 19:08:22 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l ???> ???> [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:08:25 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:08:25 arg1 is -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:25 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:26 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:27 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -^C2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -2019/01/04 19:08:28 arg1 is now -Exception: defaultsh killed by signal interrupt -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# k root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# km root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# kma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# kmak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# m root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# mak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make bi root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "make": executable file not found in $PATH -[tty], line 1: make bi -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:10:07 Shell exited, exit status 0 -2019/01/04 19:10:07 init: Waiting for orphaned children -2019/01/04 19:10:07 init: All commands exited -2019/01/04 19:10:07 init: Syncing filesystems -maek2019/01/04 19:10:08 init: Exiting... -2019/01/04 11:10:08 Unmounting /tmp/u-root413451611 -2019/01/04 11:10:08 Removing /tmp/u-root413451611 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bimake bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:10:16 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:10:16 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:10:26 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3669978 Jan 4 11:10 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:10:35 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:10:35 Created dir "/buildbin" (mode 0777) -2019/01/04 19:10:35 Created dir "/ubin" (mode 0777) -2019/01/04 19:10:35 Created dir "/tmp" (mode 0777) -2019/01/04 19:10:35 Created dir "/env" (mode 0777) -2019/01/04 19:10:35 Created dir "/tcz" (mode 0777) -2019/01/04 19:10:35 Created dir "/lib" (mode 0777) -2019/01/04 19:10:35 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:10:35 Created dir "/var/log" (mode 0777) -2019/01/04 19:10:35 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:10:35 Created dir "/etc" (mode 0777) -2019/01/04 19:10:35 Created dir "/proc" (mode 0555) -2019/01/04 19:10:35 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:10:35 Created dir "/dev" (mode 0777) -2019/01/04 19:10:35 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:10:35 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:10:35 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:10:35 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:10:35 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:10:35 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:10:35 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:10:35 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:10:35 Created dir "/sys" (mode 0555) -2019/01/04 19:10:35 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:10:35 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:10:35 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:10:35 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:10:35 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:10:35 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:10:35 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:10:35 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:10:35 Done Rootfs -2019/01/04 19:10:35 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] -2019/01/04 19:10:35 Let's try to run /inito -2019/01/04 19:10:35 it's not there -2019/01/04 19:10:35 Let's try to run /bbin/uinit -2019/01/04 19:10:35 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc00015c5a0 false [] [] [] [] } -2019/01/04 19:10:35 here we are in uinit -2019/01/04 19:10:35 UINIT uid is 0 -ip: Link not found -2019/01/04 19:10:35 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:10:35 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:10:35 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:10:51 up all done -2019/01/04 19:10:51 Start an sshd -2019/01/04 19:10:51 Now dial 192.168.0.1:8080 -2019/01/04 19:10:51 Dial went poorly -2019/01/04 19:10:51 We are now done ...................... -2019/01/04 19:10:51 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:10:51 Shell exited, exit status 2 -2019/01/04 19:10:51 Let's try to run /bin/uinit -2019/01/04 19:10:51 it's not there -2019/01/04 19:10:51 Let's try to run /buildbin/uinit -2019/01/04 19:10:51 it's not there -2019/01/04 19:10:51 Let's try to run /bin/defaultsh -2019/01/04 19:10:51 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:10:51 is now /bbin/elvish -2019/01/04 19:10:51 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc00015c640 false [] [] [] [] } -2019/01/04 19:10:51 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:11:25 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:11:25 arg1 is -2019/01/04 19:11:25 arg1 at end -2019/01/04 19:11:25 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# f root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# fg root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# fg root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l Exception: args error -[tty], line 1: fg -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:14:08 Shell exited, exit status 0 -2019/01/04 19:14:08 init: Waiting for orphaned children -2019/01/04 19:14:08 init: All commands exited -2019/01/04 19:14:08 init: Syncing filesystems -2019/01/04 19:14:08 init: Exiting... -2019/01/04 11:14:08 Unmounting /tmp/u-root475748022 -2019/01/04 11:14:08 Removing /tmp/u-root475748022 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lbash: fg: current: no such job -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10168C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h-[?25l[?25hf[?25l[?25h [?25l23,58-65 Top[?25h[?25l25,10-17 Top[?25h[?25l36,58-65 Top[?25h[?25l7,2-9 [?25h[?25l8[?25h[?25l7-14[?25h[?25l-- INSERT --38,7-14Top[?25h[?25l--f initramfs.linux_amd64.cpio8-15]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25lk-f initramfs.linux_amd64.cpio9-16[?25h[?25l -f initramfs.linux_amd64.cpio10-17[?25h[?25l38,9-16Top[?25h[?25l7[?25h[?25l6[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10171C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bi -[?2004lmake: *** No rule to make target 'bi'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:14:50 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:14:50 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:15:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:15 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670150 Jan 4 11:15 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:15:10 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:15:10 Created dir "/buildbin" (mode 0777) -2019/01/04 19:15:10 Created dir "/ubin" (mode 0777) -2019/01/04 19:15:10 Created dir "/tmp" (mode 0777) -2019/01/04 19:15:10 Created dir "/env" (mode 0777) -2019/01/04 19:15:10 Created dir "/tcz" (mode 0777) -2019/01/04 19:15:10 Created dir "/lib" (mode 0777) -2019/01/04 19:15:10 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:15:10 Created dir "/var/log" (mode 0777) -2019/01/04 19:15:10 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:15:10 Created dir "/etc" (mode 0777) -2019/01/04 19:15:10 Created dir "/proc" (mode 0555) -2019/01/04 19:15:10 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:15:10 Created dir "/dev" (mode 0777) -2019/01/04 19:15:10 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:15:10 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:15:10 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:15:10 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:15:10 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:15:10 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:15:10 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:15:10 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:15:10 Created dir "/sys" (mode 0555) -2019/01/04 19:15:10 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:15:10 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:15:10 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:15:10 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:15:10 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:15:10 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:15:10 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:15:10 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:15:10 Done Rootfs -2019/01/04 19:15:10 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:15:10 Let's try to run /inito -2019/01/04 19:15:10 it's not there -2019/01/04 19:15:10 Let's try to run /bbin/uinit -2019/01/04 19:15:10 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001665a0 false [] [] [] [] } -2019/01/04 19:15:10 here we are in uinit -2019/01/04 19:15:10 UINIT uid is 0 -ip: Link not found -2019/01/04 19:15:10 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:15:10 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:15:10 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:15:26 up all done -2019/01/04 19:15:26 Start an sshd -2019/01/04 19:15:26 Now dial 192.168.0.1:8080 -2019/01/04 19:15:26 Dial went poorly -2019/01/04 19:15:26 We are now done ...................... -2019/01/04 19:15:26 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:15:26 Shell exited, exit status 2 -2019/01/04 19:15:26 Let's try to run /bin/uinit -2019/01/04 19:15:26 it's not there -2019/01/04 19:15:26 Let's try to run /buildbin/uinit -2019/01/04 19:15:26 it's not there -2019/01/04 19:15:26 Let's try to run /bin/defaultsh -2019/01/04 19:15:26 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:15:26 is now /bbin/elvish -2019/01/04 19:15:26 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000166640 false [] [] [] [] } -2019/01/04 19:15:26 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:15:51 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:15:51 first readlink is is ../bbin/elvish -2019/01/04 19:15:51 arg1 at end -2019/01/04 19:15:51 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l  [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:16:54 Shell exited, exit status 0 -2019/01/04 19:16:54 init: Waiting for orphaned children -2019/01/04 19:16:54 init: All commands exited -2019/01/04 19:16:54 init: Syncing filesystems - - -2019/01/04 19:16:54 init: Exiting... -2019/01/04 11:16:54 Unmounting /tmp/u-root214292543 -2019/01/04 11:16:54 Removing /tmp/u-root214292543 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:16:57 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:16:57 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:17:07 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:17 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670903 Jan 4 11:17 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:17:21 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:17:21 Created dir "/buildbin" (mode 0777) -2019/01/04 19:17:21 Created dir "/ubin" (mode 0777) -2019/01/04 19:17:21 Created dir "/tmp" (mode 0777) -2019/01/04 19:17:21 Created dir "/env" (mode 0777) -2019/01/04 19:17:21 Created dir "/tcz" (mode 0777) -2019/01/04 19:17:21 Created dir "/lib" (mode 0777) -2019/01/04 19:17:21 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:17:21 Created dir "/var/log" (mode 0777) -2019/01/04 19:17:21 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:17:21 Created dir "/etc" (mode 0777) -2019/01/04 19:17:21 Created dir "/proc" (mode 0555) -2019/01/04 19:17:21 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:17:21 Created dir "/dev" (mode 0777) -2019/01/04 19:17:21 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:17:21 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:17:21 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:17:21 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:17:21 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:17:21 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:17:21 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:17:21 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:17:21 Created dir "/sys" (mode 0555) -2019/01/04 19:17:21 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:17:21 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:17:21 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:17:21 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:17:21 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:17:21 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:17:21 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:17:21 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:17:21 Done Rootfs -2019/01/04 19:17:21 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:17:21 Let's try to run /inito -2019/01/04 19:17:21 it's not there -2019/01/04 19:17:21 Let's try to run /bbin/uinit -2019/01/04 19:17:21 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001545a0 false [] [] [] [] } -2019/01/04 19:17:21 here we are in uinit -2019/01/04 19:17:21 UINIT uid is 0 -ip: Link not found -2019/01/04 19:17:21 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:17:21 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:17:21 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:17:37 up all done -2019/01/04 19:17:37 Start an sshd -2019/01/04 19:17:37 Now dial 192.168.0.1:8080 -2019/01/04 19:17:37 Dial went poorly -2019/01/04 19:17:37 We are now done ...................... -2019/01/04 19:17:37 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:17:37 Shell exited, exit status 2 -2019/01/04 19:17:37 Let's try to run /bin/uinit -2019/01/04 19:17:37 it's not there -2019/01/04 19:17:37 Let's try to run /buildbin/uinit -2019/01/04 19:17:37 it's not there -2019/01/04 19:17:37 Let's try to run /bin/defaultsh -2019/01/04 19:17:37 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:17:37 is now /bbin/elvish -2019/01/04 19:17:37 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000154640 false [] [] [] [] } -2019/01/04 19:17:37 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:17:40 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:17:40 first readlink is is ../bbin/elvish, -2019/01/04 19:17:40 arg1 at end -2019/01/04 19:17:40 os.Args is [/bin/defaultsh]: you need to specify which command to invoke. -Exception: defaultsh exited with 1 -[tty], line 1: defaultsh -[?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# m root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ma root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# mak root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# make root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l  [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  [?25h[?25l  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:18:26 Shell exited, exit status 0 -2019/01/04 19:18:26 init: Waiting for orphaned children -2019/01/04 19:18:26 init: All commands exited -2019/01/04 19:18:26 init: Syncing filesystems -2019/01/04 19:18:27 init: Exiting... -2019/01/04 11:18:27 Unmounting /tmp/u-root739849131 -2019/01/04 11:18:27 Removing /tmp/u-root739849131 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigii -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:18:30 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:18:30 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:18:40 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:18 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670913 Jan 4 11:18 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:18:49 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:18:49 Created dir "/buildbin" (mode 0777) -2019/01/04 19:18:49 Created dir "/ubin" (mode 0777) -2019/01/04 19:18:49 Created dir "/tmp" (mode 0777) -2019/01/04 19:18:49 Created dir "/env" (mode 0777) -2019/01/04 19:18:49 Created dir "/tcz" (mode 0777) -2019/01/04 19:18:49 Created dir "/lib" (mode 0777) -2019/01/04 19:18:49 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:18:49 Created dir "/var/log" (mode 0777) -2019/01/04 19:18:49 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:18:49 Created dir "/etc" (mode 0777) -2019/01/04 19:18:49 Created dir "/proc" (mode 0555) -2019/01/04 19:18:49 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:18:49 Created dir "/dev" (mode 0777) -2019/01/04 19:18:49 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:18:49 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:18:49 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:18:49 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:18:49 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:18:49 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:18:49 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:18:49 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:18:49 Created dir "/sys" (mode 0555) -2019/01/04 19:18:49 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:18:49 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:18:49 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:18:49 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:18:49 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:18:49 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:18:49 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:18:49 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:18:49 Done Rootfs -2019/01/04 19:18:49 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] -2019/01/04 19:18:49 Let's try to run /inito -2019/01/04 19:18:49 it's not there -2019/01/04 19:18:49 Let's try to run /bbin/uinit -2019/01/04 19:18:49 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001565a0 false [] [] [] [] } -2019/01/04 19:18:49 here we are in uinit -2019/01/04 19:18:49 UINIT uid is 0 -ip: Link not found -2019/01/04 19:18:49 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:18:49 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:18:49 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:19:05 up all done -2019/01/04 19:19:05 Start an sshd -2019/01/04 19:19:05 Now dial 192.168.0.1:8080 -2019/01/04 19:19:05 Dial went poorly -2019/01/04 19:19:05 We are now done ...................... -2019/01/04 19:19:05 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:19:05 Shell exited, exit status 2 -2019/01/04 19:19:05 Let's try to run /bin/uinit -2019/01/04 19:19:05 it's not there -2019/01/04 19:19:05 Let's try to run /buildbin/uinit -2019/01/04 19:19:05 it's not there -2019/01/04 19:19:05 Let's try to run /bin/defaultsh -2019/01/04 19:19:05 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:19:05 is now /bbin/elvish -2019/01/04 19:19:05 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000156640 false [] [] [] [] } -2019/01/04 19:19:05 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:08 os.Args is [/bin/defaultsh], trying plan b -2019/01/04 19:19:08 first readlink is is ../bbin/elvish, -2019/01/04 19:19:08 arg1 is now ../bbin/elvish -2019/01/04 19:19:08 ..... readlink is is , readlink ../bbin/elvish: no such file or directory -2019/01/04 19:19:08 arg1 at end ../bbin/elvish -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln = root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln =- root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln = root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln - root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bn root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:27 os.Args is [/bin/sh], trying plan b -2019/01/04 19:19:27 first readlink is is /bin/defaultsh, -2019/01/04 19:19:27 arg1 is now /bin/defaultsh -2019/01/04 19:19:27 ..... readlink is is ../bbin/elvish, -2019/01/04 19:19:27 arg1 is now ../bbin/elvish -2019/01/04 19:19:27 ..... readlink is is , readlink ../bbin/elvish: no such file or directory -2019/01/04 19:19:27 arg1 at end ../bbin/elvish -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:19:37 Shell exited, exit status 0 -2019/01/04 19:19:37 init: Waiting for orphaned children -2019/01/04 19:19:37 init: All commands exited -2019/01/04 19:19:37 init: Syncing filesystems -2019/01/04 19:19:37 init: Exiting... -2019/01/04 11:19:37 Unmounting /tmp/u-root926368361 -2019/01/04 11:19:37 Removing /tmp/u-root926368361 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:19:40 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:19:40 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:19:50 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:19 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670913 Jan 4 11:19 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC fad3a1d1 -Kernel: arch/x86/boot/bzImage is ready (#92) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 11:20 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 11:20:14 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bighi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:21:48 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:21:48 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:21:58 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -^R -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241308 Jan 4 11:21 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3671533 Jan 4 11:21 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ test (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:22:07 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:22:07 Created dir "/buildbin" (mode 0777) -2019/01/04 19:22:07 Created dir "/ubin" (mode 0777) -2019/01/04 19:22:07 Created dir "/tmp" (mode 0777) -2019/01/04 19:22:07 Created dir "/env" (mode 0777) -2019/01/04 19:22:07 Created dir "/tcz" (mode 0777) -2019/01/04 19:22:07 Created dir "/lib" (mode 0777) -2019/01/04 19:22:07 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:22:07 Created dir "/var/log" (mode 0777) -2019/01/04 19:22:07 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:22:07 Created dir "/etc" (mode 0777) -2019/01/04 19:22:07 Created dir "/proc" (mode 0555) -2019/01/04 19:22:07 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:22:07 Created dir "/dev" (mode 0777) -2019/01/04 19:22:07 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:22:07 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:22:07 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:22:07 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:22:07 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:22:07 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:22:07 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:22:07 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:22:07 Created dir "/sys" (mode 0555) -2019/01/04 19:22:07 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:22:07 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:22:07 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:22:07 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:22:07 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:22:07 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:22:07 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:22:07 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:22:07 Done Rootfs -2019/01/04 19:22:07 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:22:07 Let's try to run /inito -2019/01/04 19:22:07 it's not there -2019/01/04 19:22:07 Let's try to run /bbin/uinit -2019/01/04 19:22:07 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc00014e5a0 false [] [] [] [] } -2019/01/04 19:22:07 here we are in uinit -2019/01/04 19:22:07 UINIT uid is 0 -ip: Link not found -2019/01/04 19:22:07 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:22:07 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:22:07 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:22:23 up all done -2019/01/04 19:22:23 Start an sshd -2019/01/04 19:22:23 Now dial 192.168.0.1:8080 -2019/01/04 19:22:23 Dial went poorly -2019/01/04 19:22:23 We are now done ...................... -2019/01/04 19:22:23 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:22:23 Shell exited, exit status 2 -2019/01/04 19:22:23 Let's try to run /bin/uinit -2019/01/04 19:22:23 it's not there -2019/01/04 19:22:23 Let's try to run /buildbin/uinit -2019/01/04 19:22:23 it's not there -2019/01/04 19:22:23 Let's try to run /bin/defaultsh -2019/01/04 19:22:23 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:22:23 is now /bbin/elvish -2019/01/04 19:22:23 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc00014e640 false [] [] [] [] } -2019/01/04 19:22:23 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# def root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# defaultsh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln - root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/d root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/de root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh / root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /b root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bi root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/ root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# ln -s /bin/defaultsh /bin/sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:22:34 Shell exited, exit status 0 -2019/01/04 19:22:34 init: Waiting for orphaned children -2019/01/04 19:22:34 init: All commands exited -2019/01/04 19:22:34 init: Syncing filesystems -2019/01/04 19:22:34 init: Exiting... -2019/01/04 11:22:34 Unmounting /tmp/u-root479433618 -2019/01/04 11:22:34 Removing /tmp/u-root479433618 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make big -[?2004lmake: *** No rule to make target 'big'. Stop. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pmake bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 11:27:29 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 11:27:29 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 11:27:39 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 11:27 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 11:27 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@t': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio [1@e[1@s[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio  -[?2004l2019/01/04 19:27:51 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 19:27:51 Created dir "/buildbin" (mode 0777) -2019/01/04 19:27:51 Created dir "/ubin" (mode 0777) -2019/01/04 19:27:51 Created dir "/tmp" (mode 0777) -2019/01/04 19:27:51 Created dir "/env" (mode 0777) -2019/01/04 19:27:51 Created dir "/tcz" (mode 0777) -2019/01/04 19:27:51 Created dir "/lib" (mode 0777) -2019/01/04 19:27:51 Created dir "/usr/lib" (mode 0777) -2019/01/04 19:27:51 Created dir "/var/log" (mode 0777) -2019/01/04 19:27:51 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 19:27:51 Created dir "/etc" (mode 0777) -2019/01/04 19:27:51 Created dir "/proc" (mode 0555) -2019/01/04 19:27:51 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 19:27:51 Created dir "/dev" (mode 0777) -2019/01/04 19:27:51 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 19:27:51 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 19:27:51 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 19:27:51 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 19:27:51 Created dir "/dev/pts" (mode 0777) -2019/01/04 19:27:51 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 19:27:51 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 19:27:51 Created dir "/dev/shm" (mode 0777) -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 19:27:51 Created dir "/sys" (mode 0555) -2019/01/04 19:27:51 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 19:27:51 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 19:27:51 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:27:51 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 19:27:51 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 19:27:51 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 19:27:51 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 19:27:51 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 19:27:51 Done Rootfs -2019/01/04 19:27:51 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] -2019/01/04 19:27:51 Let's try to run /inito -2019/01/04 19:27:51 it's not there -2019/01/04 19:27:51 Let's try to run /bbin/uinit -2019/01/04 19:27:51 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc0001605a0 false [] [] [] [] } -2019/01/04 19:27:51 here we are in uinit -2019/01/04 19:27:51 UINIT uid is 0 -ip: Link not found -2019/01/04 19:27:51 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 19:27:51 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 19:27:51 Sleeping 16 seconds for stupid network to come up -2019/01/04 19:28:07 up all done -2019/01/04 19:28:07 Start an sshd -2019/01/04 19:28:07 Now dial 192.168.0.1:8080 -2019/01/04 19:28:07 Dial went poorly -2019/01/04 19:28:07 We are now done ...................... -2019/01/04 19:28:07 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 19:28:07 Shell exited, exit status 2 -2019/01/04 19:28:07 Let's try to run /bin/uinit -2019/01/04 19:28:07 it's not there -2019/01/04 19:28:07 Let's try to run /buildbin/uinit -2019/01/04 19:28:07 it's not there -2019/01/04 19:28:07 Let's try to run /bin/defaultsh -2019/01/04 19:28:07 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 19:28:07 is now /bbin/elvish -2019/01/04 19:28:07 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc000160640 false [] [] [] [] } -2019/01/04 19:28:07 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:28:12 Shell exited, exit status 0 -2019/01/04 19:28:12 Let's try to run /bin/sh -2019/01/04 19:28:12 Run &{/bin/sh [/bin/sh] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize LD_LIBRARY_PATH=/usr/local/lib GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0] 0xc0000a4000 0xc0000a4008 0xc0000a4010 [] 0xc0001606e0 false [] [] [] [] } -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 19:28:19 Shell exited, exit status 0 -2019/01/04 19:28:19 init: Waiting for orphaned children -2019/01/04 19:28:19 init: All commands exited -2019/01/04 19:28:19 init: Syncing filesystems -2019/01/04 19:28:19 init: Exiting... -2019/01/04 11:28:19 Unmounting /tmp/u-root776400482 -2019/01/04 11:28:19 Removing /tmp/u-root776400482 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make q -[?2004l/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #92 SMP Fri Jan 4 11:19:59 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Fast TSC calibration using PIT -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -Linux version 4.13.0-rc7-onie+ (rminnich@xcpu.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-5)) #92 SMP Fri Jan 4 11:19:59 PST 2019 -Command line: -KERNEL supported cpus: - Intel GenuineIntel - AMD AuthenticAMD -x86/fpu: x87 FPU will use FXSAVE -e820: BIOS-provided physical RAM map: -BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable -BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved -BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved -BIOS-e820: [mem 0x0000000000100000-0x00000000bffdffff] usable -BIOS-e820: [mem 0x00000000bffe0000-0x00000000bfffffff] reserved -BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved -BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable -console [earlyser0] enabled -NX (Execute Disable) protection: active -random: fast init done -SMBIOS 2.8 present. -DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014 -tsc: Fast TSC calibration using PIT -e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000 -x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT -e820: last_pfn = 0xbffe0 max_arch_pfn = 0x400000000 -found SMP MP-table at [mem 0x000f6aa0-0x000f6aaf] mapped at [ffff8800000f6aa0] -ACPI: Early table checksum verification disabled -ACPI: RSDP 0x00000000000F68B0 000014 (v00 BOCHS ) -ACPI: RSDT 0x00000000BFFE157C 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) -ACPI: FACP 0x00000000BFFE1458 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) -ACPI: DSDT 0x00000000BFFE0040 001418 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) -ACPI: FACS 0x00000000BFFE0000 000040 -ACPI: APIC 0x00000000BFFE14CC 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) -ACPI: HPET 0x00000000BFFE1544 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) -Zone ranges: - DMA [mem 0x0000000000001000-0x0000000000ffffff] - DMA32 [mem 0x0000000001000000-0x00000000ffffffff] - Normal [mem 0x0000000100000000-0x000000023fffffff] -Movable zone start for each node -Early memory node ranges - node 0: [mem 0x0000000000001000-0x000000000009efff] - node 0: [mem 0x0000000000100000-0x00000000bffdffff] - node 0: [mem 0x0000000100000000-0x000000023fffffff] -Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff] -ACPI: PM-Timer IO Port: 0x608 -ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) -IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 -ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) -ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) -Using ACPI (MADT) for SMP configuration information -ACPI: HPET id: 0x8086a201 base: 0xfed00000 -smpboot: Allowing 1 CPUs, 0 hotplug CPUs -e820: [mem 0xc0000000-0xfffbffff] available for PCI devices -Booting paravirtualized kernel on bare hardware -clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns -setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:1 nr_node_ids:1 -percpu: Embedded 35 pages/cpu @ffff88023fc00000 s105112 r8192 d30056 u2097152 -Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2064233 -Kernel command line: earlyprintk=ttyS0,115200,keep console=ttyS0,115200 -PID hash table entries: 4096 (order: 3, 32768 bytes) -Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) -Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) -Memory: 8167040K/8388088K available (3517K kernel code, 445K rwdata, 1356K rodata, 4520K init, 248K bss, 221048K reserved, 0K cma-reserved) -SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 -Hierarchical RCU implementation. - RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1. -RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 -NR_IRQS: 33024, nr_irqs: 256, preallocated irqs: 16 -NO_HZ: Clearing 0 from nohz_full range for timekeeping -NO_HZ: Full dynticks CPUs: . - Note: kernel parameter 'rcu_nocbs=' contains nonexistent CPUs. - Offload RCU callbacks from CPUs: . -console [ttyS0] enabled -console [ttyS0] enabled -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns -tsc: Fast TSC calibration using PIT -tsc: Fast TSC calibration using PIT -tsc: Detected 2892.962 MHz processor -tsc: Detected 2892.962 MHz processor -Calibrating delay loop (skipped), value calculated using timer frequency.. 5785.92 BogoMIPS (lpj=2892962) -Calibrating delay loop (skipped), value calculated using timer frequency.. 5785.92 BogoMIPS (lpj=2892962) -pid_max: default: 32768 minimum: 301 -pid_max: default: 32768 minimum: 301 -ACPI: Core revision 20170531 -ACPI: Core revision 20170531 -ACPI: 1 ACPI AML tables successfully acquired and loaded -ACPI: 1 ACPI AML tables successfully acquired and loaded -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mount-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes) -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 -Freeing SMP alternatives memory: 16K -Freeing SMP alternatives memory: 16K -smpboot: Max logical packages: 1 -smpboot: Max logical packages: 1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3) -Performance Events: PMU not available due to virtualization, using software events only. -Performance Events: PMU not available due to virtualization, using software events only. -Hierarchical SRCU implementation. -Hierarchical SRCU implementation. -smp: Bringing up secondary CPUs ... -smp: Bringing up secondary CPUs ... -smp: Brought up 1 node, 1 CPU -smp: Brought up 1 node, 1 CPU -smpboot: Total of 1 processors activated (5785.92 BogoMIPS) -smpboot: Total of 1 processors activated (5785.92 BogoMIPS) -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns -futex hash table entries: 256 (order: 2, 16384 bytes) -futex hash table entries: 256 (order: 2, 16384 bytes) -pinctrl core: initialized pinctrl subsystem -pinctrl core: initialized pinctrl subsystem -NET: Registered protocol family 16 -NET: Registered protocol family 16 -cpuidle: using governor ladder -cpuidle: using governor ladder -cpuidle: using governor menu -cpuidle: using governor menu -PCCT header not found. -PCCT header not found. -ACPI: bus type PCI registered -ACPI: bus type PCI registered -PCI: Using configuration type 1 for base access -PCI: Using configuration type 1 for base access -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Module Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(Processor Device) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(3.0 _SCP Extensions) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Added _OSI(Processor Aggregator Device) -ACPI: Interpreter enabled -ACPI: Interpreter enabled -ACPI: (supports S0 S5) -ACPI: (supports S0 S5) -ACPI: Using IOAPIC for interrupt routing -ACPI: Using IOAPIC for interrupt routing -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC: OS supports [Segments MSI] -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM -PCI host bridge to bus 0000:00 -PCI host bridge to bus 0000:00 -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci_bus 0000:00: root bus resource [bus 00-ff] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: PCI Interrupt Link [LNKS] (IRQs *9) -ACPI: Enabled 2 GPEs in block 00 to 0F -ACPI: Enabled 2 GPEs in block 00 to 0F -SCSI subsystem initialized -SCSI subsystem initialized -pps_core: LinuxPPS API ver. 1 registered -pps_core: LinuxPPS API ver. 1 registered -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti -PTP clock support registered -PTP clock support registered -PCI: Using ACPI for IRQ routing -PCI: Using ACPI for IRQ routing -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -HPET: 3 timers in total, 0 timers will be used for per-cpu timer -clocksource: Switched to clocksource hpet -clocksource: Switched to clocksource hpet -pnp: PnP ACPI init -pnp: PnP ACPI init -pnp: PnP ACPI: found 6 devices -pnp: PnP ACPI: found 6 devices -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns -NET: Registered protocol family 2 -NET: Registered protocol family 2 -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP established hash table entries: 65536 (order: 7, 524288 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -TCP: Hash tables configured (established 65536 bind 65536) -TCP: Hash tables configured (established 65536 bind 65536) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) -NET: Registered protocol family 1 -NET: Registered protocol family 1 -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:00.0: Limiting direct PCI/PCI transfers -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: PIIX3: Enabling Passive Release -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:01.0: Activating ISA DMA hang workarounds -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] -qemu-system-x86_64: terminating on signal 2 - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:22:23 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:22:23 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:22:33 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:22 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:22 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC 5712b439 -Kernel: arch/x86/boot/bzImage is ready (#93) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:22 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:22:57 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10171C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2,0-1[?25h[?25l1,1-8[?25h[?25l0[?25h[?25l29,1 [?25h[?25l8,0-1[?25h[?25l7,1-8[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l5[?25h[?25l7[?25h[?25l12[?25h[?25l30,2-9[?25h[?25l29,12 [?25h[?25l]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile1[?25h[?25l30,4-11[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l3,5 [?25h[?25l2,0-1[?25h[?25l1,4-11[?25h[?25l0[?25h[?25l29,11 [?25h[?25l8,0-1[?25h[?25l7,4-11[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,11 [?25h[?25l30,4-11[?25h[?25l1[?25h[?25l2,0-1 [?25h[?25l1,4-11[?25h[?25l0[?25h[?25l29,11 [?25h[?25l8,0-1[?25h[?25l7,4-11[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,2 [?25h[?25l19,1-8[?25h[?25l8,4-11[?25h[?25l7,11 [?25h[?25l6,0-1[?25h[?25l5,4-11[?25h[?25l4,3 [?25h[?25l3,0-1[?25h[?25l2,4-11[?25h[?25l1,4 [?25h[?25l2,4-11[?25h[?25l3,0-1 [?25h[?25l4,3 [?25h[?25l5,4-11[?25h[?25l6,0-1 [?25h[?25l7,11 [?25h[?25l8,4-11[?25h[?25l9,1-8 [?25h[?25l20,2 [?25h[?25l1,4-11[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1 [?25h[?25l9,11 [?25h[?25l-- INSERT --29,12Top[?25h[?25lb3[?25h[?25l29,12Top[?25h[?25l8,0-1[?25h[?25l7,5-12[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0,2 [?25h[?25l19,1-8[?25h[?25l8,5-12[?25h[?25l7,12 [?25h[?25l6,0-1[?25h[?25l5,5-12[?25h[?25l6,0-1 [?25h[?25l7,12 [?25h[?25l8,5-12[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10171C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:30:19 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:30:19 Filename is /tmp/initramfs.linux_amd64.cpio - - - - -2019/01/04 12:30:29 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:30 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:30 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC a3044d02 -Kernel: arch/x86/boot/bzImage is ready (#94) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:30 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:30:51 no firmware volumes in BIOS Region -[]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 - - -^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi buMakefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10171C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l2,0-1[?25h[?25l3,1 [?25h[?25l2,0-1[?25h[?25l1,1-8[?25h[?25l0[?25h[?25l93-100[?25h[?25l0-97 [?25h[?25l89-96[?25h[?25l6-93[?25h[?25l5-92[?25h[?25l3-90[?25h[?25l]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile2-89[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10160C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:31:22 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:31:22 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:31:32 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:31 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:31 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 89dbf92f -Kernel: arch/x86/boot/bzImage is ready (#95) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:31 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 12:31:55 no firmware volumes in BIOS Region -[]OK ^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100.rom -[?2004l[remove100.rom]OK fv -no firmware volumes in BIOS Region -[]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ file remove100* -[?2004lremove100big.rom: Intel serial flash for PCH ROM -remove100.rom: ASCII text -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more remove100.rom -[?2004lRUN4.4.rom fv drop -00CC581D-5687-47C8-96C3-44EB1240A9F6 ix r r tag drop -DE141A05-FA40-432D-9631-5E3E990F44D5 ix r r tag drop -9B680FCE-AD6B-4F3A-B60B-F59899003443 ix r r tag drop -6C160B26-E04C-4098-A6AC-C8C7B6471A86 ix r r tag drop -634E8DB5-C432-43BE-A653-9CA2922CC458 ix r r tag drop -BB65942B-521F-4EC3-BAF9-A92540CF60D2 ix r r tag drop -74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 ix r r tag drop -8EEF9AD2-463E-425F-A4FE-2F6783D6F97E ix r r tag drop -86CDDF93-4872-4597-8AF9-A35AE4D3725F ix r r tag drop -AE587172-CC15-48E1-8BE0-29DDF05C6A1F ix r r tag drop -580DD900-385D-11D7-883A-00500473D4EB ix r r tag drop -43788BEB-638F-434C-8A84-46D33A589E76 ix r r tag drop -24A44CAF-0BF2-4514-90C4-C794B3E778F5 ix r r tag drop -271B424E-A4CC-4E0E-90A2-7EA4841F12F3 ix r r tag drop -502B04F3-71AB-47B4-BEAE-4736EA190AA4 ix r r tag drop -BDCE85BB-FBAA-4F4E-9264-501A2C249581 ix r r tag drop -961578FE-B6B7-44C3-AF35-6BC705CD2B1F ix r r tag drop -DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 ix r r tag drop -AE587172-CC15-48E1-8BE1-29DDF05C6A1E ix r r tag drop -8F5A2E02-538C-4D59-B920-C4786ACBC552 ix r r tag drop -9D0CEA63-745B-417D-BBA4-E5193061C907 ix r r tag drop -7D77B32E-BAB2-4CC7-8378-7550513F3FCA ix r r tag drop -64A11188-5B86-4F59-A702-73365896E65E ix r r tag drop -97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F ix r r tag drop -13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 ix r r tag drop -FA20568B-548B-4B2B-81EF-1BA08D4A3CEC ix r r tag drop -BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F ix r r tag drop -68D89864-C0A8-490D-BE18-C83D67240928 ix r r tag drop -E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC ix r r tag drop -52C877FD-C27C-4779-B750-7880B28B4306 ix r r tag drop -43E7ABDD-E352-4CFB-A230-4CDC1D350E5C ix r r tag drop -9BB65D37-8CA8-4789-BE45-EE18536EE089 ix r r tag drop -536DF136-BD96-4E1E-ADF5-6B637C139063 ix r r tag drop -69E6DD6D-F09E-485F-9627-EB70E9CFC82A ix r r tag drop -25ACF158-DD61-4E64-9A49-55851E9A26C7 ix r r tag drop -B11216C5-44E4-472C-ACB7-128A5A3AD7A1 ix r r tag drop -196CA3D8-9A5A-4735-B328-8FFC1D93D188 ix r r tag drop -E052D8A6-224A-4C32-8D37-2E0AE162364D ix r r tag drop -858EBE6F-360F-415B-B7DC-463AAEB03412 ix r r tag drop -6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 ix r r tag drop -4C006CD9-19BA-4617-8483-609194A1ACFC ix r r tag drop -29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 ix r r tag drop -2ACA4F79-324F-4D6D-8268-A210B1537807 ix r r tag drop -C4EB3614-4986-42B9-8C0D-9FE118278908 ix r r tag drop -F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 ix r r tag drop -16271FCA-55D9-4A33-93FC-5A3EB128DEB6 ix r r tag drop -5038E34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -CF6BCADD-D4C4-4095-B2BC-417D7247890A ix r r tag drop -DEB0EE00-18DF-415C-AF03-74D09B0AAD87 ix r r tag drop -5038F34E-0774-47A0-A5EF-4B94AF1A43DA ix r r tag drop -018A5C7A-12EB-429D-9DEF-6FCC410B04E8 ix r r tag drop -A210F973-229D-4F4D-AA37-9895E6C9EABA ix r r tag drop -3237418A-478C-4700-B59F-768E2CCBC726 ix r r tag drop -171F43DC-C4D9-47A6-9641-65DDCDD5AA30 ix r r tag drop -D93DE2E3-3727-4D5B-B49F-777C93A971D3 ix r r tag drop -61422D26-81EC-47FF-B6CF-939EAEE73FBA ix r r tag drop -87AB821C-79B8-4EF6-A913-21D22063F55F ix r r tag drop -3FFCAE95-23CF-4967-94F5-16352F68E43B ix r r tag drop -3C1DE39F-D207-408A-AACC-731CFB7F1DD7 ix r r tag drop -63809859-F029-41C3-9F34-EEEB9EA787A5 ix r r tag drop -6372357A-06D7-43EF-B55C-1964F3DD6916 ix r r tag drop -6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 ix r r tag drop -8C9D8537-9479-40F4-8C82-70D1EF5F7353 ix r r tag drop -B7EE4835-84CE-4B15-BF52-2D11574CE470 ix r r tag drop -217828C1-DA75-5BC1-7B58-91954FED0101 ix r r tag drop -BCEA6548-E204-4486-8F2A-36E13C7838CE ix r r tag drop -72FE44FF-44FC-4653-918A-0D5E76C416D2 ix r r tag drop -1015EA63-7421-417D-BB51-E5193061C551 ix r r tag drop -F80697E9-7FD6-4665-8646-88E33EF71DFC ix r r tag drop -9E8DD95D-868B-41A4-966C-107338C291BB ix r r tag drop -BB1FBD4F-2E30-4793-9BED-74F672BC8FFE ix r r tag drop -DC3641B8-2FA8-4ED3-BC1F-F9962A03454B ix r r tag drop -7AB22C56-2510-4FD2-AC18-57394419FBAB ix r r tag drop -D6207835-B7E3-4FF8-B276-CDE3E52206BC ix r r tag drop -45055A79-B385-4705-A3AC-11CE99A1CB47 ix r r tag drop -4A3602BC-1A05-4C82-99B4-588CD2A32CD5 ix r r tag drop -7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF ix r r tag drop -F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 ix r r tag drop -5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 ix r r tag drop -22EA234F-E72A-11E4-91F9-28D2447C4829 ix r r tag drop ---More--(39%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 futk.remove.99 linux remove100.rom RUN3 -bin.reset DIT initramfs.linux_amd64.cpio LIST removeBMCcrap.bin RUN4 -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removemorecrap.bin RUN4.4.rom -BURN DXECLEANER ipmisucks.bin Makefile removesetupcrap.bin tyan7102.bin -commentmorecrap.bin EATIT key.pub NOTES removesomecrap.bin uinit -commentsetupcrap.bin fail.bin L remove100big.rom rom211.rom x.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mv removemo100.rom remove100 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ lr *rom -[?2004lbash: lr: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *rom -[?2004lremove100big.rom rom211.rom RUN4.4.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk remove100big.rom fv -[?2004l2019/01/04 12:32:50 Found 213 things -[213]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp remove100big.rom remove100.rom -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:33:03 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:33:03 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:33:13 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:33 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:33 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC c387678f -Kernel: arch/x86/boot/bzImage is ready (#96) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:33 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom -2019/01/04 12:33:36 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -^CMakefile:30: recipe for target 'burn' failed -make: *** [burn] Interrupt - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 342L, 10160C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -burn: bigi bfutk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom./BURN remove100big.rom - -bigi:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root//xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -k -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,1 [?25h[?25l30,1-8[?25h[?25l1[?25h[?25l0[?25h[?25l82-89[?25h[?25l-- INSERT --30,83-90 Top[?25h[?25l4-91]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l<5-92[?25h[?25l6-93[?25h[?25l/7-94[?25h[?25ld8-95[?25h[?25le9-96[?25h[?25lv90-97[?25h[?25l/1-98[?25h[?25ln2-99[?25h[?25lu3-100[?25h[?25ll4-101[?25h[?25ll5-102[?25h[?25l30,94-101 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 342L, 10172C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:33:58 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:33:58 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:34:08 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:34 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:34 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 709d0e8c -Kernel: arch/x86/boot/bzImage is ready (#97) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:34 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:34:34 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -Device status unknown. -Makefile:30: recipe for target 'burn' failed -make: *** [burn] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[3798561.211851] usb 4-1.2.4: USB disconnect, device number 28 -[3798561.311634] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[3798561.311656] keyspan 4-1.2.4:1.0: device disconnected -[3798561.903281] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.903676] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.979859] usb 4-1.2.3: USB disconnect, device number 26 -[3798561.979997] ftdi_sio ttyUSB0: error from flowcontrol urb -[3798561.980234] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[3798561.980261] ftdi_sio 4-1.2.3:1.0: device disconnected -[3798581.658982] usb 4-1.2.4: new full-speed USB device number 36 using ehci-pci -[3798581.785700] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798581.785705] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798581.785709] usb 4-1.2.4: Product: Keyspan USA-19H -[3798581.785712] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798581.786568] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798581.786807] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB0 -[3798762.939619] usb 4-1.2.4: USB disconnect, device number 36 -[3798762.940099] keyspan_1 ttyUSB0: Keyspan 1 port adapter converter now disconnected from ttyUSB0 -[3798762.940143] keyspan 4-1.2.4:1.0: device disconnected -[3798764.185272] usb 4-1.2.3: new full-speed USB device number 37 using ehci-pci -[3798764.300743] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[3798764.300749] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3798764.300753] usb 4-1.2.3: Product: FT232R USB UART -[3798764.300755] usb 4-1.2.3: Manufacturer: FTDI -[3798764.300758] usb 4-1.2.3: SerialNumber: AL009FRA -[3798764.303690] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[3798764.303754] usb 4-1.2.3: Detected FT232RL -[3798764.304393] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[3798772.389176] usb 4-1.2.4: new full-speed USB device number 38 using ehci-pci -[3798772.516419] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798772.516425] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798772.516428] usb 4-1.2.4: Product: Keyspan USA-19H -[3798772.516431] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798772.517304] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798772.517613] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[3816832.288203] print_req_error: 54 callbacks suppressed -[3816832.288205] print_req_error: I/O error, dev loop1, sector 9494400 -[3816832.288461] print_req_error: I/O error, dev loop1, sector 9494616 -[3816832.288536] print_req_error: I/O error, dev loop1, sector 5300224 -[3816832.288645] print_req_error: I/O error, dev loop1, sector 5300232 -[3816832.328611] print_req_error: I/O error, dev loop1, sector 85888 -[3816832.328750] print_req_error: I/O error, dev loop1, sector 86000 -[3816832.328830] print_req_error: I/O error, dev loop1, sector 20480 -[3816832.328985] print_req_error: I/O error, dev loop1, sector 20488 -[3816832.360081] print_req_error: I/O error, dev loop1, sector 5300096 -[3816832.360233] print_req_error: I/O error, dev loop1, sector 5300208 -[3816887.663920] print_req_error: 54 callbacks suppressed -[3816887.663921] print_req_error: I/O error, dev loop1, sector 9494400 -[3816887.664007] print_req_error: I/O error, dev loop1, sector 9494616 -[3816887.664072] print_req_error: I/O error, dev loop1, sector 5300224 -[3816887.664106] print_req_error: I/O error, dev loop1, sector 5300232 -[3816887.666047] print_req_error: I/O error, dev loop1, sector 85888 -[3816887.666143] print_req_error: I/O error, dev loop1, sector 86000 -[3816887.666169] print_req_error: I/O error, dev loop1, sector 20480 -[3816887.666264] print_req_error: I/O error, dev loop1, sector 20488 -[3816887.693887] print_req_error: I/O error, dev loop1, sector 5300096 -[3816887.693978] print_req_error: I/O error, dev loop1, sector 5300208 -[3830899.575452] linhelmk unloading -[3830899.725878] linhelmk exit done -[3831200.052864] linhelmk loaded -[3831200.052867] This linhelmk was built with the IMA EXPERIMENT! -[3831200.081062] helm_ima_bridge_init() succeeded - IMA experiment running. -[3831200.082365] message queue initialized in 1024 pages of shared memory -[3831200.082586] cdev created: /dev/helm -[3831200.118355] probe is now in state 1 (was 0) -[3831200.126303] probe <__x64_sys_execve> is now in state 1 (was 0) -[3831200.132177] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3831200.138773] probe is now in state 1 (was 0) -[3831200.144717] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3831200.150714] probe is now in state 1 (was 0) -[3831200.157035] probe is now in state 1 (was 0) -[3831200.163040] probe is now in state 1 (was 0) -[3831200.168614] probe is now in state 1 (was 0) -[3831200.174423] probe is now in state 1 (was 0) -[3831200.174424] nf_hook 12 is now in state 1 (was 0) -[3831200.174425] nf_hook 13 is now in state 1 (was 0) -[3831200.174426] nf_hook 14 is now in state 1 (was 0) -[3831200.174426] nf_hook 15 is now in state 1 (was 0) -[3831200.174427] /dev/helm created; linhelm init done -[3838433.303659] print_req_error: 54 callbacks suppressed -[3838433.303661] print_req_error: I/O error, dev loop1, sector 9494400 -[3838433.303880] print_req_error: I/O error, dev loop1, sector 9494616 -[3838433.303960] print_req_error: I/O error, dev loop1, sector 5300224 -[3838433.304057] print_req_error: I/O error, dev loop1, sector 5300232 -[3838433.370876] print_req_error: I/O error, dev loop1, sector 85888 -[3838433.371027] print_req_error: I/O error, dev loop1, sector 86000 -[3838433.371133] print_req_error: I/O error, dev loop1, sector 20480 -[3838433.371283] print_req_error: I/O error, dev loop1, sector 20488 -[3838433.381469] print_req_error: I/O error, dev loop1, sector 5300096 -[3838433.381620] print_req_error: I/O error, dev loop1, sector 5300208 -[3838490.588118] print_req_error: 54 callbacks suppressed -[3838490.588120] print_req_error: I/O error, dev loop1, sector 9494400 -[3838490.588229] print_req_error: I/O error, dev loop1, sector 9494616 -[3838490.588291] print_req_error: I/O error, dev loop1, sector 5300224 -[3838490.588412] print_req_error: I/O error, dev loop1, sector 5300232 -[3838490.597471] print_req_error: I/O error, dev loop1, sector 85888 -[3838490.597571] print_req_error: I/O error, dev loop1, sector 86000 -[3838490.597670] print_req_error: I/O error, dev loop1, sector 20480 -[3838490.597769] print_req_error: I/O error, dev loop1, sector 20488 -[3838490.603281] print_req_error: I/O error, dev loop1, sector 5300096 -[3838490.603404] print_req_error: I/O error, dev loop1, sector 5300208 -[3860024.643570] print_req_error: 54 callbacks suppressed -[3860024.643571] print_req_error: I/O error, dev loop1, sector 9494400 -[3860024.643786] print_req_error: I/O error, dev loop1, sector 9494616 -[3860024.643845] print_req_error: I/O error, dev loop1, sector 5300224 -[3860024.643973] print_req_error: I/O error, dev loop1, sector 5300232 -[3860024.665871] print_req_error: I/O error, dev loop1, sector 85888 -[3860024.666001] print_req_error: I/O error, dev loop1, sector 86000 -[3860024.666153] print_req_error: I/O error, dev loop1, sector 20480 -[3860024.666284] print_req_error: I/O error, dev loop1, sector 20488 -[3860024.671412] print_req_error: I/O error, dev loop1, sector 5300096 -[3860024.671573] print_req_error: I/O error, dev loop1, sector 5300208 -[3860079.653261] print_req_error: 54 callbacks suppressed -[3860079.653263] print_req_error: I/O error, dev loop1, sector 9494400 -[3860079.653410] print_req_error: I/O error, dev loop1, sector 9494616 -[3860079.653469] print_req_error: I/O error, dev loop1, sector 5300224 -[3860079.653558] print_req_error: I/O error, dev loop1, sector 5300232 -[3860079.676414] print_req_error: I/O error, dev loop1, sector 85888 -[3860079.676510] print_req_error: I/O error, dev loop1, sector 86000 -[3860079.676583] print_req_error: I/O error, dev loop1, sector 20480 -[3860079.676652] print_req_error: I/O error, dev loop1, sector 20488 -[3860079.682166] print_req_error: I/O error, dev loop1, sector 5300096 -[3860079.682314] print_req_error: I/O error, dev loop1, sector 5300208 -[3881629.733227] print_req_error: 54 callbacks suppressed -[3881629.733229] print_req_error: I/O error, dev loop1, sector 9494400 -[3881629.733501] print_req_error: I/O error, dev loop1, sector 9494616 -[3881629.733577] print_req_error: I/O error, dev loop1, sector 5300224 -[3881629.733699] print_req_error: I/O error, dev loop1, sector 5300232 -[3881629.836389] print_req_error: I/O error, dev loop1, sector 85888 -[3881629.836539] print_req_error: I/O error, dev loop1, sector 86000 -[3881629.836690] print_req_error: I/O error, dev loop1, sector 20480 -[3881629.836836] print_req_error: I/O error, dev loop1, sector 20488 -[3881629.919656] print_req_error: I/O error, dev loop1, sector 5300096 -[3881629.919803] print_req_error: I/O error, dev loop1, sector 5300208 -[3881685.511548] print_req_error: 54 callbacks suppressed -[3881685.511550] print_req_error: I/O error, dev loop1, sector 9494400 -[3881685.511640] print_req_error: I/O error, dev loop1, sector 9494616 -[3881685.511687] print_req_error: I/O error, dev loop1, sector 5300224 -[3881685.511808] print_req_error: I/O error, dev loop1, sector 5300232 -[3881685.571459] print_req_error: I/O error, dev loop1, sector 85888 -[3881685.571605] print_req_error: I/O error, dev loop1, sector 86000 -[3881685.571682] print_req_error: I/O error, dev loop1, sector 20480 -[3881685.571839] print_req_error: I/O error, dev loop1, sector 20488 -[3881685.582186] print_req_error: I/O error, dev loop1, sector 5300096 -[3881685.582327] print_req_error: I/O error, dev loop1, sector 5300208 -[3883084.755555] usb 4-1.3: USB disconnect, device number 29 -[3883089.337157] usb 4-1.3: new high-speed USB device number 39 using ehci-pci -[3883089.449895] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[3883089.449901] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[3883089.451146] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[3883089.451151] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3883089.451154] usb 4-1.3: Product: EM100PRO -[3883089.451157] usb 4-1.3: Manufacturer: DediProg -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[3798561.211851] usb 4-1.2.4: USB disconnect, device number 28 -[3798561.311634] keyspan_1 ttyUSB1: Keyspan 1 port adapter converter now disconnected from ttyUSB1 -[3798561.311656] keyspan 4-1.2.4:1.0: device disconnected -[3798561.903281] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.903676] ftdi_sio ttyUSB0: usb_serial_generic_read_bulk_callback - urb stopped: -32 -[3798561.979859] usb 4-1.2.3: USB disconnect, device number 26 -[3798561.979997] ftdi_sio ttyUSB0: error from flowcontrol urb -[3798561.980234] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0 -[3798561.980261] ftdi_sio 4-1.2.3:1.0: device disconnected -[3798581.658982] usb 4-1.2.4: new full-speed USB device number 36 using ehci-pci -[3798581.785700] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798581.785705] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798581.785709] usb 4-1.2.4: Product: Keyspan USA-19H -[3798581.785712] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798581.786568] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798581.786807] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB0 -[3798762.939619] usb 4-1.2.4: USB disconnect, device number 36 -[3798762.940099] keyspan_1 ttyUSB0: Keyspan 1 port adapter converter now disconnected from ttyUSB0 -[3798762.940143] keyspan 4-1.2.4:1.0: device disconnected -[3798764.185272] usb 4-1.2.3: new full-speed USB device number 37 using ehci-pci -[3798764.300743] usb 4-1.2.3: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 -[3798764.300749] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3798764.300753] usb 4-1.2.3: Product: FT232R USB UART -[3798764.300755] usb 4-1.2.3: Manufacturer: FTDI -[3798764.300758] usb 4-1.2.3: SerialNumber: AL009FRA -[3798764.303690] ftdi_sio 4-1.2.3:1.0: FTDI USB Serial Device converter detected -[3798764.303754] usb 4-1.2.3: Detected FT232RL -[3798764.304393] usb 4-1.2.3: FTDI USB Serial Device converter now attached to ttyUSB0 -[3798772.389176] usb 4-1.2.4: new full-speed USB device number 38 using ehci-pci -[3798772.516419] usb 4-1.2.4: New USB device found, idVendor=06cd, idProduct=0121, bcdDevice= 1.00 -[3798772.516425] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3798772.516428] usb 4-1.2.4: Product: Keyspan USA-19H -[3798772.516431] usb 4-1.2.4: Manufacturer: Keyspan, a division of InnoSys Inc. -[3798772.517304] keyspan 4-1.2.4:1.0: Keyspan 1 port adapter converter detected -[3798772.517613] usb 4-1.2.4: Keyspan 1 port adapter converter now attached to ttyUSB1 -[3816832.288203] print_req_error: 54 callbacks suppressed -[3816832.288205] print_req_error: I/O error, dev loop1, sector 9494400 -[3816832.288461] print_req_error: I/O error, dev loop1, sector 9494616 -[3816832.288536] print_req_error: I/O error, dev loop1, sector 5300224 -[3816832.288645] print_req_error: I/O error, dev loop1, sector 5300232 -[3816832.328611] print_req_error: I/O error, dev loop1, sector 85888 -[3816832.328750] print_req_error: I/O error, dev loop1, sector 86000 -[3816832.328830] print_req_error: I/O error, dev loop1, sector 20480 -[3816832.328985] print_req_error: I/O error, dev loop1, sector 20488 -[3816832.360081] print_req_error: I/O error, dev loop1, sector 5300096 -[3816832.360233] print_req_error: I/O error, dev loop1, sector 5300208 -[3816887.663920] print_req_error: 54 callbacks suppressed -[3816887.663921] print_req_error: I/O error, dev loop1, sector 9494400 -[3816887.664007] print_req_error: I/O error, dev loop1, sector 9494616 -[3816887.664072] print_req_error: I/O error, dev loop1, sector 5300224 -[3816887.664106] print_req_error: I/O error, dev loop1, sector 5300232 -[3816887.666047] print_req_error: I/O error, dev loop1, sector 85888 -[3816887.666143] print_req_error: I/O error, dev loop1, sector 86000 -[3816887.666169] print_req_error: I/O error, dev loop1, sector 20480 -[3816887.666264] print_req_error: I/O error, dev loop1, sector 20488 -[3816887.693887] print_req_error: I/O error, dev loop1, sector 5300096 -[3816887.693978] print_req_error: I/O error, dev loop1, sector 5300208 -[3830899.575452] linhelmk unloading -[3830899.725878] linhelmk exit done -[3831200.052864] linhelmk loaded -[3831200.052867] This linhelmk was built with the IMA EXPERIMENT! -[3831200.081062] helm_ima_bridge_init() succeeded - IMA experiment running. -[3831200.082365] message queue initialized in 1024 pages of shared memory -[3831200.082586] cdev created: /dev/helm -[3831200.118355] probe is now in state 1 (was 0) -[3831200.126303] probe <__x64_sys_execve> is now in state 1 (was 0) -[3831200.132177] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3831200.138773] probe is now in state 1 (was 0) -[3831200.144717] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3831200.150714] probe is now in state 1 (was 0) -[3831200.157035] probe is now in state 1 (was 0) -[3831200.163040] probe is now in state 1 (was 0) -[3831200.168614] probe is now in state 1 (was 0) -[3831200.174423] probe is now in state 1 (was 0) -[3831200.174424] nf_hook 12 is now in state 1 (was 0) -[3831200.174425] nf_hook 13 is now in state 1 (was 0) -[3831200.174426] nf_hook 14 is now in state 1 (was 0) -[3831200.174426] nf_hook 15 is now in state 1 (was 0) -[3831200.174427] /dev/helm created; linhelm init done -[3838433.303659] print_req_error: 54 callbacks suppressed -[3838433.303661] print_req_error: I/O error, dev loop1, sector 9494400 -[3838433.303880] print_req_error: I/O error, dev loop1, sector 9494616 -[3838433.303960] print_req_error: I/O error, dev loop1, sector 5300224 -[3838433.304057] print_req_error: I/O error, dev loop1, sector 5300232 -[3838433.370876] print_req_error: I/O error, dev loop1, sector 85888 -[3838433.371027] print_req_error: I/O error, dev loop1, sector 86000 -[3838433.371133] print_req_error: I/O error, dev loop1, sector 20480 -[3838433.371283] print_req_error: I/O error, dev loop1, sector 20488 -[3838433.381469] print_req_error: I/O error, dev loop1, sector 5300096 -[3838433.381620] print_req_error: I/O error, dev loop1, sector 5300208 -[3838490.588118] print_req_error: 54 callbacks suppressed -[3838490.588120] print_req_error: I/O error, dev loop1, sector 9494400 -[3838490.588229] print_req_error: I/O error, dev loop1, sector 9494616 -[3838490.588291] print_req_error: I/O error, dev loop1, sector 5300224 -[3838490.588412] print_req_error: I/O error, dev loop1, sector 5300232 -[3838490.597471] print_req_error: I/O error, dev loop1, sector 85888 -[3838490.597571] print_req_error: I/O error, dev loop1, sector 86000 -[3838490.597670] print_req_error: I/O error, dev loop1, sector 20480 -[3838490.597769] print_req_error: I/O error, dev loop1, sector 20488 -[3838490.603281] print_req_error: I/O error, dev loop1, sector 5300096 -[3838490.603404] print_req_error: I/O error, dev loop1, sector 5300208 -[3860024.643570] print_req_error: 54 callbacks suppressed -[3860024.643571] print_req_error: I/O error, dev loop1, sector 9494400 -[3860024.643786] print_req_error: I/O error, dev loop1, sector 9494616 -[3860024.643845] print_req_error: I/O error, dev loop1, sector 5300224 -[3860024.643973] print_req_error: I/O error, dev loop1, sector 5300232 -[3860024.665871] print_req_error: I/O error, dev loop1, sector 85888 -[3860024.666001] print_req_error: I/O error, dev loop1, sector 86000 -[3860024.666153] print_req_error: I/O error, dev loop1, sector 20480 -[3860024.666284] print_req_error: I/O error, dev loop1, sector 20488 -[3860024.671412] print_req_error: I/O error, dev loop1, sector 5300096 -[3860024.671573] print_req_error: I/O error, dev loop1, sector 5300208 -[3860079.653261] print_req_error: 54 callbacks suppressed -[3860079.653263] print_req_error: I/O error, dev loop1, sector 9494400 -[3860079.653410] print_req_error: I/O error, dev loop1, sector 9494616 -[3860079.653469] print_req_error: I/O error, dev loop1, sector 5300224 -[3860079.653558] print_req_error: I/O error, dev loop1, sector 5300232 -[3860079.676414] print_req_error: I/O error, dev loop1, sector 85888 -[3860079.676510] print_req_error: I/O error, dev loop1, sector 86000 -[3860079.676583] print_req_error: I/O error, dev loop1, sector 20480 -[3860079.676652] print_req_error: I/O error, dev loop1, sector 20488 -[3860079.682166] print_req_error: I/O error, dev loop1, sector 5300096 -[3860079.682314] print_req_error: I/O error, dev loop1, sector 5300208 -[3881629.733227] print_req_error: 54 callbacks suppressed -[3881629.733229] print_req_error: I/O error, dev loop1, sector 9494400 -[3881629.733501] print_req_error: I/O error, dev loop1, sector 9494616 -[3881629.733577] print_req_error: I/O error, dev loop1, sector 5300224 -[3881629.733699] print_req_error: I/O error, dev loop1, sector 5300232 -[3881629.836389] print_req_error: I/O error, dev loop1, sector 85888 -[3881629.836539] print_req_error: I/O error, dev loop1, sector 86000 -[3881629.836690] print_req_error: I/O error, dev loop1, sector 20480 -[3881629.836836] print_req_error: I/O error, dev loop1, sector 20488 -[3881629.919656] print_req_error: I/O error, dev loop1, sector 5300096 -[3881629.919803] print_req_error: I/O error, dev loop1, sector 5300208 -[3881685.511548] print_req_error: 54 callbacks suppressed -[3881685.511550] print_req_error: I/O error, dev loop1, sector 9494400 -[3881685.511640] print_req_error: I/O error, dev loop1, sector 9494616 -[3881685.511687] print_req_error: I/O error, dev loop1, sector 5300224 -[3881685.511808] print_req_error: I/O error, dev loop1, sector 5300232 -[3881685.571459] print_req_error: I/O error, dev loop1, sector 85888 -[3881685.571605] print_req_error: I/O error, dev loop1, sector 86000 -[3881685.571682] print_req_error: I/O error, dev loop1, sector 20480 -[3881685.571839] print_req_error: I/O error, dev loop1, sector 20488 -[3881685.582186] print_req_error: I/O error, dev loop1, sector 5300096 -[3881685.582327] print_req_error: I/O error, dev loop1, sector 5300208 -[3883084.755555] usb 4-1.3: USB disconnect, device number 29 -[3883089.337157] usb 4-1.3: new high-speed USB device number 39 using ehci-pci -[3883089.449895] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x3 has invalid maxpacket 64 -[3883089.449901] usb 4-1.3: config 1 interface 0 altsetting 0 bulk endpoint 0x84 has invalid maxpacket 64 -[3883089.451146] usb 4-1.3: New USB device found, idVendor=04b4, idProduct=1235, bcdDevice= 0.01 -[3883089.451151] usb 4-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3883089.451154] usb 4-1.3: Product: EM100PRO -[3883089.451157] usb 4-1.3: Manufacturer: DediProg -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:35:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:35:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:35:43 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:35 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3670820 Jan 4 12:35 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 395fad26 -Kernel: arch/x86/boot/bzImage is ready (#98) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 12:36 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:36:08 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently stopped -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ catg Macat Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -burn: bigi b - futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null - ./BURN remove100big.rom - -bigi: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -k -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ - comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ - comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ - comment SystemBoardDxe \ - comment UbaInitDxe \ - comment CsmRt32 \ - comment AmiRedFishApi \ - comment AmiDeviceGuardApi \ - comment TxtDxe \ - comment Smbios \ - comment SmbiosBoard \ - comment SmbiosGetFlashData \ - comment AmiTcgNvflagSample \ - comment AmiTcgPlatformDxe \ - comment TcgDxeplatform \ - comment Tpm20PlatformDxe \ - comment Tpm20Acpi \ - comment TpmSmbiosDxe \ - comment Uhcd \ - comment SBDXE \ - comment Metronome \ - comment WatchdogTimer \ - comment CpuIoDxe \ - comment CRBDxe \ - comment EndlessbootDxe \ - comment TyanDxe \ - comment TyanBadDimmDxe \ - comment S7106_PROJECT_DXE \ - comment CapsuleRuntimeDxe \ - comment RuntimeDxe \ - comment PiSmmIpl \ - comment CpuCsrAccess \ - comment CrystalRidge \ - comment JedecNvDimm \ - comment PchResetRuntime \ - comment SmmControl \ - comment CryptoDXE \ - comment GenericElog \ - comment PlatformReset \ - comment SvSmmSupport \ - comment TraceHubStatusCodeHandlerRuntimeDxe \ - comment SmiFlashDxe \ - comment ConSplitter \ - comment GraphicsConsole \ - comment GenericSio \ - comment PciBus \ - comment TerminalSrc \ - comment SerialIo \ - comment CsmBlockIo \ - comment CsmVideo \ - comment IScsiDxe \ - comment PostReport \ - comment DcScreen \ - comment Nvme \ - comment PiSmmCore \ - comment FlashDriverSmm \ - comment NvramSmm \ - comment CpuIo2Smm \ - comment SmmLockBox \ - comment PcRtcSmm \ - comment PiSmmCpuDxeSmm \ - comment MemRas \ - comment CpuCsrAccessSMM \ - comment CrystalRidgeSMM \ - comment JedecNvDimmSMM \ - comment IioSmm \ - comment FpgaSmm \ - comment HwpLvtSmm \ - comment SmbusRecovery \ - comment QuiesceSupport \ - comment PchInitSmm \ - comment PchSmiDispatcher \ - comment PchSmbusSmm \ - comment HeciSmm \ - comment Heci3Smm \ - comment CryptoSMM \ - comment MicrocodeUpdate \ - comment SmmS3SaveState \ - comment SmmGenericSio \ - comment OA3_SMM \ - comment SmmPciRbIo \ - comment RuntimeMemoryHoleSmm \ - comment SmiVariable \ - comment RuntimeSmm \ - comment SmmGenericElog \ - comment KbcEmul \ - comment NvmeSmm \ - comment Ofbd \ - comment AcpiSmmPlatform \ - comment PowerButtonHandler \ - comment EmcaErrorLog \ - comment PartialMirrorHandler \ - comment MainErrorHandler \ - comment PlatformErrorHandler \ - comment ProcessorErrorHandler \ - comment AmiErrorHandlerMain \ - comment FpgaErrorHandler \ - comment PcieErrorHandler \ - comment PcieErrorEnable \ - comment McBankErrorInjection \ - comment LastBootErrorLog \ - comment SvSmmHandler \ - comment TraceHubStatusCodeHandlerSmm \ - comment RTCWakeup \ - comment SmbiosDmiEdit \ - comment SmiFlash \ - comment TcgSmm \ - comment TpmClearOnRollbackSmm \ - comment TcoSmi \ - comment AcpiModeEnable \ - comment PiSmmCommunicationSmm \ - comment TyanNvdimmAdrTrigger \ - comment FullShell \ - comment StatusCodeDxe \ - comment StatusCodeSmm \ - comment FlashDriver \ - comment NvramDxe \ - comment PcdDxe \ - comment DxeSelStatusCode \ - comment DxeFrb \ - comment CmosDxe \ - comment RegAccessDxe \ - comment RegAccessSMM \ - comment SecureBootDXE \ - comment TcgDxe \ - comment Tcg2Dxe \ - comment TcgPlatformSetupPolicy \ - comment TyanBoardDXE \ - comment AMITSE \ - comment AMITSESetupData \ - comment OPAPlatConfigSkt0 \ - comment OPAPlatConfigSkt1 \ - comment PeiCore -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BRURN removeb1i -remove100 remove100.rom removemorecrap.bin removesomecrap.bin -remove100big.rom removeBMCcrap.bin removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BURN remove -remove100 remove100.rom removemorecrap.bin removesomecrap.bin -remove100big.rom removeBMCcrap.bin removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./BURN remove100big.rom -[?2004l+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make bigi -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:47:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:47:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:47:44 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:47 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669770 Jan 4 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': e': make bigit': reset [8@failed reverse-i-search)`ets[1@t ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ reset (reverse-i-search)`': t': PATH=$PATH:/usr/local/src/depot_tools/ e': ./u-root -build=bb github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/init github.com/u-root/u-root/cmds/ /{ls,cat,date}s': cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG . -  [1@t [8@failed reverse-i-search)`testr [1@a [1@m ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp ~/go/src/github.com/u-root/u-root/integration/testdata/CONFIG .hstesthistor y | grep testramfs -[?2004l 2186 [2019-01-04 11:07:45 -0800] testramfs -i /tmp/initramfs.linux_amd64.cpio - 2187 [2019-01-04 11:07:47 -0800] sudo testramfs -i /tmp/initramfs.linux_amd64.cpio - 2188 [2019-01-04 11:08:06 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2191 [2019-01-04 11:10:35 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2196 [2019-01-04 11:15:09 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2198 [2019-01-04 11:17:20 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2200 [2019-01-04 11:18:48 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2203 [2019-01-04 11:22:06 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2206 [2019-01-04 11:27:50 -0800] sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio - 2230 [2019-01-04 12:48:27 -0800] history | grep testramfs -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ !2206 -[?2004lsudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio -2019/01/04 20:48:32 Welcome to u-root! - _ - _ _ _ __ ___ ___ | |_ - | | | |____| '__/ _ \ / _ \| __| - | |_| |____| | | (_) | (_) | |_ - \__,_| |_| \___/ \___/ \__| - -2019/01/04 20:48:32 Created dir "/buildbin" (mode 0777) -2019/01/04 20:48:32 Created dir "/ubin" (mode 0777) -2019/01/04 20:48:32 Created dir "/tmp" (mode 0777) -2019/01/04 20:48:32 Created dir "/env" (mode 0777) -2019/01/04 20:48:32 Created dir "/tcz" (mode 0777) -2019/01/04 20:48:32 Created dir "/lib" (mode 0777) -2019/01/04 20:48:32 Created dir "/usr/lib" (mode 0777) -2019/01/04 20:48:32 Created dir "/var/log" (mode 0777) -2019/01/04 20:48:32 Created dir "/go/pkg/linux_amd64" (mode 0777) -2019/01/04 20:48:32 Created dir "/etc" (mode 0777) -2019/01/04 20:48:32 Created dir "/proc" (mode 0555) -2019/01/04 20:48:32 Created mount -t "proc" -o "proc" "/proc" flags 0x0 -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "tmpfs" "/tmp" flags 0x0 -2019/01/04 20:48:32 Created dir "/dev" (mode 0777) -2019/01/04 20:48:32 Created dev "/dev/tty" (mode 020666; magic 1280) -2019/01/04 20:48:32 Created dev "/dev/urandom" (mode 020444; magic 265) -2019/01/04 20:48:32 Created dev "/dev/port" (mode 020640; magic 260) -2019/01/04 20:48:32 Created mount -t "devtmpfs" -o "devtmpfs" "/dev" flags 0x0 -2019/01/04 20:48:32 Created dir "/dev/pts" (mode 0777) -2019/01/04 20:48:32 Created mount -t "devpts" -o newinstance,ptmxmode=666,gid=5,mode=620 "devpts" "/dev/pts" flags 0x0 -2019/01/04 20:48:32 Created dev "/dev/ptmx" (mode 020666; magic 1282) -2019/01/04 20:48:32 Created dir "/dev/shm" (mode 0777) -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "tmpfs" "/dev/shm" flags 0x0 -2019/01/04 20:48:32 Created dir "/sys" (mode 0555) -2019/01/04 20:48:32 Created mount -t "sysfs" -o "sysfs" "/sys" flags 0x0 -2019/01/04 20:48:32 Created mount -t "tmpfs" -o "cgroup" "/sys/fs/cgroup" flags 0x0 -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/memory" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/freezer" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/devices" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/cpu,cpuacct" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/blkio" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/cpuset" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/pids" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/net_cls,net_prio" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/hugetlb" (mode 0555) -2019/01/04 20:48:32 Created dir "/sys/fs/cgroup/perf_event" (mode 0555) -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/cpu" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/cpuacct" -> "/sys/fs/cgroup/cpu,cpuacct" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/net_cls" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 20:48:32 Created symlink "/sys/fs/cgroup/net_prio" -> "/sys/fs/cgroup/net_cls,net_prio" -2019/01/04 20:48:32 Created mount -t "cgroup" -o memory "cgroup" "/sys/fs/cgroup/memory" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o freezer "cgroup" "/sys/fs/cgroup/freezer" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o devices "cgroup" "/sys/fs/cgroup/devices" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o cpu,cpuacct "cgroup" "/sys/fs/cgroup/cpu,cpuacct" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o blkio "cgroup" "/sys/fs/cgroup/blkio" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o cpuset "cgroup" "/sys/fs/cgroup/cpuset" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o pids "cgroup" "/sys/fs/cgroup/pids" flags 0x0 -2019/01/04 20:48:32 Created mount -t "cgroup" -o net_cls,net_prio "cgroup" "/sys/fs/cgroup/net_cls,net_prio" flags 0x0 -2019/01/04 20:48:32 Error creating mount -t "cgroup" -o hugetlb "cgroup" "/sys/fs/cgroup/hugetlb" flags 0x0: no such file or directory -2019/01/04 20:48:32 Created mount -t "cgroup" -o perf_event "cgroup" "/sys/fs/cgroup/perf_event" flags 0x0 -2019/01/04 20:48:32 Done Rootfs -2019/01/04 20:48:32 envs [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] -2019/01/04 20:48:32 Let's try to run /inito -2019/01/04 20:48:32 it's not there -2019/01/04 20:48:32 Let's try to run /bbin/uinit -2019/01/04 20:48:32 Run &{/bbin/uinit [/bbin/uinit] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001525a0 false [] [] [] [] } -2019/01/04 20:48:32 here we are in uinit -2019/01/04 20:48:32 UINIT uid is 0 -ip: Link not found -2019/01/04 20:48:32 ip link up failed(exit status 1); continuing -ip: Link not found -2019/01/04 20:48:32 ip addr add failed(exit status 1); continuing -1: lo: mtu 65536 state DOWN - link/loopback -2019/01/04 20:48:32 Sleeping 16 seconds for stupid network to come up -2019/01/04 20:48:48 up all done -2019/01/04 20:48:48 Start an sshd -2019/01/04 20:48:48 Now dial 192.168.0.1:8080 -2019/01/04 20:48:48 Dial went poorly -2019/01/04 20:48:48 We are now done ...................... -2019/01/04 20:48:48 dial tcp 192.168.0.1:8080: connect: network is unreachable -2019/01/04 20:48:48 Shell exited, exit status 2 -2019/01/04 20:48:48 Let's try to run /bin/uinit -2019/01/04 20:48:48 it's not there -2019/01/04 20:48:48 Let's try to run /buildbin/uinit -2019/01/04 20:48:48 it's not there -2019/01/04 20:48:48 Let's try to run /bin/defaultsh -2019/01/04 20:48:48 readlink of ../bbin/elvish returns ../bbin/elvish -2019/01/04 20:48:48 is now /bbin/elvish -2019/01/04 20:48:48 Run &{/bbin/elvish [/bbin/elvish] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc000152640 false [] [] [] [] } -2019/01/04 20:48:48 starting ssh server on port 2222 -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# s root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102# sh root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 20:48:55 Shell exited, exit status 0 -2019/01/04 20:48:55 Let's try to run /bin/sh -2019/01/04 20:48:55 Run &{/bin/sh [/bin/sh] [LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: LANG=en_US.UTF-8 DISPLAY=:0 COLORTERM=truecolor SSH_AUTH_SOCK=/tmp/ssh-bllrPgoTRFh5/agent.196813 TERM=xterm-256color XAUTHORITY=/usr/local/google/home/rminnich/.Xauthority PATH=/go/bin/linux_amd64:/go/bin:/go/pkg/tool/linux_amd64:/ubin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin:/buildbin:/bbin MAIL=/var/mail/root LOGNAME=root USER=root USERNAME=root HOME=/root SHELL=/bin/bash SUDO_COMMAND=/usr/local/google/home/rminnich/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio SUDO_USER=rminnich SUDO_UID=156049 SUDO_GID=89939 P4CONFIG=.p4config P4MERGE=/google/src/files/head/depot/eng/perforce/mergep4.tcl SK_SIGNING_PLUGIN=gnubbyagent AUTO_PROXY=https://proxyconfig.corp.google.com/proxy.pac PYTHONPATH=/usr/local/buildtools/current/sitecustomize GOROOT=/go GOPATH=/ GOBIN=/ubin CGO_ENABLED=0 LD_LIBRARY_PATH=/usr/local/lib] 0xc00000c010 0xc00000c018 0xc00000c020 [] 0xc0001526e0 false [] [] [] [] } -open /root/.elvish/rc.elv: no such file or directory[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  ???> [?25h[?25l [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l  [?25h[?25l root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l (unreachable)/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102#  root@xcpu.svl.corp.google.com [?25h[?25l  [?25h -[?7h[?2004l 2019/01/04 20:48:57 Shell exited, exit status 0 -2019/01/04 20:48:57 init: Waiting for orphaned children -2019/01/04 20:48:57 init: All commands exited -2019/01/04 20:48:57 init: Syncing filesystems - -2019/01/04 20:48:57 init: Exiting... -2019/01/04 12:48:57 Unmounting /tmp/u-root954867043 -2019/01/04 12:48:57 Removing /tmp/u-root954867043 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:49:00 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:49:00 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:49:10 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:49 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669770 Jan 4 12:49 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC ef1633ed -Kernel: arch/x86/boot/bzImage is ready (#99) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:49 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:49:37 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 12:56:18 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 12:56:18 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 12:56:28 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 12:56 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3669887 Jan 4 12:56 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - OBJCOPY arch/x86/boot/vmlinux.bin - ZOFFSET arch/x86/boot/zoffset.h - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5965 kB -CRC a055e5b0 -Kernel: arch/x86/boot/bzImage is ready (#100) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6123568 Jan 4 12:56 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 12:56:55 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 13:00:46 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 13:00:46 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 13:00:56 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 13:00 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3674182 Jan 4 13:00 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5969 kB -CRC 27d54eb3 -Kernel: arch/x86/boot/bzImage is ready (#101) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6127664 Jan 4 13:01 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 13:01:22 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [60@s': sudo ~/go/bin/testramfs -i /tmp/initramfs.linux_amd64.cpio s': ssh itami[1@hvi ~/.ssh/known_hosts  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi ~/.ssh/known_hosts ssh itaimmi -[?2004l@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! -Someone could be eavesdropping on you right now (man-in-the-middle attack)! -It is also possible that a host key has just been changed. -The fingerprint for the RSA key sent by the remote host is -SHA256:Eejc5U3xHdgtgRNgbueddE/cfoSm1vHGZNuy5zrhRhY. -Please contact your system administrator. -Add correct host key in /usr/local/google/home/rminnich/.ssh/known_hosts to get rid of this message. -Offending RSA key in /usr/local/google/home/rminnich/.ssh/known_hosts:6 -Password authentication is disabled to avoid man-in-the-middle attacks. -Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks. -warning: cannot create data directory ~/.elvish -[?7h⏎ [?7l[?2004h[?25l ???> ???> [?25h[?25l [?25h[?25l /> ???> [?25h[?25l ???@onie [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "ls": executable file not found in $PATH -[tty], line 1: ls -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bin/ls": stat /bin/ls: no such file or directory -[tty], line 1: /bin/ls -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/l ???@onie [?25h[?25l [?25h[?25l /> /bbin/ls ???@onie [?25h[?25l [?25h[?25l /> /bbin/ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l bbin -bin -buildbin -dev -env -etc -go -init -key.pub -lib -lib64 -proc -sys -tcz -tmp -ubin -usr -var -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> s ???@onie [?25h[?25l [?25h[?25l /> se ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "set": executable file not found in $PATH -[tty], line 1: set -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> prt ???@onie [?25h[?25l [?25h[?25l /> prti ???@onie [?25h[?25l [?25h[?25l /> prtin ???@onie [?25h[?25l [?25h[?25l /> prtine ???@onie [?25h[?25l [?25h[?25l /> prtinen ???@onie [?25h[?25l [?25h[?25l /> prtinenv ???@onie [?25h[?25l [?25h[?25l /> prtinenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "prtinenv": executable file not found in $PATH -[tty], line 1: prtinenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie [?25h[?25l [?25h[?25l /> print ???@onie [?25h[?25l [?25h[?25l /> printe ???@onie [?25h[?25l [?25h[?25l /> printen ???@onie [?25h[?25l [?25h[?25l /> printenv ???@onie [?25h[?25l [?25h[?25l /> printenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "printenv": executable file not found in $PATH -[tty], line 1: printenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $ - ???@onie -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l - - - -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l /> echo $ - ???@onie -compilation error: 5-7 in [tty]: variable $ - not found [?25h[?25l - - [?25h -[?7h[?2004l Compilation error: variable $ - not found -[tty], line 1: echo $ -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $P ???@onie -compilation error: 5-7 in [tty]: variable $P not found [?25h[?25l - -compilation error: 5-7 in [tty]: variable $P not found [?25h[?25l /> echo $PA ???@onie -compilation error: 5-8 in [tty]: variable $PA not found [?25h[?25l - -compilation error: 5-8 in [tty]: variable $PA not found [?25h[?25l /> echo $PAT ???@onie -compilation error: 5-9 in [tty]: variable $PAT not found [?25h[?25l - -compilation error: 5-9 in [tty]: variable $PAT not found [?25h[?25l /> echo $PATH ???@onie -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l - -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l /> echo $PATH ???@onie -compilation error: 5-10 in [tty]: variable $PATH not found [?25h[?25l  - [?25h -[?7h[?2004l Compilation error: variable $PATH not found -[tty], line 1: echo $PATH -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $p ???@onie -compilation error: 5-7 in [tty]: variable $p not found [?25h[?25l - -compilation error: 5-7 in [tty]: variable $p not found [?25h[?25l /> echo $pa ???@onie -compilation error: 5-8 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 5-8 in [tty]: variable $pa not found [?25h[?25l /> echo $pat ???@onie -compilation error: 5-9 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 5-9 in [tty]: variable $pat not found [?25h[?25l /> echo $path ???@onie -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l - -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l /> echo $path ???@onie -compilation error: 5-10 in [tty]: variable $path not found [?25h[?25l  - [?25h -[?7h[?2004l Compilation error: variable $path not found -[tty], line 1: echo $path -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> 3 ???@onie [?25h[?25l [?25h[?25l /> 3h ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3ho ???@onie [?25h[?25l [?25h[?25l /> 3h ???@onie [?25h[?25l [?25h[?25l /> 3 ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo $ ???@onie -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l - -compilation error: 5-6 in [tty]: variable $ not found [?25h[?25l /> echo $-source~ ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~  binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~  binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $E: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E:  binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E:  binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $after-chdir ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir  builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l $after-chdir ???@onie - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir  builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $builtin: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $edit: ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $paths ???@onie - COMPLETING variable  -compilation error: 5-6 in [tty]: variable $ not found - -source~ binding: e: exit~ pwd - E: binding: edit: fg~ tilde-abbr~ - after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l $paths ???@onie - - -compilation error: 5-6 in [tty]: variable $ not found --source~ binding: e: exit~ pwd -E: binding: edit: fg~ tilde-abbr~ -after-chdir builtin: edit: paths value-out-indicator - before-chdir cd~ exec~ pid  [?25h[?25l /> echo $paths ???@onie [?25h[?25l [?25h[?25l /> echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "echo": executable file not found in $PATH -[tty], line 1: echo $paths -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ec ???@onie [?25h[?25l [?25h[?25l /> ech ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l [?25h[?25l /> echo ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "echo": executable file not found in $PATH -[tty], line 1: echo -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls $ ???@onie -compilation error: 3-4 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 3-4 in [tty]: variable $ not found [?25h[?25l /> ls $p ???@onie -compilation error: 3-5 in [tty]: variable $p not found [?25h[?25l - -compilation error: 3-5 in [tty]: variable $p not found [?25h[?25l /> ls $pa ???@onie -compilation error: 3-6 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 3-6 in [tty]: variable $pa not found [?25h[?25l /> ls $pat ???@onie -compilation error: 3-7 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 3-7 in [tty]: variable $pat not found [?25h[?25l /> ls $path ???@onie -compilation error: 3-8 in [tty]: variable $path not found [?25h[?25l - -compilation error: 3-8 in [tty]: variable $path not found [?25h[?25l /> ls $paths ???@onie [?25h[?25l [?25h[?25l /> ls $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "ls": executable file not found in $PATH -[tty], line 1: ls $paths -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $p ???@onie -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l $p ???@onie - -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l /> /bbin/echo $pa ???@onie -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l /> /bbin/echo $pat ???@onie -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l - -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l /> /bbin/echo $path ???@onie -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l - -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l > -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> r ???@onie [?25h[?25l [?25h[?25l /> ru ???@onie [?25h[?25l [?25h[?25l /> rus ???@onie [?25h[?25l [?25h[?25l /> rush ???@onie [?25h[?25l [?25h[?25l /> rush ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "rush": executable file not found in $PATH -[tty], line 1: rush -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/r ???@onie [?25h[?25l [?25h[?25l /> /bbin/ru ???@onie [?25h[?25l [?25h[?25l /> /bbin/rus ???@onie [?25h[?25l [?25h[?25l /> /bbin/rush ???@onie [?25h[?25l [?25h[?25l /> /bbin/rush ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bbin/rush": stat /bbin/rush: no such file or directory -[tty], line 1: /bbin/rush -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> s ???@onie [?25h[?25l [?25h[?25l /> se ???@onie [?25h[?25l [?25h[?25l /> set ???@onie [?25h[?25l [?25h[?25l /> sete ???@onie [?25h[?25l [?25h[?25l /> seten ???@onie [?25h[?25l [?25h[?25l /> setenv ???@onie [?25h[?25l [?25h[?25l /> setenv ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "setenv": executable file not found in $PATH -[tty], line 1: setenv -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> en ???@onie [?25h[?25l [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> en ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> e ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie [?25h[?25l [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> prin ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> pri ???@onie [?25h[?25l [?25h[?25l /> pr ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> h ???@onie [?25h[?25l [?25h[?25l /> he ???@onie [?25h[?25l [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> he ???@onie -no candidate for command [?25h[?25l - [?25h[?25l /> h ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bb/ ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E: ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:P ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PA ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PAT ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PATH ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo E:PATH ???@onie [?25h[?25l  [?25h -[?7h[?2004l E:PATH -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l Unbound: Ctrl-P -/> ???@onie [?25h[?25l [?25h[?25l Unbound: Ctrl-B -/> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l $ ???@onie - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $E ???@onie -compilation error: 11-13 in [tty]: variable $E not found [?25h[?25l $E ???@onie - -compilation error: 11-13 in [tty]: variable $E not found [?25h[?25l /> /bbin/echo $E: ???@onie -compilation error: 11-14 in [tty]: variable $E: not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $E: not found [?25h[?25l /> /bbin/echo $E:P ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PA ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PAT ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PATH ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $E:PATH ???@onie [?25h[?25l  [?25h -[?7h[?2004l -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bi ???@onie [?25h[?25l [?25h[?25l /> /bin ???@onie [?25h[?25l [?25h[?25l /> /bin/ ???@onie [?25h[?25l [?25h[?25l /> /bin/l ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E: ???@onie [?25h[?25l [?25h[?25l /> /bin/ls E: ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "/bin/ls": stat /bin/ls: no such file or directory -[tty], line 1: /bin/ls E: -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> put $ ???@onie -compilation error: 4-5 in [tty]: variable $ not found [?25h[?25l - -compilation error: 4-5 in [tty]: variable $ not found [?25h[?25l /> put $E ???@onie -compilation error: 4-6 in [tty]: variable $E not found [?25h[?25l $E ???@onie - -compilation error: 4-6 in [tty]: variable $E not found [?25h[?25l /> put $E: ???@onie -compilation error: 4-7 in [tty]: variable $E: not found [?25h[?25l $E: ???@onie - -compilation error: 4-7 in [tty]: variable $E: not found [?25h[?25l /> put $E:H ???@onie [?25h[?25l [?25h[?25l /> put $E:HO ???@onie [?25h[?25l [?25h[?25l /> put $E:HOM ???@onie [?25h[?25l [?25h[?25l /> put $E:HOME ???@onie [?25h[?25l [?25h[?25l /> put $E:HOME ???@onie [?25h[?25l  [?25h -[?7h[?2004l Exception: exec: "put": executable file not found in $PATH -[tty], line 1: put $E:HOME -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> put ???@onie [?25h[?25l [?25h[?25l /> pu ???@onie [?25h[?25l [?25h[?25l /> p ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l [?25h[?25l /> / ???@onie [?25h[?25l [?25h[?25l /> /b ???@onie [?25h[?25l [?25h[?25l /> /bb ???@onie [?25h[?25l [?25h[?25l /> /bbi ???@onie [?25h[?25l [?25h[?25l /> /bbin ???@onie [?25h[?25l [?25h[?25l /> /bbin/ ???@onie [?25h[?25l [?25h[?25l /> /bbin/e ???@onie [?25h[?25l [?25h[?25l /> /bbin/ec ???@onie [?25h[?25l [?25h[?25l /> /bbin/ech ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $ ???@onie -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l - -compilation error: 11-12 in [tty]: variable $ not found [?25h[?25l /> /bbin/echo $p ???@onie -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l $p ???@onie - -compilation error: 11-13 in [tty]: variable $p not found [?25h[?25l /> /bbin/echo $pa ???@onie -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l - -compilation error: 11-14 in [tty]: variable $pa not found [?25h[?25l /> /bbin/echo $pat ???@onie -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l $pat ???@onie - -compilation error: 11-15 in [tty]: variable $pat not found [?25h[?25l /> /bbin/echo $path ???@onie -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l $path ???@onie - -compilation error: 11-16 in [tty]: variable $path not found [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l [?25h[?25l /> /bbin/echo $paths ???@onie [?25h[?25l  [?25h -[?7h[?2004l > -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> E ???@onie [?25h[?25l [?25h[?25l /> E: ???@onie [?25h[?25l [?25h[?25l /> E:P ???@onie [?25h[?25l [?25h[?25l /> E:PA ???@onie [?25h[?25l [?25h[?25l /> E:PAT ???@onie [?25h[?25l [?25h[?25l /> E:PATH ???@onie [?25h[?25l [?25h[?25l /> E:PATH= ???@onie [?25h[?25l [?25h[?25l /> E:PATH=" ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/ ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/b ???@onie [?25h[?25l "/b ???@onie [?25h[?25l /> E:PATH="/bi ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin: ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/ ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/b ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bb ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbi ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin" ???@onie [?25h[?25l [?25h[?25l /> E:PATH="/bin:/bbin" ???@onie [?25h[?25l  [?25h -[?7h[?2004l [?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> l ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l [?25h[?25l /> ls ???@onie [?25h[?25l  [?25h -[?7h[?2004l bbin -bin -buildbin -dev -env -etc -go -init -key.pub -lib -lib64 -proc -sys -tcz -tmp -ubin -usr -var -[?7h⏎ [?7l[?2004h[?25l /> ???@onie [?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l /> ???@onie [?25h[?25l  [?25h -[?7h[?2004l Connection to 192.168.0.2 closed. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ pushd ../linupushd linux/ -[?2004l/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 ~/go/src/github.com/linuxboot/dut/uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ make mneuconfenuconfig -[?2004lscripts/kconfig/mconf Kconfig -[?1049h(B[?7h[?1h=[?1h=[?1h=(B .config - Linux/x86 4.13.0-rc7 Kernel Configuration - (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B - -   -   -   -   -   - (B(B[*] 64-bit kernel(B(B   -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -   -   -   -   - (B - (BG(Beneral setup --->(B -[*] (BE(Bnable loadable module support --->(B -[*] (BE(Bnable the block layer --->(B - (BP(Brocessor type and features --->(B - (BP(Bower management and ACPI options --->(B - (BB(Bus options (PCI etc.) --->(B - (BE(Bxecutable file formats / Emulations --->(B -[*] N(Be(Btworking support --->(B - (BD(Bevice Drivers --->(B - (BF(Birmware Drivers --->(B - (BF(Bile systems --->(B - (BK(Bernel hacking --->(B - (BS(Becurity options --->(B --*- (BC(Bryptographic API --->(B -[ ] (BV(Birtualization ----(B - (BL(Bibrary routines --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Linux/x86 4.13.0-rc7 Kernel Configuration (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h= -(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && INET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (2) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (3) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B (4) -> Network File Systems (NETWORK_FILESYSTEMS [=n])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=n] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B File systems - - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[ ] Network File Systems ----(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h=(0>(B Network File Systems - - - - - - - --- Network File Systems(B (B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h=(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (2) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (3) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B (4) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (BN(BE(BT(B)(B (B_(B9(BP(B[?1h=[?1h=(0>(B Search (NET_9P) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: NET_9P [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (1) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (2) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (3) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P Virtio Transport(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (4) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:18(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && VIRTIO [=y] (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_XEN [=n] (0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P Xen Transport   (0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (5) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=n])(0x(B -(0x(B Defined at net/9p/Kconfig:25(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=n] && XEN [=n](0x(B -(0x(B Selects: XEN_XENBUS_FRONTEND [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B(100%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B Networking support - - - - - - - (B--- Networking support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B< > Plan 9 Resource Sharing Support (9P2000) ----(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B Plan 9 Resource Sharing Support (9P2000) --->(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - N(Be(Btworking options --->(B -[ ] (BA(Bmateur Radio support ----(B -< > (BC(BAN bus subsystem support ----(B -< > (BI(BrDA (infrared) subsystem support ----(B -< > (BB(Bluetooth subsystem support ----(B -< > (BR(BxRPC session sockets(B -< > (BK(BCM sockets(B -[ ] (BW(Bireless ----(B -< > (BW(BiMAX Wireless Broadband support ----(B -< > (BR(BF switch subsystem support ----(B -(B<*> Plan 9 Resource Sharing Support (9P2000) --->(B(B -< > (BC(BAIF support ----(B -< > (BC(Beph core library(B -< > N(BF(BC subsystem support ----(B -< > (BP(Backet-sampling netlink channel ----(B -< > (BI(Bnter-FE based on IETF ForCES InterFE LFB ----(B -[ ] N(Be(Btwork light weight tunnels(B -< > N(Be(Btwork physical/parent device Netlink interface(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Networking support (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqq(B(B(0qq(B Search Results (0qq(B(B -(0(BSymbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: -(1) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] -  -  -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(2) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] -  -  -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(3) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n] -Type : tristate -Prompt: 9P Virtio Transport - Location: - -> Networking support (NET [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:18 - Depends on: NET [=y] && NET_9P [=y] && VIRTIO [=y] - - -Symbol: NET_9P_XEN [=n] -Type : tristate -Prompt: 9P Xen Transport - Location: - -> Networking support (NET [=y]) -(5) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:25 - Depends on: NET [=y] && NET_9P [=y] && XEN [=n] - Selects: XEN_XENBUS_FRONTEND [=n] - - - - - - - - - - - - - - - - - - - - - - - - - -(B(100%)(B(B< Exit >(B(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqq(B Search Configuration Parameter (0qqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Enter (sub)string or regexp to search for (with or without "CONFIG_") (0x(B  (0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B  (0x(B (0x(B(0x(B (0x(B  (0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B  (0x(B (0x(B  (0x(B (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Ok >(B <(B (BH(Belp (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B9(Bp(B[?1h=[?1h=(0>(B Search (9p) - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Search Results (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Symbol: 9P_FS [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B (1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B Defined at fs/9p/Kconfig:1(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FSCACHE [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Enable 9P client caching support(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:13(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n] && (9P_FS [=n]=m && FSCACHE [=n] || 9P_FS [=n]=y && FSCACHE [=n]=y)(0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_POSIX_ACL [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P POSIX Access Control Lists(0x(B -(0x(B Location:(0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:21(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n](0x(B -(0x(B Selects: FS_POSIX_ACL [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: 9P_FS_SECURITY [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: 9P Security Labels(0x(B -(0x(B Location: (0x(B -(0x(B -> File systems(0x(B -(0x(B -> Network File Systems (NETWORK_FILESYSTEMS [=y])(0x(B -(0x(B (4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=n])(0x(B -(0x(B Defined at fs/9p/Kconfig:36(0x(B -(0x(B Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=n]  (0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P [=y](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: Plan 9 Resource Sharing Support (9P2000)(0x(B -(0x(B Location:(0x(B -(0x(B (5) -> Networking support (NET [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:5(0x(B -(0x(B Depends on: NET [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_DEBUG [=n](0x(B -(0x(B Type : boolean(0x(B -(0x(B Prompt: Debug information(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:40(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=y](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_RDMA [=n](0x(B -(0x(B Type : tristate(0x(B -(0x(B Prompt: 9P RDMA Transport (Experimental)(0x(B -(0x(B Location:(0x(B -(0x(B -> Networking support (NET [=y])(0x(B -(0x(B (7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y])(0x(B -(0x(B Defined at net/9p/Kconfig:34(0x(B -(0x(B Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n](0x(B -(0x(B(0x(B -(0x(B(0x(B -(0x(B Symbol: NET_9P_VIRTIO [=n](0x(B -(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B( 68%)(0qq(0u(B -(0x(B(B< Exit >(B(0x(B -(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B -(B[?1h=[?1h=(0>(B Network File Systems - - - - - - - (B--- Network File Systems(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B< > Plan 9 Resource Sharing Support (9P2000) (NEW)(B(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B Plan 9 Resource Sharing Support (9P2000)(B(B -[ ] 9(BP(B POSIX Access Control Lists (NEW)(B -[ ] 9(BP(B Security Labels (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B[?1h=[?1h= - -(B - - - - - -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BC(Beph distributed file system (NEW)(B -< > (BS(BMB3 and CIFS support (advanced network filesystem) (NEW)(B -< > N(BC(BP file system support (to mount NetWare volumes) (NEW)(B -< > (BC(Boda file system support (advanced network fs) (NEW)(B -< > (BA(Bndrew File System support (AFS) (NEW)(B -(B<*> Plan 9 Resource Sharing Support (9P2000)(B(B -[ ] 9(BP(B POSIX Access Control Lists (NEW)(B -[ ] 9(BP(B Security Labels (NEW)(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Network File Systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqqqqqqqqqq(B(B -(0qqq(B Search Results (0qqq(B(B -(0(BSymbol: 9P_FS [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: - -> File systems -(1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])  - Defined at fs/9p/Kconfig:1 - Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y] -  -  -Symbol: 9P_FSCACHE [=n] -Type : boolean -Prompt: Enable 9P client caching support - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:13 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] && (9P_FS [=y]=m && FSCACHE [=n] || 9P_FS [=y]=y && FSCACHE [=n]=y) - - -Symbol: 9P_FS_POSIX_ACL [=n] -Type : boolean -Prompt: 9P POSIX Access Control Lists - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:21 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - Selects: FS_POSIX_ACL [=y] - - -Symbol: 9P_FS_SECURITY [=n] -Type : boolean -Prompt: 9P Security Labels - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:36 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - - -Symbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) - Location: -(5) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] - - -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] - - -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n](B( 68%)(B(B< Exit >(B(B[?1h=[?1h=(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B< > (BS(Becond extended fs support(B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B -< > (BT(Bhe Extended 3 (ext3) filesystem(B -< > (BT(Bhe Extended 4 (ext4) filesystem(B -< > (BR(Beiserfs support(B -< > (BJ(BFS filesystem support(B -< > (BX(BFS filesystem support(B -< > (BG(BFS2 file system support(B -< > (BB(Btrfs filesystem support(B -< > N(BI(BLFS2 file system support(B -< > (BF(B2FS filesystem support(B -[ ] (BD(Birect Access (DAX) support(B -[ ] (BE(Bnable filesystem export operations for block IO(B -[ ] (BE(Bnable POSIX file locking API(B -< > (BF(BS Encryption (Per-file encryption)(B -[ ] (BD(Bnotify support(B -[ ] (BI(Bnotify support for userspace(B -[ ] (BF(Bilesystem wide access notification(B -[ ] (BQ(Buota support(B -< > (BK(Bernel automounter version 4 support (also supports v3)(B -<*> (BF(BUSE (Filesystem in Userspace) support(B -< > (BC(Bharacter device in Userspace support(B -< > (BO(Bverlay filesystem support(B - (BC(Baches --->(B - (BC(BD-ROM/DVD Filesystems --->(B - (BD(BOS/FAT/NT Filesystems --->(B - (BP(Bseudo filesystems --->(B -[ ] M(Bi(Bscellaneous filesystems ----(B -(B[*] Network File Systems --->(B(B --*- N(Ba(Btive language support --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B File systems (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h=[?1h=(0qqqqqqqqqqqqqqq(B(B(0(B Search Results -(BSymbol: 9P_FS [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) -Location: - -> File systems -(1) -> Network File Systems (NETWORK_FILESYSTEMS [=y])  - Defined at fs/9p/Kconfig:1 - Depends on: NETWORK_FILESYSTEMS [=y] && INET [=y] && NET_9P [=y]  -  -  -Symbol: 9P_FSCACHE [=n] -Type : boolean -Prompt: Enable 9P client caching support - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y])  -(2) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:13 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] && (9P_FS [=y]=m && FSCACHE [=n] || 9P_FS [=y]=y && FSCACHE [=n]=y) -  -  -Symbol: 9P_FS_POSIX_ACL [=n] -Type : boolean -Prompt: 9P POSIX Access Control Lists - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y])  -(3) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:21 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y]  - Selects: FS_POSIX_ACL [=y] -  -  -Symbol: 9P_FS_SECURITY [=n] -Type : boolean -Prompt: 9P Security Labels - Location: - -> File systems - -> Network File Systems (NETWORK_FILESYSTEMS [=y]) -(4) -> Plan 9 Resource Sharing Support (9P2000) (9P_FS [=y]) - Defined at fs/9p/Kconfig:36 - Depends on: NETWORK_FILESYSTEMS [=y] && 9P_FS [=y] - - -Symbol: NET_9P [=y] -Type : tristate -Prompt: Plan 9 Resource Sharing Support (9P2000) - Location: -(5) -> Networking support (NET [=y]) - Defined at net/9p/Kconfig:5 - Depends on: NET [=y] - - -Symbol: NET_9P_DEBUG [=n] -Type : boolean -Prompt: Debug information - Location: - -> Networking support (NET [=y]) -(6) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:40 - Depends on: NET [=y] && NET_9P [=y] - - -Symbol: NET_9P_RDMA [=n] -Type : tristate -Prompt: 9P RDMA Transport (Experimental) - Location: - -> Networking support (NET [=y]) -(7) -> Plan 9 Resource Sharing Support (9P2000) (NET_9P [=y]) - Defined at net/9p/Kconfig:34 - Depends on: NET [=y] && NET_9P [=y] && INET [=y] && INFINIBAND [=n] && INFINIBAND_ADDR_TRANS [=n] - - -Symbol: NET_9P_VIRTIO [=n](B( 68%)(B(B< Exit >(B(B[?1h=[?1h= -(0qqqqqqqqqqqqqq(B(B -(0(B - - - - - - (B(B[*] 64-bit kernel(B (B -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - - - -(B - (BG(Beneral setup --->(B -[*] (BE(Bnable loadable module support --->(B -[*] (BE(Bnable the block layer --->(B - (BP(Brocessor type and features --->(B - (BP(Bower management and ACPI options --->(B - (BB(Bus options (PCI etc.) --->(B - (BE(Bxecutable file formats / Emulations --->(B -[*] N(Be(Btworking support --->(B - (BD(Bevice Drivers --->(B - (BF(Birmware Drivers --->(B - (BF(Bile systems --->(B - (BK(Bernel hacking --->(B - (BS(Becurity options --->(B --*- (BC(Bryptographic API --->(B -[ ] (BV(Birtualization ----(B - (BL(Bibrary routines --->(B(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(B Linux/x86 4.13.0-rc7 Kernel Configuration (0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B(B -(0(0x(B Arrow keys navigate the menu. selects submenus ---> (or empty submenus ----). Highlighted letters are hotkeys. Pressing (0x(B(B -(0(0x(B includes, excludes, modularizes features. Press to exit, for Help, for Search. Legend: [*] built-in [ ] (0x(B(B -(0(0x(B excluded module < > module capable(0x(B(B -(0(0x(B(0x(B(B -(0(0x(B (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0x(B(B(0(0x(B (0x(B(B -(0(0x(B (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B (0x(B(B -(0(0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B(B -(0(0x(B(0x(B(B -(0(0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B(B(0(B(B(B<Select>(B <(B (BE(Bxit (B> <(B (BH(Belp (B> <(B (BS(Bave (B> <(B (BL(Boad (B>(B<S(Belect(B> (B< Exit >(B[?1h= (B - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0k(B (0x(B Do you wish to save your new configuration? (0x(B  (0x(B (Press to continue kernel configuration.) (0x(B  (0tqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq(0u(B  (0x(B(B< Yes >(B <(B (BN(Bo (B> (0x(B  (0m(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj(B   (B[?1049l [?1l>configuration written to .config - -*** End of the configuration. -*** Execute 'make' to start the build or try 'make help'. - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ makecp .config ../ -98.splat EATIT LIST removesomecrap.bin -bin.reset fail.bin LOG rom211.rom -blacklist futk.remove.99/ Makefile RUN3 -BURN .gitignore NOTES RUN4 -commentmorecrap.bin initramfs.linux_amd64.cpio remove100 RUN4.4.rom -commentsetupcrap.bin initramfs.linux_amd64.cpio.lzma remove100big.rom tyan7102.bin -config-4.13.0-rc7 ipmisucks.bin remove100.rom uinit -DIT key.pub removeBMCcrap.bin x.bin -dxeclean.bin L removemorecrap.bin -DXECLEANER linux/ removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cp .config ../ -98.splat EATIT LIST removesomecrap.bin -bin.reset fail.bin LOG rom211.rom -blacklist futk.remove.99/ Makefile RUN3 -BURN .gitignore NOTES RUN4 -commentmorecrap.bin initramfs.linux_amd64.cpio remove100 RUN4.4.rom -commentsetupcrap.bin initramfs.linux_amd64.cpio.lzma remove100big.rom tyan7102.bin -config-4.13.0-rc7 ipmisucks.bin remove100.rom uinit -DIT key.pub removeBMCcrap.bin x.bin -dxeclean.bin L removemorecrap.bin -DXECLEANER linux/ removesetupcrap.bin -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cp .config ../config-4.13.0-rc7 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ cd .. -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make burn -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files key.pub minimal github.com/linuxboot/dut/uinit github.com/u-root/u-root/xcmds/sshd -2019/01/04 13:09:34 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/04 13:09:34 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/04 13:09:44 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -k -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 13241444 Jan 4 13:09 initramfs.linux_amd64.cpio --rwxr-xr-x 1 rminnich primarygroup 3674182 Jan 4 13:09 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' -scripts/kconfig/conf --silentoldconfig Kconfig - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - CHK include/generated/compile.h - GEN usr/initramfs_data.cpio.lzma - AS usr/initramfs_data.o - AR usr/built-in.o - CC fs/9p/vfs_super.o - CC fs/9p/vfs_inode.o - CC fs/9p/vfs_inode_dotl.o - CC fs/9p/vfs_addr.o - CC fs/9p/vfs_file.o - CC fs/9p/vfs_dir.o - CC fs/9p/vfs_dentry.o - CC fs/9p/v9fs.o - CC fs/9p/fid.o - CC fs/9p/xattr.o - GZIP kernel/config_data.gz - CC net/9p/mod.o - CC net/9p/client.o - CC net/9p/error.o - CC net/9p/util.o - CC net/9p/protocol.o - CC net/9p/trans_fd.o - CC net/9p/trans_common.o - CHK kernel/config_data.h - UPD kernel/config_data.h - CC kernel/configs.o - AR fs/9p/9p.o - AR fs/9p/built-in.o - AR fs/built-in.o - AR kernel/built-in.o - AR net/9p/9pnet.o - AR net/9p/built-in.o - AR net/built-in.o - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o - KSYM .tmp_kallsyms2.o - LD vmlinux - SORTEX vmlinux - SYSMAP System.map - CC arch/x86/boot/version.o - Building modules, stage 2. - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5989 kB -CRC 118439f5 -Kernel: arch/x86/boot/bzImage is ready (#102) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 6148144 Jan 4 13:10 arch/x86/boot/bzImage -futk remove100.rom fv linux/arch/x86/boot/bzImage splat remove100big.rom saverom < /dev/null -2019/01/04 13:10:15 Found 213 things -[213 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK ./BURN remove100big.rom -+ echo TEST remove100big.rom -TEST remove100big.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d remove100big.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ exit 0 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kcd linux -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ git grep gus.*RRE -[?2004l[?1h= net/9p/client.c: pr_err("bogus RREAD count (%d > %d)\n", count, rsize); -net/9p/client.c: pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize); -sound/isa/gus/gus_pcm.c: snd_gf1_write_addr(gus, SNDRV_GF1_VA_CURRENT, curr << 4, voice_ctrl & 4); -sound/isa/gus/gus_pcm.c: (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4)); -sound/isa/gus/gus_pcm.c: (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4)); -sound/isa/gus/gus_pcm.c: pos = (snd_gf1_read_addr(gus, SNDRV_GF1_VA_CURRENT, voice_ctrl & 4) >> 4) - pcmp->memory; -sound/isa/gus/gus_reset.c: snd_gf1_write_addr(gus, SNDRV_GF1_VA_CURRENT, daddr, w_16); - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi net/9p/client.c -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"net/9p/client.c" 2301L, 53762C▽ [>c]10;?]11;?/* - * net/9p/clnt.c - * - * 9P Client - * - * Copyright (C) 2008 by Eric Van Hensbergen - * Copyright (C) 2007 by Latchesar Ionkov - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to: - * Free Software Foundation - * 51 Franklin Street, Fifth Floor - * Boston, MA 02111-1301 USA - * - */ - -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "protocol.h" - -#define CREATE_TRACE_POINTS -#include - -/* - * Client Option Parsing (code inspired by NFS code) - * - a little lazy - parse all client options - */ - -enum {Opt_msize,Opt_trans,Opt_legacy,Opt_version,Opt_err, -}; - -static const match_table_t tokens = {{Opt_msize, "msize=%u"},{Opt_legacy, "noextend"},{Opt_trans, "trans=%s"},{Opt_version, "version=%s"},{Opt_err, NULL}, -}; - -inline int p9_is_proto_dotl(struct p9_client *clnt) -{return clnt->proto_version == p9_proto_2000L; -} -EXPORT_SYMBOL(p9_is_proto_dotl); - -inline int p9_is_proto_dotu(struct p9_client *clnt) -{return clnt->proto_version == p9_proto_2000u; -} -EXPORT_SYMBOL(p9_is_proto_dotu); - -int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)1,1Top]2;client.c (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux/net/9p) - VIM]1;client.c[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hu[?25l[?25hs[?25l[?25h.[?25l[?25h*[?25l[?25hR[?25l[?25hR[?25l[?25hE[?25l[?25h [?25lwhile (iov_iter_count(to)) {int count = iov_iter_count(to);int rsize, non_zc = 0;char *dataptr;rsize = fid->iounit;if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)rsize = clnt->msize - P9_IOHDRSZ;if (count < rsize)rsize = count;/* Don't bother zerocopy for small IO (< 1024) */if (clnt->trans_mod->zc_request && rsize > 1024) {/** response header len is 11* PDU Header(7) + IO Size (4)*/req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,0, 11, "dqd", fid->fid,offset, rsize);} else {non_zc = 1;req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,rsize);}if (IS_ERR(req)) {*err = PTR_ERR(req);break;}*err = p9pdu_readf(req->rc, clnt->proto_version,"D", &count, &dataptr);if (*err) {trace_9p_protocol_dump(clnt, req->rc);p9_free_req(clnt, req);break;}if (rsize < count) {pr_err("bogus RREAD count (%d > %d)\n", count, rsize);count = rsize;}p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);if (!count) {p9_free_req(clnt, req);break;}if (non_zc) {int n = copy_to_iter(dataptr, count, to);total += n;offset += n;if (n != count) {*err = -EFAULT;p9_free_req(clnt, req);break;}} else {iov_iter_advance(to, count);total += count;offset += count;}p9_free_req(clnt, req);}return total; -} -EXPORT_SYMBOL(p9_client_read); - -int -p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err) -{struct p9_client *clnt = fid->clnt;struct p9_req_t *req;int total = 0;*err = 0;p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",fid->fid, (unsigned long long) offset,iov_iter_count(from));1612,15-36 70%[?25h[?25l{}1,22[?25h[?25l{}{}0,3-17 [?25h[?25l{}09,9-30[?25h[?25l()8,15-36[?25h[?25l()7[?25h[?25l{}6,13-27[?25h[?25l{}5,8-36 [?25h[?25l4,22-36[?25h[?25l3,0-1 [?25h[?25l{}2,3-17[?25h[?25l{}1,9-30[?25h[?25l0,15-36[?25h[?25l{}599,20-34[?25h[?25l{}{}8,3-17 [?25h[?25l{}7,5-40[?25h[?25l6,15-36[?25h[?25l5,14-35[?25h[?25l{}4,10-24[?25h[?25l{}3,5-40 [?25h[?25l2[?25h[?25l1,15-36[?25h[?25l0,6-27 [?25h[?25l89,15-36[?25h[?25l8[?25h[?25l7,5-26 [?25h[?25l6,22-36[?25h[?25l5[?25h[?25l4,0-1 [?25h[?25l3,15-36[?25h[?25l()2,20-34[?25h[?25l()1,0-1 [?25h[?25l0,15-36[?25h[?25l79,22[?25h[?25l8[?25h[?25l7,3-24 [?25h[?25l6,16-30[?25h[?25l5,22-36[?25h[?25l4[?25h[?25l{}3,29[?25h[?25l{}2,0-1 [?25h[?25lfid->fid, (unsigned long long) offset, (int)iov_iter_count(to));1571,22-36 70%[?25h[?25lp9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",1570,29-36 70%[?25h[?25l1569,0-1 70%[?25h[?25l*err = 0;1568,10-17 70%[?25h[?25lint total = 0;1567,15-22 70%[?25h[?25lstruct p9_req_t *req;1566,22-29 70%[?25h[?25lstruct p9_client *clnt = fid->clnt;1565,29-36 70%[?25h[?25l{client *clnt = fid->clnt;struct p9_req_t *req;int total = 0;*err = 0;p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));while (iov_iter_count(to)) {count = iov_iter_count(to);int rsize, non_zc = 0;char *dataptr; rsize = fid->iounit;if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)rsize = clnt->msize - P9_IOHDRSZ;if (count < rsize)rsize = count;/* Don't bother zerocopy for small IO (< 1024) */if (clnt->trans_mod->zc_request && rsize > 1024) {/response header len is 11 PDU Header(7) + IO Size (4) */req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,0, 11, "dqd", fid->fid, offset, rsize);} else {non_zc = 1;req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset, rsize);}if (IS_ERR(req)) {*err = PTR_ERR(req); break;}*err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);if (*err) {trace_9p_protocol_dump(clnt, req->rc);p9_free_req(clnt, req); break;}if (rsize < count) {pr_err("bogus RREAD count (%d > %d)\n", count, rsize); count = rsize;}p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);if (!count) {p9_free_req(clnt, req); break;}if (non_zc) {int n = copy_to_iter(dataptr, count, to);total += n;offset += n;if (n != count) {*err = -EFAULT;p9_free_req(clnt, req); break; }} else {iov_iter_advance(to, count);total += count; offset += count;} p9_free_req(clnt, req);} return total; -}1564,170%[?25h[?25lp9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err) -{}1563,3670%[?25h[?25lint1562,370%[?25h[?25l1561,0-1 70%[?25h[?25lEXPORT_SYMBOL(p9_client_unlinkat);1560,3470%[?25h[?25l}1559,170%[?25h[?25lreturn err;1558,12-19 70%[?25h[?25lerror:1557,670%[?25h[?25lp9_free_req(clnt, req);1556,24-31 70%[?25h[?25l1555,0-1 70%[?25h[?25lp9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);1554,29-36 69%[?25h[?25l}1553,2-9 69%[?25h[?25lgoto error;1552,13-27 69%[?25h[?25lerr = PTR_ERR(req);1551,21-35 69%[?25h[?25lif (IS_ERR(req)) {err = PTR_ERR(req); goto error;}1550,19-26 69%[?25h[?25lreq = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);{}1549,29-36 69%[?25h[?25lclnt = dfid->clnt;1548,19-26 69%[?25h[?25l1547,0-1 69%[?25h[?25ldfid->fid, name, flags);1546,22-36 69%[?25h[?25lp9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",1545,29-36 69%[?25h[?25l1544,0-1 69%[?25h[?25l/[?2004h[?25hr[?25l[?25hs[?25l[?25hi[?25l[?25hz[?25l[?25he[?25l[?25h [?25l1575,7-21 69%[?25h[?25l1578,3-17 69%[?25h[?25l1579,8-22 69%[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ ls fs/9p -[?2004l9p.o cache.c fid.o modules.order v9fs_vfs.h vfs_dentry.o vfs_file.o vfs_inode.o xattr.h -acl.c cache.h Kconfig v9fs.c vfs_addr.c vfs_dir.c vfs_inode.c vfs_super.c xattr.o -acl.h fid.c Makefile v9fs.h vfs_addr.o vfs_dir.o vfs_inode_dotl.c vfs_super.o -built-in.o fid.h modules.builtin v9fs.o vfs_dentry.c vfs_file.c vfs_inode_dotl.o xattr.c -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi fs/9p/git grep -i errno fs/9p -[?2004l[?1h= fs/9p/fid.c:#include  -fs/9p/v9fs.c:#include  -fs/9p/v9fs.c: * Return 0 upon success, -ERRNO upon failure. -fs/9p/vfs_addr.c:#include  -fs/9p/vfs_dentry.c:#include  -fs/9p/vfs_dir.c:#include  -fs/9p/vfs_file.c:#include  -fs/9p/vfs_inode.c:#include  -fs/9p/vfs_inode_dotl.c:#include  -fs/9p/vfs_super.c:#include  - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ git grep -i errno fs/9pnet/9p/ -[?2004l[?1h= net/9p/client.c:#include  -net/9p/client.c:static int safe_errno(int err) -net/9p/client.c: if ((err > 0) || (err < -MAX_ERRNO)) { -net/9p/client.c: * Return 0 upon success, -ERRNO upon failure -net/9p/client.c: err = p9_errstr2errno(ename, strlen(ename)); -net/9p/client.c: err = p9_errstr2errno(ename, strlen(ename)); -net/9p/client.c: return ERR_PTR(safe_errno(err)); -net/9p/client.c: return ERR_PTR(safe_errno(err)); -net/9p/error.c:#include  -net/9p/error.c: * errstr2errno - convert error string to error number -net/9p/error.c:int p9_errstr2errno(char *errstr, int len) -net/9p/error.c: int errno; -net/9p/error.c: errno = 0; -net/9p/error.c: errno = c->val; -net/9p/error.c: if (errno == 0) { -net/9p/error.c: errno = ESERVERFAULT; -net/9p/error.c: return -errno; -net/9p/error.c:EXPORT_SYMBOL(p9_errstr2errno); -net/9p/mod.c:#include  -net/9p/protocol.c:#include  -net/9p/trans_fd.c:#include  -net/9p/trans_fd.c: * Returns 0 upon success, -ERRNO upon failure -net/9p/trans_rdma.c:#include  -net/9p/trans_rdma.c: * Returns 0 upon success, -ERRNO upon failure -net/9p/trans_virtio.c:#include  -net/9p/util.c:#include  - [?1l>[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ vi net/9p/error.c -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"net/9p/error.c" 247L, 7590C▽ [>c]10;?]11;?/* - * linux/fs/9p/error.c - * - * Error string handling - * - * Plan 9 uses error strings, Unix uses error numbers. These functions - * try to help manage that and provide for dynamically adding error - * mappings. - * - * Copyright (C) 2004 by Eric Van Hensbergen - * Copyright (C) 2002 by Ron Minnich - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to: - * Free Software Foundation - * 51 Franklin Street, Fifth Floor - * Boston, MA 02111-1301 USA - * - */ - -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - -#include -#include -#include -#include -#include - -/** - * struct errormap - map string errors from Plan 9 to Linux numeric ids - * @name: string sent over 9P - * @val: numeric id most closely representing @name - * @namelen: length of string - * @list: hash-table list for string lookup - */ -struct errormap {char *name;int val;int namelen;struct hlist_node list; -}; - -#define ERRHASHSZ32 -static struct hlist_head hash_errmap[ERRHASHSZ]; - -/* FixMe - reduce to a reasonable size */ -static struct errormap errmap[] = {{"Operation not permitted", EPERM},{"wstat prohibited", EPERM},{"No such file or directory", ENOENT},{"directory entry not found", ENOENT},{"file not found", ENOENT},{"Interrupted system call", EINTR},{"Input/output error", EIO},{"No such device or address", ENXIO},{"Argument list too long", E2BIG},{"Bad file descriptor", EBADF},{"Resource temporarily unavailable", EAGAIN},{"Cannot allocate memory", ENOMEM},{"Permission denied", EACCES},{"Bad address", EFAULT},{"Block device required", ENOTBLK},{"Device or resource busy", EBUSY},{"File exists", EEXIST},{"Invalid cross-device link", EXDEV},{"No such device", ENODEV},{"Not a directory", ENOTDIR},{"Is a directory", EISDIR},{"Invalid argument", EINVAL},{"Too many open files in system", ENFILE},{"Too many open files", EMFILE},1,1Top]2;error.c (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux/net/9p) - VIM]1;error.c[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2[?25h[?25l {"Too many open files in system", ENFILE}, - {"Too many open files", EMFILE}, - {"Text file busy", ETXTBSY}, - {"File too large", EFBIG}, - {"No space left on device", ENOSPC}, - {"Illegal seek", ESPIPE}, {"Read-only file system", EROFS}, {"Too many links", EMLINK}, - {"Broken pipe", EPIPE}, - {"Numerical argument out of domain", EDOM}, {"Numerical result out of range", ERANGE}, {"Resource deadlock avoided", EDEADLK}, - {"File name too long", ENAMETOOLONG}, {"No locks available", ENOLCK}, {"Function not implemented", ENOSYS}, {"Directory not empty", ENOTEMPTY}, - {"Too many levels of symbolic links", ELOOP}, {"No message of desired type", ENOMSG}, {"Identifier removed", EIDRM}, {"No data available", ENODATA}, {"Machine is not on the network", ENONET}, - {"Package not installed", ENOPKG}, {"Object is remote", EREMOTE}, {"Link has been severed", ENOLINK}, - {"Communication error on send", ECOMM}, - {"Protocol error", EPROTO}, - {"Bad message", EBADMSG}, - {"File descriptor in bad state", EBADFD},{"Streams pipe error", ESTRPIPE}, - {"Too many users", EUSERS},{"Socket operation on non-socket", ENOTSOCK}, - {"Message too long", EMSGSIZE}, - {"Protocol not available", ENOPROTOOPT}, - {"Protocol not supported", EPROTONOSUPPORT}, - {"Socket type not supported", ESOCKTNOSUPPORT}, - {"Operation not supported", EOPNOTSUPP},{"Protocol family not supported", EPFNOSUPPORT}, - {"Network is down", ENETDOWN}, - {"Network is unreachable", ENETUNREACH}, {"Network dropped connection on reset", ENETRESET}, - {"Software caused connection abort", ECONNABORTED}, - {"Connection reset by peer", ECONNRESET}, - {"No buffer space available", ENOBUFS}, - {"Transport endpoint is already connected", EISCONN}, - {"Transport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH}, - {"Operation already in progress", EALREADY},{"Operation now in progress", EINPROGRESS}, - {"Is a named type file", EISNAM}, - {"Remote I/O error", EREMOTEIO},{"Disk quota exceeded", EDQUOT}, -/* errors from fossil, vacfs, and u9fs - {"fid unknown or out of range", EBADF},permission denied", EACCES},file does not exist", ENOENT},authentication failed", ECONNREFUSED},bad offset in directory read", ESPIPE},bad use of fid", EBADF},wstat can't convert between files and directories", EPERM},directory is not empty", ENOTEMPTY},file exists", EEXIST},file already exists", EEXIST},file or directory already exists", EEXIST},fid already in use", EBADF},file in use", ETXTBSY},i/o error", EIO},file already open for I/O", ETXTBSY},illegal mode", EINVAL}illegal name", ENAMETOOLONG},not a directory", ENOTDIR},not a member of proposed group", EPERM},not owner", EACCES},only owner can change group in wstat", EACCES},read only file system", EROFS},no access to special file", EPERM},i/o count too large", EIO},unknown group", EINVAL},80,2-947%[?25h[?25l/[?2004h[?25h [?25l80,2-947%[?25h[?25li/o count too large", EIO},unknown group", EINVAL},unknown user", EINVAL},bogus wstat buffer", EPROTO},exclusive use file already open", EAGAIN},corrupted directory entry", EIO},corrupted file entry", EIO},corrupted block label", EIO},corrupted meta data", EIO},illegal offset", EINVAL},illegal path element", ENOENT}root of file system is corrupted", EIO},corrupted super block", EIO},protocol botch", EPROTO},file system is full", ENOSPC},file is in use", EAGAIN},directory entry is not allocated", ENOENTfile is read only", EROFS},file has been removed", EIDRM},only support truncation to zero length", EPERM},cannot remove root", EPERM},file too big", EFBIG},venti i/o error", EIO},/* these are not errors */u9fs rhostsauth: no authentication required", 0},u9fs authnone: no authentication required", 0},NULL, -1}};/*** p9_error_init - preload mappings into hash list**/int p9_error_init(void){struct errormap *c;int bucket;/* initialize hash table */for (bucket = 0; bucket < ERRHASHSZ; bucket++) INIT_HLIST_HEAD(&hash_errmap[bucket]);/* load initial error map into hash table */for (c = errmap; c->name != NULL; c++) { c->namelen = strlen(c->name); bucket = jhash(c->name, c->namelen, 0) % ERRHASHSZ; INIT_HLIST_NODE(&c->list); hlist_add_head(&c->list, &hash_errmap[bucket]);}return 1;}EXPORT_SYMBOL(p9_error_init);** errstr2errno - convert error string to error number - * @errstr: error string* @len: length of error string**/int p9_errstr2errno(char *errstr, int len){int errno;struct errormap *c;int bucket;errno = 0;c = NULL;bucket = jhash(errstr, len, 0) % ERRHASHSZ;hlist_for_each_entry(c, &hash_errmap[bucket], list) { if (c->namelen == len && !memcmp(c->name, errstr, len)) { errno = c->val; break; }}if (errno == 0) { /* TODO: if error isn't found, add it dynamically */ errstr[len] = 0;159,2-995[?25h[?25lno access to special file", EPERM},{"i/o count too large", EIO},158,2-994%[?25h[?25lread only file system", EROFS},{"no access to special file", EPERM},157,2-993%[?25h[?25lonly owner can change group in wstat", EACCES},{"read only file system", EROFS},156,2-993%[?25h[?25lnot owner", EACCES},{"only owner can change group in wstat", EACCES},155,2-992%[?25h[?25la member of proposed group", EPERM},{"not owner", EACCES},154,2-992%[?25h[?25ldirectory", ENOTDIR},{"not a member of proposed group", EPERM},153,2-991%[?25h[?25lillegal name", ENAMETOOLONG},{"not a directory", ENOTDIR},152,2-990%[?25h[?25lmode", EINVAL},{"illegal name", ENAMETOOLONG},151,2-990%[?25h[?25lfile already open for I/O", ETXTBSY},{"illegal mode", EINVAL},150,2-989%[?25h[?25li/o error", EIO},{"file already open for I/O", ETXTBSY},149,2-989%[?25h[?25lfile in use", ETXTBSY},{"i/o error", EIO},148,2-988%[?25h[?25ld already in use", EBADF},{"file in use", ETXTBSY},147,2-987%[?25h[?25lle or directory already exists", EEXIST},{"fid already in use", EBADF},146,2-987%[?25h[?25lalready exists", EEXIST},{"file or directory already exists", EEXIST},145,2-986%[?25h[?25lexists", EEXIST},{"file already exists", EEXIST},144,2-986%[?25h[?25ldirectory is not empty", ENOTEMPTY},{"file exists", EEXIST},143,2-985%[?25h[?25lwstat can't convert between files and directories", EPERM},{"directory is not empty", ENOTEMPTY},142,2-984%[?25h[?25lbad use of fid", EBADF},{"wstat can't convert between files and directories", EPERM},141,2-984%[?25h[?25loffset in directory read", ESPIPE},{"bad use of fid", EBADF},140,2-983%[?25h[?25lauthentication failed", ECONNREFUSED},{"bad offset in directory read", ESPIPE},139,2-983%[?25h[?25lfile does not exist", ENOENT},{"authentication failed", ECONNREFUSED},138,2-982%[?25h[?25lpermission denied", EACCES},{"file does not exist", ENOENT},137,2-981%[?25h[?25lfid unknown or out of range", EBADF},{"permission denied", EACCES},136,2-981%[?25h[?25l/* errors from fossil, vacfs, and u9fs */{}135,980%[?25h[?25l{"Disk quota exceeded", EDQUOT},134,2-980%[?25h[?25lRemote I/O error", EREMOTEIO{"Disk quota exceeded", EDQUOT},133,2-979%[?25h[?25lIs a named type file", EISNAM},{"Remote I/O error", EREMOTEIO},132,2-978%[?25h[?25lOperation now in progress", EINPROGRESS},{"Is a named type file", EISNAM},131,2-978%[?25h[?25lalready in progress", EALREADY},{"Operation now in progress", EINPROGRESS},130,2-977%[?25h[?25lNo route to host", EHOSTUNREACH},{"Operation already in progress", EALREADY},129,2-977%[?25h[?25lHost is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH},128,2-976%[?25h[?25lConnection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},127,2-975%[?25h[?25ltimed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},126,2-975%[?25h[?25lannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},125,2-974%[?25h[?25lTransport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},124,2-974%[?25h[?25lalready connected", EISCONN},{"Transport endpoint is not connected", ENOTCONN},123,2-973%[?25h[?25lNo buffer space available", ENOBUFS},{"Transport endpoint is already connected", EISCONN},122,2-972%[?25h[?25lConnection reset by peer", ECONNRESET},{"No buffer space available", ENOBUFS},121,2-972%[?25h[?25lSoftware caused connection abort", ECONNABORTED},{"Connection reset by peer", ECONNRESET},120,2-971%[?25h[?25lNetwork droppon reset", ENETRESET{"Software caused connection abort", ECONNABORTED},119,2-971%[?25h[?25lis unreachable", ENETUNREACH},{"Network dropped connection on reset", ENETRESET},118,2-970%[?25h[?25ldown", ENETDOWN},{"Network is unreachable", ENETUNREACH},117,2-969%[?25h[?25lProtocol family not supported", EPFNOSUPPORT},{"Network is down", ENETDOWN},116,2-969%[?25h[?25lOperation not supported", EOPNOTSUPP},{"Protocol family not supported", EPFNOSUPPORT},115,2-968%[?25h[?25lSocket type not supported", ESOCKTNOSUPPORT},{"Operation not supported", EOPNOTSUPP},114,2-968%[?25h[?25lProtocol not supported", EPROTONOSUPPORT},{"Socket type not supported", ESOCKTNOSUPPORT},113,2-967%[?25h[?25lavailable", ENOPROTOOPT},{"Protocol not supported", EPROTONOSUPPORT},112,2-966%[?25h[?25lMessage too long", EMSGSIZE},{"Protocol not available", ENOPROTOOPT},111,2-966%[?25h[?25lSocket operation on non-socket", ENOTSOCK},{"Message too long", EMSGSIZE},110,2-965%[?25h[?25lToo many users", EUSERS},{"Socket operation on non-socket", ENOTSOCK},109,2-965%[?25h[?25lStreams pipe error", ESTRPIPE},{"Too many users", EUSERS},108,2-964%[?25h[?25lFile descriptor in bad state", EBADFD},{"Streams pipe error", ESTRPIPE},107,2-963%[?25h[?25lBad message", EBADMSG},{"File descriptor in bad state", EBADFD},106,2-963%[?25h[?25lProtocol error", EPROTO},{"Bad message", EBADMSG},105,2-962%[?25h[?25lCommunication error on send", ECOMM},{"Protocol error", EPROTO},104,2-962%[?25h[?25lLink has been severed", ENOLINK},{"Communication error on send", ECOMM},103,2-961%[?25h[?25lObject is remote", EREMOTE},{"Link has been severed", ENOLINK},102,2-960%[?25h[?25lPackage not installed", ENOPKG},{"Object is remote", EREMOTE},101,2-960%[?25h[?25lMachine is not on the network", ENONET},{"Package not installed", ENOPKG},100,2-959%[?25h[?25lNo data available", ENODATA},{"Machine is not on the network", ENONET},99,2-959%[?25h[?25lIdentifier removed", EIDRM},{"No data available", ENODATA},98,2-958%[?25h[?25lNo message of desired type", ENOMSG},{"Identifier removed", EIDRM},97,2-957%[?25h[?25lToo many levels of symbolic links", ELOOP},{"No message of desired type", ENOMSG},96,2-957%[?25h[?25lDirectory not empty", ENOTEMPTY},{"Too many levels of symbolic links", ELOOP},95,2-956%[?25h[?25lFunction not implemented", ENOSYS},{"Directory not empty", ENOTEMPTY},94,2-956%[?25h[?25lNo locks available", ENOLCK},{"Function not implemented", ENOSYS},93,2-955%[?25h[?25lFile name too long", ENAMETOOLONG},{"No locks available", ENOLCK},92,2-954%[?25h[?25lResource deadlock avoided", EDEADLK},{"File name too long", ENAMETOOLONG},91,2-954%[?25h[?25lNumerical result out of range", ERANGE},{"Resource deadlock avoided", EDEADLK},90,2-953%[?25h[?25largument out of domain", EDOM},{"Numerical result out of range", ERANGE},89,2-953%[?25h[?25lBroken pipe", EPIPE},{"Numerical argument out of domain", EDOM},88,2-952%[?25h[?25lToo many links", EMLINK},{"Broken pipe", EPIPE},87,2-951%[?25h[?25lRead-only file system", EROFS},{"Too many links", EMLINK},86,2-951%[?25h[?25lIllegal seek", ESPIPE}{"Read-only file system", EROFS},85,2-950%[?25h[?25lNo space left on device", ENOSPC},{"Illegal seek", ESPIPE},84,2-950%[?25h[?25lFile too large", EFBIG},{"No space left on device", ENOSPC},83,2-949%[?25h[?25lText file busy", ETXTBSY},{"File too large", EFBIG},82,2-948%[?25h[?25loo many open files", EMFILE},{"Text file busy", ETXTBSY},81,2-948%[?25h[?25l in system", ENFILE},{"Too many open files", EMFILE},80,2-947%[?25h[?25lInvalid argument", EINVAL},{"Too many open files in system", ENFILE},79,2-946%[?25h[?25ls a directory", EISDIR},{"Invalid argument", EINVAL},78,2-946%[?25h[?25lNot a directory", ENOTDIR},{"Is a directory", EISDIR},77,2-945%[?25h[?25l such device", ENODEV},{"Not a directory", ENOTDIR},76,2-945%[?25h[?25lInvalid cross-device link", EXDEV},{"No such device", ENODEV},75,2-944%[?25h[?25lFile exists", EEXIST},{"Invalid cross-device link", EXDEV},74,2-943%[?25h[?25lDevice or resource busy", EBUSY},{"File exists", EEXIST},73,2-943%[?25h[?25lBlock device required", ENOTBLK{"Device or resource busy", EBUSY},72,2-942%[?25h[?25lad address", EFAULT},{"Block device required", ENOTBLK},71,2-942%[?25h[?25lPermission denied", EACCES},{"Bad address", EFAULT},70,2-941%[?25h[?25lCannot allocate memory", ENOMEM},{"Permission denied", EACCES},69,2-940%[?25h[?25lResource temporarily unavailable", EAGAIN},{"Cannot allocate memory", ENOMEM},68,2-940%[?25h[?25lBad file descriptor", EBADF},{"Resource temporarily unavailable", EAGAIN},67,2-939%[?25h[?25lArgument list too long", E2BIG},{"Bad file descriptor", EBADF},66,2-939%[?25h[?25lNo such device or address", ENXIO},{"Argument list too long", E2BIG},65,2-938%[?25h[?25lInput/output error", EIO},{"No such device or address", ENXIO},64,2-937%[?25h[?25lterrupted system call", EINTR},{"Input/output error", EIO},63,2-937%[?25h[?25lfile not found", ENOENT}{"Interrupted system call", EINTR},62,2-936%[?25h[?25ldirectory entry not found", ENOENT},{"file not found", ENOENT},61,2-936%[?25h[?25lNo such file or directory{"directory entry not found", ENOENT},60,2-935%[?25h[?25lwstat prohibited", EPERM},{"No such file or directory", ENOENT},59,2-934%[?25h[?25lOperation not permitted", EPERM},{"wstat prohibited", EPERM},58,2-934%[?25h[?25lstatic struct errormap errmap[] = {{}57,933%[?25h[?25l/* FixMe - reduce to a reasonable size */56,933%[?25h[?25l55,0-132%[?25h[?25lstatic struct hlist_head hash_errmap[ERRHASHSZ];54,931%[?25h[?25l#define ERRHASHSZ3253,931%[?25h[?25l52,0-130%[?25h[?25l};51,230%[?25h[?25lstruct hlist_node list;50,2-929%[?25h[?25lint namelen;49,2-928%[?25h[?25l48,0-128%[?25h[?25lint val;47,2-927%[?25h[?25lchar *name;46,2-927%[?25h[?25lstruct errormap {45,926%[?25h[?25l6,2-9[?25h[?25l7[?25h[?25l8,0-1[?25h[?25l9,2-9[?25h[?25l50[?25h[?25l1,2 [?25h[?25l2,0-1[?25h[?25l3,9 [?25h[?25l4[?25h[?25l5,0-1[?25h[?25l6,9 [?25h[?25l7[?25h[?25l{}8,2-9[?25h[?25l{}{}9[?25h[?25l{}{}60[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l/[?2004h[?25he[?25l[?25hn[?25l[?25hf[?25l[?25h[?25l [?25ho[?25l[?25hf[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25hd[?25l[?25h[?25l [?25ho[?25l[?25hf[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: end of65,2-926%[?25h[?25l/[?2004h[?25hE[?25l[?25hn[?25l[?25hd[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: End65,2-926%[?25h[?25l/[?2004h[?25hE[?25l[?25hO[?25l[?25hF[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: EOF65,2-926%[?25h[?25l/[?2004h[?25he[?25l[?25ho[?25l[?25hf[?25l[?25h [?25lsearch hit BOTTOM, continuing at TOP E486: Pattern not found: eof65,2-926%[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}70[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}80[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l {"Transport endpoint is not connected", ENOTCONN},{"Cannot send after transport endpoint shutdown", ESHUTDOWN},{"Connection timed out", ETIMEDOUT},{"Connection refused", ECONNREFUSED},{"Host is down", EHOSTDOWN},{"No route to host", EHOSTUNREACH}, - {"Operation already in progress", EALREADY},{"Operation now in progress", EINPROGRESS}, - {"Is a named type file", EISNAM}, - {"Remote I/O error", EREMOTEIO},{"Disk quota exceeded", EDQUOT}, -/* errors from fossil, vacfs, and u9fs - {"fid unknown or out of range", EBADF},permission denied", EACCES},file does not exist", ENOENT},authentication failed", ECONNREFUSED},bad offset in directory read", ESPIPE},bad use of fid", EBADF},wstat can't convert between files and directories", EPERM},directory is not empty", ENOTEMPTY},file exists", EEXIST},file already exists", EEXIST},file or directory already exists", EEXIST},fid already in use", EBADF},file in use", ETXTBSY},i/o error", EIO},file already open for I/O", ETXTBSY},illegal mode", EINVAL}illegal name", ENAMETOOLONG},not a directory", ENOTDIR},not a member of proposed group", EPERM},not owner", EACCES},only owner can change group in wstat", EACCES},read only file system", EROFS},no access to special file", EPERM},i/o count too large", EIO},unknown group", EINVAL},unknown user", EINVAL},bogus wstat buffer", EPROTO},exclusive use file already open", EAGAIN},corrupted directory entry", EIO},{"corrupted file entry", EIO},corrupted block label", EIO},corrupted meta data", EIO},illegal offset", EINVAL},illegal path element", ENOENT}root of file system is corrupted", EIO},corrupted super block", EIO},protocol botch", EPROTO},file system is full", ENOSPC},file is in use", EAGAIN},directory entry is not allocated", ENOENTfile is read only", EROFS},file has been removed", EIDRM},only support truncation to zero length", EPERM},cannot remove root", EPERM},file too big", EFBIG},venti i/o error", EIO},/* these are not errors */u9fs rhostsauth: no authentication required", 0},u9fs authnone: no authentication required", 0},NULL, -1}};/*** p9_error_init - preload mappings into hash list**/int p9_error_init(void){struct errormap *c;int bucket;/* initialize hash table */for (bucket = 0; bucket < ERRHASHSZ; bucket++) INIT_HLIST_HEAD(&hash_errmap[bucket]);/* load initial error map into hash table */for (c = errmap; c->name != NULL; c++) { c->namelen = strlen(c->name);124,2-974[?25h[?25l{}{}5[?25h[?25l{}{}6[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}30[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l{}{}3[?25h[?25l{}{}4[?25h[?25l{}5,9 [?25h[?25l{}6,2-9[?25h[?25l{}{}7[?25h[?25l{}{}8[?25h[?25l{}{}9[?25h[?25l{}{}40[?25h[?25l{}{}1[?25h[?25l{}{}2[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linuxrminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux$ [?2004l[?2004h[?2004lexit - -Script done on 2019-01-08 09:37:34-0800 diff --git a/mainboards/tyan7106/RUN4 b/mainboards/tyan7106/RUN4 deleted file mode 100644 index ea734acf..00000000 --- a/mainboards/tyan7106/RUN4 +++ /dev/null @@ -1,12116 +0,0 @@ -Script started on 2018-12-20 12:38:28-0800 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d4 -[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean -2018/12/20 12:38:32 Found 310 things -2018/12/20 12:38:32 script is ./DXECLEANER -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8) -2018/12/20 12:38:42 removed [0xc000025200] -+ echo TEST /tmp/futk925337781/1 -TEST /tmp/futk925337781/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r -[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707 -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614 -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 We are now done ...................... -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6) -2018/12/20 12:44:44 removed [0xc0084f8b00] -+ echo TEST /tmp/futk925337781/2 -TEST /tmp/futk925337781/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:46:03 Listening on 192.168.0.1:8080 at 2018-12-20 12:46:03.780886704 -0800 PST m=+0.005034144 -2018/12/20 12:48:24 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:50:31 Accepted &{{0xc00013a080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:50:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/2 -2018/12/20 12:50:31 Try to remove DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP (DE141A05-FA40-432D-9631-5E3E990F44D5) -2018/12/20 12:50:31 removed [0xc000025c80] -+ echo TEST /tmp/futk925337781/3 -TEST /tmp/futk925337781/3 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/3 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:51:50 Listening on 192.168.0.1:8080 at 2018-12-20 12:51:50.227456387 -0800 PST m=+0.005158566 -2018/12/20 12:54:14 Accepted &{{0xc000148080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 12:56:20 Accepted &{{0xc000148180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 12:56:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3 -2018/12/20 12:56:20 Try to remove 7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell (7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -2018/12/20 12:56:20 removed [0xc0081d1c80] -+ echo TEST /tmp/futk925337781/4 -TEST /tmp/futk925337781/4 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/4 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 12:57:35 Listening on 192.168.0.1:8080 at 2018-12-20 12:57:35.623116445 -0800 PST m=+0.005039982 -2018/12/20 13:00:35 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 13:00:35.623594932 -0800 PST m=+180.005518262 -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 We are now done ...................... -2018/12/20 13:00:35 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 13:00:35 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2018/12/20 13:00:35 removed [0xc000024180] -+ echo TEST /tmp/futk925337781/5 -TEST /tmp/futk925337781/5 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/5 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:01:54 Listening on 192.168.0.1:8080 at 2018-12-20 13:01:54.539280467 -0800 PST m=+0.004759517 -2018/12/20 13:04:18 Accepted &{{0xc000136080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:06:24 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:06:24 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/5 -2018/12/20 13:06:24 Try to remove 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 (6C160B26-E04C-4098-A6AC-C8C7B6471A86) -2018/12/20 13:06:24 removed [0xc008190280] -+ echo TEST /tmp/futk925337781/6 -TEST /tmp/futk925337781/6 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/6 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:07:42 Listening on 192.168.0.1:8080 at 2018-12-20 13:07:42.852856141 -0800 PST m=+0.004094102 -2018/12/20 13:10:06 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:12:12 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:12:12 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6 -2018/12/20 13:12:12 Try to remove 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme (634E8DB5-C432-43BE-A653-9CA2922CC458) -2018/12/20 13:12:12 removed [0xc008191a80] -+ echo TEST /tmp/futk925337781/7 -TEST /tmp/futk925337781/7 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/7 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:13:31 Listening on 192.168.0.1:8080 at 2018-12-20 13:13:31.437604493 -0800 PST m=+0.004177998 -2018/12/20 13:15:54 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:18:00 Accepted &{{0xc00014e080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:18:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/7 -2018/12/20 13:18:00 Try to remove BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController (BB65942B-521F-4EC3-BAF9-A92540CF60D2) -2018/12/20 13:18:00 removed [0xc008191380] -+ echo TEST /tmp/futk925337781/8 -TEST /tmp/futk925337781/8 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/8 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:19:19 Listening on 192.168.0.1:8080 at 2018-12-20 13:19:19.603503008 -0800 PST m=+0.004415854 -2018/12/20 13:21:43 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:23:49 Accepted &{{0xc00013a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/8 -2018/12/20 13:23:49 Try to remove 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP (74346897-9E0C-4B41-BF1F-BAA1ECB85DA6) -2018/12/20 13:23:49 removed [0xc000025d00] -+ echo TEST /tmp/futk925337781/9 -TEST /tmp/futk925337781/9 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/9 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:25:07 Listening on 192.168.0.1:8080 at 2018-12-20 13:25:07.76282306 -0800 PST m=+0.004422579 -2018/12/20 13:27:31 Accepted &{{0xc000148100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:29:37 Accepted &{{0xc000148200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:29:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9 -2018/12/20 13:29:37 Try to remove 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio (8EEF9AD2-463E-425F-A4FE-2F6783D6F97E) -2018/12/20 13:29:37 removed [0xc008191480] -+ echo TEST /tmp/futk925337781/10 -TEST /tmp/futk925337781/10 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/10 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:30:56 Listening on 192.168.0.1:8080 at 2018-12-20 13:30:56.15073056 -0800 PST m=+0.004445203 -2018/12/20 13:33:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:35:25 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:35:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/10 -2018/12/20 13:35:25 Try to remove 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe (86CDDF93-4872-4597-8AF9-A35AE4D3725F) -2018/12/20 13:35:25 removed [0xc008191980] -+ echo TEST /tmp/futk925337781/11 -TEST /tmp/futk925337781/11 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/11 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:36:43 Listening on 192.168.0.1:8080 at 2018-12-20 13:36:43.750202933 -0800 PST m=+0.004256668 -2018/12/20 13:39:07 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:41:13 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:41:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/11 -2018/12/20 13:41:13 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2018/12/20 13:41:13 removed [0xc0084f8500] -+ echo TEST /tmp/futk925337781/12 -TEST /tmp/futk925337781/12 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/12 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:42:32 Listening on 192.168.0.1:8080 at 2018-12-20 13:42:32.023047406 -0800 PST m=+0.003844326 -2018/12/20 13:44:55 Accepted &{{0xc00015c000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:47:01 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:47:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12 -2018/12/20 13:47:01 Try to remove 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd (580DD900-385D-11D7-883A-00500473D4EB) -2018/12/20 13:47:01 removed [0xc008190a80] -+ echo TEST /tmp/futk925337781/13 -TEST /tmp/futk925337781/13 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/13 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:48:20 Listening on 192.168.0.1:8080 at 2018-12-20 13:48:20.25521162 -0800 PST m=+0.005265737 -2018/12/20 13:50:43 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:52:49 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:52:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/13 -2018/12/20 13:52:49 Try to remove 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog (43788BEB-638F-434C-8A84-46D33A589E76) -2018/12/20 13:52:49 removed [0xc008191100] -+ echo TEST /tmp/futk925337781/14 -TEST /tmp/futk925337781/14 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/14 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:54:08 Listening on 192.168.0.1:8080 at 2018-12-20 13:54:08.051297567 -0800 PST m=+0.004703264 -2018/12/20 13:56:31 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 13:58:37 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 13:58:37 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/14 -2018/12/20 13:58:37 Try to remove 9F3A0016-AE55-4288-829D-D55FD3AAC347:EFI_FV_FILETYPE_DRIVER:AmiBoardInfo2 (9F3A0016-AE55-4288-829D-D55FD3AAC347) -2018/12/20 13:58:37 removed [0xc000025180] -+ echo TEST /tmp/futk925337781/15 -TEST /tmp/futk925337781/15 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/15 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 13:59:55 Listening on 192.168.0.1:8080 at 2018-12-20 13:59:55.875862819 -0800 PST m=+0.005233399 -2018/12/20 14:02:55 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:02:55.876362681 -0800 PST m=+180.005733076 -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 We are now done ...................... -2018/12/20 14:02:55 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:02:55 Try to remove 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe (24A44CAF-0BF2-4514-90C4-C794B3E778F5) -2018/12/20 14:02:55 removed [0xc000025900] -+ echo TEST /tmp/futk925337781/16 -TEST /tmp/futk925337781/16 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/16 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:04:14 Listening on 192.168.0.1:8080 at 2018-12-20 14:04:14.279108354 -0800 PST m=+0.004512363 -2018/12/20 14:06:38 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:08:44 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:08:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16 -2018/12/20 14:08:44 Try to remove E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017:EFI_FV_FILETYPE_DRIVER:PciPlatform (E2441B64-7EF4-41FE-B3A3-8CAA7F8D3017) -2018/12/20 14:08:44 removed [0xc000025580] -+ echo TEST /tmp/futk925337781/17 -TEST /tmp/futk925337781/17 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/17 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:10:02 Listening on 192.168.0.1:8080 at 2018-12-20 14:10:02.898391295 -0800 PST m=+0.005366065 -2018/12/20 14:13:02 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:13:02.898837903 -0800 PST m=+180.005812477 -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 We are now done ...................... -2018/12/20 14:13:02 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:13:02 Try to remove 16D0A23E-C09C-407D-A14A-AD058FDD0CA1:EFI_FV_FILETYPE_DRIVER:ACPI (16D0A23E-C09C-407D-A14A-AD058FDD0CA1) -2018/12/20 14:13:02 removed [0xc000024d00] -+ echo TEST /tmp/futk925337781/18 -TEST /tmp/futk925337781/18 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/18 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:14:21 Listening on 192.168.0.1:8080 at 2018-12-20 14:14:21.227350863 -0800 PST m=+0.004798021 -2018/12/20 14:17:21 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:17:21.227773117 -0800 PST m=+180.005220134 -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 We are now done ...................... -2018/12/20 14:17:21 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:17:21 Try to remove 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb (271B424E-A4CC-4E0E-90A2-7EA4841F12F3) -2018/12/20 14:17:21 removed [0xc000025080] -+ echo TEST /tmp/futk925337781/19 -TEST /tmp/futk925337781/19 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/19 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:18:39 Listening on 192.168.0.1:8080 at 2018-12-20 14:18:39.454710481 -0800 PST m=+0.005468106 -2018/12/20 14:20:59 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:23:05 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:23:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/19 -2018/12/20 14:23:05 Try to remove 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit (502B04F3-71AB-47B4-BEAE-4736EA190AA4) -2018/12/20 14:23:05 removed [0xc000024f80] -+ echo TEST /tmp/futk925337781/20 -TEST /tmp/futk925337781/20 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/20 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:24:23 Listening on 192.168.0.1:8080 at 2018-12-20 14:24:23.70163879 -0800 PST m=+0.005006947 -2018/12/20 14:26:47 Accepted &{{0xc000160100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:28:52 Accepted &{{0xc000160200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:28:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/20 -2018/12/20 14:28:52 Try to remove BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe (BDCE85BB-FBAA-4F4E-9264-501A2C249581) -2018/12/20 14:28:52 removed [0xc000024d80] -+ echo TEST /tmp/futk925337781/21 -TEST /tmp/futk925337781/21 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/21 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:30:10 Listening on 192.168.0.1:8080 at 2018-12-20 14:30:10.891835915 -0800 PST m=+0.005548472 -2018/12/20 14:32:34 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:34:40 Accepted &{{0xc000156080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:34:40 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/21 -2018/12/20 14:34:40 Try to remove 80CF7257-87AB-47F9-A3FE-D50B76D89541:EFI_FV_FILETYPE_DRIVER:PcdDxe (80CF7257-87AB-47F9-A3FE-D50B76D89541) -2018/12/20 14:34:40 removed [0xc0084f8380] -+ echo TEST /tmp/futk925337781/22 -TEST /tmp/futk925337781/22 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/22 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:35:58 Listening on 192.168.0.1:8080 at 2018-12-20 14:35:58.491482834 -0800 PST m=+0.003533855 -2018/12/20 14:38:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 14:38:58.491841772 -0800 PST m=+180.003892685 -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 We are now done ...................... -2018/12/20 14:38:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 14:38:58 Try to remove 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat (961578FE-B6B7-44C3-AF35-6BC705CD2B1F) -2018/12/20 14:38:58 removed [0xc008191900] -+ echo TEST /tmp/futk925337781/23 -TEST /tmp/futk925337781/23 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/23 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:40:16 Listening on 192.168.0.1:8080 at 2018-12-20 14:40:16.584140961 -0800 PST m=+0.005293856 -2018/12/20 14:42:40 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:44:46 Accepted &{{0xc00014c100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:44:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/23 -2018/12/20 14:44:46 Try to remove DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe (DE5FC8BF-06ED-4DC5-BA9D-29F711699A85) -2018/12/20 14:44:46 removed [0xc008191200] -+ echo TEST /tmp/futk925337781/24 -TEST /tmp/futk925337781/24 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/24 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:46:04 Listening on 192.168.0.1:8080 at 2018-12-20 14:46:04.680644696 -0800 PST m=+0.005399078 -2018/12/20 14:48:28 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:50:33 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:50:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCodeHandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24 -2018/12/20 14:50:33 Try to remove AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr (AE587172-CC15-48E1-8BE1-29DDF05C6A1E) -2018/12/20 14:50:33 removed [0xc000025880] -+ echo TEST /tmp/futk925337781/25 -TEST /tmp/futk925337781/25 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/25 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:51:52 Listening on 192.168.0.1:8080 at 2018-12-20 14:51:52.161382596 -0800 PST m=+0.002835227 -2018/12/20 14:54:12 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 14:56:17 Accepted &{{0xc00014a100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 14:56:17 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/25 -2018/12/20 14:56:17 Try to remove 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci (8F5A2E02-538C-4D59-B920-C4786ACBC552) -2018/12/20 14:56:17 removed [0xc008191400] -+ echo TEST /tmp/futk925337781/26 -TEST /tmp/futk925337781/26 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/26 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 14:57:36 Listening on 192.168.0.1:8080 at 2018-12-20 14:57:36.140896232 -0800 PST m=+0.004997766 -2018/12/20 14:59:59 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:02:05 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:02:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/26 -2018/12/20 15:02:05 Try to remove 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb (9D0CEA63-745B-417D-BBA4-E5193061C907) -2018/12/20 15:02:05 removed [0xc0084f8580] -+ echo TEST /tmp/futk925337781/27 -TEST /tmp/futk925337781/27 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/27 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:03:23 Listening on 192.168.0.1:8080 at 2018-12-20 15:03:23.554884706 -0800 PST m=+0.004972462 -2018/12/20 15:05:47 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:07:52 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:07:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/27 -2018/12/20 15:07:52 Try to remove 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 (7D77B32E-BAB2-4CC7-8378-7550513F3FCA) -2018/12/20 15:07:52 removed [0xc008190680] -+ echo TEST /tmp/futk925337781/28 -TEST /tmp/futk925337781/28 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/28 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:09:10 Listening on 192.168.0.1:8080 at 2018-12-20 15:09:10.874233313 -0800 PST m=+0.004453773 -2018/12/20 15:11:35 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:13:41 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:13:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28 -2018/12/20 15:13:41 Try to remove AA7B4695-00B4-4468-AD92-99370AC031C5:EFI_FV_FILETYPE_DRIVER:LegacyRegion2 (AA7B4695-00B4-4468-AD92-99370AC031C5) -2018/12/20 15:13:41 removed [0xc000025500] -+ echo TEST /tmp/futk925337781/29 -TEST /tmp/futk925337781/29 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/29 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:14:59 Listening on 192.168.0.1:8080 at 2018-12-20 15:14:59.488662872 -0800 PST m=+0.004774153 -2018/12/20 15:17:22 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:20:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 15:20:22.574051137 -0800 PST m=+323.090162248 -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 We are now done ...................... -2018/12/20 15:20:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 15:20:22 Try to remove 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD (64A11188-5B86-4F59-A702-73365896E65E) -2018/12/20 15:20:22 removed [0xc000025400] -+ echo TEST /tmp/futk925337781/30 -TEST /tmp/futk925337781/30 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/30 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:21:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:21:41.383482233 -0800 PST m=+0.002904115 -2018/12/20 15:24:05 Accepted &{{0xc000158000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:26:10 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:26:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/30 -2018/12/20 15:26:10 Try to remove 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo (97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F) -2018/12/20 15:26:10 removed [0xc008191580] -+ echo TEST /tmp/futk925337781/31 -TEST /tmp/futk925337781/31 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/31 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:27:29 Listening on 192.168.0.1:8080 at 2018-12-20 15:27:29.258208759 -0800 PST m=+0.005189823 -2018/12/20 15:29:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:31:58 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:31:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/31 -2018/12/20 15:31:58 Try to remove 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe (13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7) -2018/12/20 15:31:58 removed [0xc000024400] -+ echo TEST /tmp/futk925337781/32 -TEST /tmp/futk925337781/32 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/32 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:33:17 Listening on 192.168.0.1:8080 at 2018-12-20 15:33:17.128157519 -0800 PST m=+0.004507699 -2018/12/20 15:35:40 Accepted &{{0xc00014c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:37:46 Accepted &{{0xc00014c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:37:46 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/32 -2018/12/20 15:37:46 Try to remove FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe (FA20568B-548B-4B2B-81EF-1BA08D4A3CEC) -2018/12/20 15:37:46 removed [0xc000024e00] -+ echo TEST /tmp/futk925337781/33 -TEST /tmp/futk925337781/33 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/33 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:39:05 Listening on 192.168.0.1:8080 at 2018-12-20 15:39:05.286626817 -0800 PST m=+0.004493377 -2018/12/20 15:41:28 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:43:34 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:43:34 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutorDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33 -2018/12/20 15:43:34 Try to remove BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe (BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F) -2018/12/20 15:43:34 removed [0xc008191280] -+ echo TEST /tmp/futk925337781/34 -TEST /tmp/futk925337781/34 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/34 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:44:53 Listening on 192.168.0.1:8080 at 2018-12-20 15:44:53.383915713 -0800 PST m=+0.004908909 -2018/12/20 15:47:17 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:49:22 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:49:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/34 -2018/12/20 15:49:22 Try to remove 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA (68D89864-C0A8-490D-BE18-C83D67240928) -2018/12/20 15:49:22 removed [0xc000025f00] -+ echo TEST /tmp/futk925337781/35 -TEST /tmp/futk925337781/35 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/35 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:50:41 Listening on 192.168.0.1:8080 at 2018-12-20 15:50:41.334210235 -0800 PST m=+0.005179862 -2018/12/20 15:53:04 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 15:55:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 15:55:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35 -2018/12/20 15:55:10 Try to remove E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe (E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC) -2018/12/20 15:55:10 removed [0xc000024b00] -+ echo TEST /tmp/futk925337781/36 -TEST /tmp/futk925337781/36 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/36 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 15:56:28 Listening on 192.168.0.1:8080 at 2018-12-20 15:56:28.978216852 -0800 PST m=+0.004335817 -2018/12/20 15:58:52 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:00:58 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:00:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/36 -2018/12/20 16:00:58 Try to remove A0BAD9F7-AB78-491B-B583-C52B7F84B9E0:EFI_FV_FILETYPE_DRIVER:SmmControl (A0BAD9F7-AB78-491B-B583-C52B7F84B9E0) -2018/12/20 16:00:58 removed [0xc008191080] -+ echo TEST /tmp/futk925337781/37 -TEST /tmp/futk925337781/37 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/37 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:02:16 Listening on 192.168.0.1:8080 at 2018-12-20 16:02:16.903857431 -0800 PST m=+0.005434827 -2018/12/20 16:05:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:05:16.904347909 -0800 PST m=+180.005925115 -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 We are now done ...................... -2018/12/20 16:05:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:05:16 Try to remove 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP (52C877FD-C27C-4779-B750-7880B28B4306) -2018/12/20 16:05:16 removed [0xc000025b00] -+ echo TEST /tmp/futk925337781/38 -TEST /tmp/futk925337781/38 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/38 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:06:35 Listening on 192.168.0.1:8080 at 2018-12-20 16:06:35.058778571 -0800 PST m=+0.004941072 -2018/12/20 16:08:58 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:11:04 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:11:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38 -2018/12/20 16:11:04 Try to remove 8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF:EFI_FV_FILETYPE_DRIVER:Bds (8F4B8F82-9B91-4028-86E6-F4DB7D4C1DFF) -2018/12/20 16:11:04 removed [0xc000024300] -+ echo TEST /tmp/futk925337781/39 -TEST /tmp/futk925337781/39 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/39 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:12:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:12:22.712610466 -0800 PST m=+0.005274340 -2018/12/20 16:15:22 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:15:22.713095197 -0800 PST m=+180.005758864 -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 We are now done ...................... -2018/12/20 16:15:22 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:15:22 Try to remove 2FA2A6DA-11D5-4DC3-999A-749648B03C56:EFI_FV_FILETYPE_DRIVER:PiSmmIpl (2FA2A6DA-11D5-4DC3-999A-749648B03C56) -2018/12/20 16:15:22 removed [0xc008190e00] -+ echo TEST /tmp/futk925337781/40 -TEST /tmp/futk925337781/40 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/40 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:16:40 Listening on 192.168.0.1:8080 at 2018-12-20 16:16:40.97049864 -0800 PST m=+0.004998527 -2018/12/20 16:19:40 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 16:19:40.970921052 -0800 PST m=+180.005420863 -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 We are now done ...................... -2018/12/20 16:19:40 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 16:19:40 Try to remove 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole (43E7ABDD-E352-4CFB-A230-4CDC1D350E5C) -2018/12/20 16:19:40 removed [0xc008191300] -+ echo TEST /tmp/futk925337781/41 -TEST /tmp/futk925337781/41 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/41 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:20:59 Listening on 192.168.0.1:8080 at 2018-12-20 16:20:59.024877143 -0800 PST m=+0.005239209 -2018/12/20 16:23:22 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:25:28 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:25:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41 -2018/12/20 16:25:28 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2018/12/20 16:25:28 removed [0xc008190800] -+ echo TEST /tmp/futk925337781/42 -TEST /tmp/futk925337781/42 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/42 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:26:46 Listening on 192.168.0.1:8080 at 2018-12-20 16:26:46.6244388 -0800 PST m=+0.005275603 -2018/12/20 16:29:10 Accepted &{{0xc00017e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:31:15 Accepted &{{0xc00015c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:31:15 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42 -2018/12/20 16:31:15 Try to remove 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe (536DF136-BD96-4E1E-ADF5-6B637C139063) -2018/12/20 16:31:15 removed [0xc000025700] -+ echo TEST /tmp/futk925337781/43 -TEST /tmp/futk925337781/43 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/43 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:32:34 Listening on 192.168.0.1:8080 at 2018-12-20 16:32:34.901920731 -0800 PST m=+0.005000936 -2018/12/20 16:34:58 Accepted &{{0xc00013c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:37:04 Accepted &{{0xc00013c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:37:04 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/43 -2018/12/20 16:37:04 Try to remove 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe (69E6DD6D-F09E-485F-9627-EB70E9CFC82A) -2018/12/20 16:37:04 removed [0xc000025a80] -+ echo TEST /tmp/futk925337781/44 -TEST /tmp/futk925337781/44 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/44 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:38:22 Listening on 192.168.0.1:8080 at 2018-12-20 16:38:22.544225362 -0800 PST m=+0.005281778 -2018/12/20 16:40:45 Accepted &{{0xc000172000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:42:51 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:42:51 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/44 -2018/12/20 16:42:51 Try to remove 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo (25ACF158-DD61-4E64-9A49-55851E9A26C7) -2018/12/20 16:42:51 removed [0xc008191800] -+ echo TEST /tmp/futk925337781/45 -TEST /tmp/futk925337781/45 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/45 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:44:09 Listening on 192.168.0.1:8080 at 2018-12-20 16:44:09.975817317 -0800 PST m=+0.001989953 -2018/12/20 16:46:33 Accepted &{{0xc000134180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:48:38 Accepted &{{0xc000134280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:48:38 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/45 -2018/12/20 16:48:38 Try to remove B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA (B11216C5-44E4-472C-ACB7-128A5A3AD7A1) -2018/12/20 16:48:38 removed [0xc000025e00] -+ echo TEST /tmp/futk925337781/46 -TEST /tmp/futk925337781/46 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/46 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:49:56 Listening on 192.168.0.1:8080 at 2018-12-20 16:49:56.744182636 -0800 PST m=+0.005385736 -2018/12/20 16:52:20 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 16:54:25 Accepted &{{0xc000154080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 16:54:25 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46 -2018/12/20 16:54:25 Try to remove 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy (196CA3D8-9A5A-4735-B328-8FFC1D93D188) -2018/12/20 16:54:25 removed [0xc0084f8a80] -+ echo TEST /tmp/futk925337781/47 -TEST /tmp/futk925337781/47 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/47 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 16:55:44 Listening on 192.168.0.1:8080 at 2018-12-20 16:55:44.193157595 -0800 PST m=+0.004100483 -2018/12/20 16:58:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:00:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:00:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPolicy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47 -2018/12/20 17:00:13 Try to remove E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe (E052D8A6-224A-4C32-8D37-2E0AE162364D) -2018/12/20 17:00:13 removed [0xc000024a00] -+ echo TEST /tmp/futk925337781/48 -TEST /tmp/futk925337781/48 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/48 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:01:31 Listening on 192.168.0.1:8080 at 2018-12-20 17:01:31.714342556 -0800 PST m=+0.005571708 -2018/12/20 17:03:52 Accepted &{{0xc000162180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:05:56 Accepted &{{0xc000162280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:05:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/48 -2018/12/20 17:05:56 Try to remove 80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910:EFI_FV_FILETYPE_DRIVER:PciRootBridge (80E66E0A-CCD1-43FA-A7B1-2D5EE0F13910) -2018/12/20 17:05:56 removed [0xc000024f00] -+ echo TEST /tmp/futk925337781/49 -TEST /tmp/futk925337781/49 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/49 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:07:14 Listening on 192.168.0.1:8080 at 2018-12-20 17:07:14.347287953 -0800 PST m=+0.005317861 -2018/12/20 17:10:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:10:14.34774936 -0800 PST m=+180.005779118 -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 We are now done ...................... -2018/12/20 17:10:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:10:14 Try to remove 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy (858EBE6F-360F-415B-B7DC-463AAEB03412) -2018/12/20 17:10:14 removed [0xc008190980] -+ echo TEST /tmp/futk925337781/50 -TEST /tmp/futk925337781/50 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/50 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:11:32 Listening on 192.168.0.1:8080 at 2018-12-20 17:11:32.514093772 -0800 PST m=+0.005061727 -2018/12/20 17:13:53 Accepted &{{0xc000154100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:15:56 Accepted &{{0xc000154200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:15:56 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/50 -2018/12/20 17:15:56 Try to remove 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA (6AC5D123-C6E5-41BA-9BE3-A0371EE54B78) -2018/12/20 17:15:56 removed [0xc000025e80] -+ echo TEST /tmp/futk925337781/51 -TEST /tmp/futk925337781/51 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/51 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:17:15 Listening on 192.168.0.1:8080 at 2018-12-20 17:17:15.563732949 -0800 PST m=+0.004555196 -2018/12/20 17:19:36 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:21:39 Accepted &{{0xc000146100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:21:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51 -2018/12/20 17:21:39 Try to remove 1807040D-5934-41A2-A088-8E0F777F71AB:EFI_FV_FILETYPE_DRIVER:NvramDxe (1807040D-5934-41A2-A088-8E0F777F71AB) -2018/12/20 17:21:39 removed [0xc0084f8300] -+ echo TEST /tmp/futk925337781/52 -TEST /tmp/futk925337781/52 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/52 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:22:58 Listening on 192.168.0.1:8080 at 2018-12-20 17:22:58.055475377 -0800 PST m=+0.005275386 -2018/12/20 17:25:58 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:25:58.05594419 -0800 PST m=+180.005744008 -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 We are now done ...................... -2018/12/20 17:25:58 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:25:58 Try to remove 274F0C8F-9E57-41D8-9966-29CCD48D31C2:EFI_FV_FILETYPE_DRIVER:SmmAccess (274F0C8F-9E57-41D8-9966-29CCD48D31C2) -2018/12/20 17:25:58 removed [0xc000024880] -+ echo TEST /tmp/futk925337781/53 -TEST /tmp/futk925337781/53 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/53 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:27:16 Listening on 192.168.0.1:8080 at 2018-12-20 17:27:16.344360431 -0800 PST m=+0.004669901 -2018/12/20 17:30:16 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:30:16.344836429 -0800 PST m=+180.005145740 -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 We are now done ...................... -2018/12/20 17:30:16 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:30:16 Try to remove 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 (4C006CD9-19BA-4617-8483-609194A1ACFC) -2018/12/20 17:30:16 removed [0xc008190b80] -+ echo TEST /tmp/futk925337781/54 -TEST /tmp/futk925337781/54 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/54 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:31:34 Listening on 192.168.0.1:8080 at 2018-12-20 17:31:34.83324492 -0800 PST m=+0.004844957 -2018/12/20 17:33:55 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:35:59 Accepted &{{0xc00014c180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:35:59 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/54 -2018/12/20 17:35:59 Try to remove 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo (29CF55F8-B675-4F5D-8F2F-B87A3ECFD063) -2018/12/20 17:35:59 removed [0xc008191880] -+ echo TEST /tmp/futk925337781/55 -TEST /tmp/futk925337781/55 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/55 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:37:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:37:17.556741855 -0800 PST m=+0.005026625 -2018/12/20 17:39:38 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:41:41 Accepted &{{0xc000150100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:41:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/55 -2018/12/20 17:41:41 Try to remove B13EDD38-684C-41ED-A305-D7B7E32497DF:EFI_FV_FILETYPE_DRIVER:Smbios (B13EDD38-684C-41ED-A305-D7B7E32497DF) -2018/12/20 17:41:41 removed [0xc008190880] -+ echo TEST /tmp/futk925337781/56 -TEST /tmp/futk925337781/56 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/56 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:42:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:42:59.629389097 -0800 PST m=+0.004689203 -2018/12/20 17:45:59 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 17:45:59.629831992 -0800 PST m=+180.005131895 -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 We are now done ...................... -2018/12/20 17:45:59 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 17:45:59 Try to remove 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe (2ACA4F79-324F-4D6D-8268-A210B1537807) -2018/12/20 17:45:59 removed [0xc008190d00] -+ echo TEST /tmp/futk925337781/57 -TEST /tmp/futk925337781/57 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/57 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:47:17 Listening on 192.168.0.1:8080 at 2018-12-20 17:47:17.495849789 -0800 PST m=+0.004930173 -2018/12/20 17:49:38 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:51:42 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:51:42 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/57 -2018/12/20 17:51:42 Try to remove C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge (C4EB3614-4986-42B9-8C0D-9FE118278908) -2018/12/20 17:51:42 removed [0xc008190f00] -+ echo TEST /tmp/futk925337781/58 -TEST /tmp/futk925337781/58 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/58 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:52:59 Listening on 192.168.0.1:8080 at 2018-12-20 17:52:59.756822581 -0800 PST m=+0.005077237 -2018/12/20 17:55:20 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 17:57:23 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 17:57:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/58 -2018/12/20 17:57:23 Try to remove F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer (F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8) -2018/12/20 17:57:23 removed [0xc008190c00] -+ echo TEST /tmp/futk925337781/59 -TEST /tmp/futk925337781/59 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/59 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 17:58:41 Listening on 192.168.0.1:8080 at 2018-12-20 17:58:41.174667602 -0800 PST m=+0.005240425 -2018/12/20 18:01:01 Accepted &{{0xc00014e100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:03:05 Accepted &{{0xc00014e200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:03:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/59 -2018/12/20 18:03:05 Try to remove 348C4D62-BFBD-4882-9ECE-C80BB1C4783B:EFI_FV_FILETYPE_DRIVER:HiiDatabase (348C4D62-BFBD-4882-9ECE-C80BB1C4783B) -2018/12/20 18:03:05 removed [0xc000024480] -+ echo TEST /tmp/futk925337781/60 -TEST /tmp/futk925337781/60 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/60 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:04:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:04:23.37435198 -0800 PST m=+0.005182644 -2018/12/20 18:07:23 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:07:23.374708801 -0800 PST m=+180.005539427 -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 We are now done ...................... -2018/12/20 18:07:23 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:07:23 Try to remove 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe (16271FCA-55D9-4A33-93FC-5A3EB128DEB6) -2018/12/20 18:07:23 removed [0xc008190c80] -+ echo TEST /tmp/futk925337781/61 -TEST /tmp/futk925337781/61 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/61 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:08:41 Listening on 192.168.0.1:8080 at 2018-12-20 18:08:41.132668085 -0800 PST m=+0.005357167 -2018/12/20 18:11:02 Accepted &{{0xc000152080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:13:05 Accepted &{{0xc000152180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:13:05 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/61 -2018/12/20 18:13:05 Try to remove 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038E34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:13:05 removed [0xc0084f9580] -+ echo TEST /tmp/futk925337781/62 -TEST /tmp/futk925337781/62 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/62 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:14:23 Listening on 192.168.0.1:8080 at 2018-12-20 18:14:23.443464198 -0800 PST m=+0.005498427 -2018/12/20 18:16:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:18:47 Accepted &{{0xc000148100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:18:47 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/62 -2018/12/20 18:18:47 Try to remove CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA (CF6BCADD-D4C4-4095-B2BC-417D7247890A) -2018/12/20 18:18:47 removed [0xc000025f80] -+ echo TEST /tmp/futk925337781/63 -TEST /tmp/futk925337781/63 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/63 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:20:05 Listening on 192.168.0.1:8080 at 2018-12-20 18:20:05.127781304 -0800 PST m=+0.004805826 -2018/12/20 18:22:26 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:24:29 Accepted &{{0xc000150180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:24:29 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63 -2018/12/20 18:24:29 Try to remove DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm (DEB0EE00-18DF-415C-AF03-74D09B0AAD87) -2018/12/20 18:24:29 removed [0xc008190f80] -+ echo TEST /tmp/futk925337781/64 -TEST /tmp/futk925337781/64 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/64 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:25:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:25:47.41812751 -0800 PST m=+0.005003202 -2018/12/20 18:28:08 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:30:11 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:30:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/64 -2018/12/20 18:30:11 Try to remove 06D20D84-A032-4E25-969A-346D255E46D1:EFI_FV_FILETYPE_DRIVER:CpuCsrAccess (06D20D84-A032-4E25-969A-346D255E46D1) -2018/12/20 18:30:11 removed [0xc008190e80] -+ echo TEST /tmp/futk925337781/65 -TEST /tmp/futk925337781/65 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/65 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:31:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:31:29.417255251 -0800 PST m=+0.004313930 -2018/12/20 18:34:29 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 18:34:29.417711988 -0800 PST m=+180.004770540 -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 We are now done ...................... -2018/12/20 18:34:29 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 18:34:29 Try to remove 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: (5038F34E-0774-47A0-A5EF-4B94AF1A43DA) -2018/12/20 18:34:29 removed [0xc0084f9500] -+ echo TEST /tmp/futk925337781/66 -TEST /tmp/futk925337781/66 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/66 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:35:47 Listening on 192.168.0.1:8080 at 2018-12-20 18:35:47.322068839 -0800 PST m=+0.005147984 -2018/12/20 18:38:08 Accepted &{{0xc000156080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:40:11 Accepted &{{0xc000156180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:40:11 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/66 -2018/12/20 18:40:11 Try to remove 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 (018A5C7A-12EB-429D-9DEF-6FCC410B04E8) -2018/12/20 18:40:11 removed [0xc008190580] -+ echo TEST /tmp/futk925337781/67 -TEST /tmp/futk925337781/67 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/67 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:41:29 Listening on 192.168.0.1:8080 at 2018-12-20 18:41:29.40350807 -0800 PST m=+0.004335908 -2018/12/20 18:43:50 Accepted &{{0xc00016c100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:45:53 Accepted &{{0xc00016c200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:45:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67 -2018/12/20 18:45:53 Try to remove A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe (A210F973-229D-4F4D-AA37-9895E6C9EABA) -2018/12/20 18:45:53 removed [0xc000025100] -+ echo TEST /tmp/futk925337781/68 -TEST /tmp/futk925337781/68 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/68 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:47:11 Listening on 192.168.0.1:8080 at 2018-12-20 18:47:11.508995353 -0800 PST m=+0.005627683 -2018/12/20 18:49:32 Accepted &{{0xc000146180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:51:35 Accepted &{{0xc00018a000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:51:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/68 -2018/12/20 18:51:35 Try to remove 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe (3237418A-478C-4700-B59F-768E2CCBC726) -2018/12/20 18:51:35 removed [0xc0084f8680] -+ echo TEST /tmp/futk925337781/69 -TEST /tmp/futk925337781/69 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/69 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:52:53 Listening on 192.168.0.1:8080 at 2018-12-20 18:52:53.756505644 -0800 PST m=+0.004630321 -2018/12/20 18:55:15 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 18:57:18 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 18:57:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/69 -2018/12/20 18:57:18 Try to remove 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe (171F43DC-C4D9-47A6-9641-65DDCDD5AA30) -2018/12/20 18:57:18 removed [0xc008190b00] -+ echo TEST /tmp/futk925337781/70 -TEST /tmp/futk925337781/70 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/70 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 18:58:36 Listening on 192.168.0.1:8080 at 2018-12-20 18:58:36.431655716 -0800 PST m=+0.002397625 -2018/12/20 19:00:57 Accepted &{{0xc00014e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:03:00 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:03:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/70 -2018/12/20 19:03:00 Try to remove D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 (D93DE2E3-3727-4D5B-B49F-777C93A971D3) -2018/12/20 19:03:00 removed [0xc008190400] -+ echo TEST /tmp/futk925337781/71 -TEST /tmp/futk925337781/71 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/71 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:04:18 Listening on 192.168.0.1:8080 at 2018-12-20 19:04:18.911352222 -0800 PST m=+0.004901757 -2018/12/20 19:06:39 Accepted &{{0xc000180000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:08:43 Accepted &{{0xc000166100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:08:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71 -2018/12/20 19:08:43 Try to remove 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe (61422D26-81EC-47FF-B6CF-939EAEE73FBA) -2018/12/20 19:08:43 removed [0xc0084f8180] -+ echo TEST /tmp/futk925337781/72 -TEST /tmp/futk925337781/72 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/72 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:10:00 Listening on 192.168.0.1:8080 at 2018-12-20 19:10:00.965019013 -0800 PST m=+0.004917582 -2018/12/20 19:12:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:14:21 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:14:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/72 -2018/12/20 19:14:21 Try to remove 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform (87AB821C-79B8-4EF6-A913-21D22063F55F) -2018/12/20 19:14:21 removed [0xc000025380] -+ echo TEST /tmp/futk925337781/73 -TEST /tmp/futk925337781/73 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/73 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:15:39 Listening on 192.168.0.1:8080 at 2018-12-20 19:15:39.027754537 -0800 PST m=+0.005721429 -2018/12/20 19:17:57 Accepted &{{0xc000166180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:19:58 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:19:58 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/73 -2018/12/20 19:19:58 Try to remove 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize (3FFCAE95-23CF-4967-94F5-16352F68E43B) -2018/12/20 19:19:59 removed [0xc000024800] -+ echo TEST /tmp/futk925337781/74 -TEST /tmp/futk925337781/74 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/74 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:21:16 Listening on 192.168.0.1:8080 at 2018-12-20 19:21:16.76222149 -0800 PST m=+0.002446848 -2018/12/20 19:23:35 Accepted &{{0xc000166000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:25:36 Accepted &{{0xc00014c080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:25:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/74 -2018/12/20 19:25:36 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2018/12/20 19:25:36 removed [0xc008191500] -+ echo TEST /tmp/futk925337781/75 -TEST /tmp/futk925337781/75 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/75 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:26:54 Listening on 192.168.0.1:8080 at 2018-12-20 19:26:54.495710155 -0800 PST m=+0.004446478 -2018/12/20 19:29:13 Accepted &{{0xc00014a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:31:14 Accepted &{{0xc00014a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:31:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/75 -2018/12/20 19:31:14 Try to remove 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit (63809859-F029-41C3-9F34-EEEB9EA787A5) -2018/12/20 19:31:14 removed [0xc000024780] -+ echo TEST /tmp/futk925337781/76 -TEST /tmp/futk925337781/76 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/76 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:32:32 Listening on 192.168.0.1:8080 at 2018-12-20 19:32:32.151543091 -0800 PST m=+0.004464779 -2018/12/20 19:34:50 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:36:52 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:36:52 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/76 -2018/12/20 19:36:52 Try to remove CEF68C66-06AB-4FB3-A3ED-5FFA885B5725:EFI_FV_FILETYPE_DRIVER:SmbiosBoard (CEF68C66-06AB-4FB3-A3ED-5FFA885B5725) -2018/12/20 19:36:52 removed [0xc008190900] -+ echo TEST /tmp/futk925337781/77 -TEST /tmp/futk925337781/77 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/77 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:38:09 Listening on 192.168.0.1:8080 at 2018-12-20 19:38:09.788551728 -0800 PST m=+0.005509443 -2018/12/20 19:41:09 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:41:09.789007908 -0800 PST m=+180.005965453 -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 We are now done ...................... -2018/12/20 19:41:09 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:41:09 Try to remove 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize (6372357A-06D7-43EF-B55C-1964F3DD6916) -2018/12/20 19:41:09 removed [0xc0084f8480] -+ echo TEST /tmp/futk925337781/78 -TEST /tmp/futk925337781/78 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/78 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:42:27 Listening on 192.168.0.1:8080 at 2018-12-20 19:42:27.715166318 -0800 PST m=+0.005238798 -2018/12/20 19:44:21 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:45:57 Accepted &{{0xc00014e100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:45:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitialize 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78 -2018/12/20 19:45:57 Try to remove 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup (6B6FD380-2C55-42C6-98BF-CBBC5A9AA666) -2018/12/20 19:45:57 removed [0xc000025780] -+ echo TEST /tmp/futk925337781/79 -TEST /tmp/futk925337781/79 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/79 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:47:14 Listening on 192.168.0.1:8080 at 2018-12-20 19:47:14.919859548 -0800 PST m=+0.005266410 -2018/12/20 19:49:09 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:50:45 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:50:45 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/79 -2018/12/20 19:50:45 Try to remove 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 (8C9D8537-9479-40F4-8C82-70D1EF5F7353) -2018/12/20 19:50:45 removed [0xc008190380] -+ echo TEST /tmp/futk925337781/80 -TEST /tmp/futk925337781/80 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/80 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:52:02 Listening on 192.168.0.1:8080 at 2018-12-20 19:52:02.894600896 -0800 PST m=+0.004930883 -2018/12/20 19:53:56 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 19:55:33 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 19:55:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80 -2018/12/20 19:55:33 Try to remove 40BEAB40-CECE-4909-B133-20A413AE19E9:EFI_FV_FILETYPE_DRIVER:CpuMpDxe (40BEAB40-CECE-4909-B133-20A413AE19E9) -2018/12/20 19:55:33 removed [0xc000024700] -+ echo TEST /tmp/futk925337781/81 -TEST /tmp/futk925337781/81 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/81 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 19:56:50 Listening on 192.168.0.1:8080 at 2018-12-20 19:56:50.572002523 -0800 PST m=+0.005085717 -2018/12/20 19:59:50 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 19:59:50.572501272 -0800 PST m=+180.005584263 -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 We are now done ...................... -2018/12/20 19:59:50 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 19:59:50 Try to remove 76A7B4FC-C8D5-462D-A4D2-6E88338A772A:EFI_FV_FILETYPE_DRIVER:PlatformCpuPolicy (76A7B4FC-C8D5-462D-A4D2-6E88338A772A) -2018/12/20 19:59:50 removed [0xc000025480] -+ echo TEST /tmp/futk925337781/82 -TEST /tmp/futk925337781/82 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/82 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:01:07 Listening on 192.168.0.1:8080 at 2018-12-20 20:01:07.942057836 -0800 PST m=+0.005391989 -2018/12/20 20:04:07 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:04:07.942537723 -0800 PST m=+180.005871718 -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 We are now done ...................... -2018/12/20 20:04:07 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:04:07 Try to remove B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry (B7EE4835-84CE-4B15-BF52-2D11574CE470) -2018/12/20 20:04:07 removed [0xc000025300] -+ echo TEST /tmp/futk925337781/83 -TEST /tmp/futk925337781/83 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/83 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:05:25 Listening on 192.168.0.1:8080 at 2018-12-20 20:05:25.340812113 -0800 PST m=+0.005316999 -2018/12/20 20:07:19 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:08:55 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:08:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureEntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83 -2018/12/20 20:08:55 Try to remove 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: (217828C1-DA75-5BC1-7B58-91954FED0101) -2018/12/20 20:08:55 removed [0xc0084f9380] -+ echo TEST /tmp/futk925337781/84 -TEST /tmp/futk925337781/84 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/84 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:10:12 Listening on 192.168.0.1:8080 at 2018-12-20 20:10:12.92855434 -0800 PST m=+0.005379744 -2018/12/20 20:12:02 Accepted &{{0xc000166080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:13:39 Accepted &{{0xc000166180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:13:39 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/84 -2018/12/20 20:13:39 Try to remove 56D60EE4-5CCF-485C-BBBB-FEDAE2B24146:EFI_FV_FILETYPE_DRIVER:RegAccessDxe (56D60EE4-5CCF-485C-BBBB-FEDAE2B24146) -2018/12/20 20:13:39 removed [0xc0084f8700] -+ echo TEST /tmp/futk925337781/85 -TEST /tmp/futk925337781/85 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/85 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:14:56 Listening on 192.168.0.1:8080 at 2018-12-20 20:14:56.481147437 -0800 PST m=+0.004919323 -2018/12/20 20:17:56 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:17:56.481601462 -0800 PST m=+180.005373158 -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 We are now done ...................... -2018/12/20 20:17:56 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:17:56 Try to remove BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup (BCEA6548-E204-4486-8F2A-36E13C7838CE) -2018/12/20 20:17:56 removed [0xc000025800] -+ echo TEST /tmp/futk925337781/86 -TEST /tmp/futk925337781/86 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/86 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:19:14 Listening on 192.168.0.1:8080 at 2018-12-20 20:19:14.036470475 -0800 PST m=+0.005226324 -2018/12/20 20:21:07 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:22:43 Accepted &{{0xc000164080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:22:43 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86 -2018/12/20 20:22:43 Try to remove 79CA4208-BBA1-4A9A-8456-E1E66A81484E:EFI_FV_FILETYPE_DRIVER:Legacy8259 (79CA4208-BBA1-4A9A-8456-E1E66A81484E) -2018/12/20 20:22:43 removed [0xc000024680] -+ echo TEST /tmp/futk925337781/87 -TEST /tmp/futk925337781/87 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/87 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:24:00 Listening on 192.168.0.1:8080 at 2018-12-20 20:24:00.924543717 -0800 PST m=+0.005290866 -2018/12/20 20:27:00 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 20:27:00.925019656 -0800 PST m=+180.005766622 -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 We are now done ...................... -2018/12/20 20:27:00 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 20:27:00 Try to remove 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 (72FE44FF-44FC-4653-918A-0D5E76C416D2) -2018/12/20 20:27:00 removed [0xc008190480] -+ echo TEST /tmp/futk925337781/88 -TEST /tmp/futk925337781/88 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/88 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:28:18 Listening on 192.168.0.1:8080 at 2018-12-20 20:28:18.251326435 -0800 PST m=+0.004860247 -2018/12/20 20:30:08 Accepted &{{0xc000138180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:31:44 Accepted &{{0xc000138280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:31:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88 -2018/12/20 20:31:44 Try to remove 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb (1015EA63-7421-417D-BB51-E5193061C551) -2018/12/20 20:31:44 removed [0xc000024c80] -+ echo TEST /tmp/futk925337781/89 -TEST /tmp/futk925337781/89 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/89 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:33:02 Listening on 192.168.0.1:8080 at 2018-12-20 20:33:02.283415483 -0800 PST m=+0.005258247 -2018/12/20 20:34:55 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:36:31 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:36:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/89 -2018/12/20 20:36:31 Try to remove F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe (F80697E9-7FD6-4665-8646-88E33EF71DFC) -2018/12/20 20:36:31 removed [0xc000024500] -+ echo TEST /tmp/futk925337781/90 -TEST /tmp/futk925337781/90 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/90 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:37:49 Listening on 192.168.0.1:8080 at 2018-12-20 20:37:49.134772319 -0800 PST m=+0.002789523 -2018/12/20 20:39:43 Accepted &{{0xc00013e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:41:19 Accepted &{{0xc000146080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:41:19 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90 -2018/12/20 20:41:19 Try to remove 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 (9E8DD95D-868B-41A4-966C-107338C291BB) -2018/12/20 20:41:19 removed [0xc008190300] -+ echo TEST /tmp/futk925337781/91 -TEST /tmp/futk925337781/91 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/91 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:42:36 Listening on 192.168.0.1:8080 at 2018-12-20 20:42:36.724654358 -0800 PST m=+0.004763851 -2018/12/20 20:44:30 Accepted &{{0xc00015e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:46:06 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:46:06 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91 -2018/12/20 20:46:06 Try to remove BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime (BB1FBD4F-2E30-4793-9BED-74F672BC8FFE) -2018/12/20 20:46:06 removed [0xc008191000] -+ echo TEST /tmp/futk925337781/92 -TEST /tmp/futk925337781/92 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/92 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:47:23 Listening on 192.168.0.1:8080 at 2018-12-20 20:47:23.579420321 -0800 PST m=+0.005093306 -2018/12/20 20:49:17 Accepted &{{0xc00014c080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:50:53 Accepted &{{0xc000150080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:50:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92 -2018/12/20 20:50:53 Try to remove DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe (DC3641B8-2FA8-4ED3-BC1F-F9962A03454B) -2018/12/20 20:50:53 removed [0xc008191780] -+ echo TEST /tmp/futk925337781/93 -TEST /tmp/futk925337781/93 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/93 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:52:10 Listening on 192.168.0.1:8080 at 2018-12-20 20:52:10.354211095 -0800 PST m=+0.005311245 -2018/12/20 20:54:00 Accepted &{{0xc000164100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 20:55:36 Accepted &{{0xc000164200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 20:55:36 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/93 -2018/12/20 20:55:36 Try to remove 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA (7AB22C56-2510-4FD2-AC18-57394419FBAB) -2018/12/20 20:55:36 removed [0xc008190000] -+ echo TEST /tmp/futk925337781/94 -TEST /tmp/futk925337781/94 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/94 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 20:56:53 Listening on 192.168.0.1:8080 at 2018-12-20 20:56:53.613061296 -0800 PST m=+0.005014177 -2018/12/20 20:58:47 Accepted &{{0xc00014e080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:00:23 Accepted &{{0xc00014e180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:00:23 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94 -2018/12/20 21:00:23 Try to remove D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 (D6207835-B7E3-4FF8-B276-CDE3E52206BC) -2018/12/20 21:00:23 removed [0xc008190180] -+ echo TEST /tmp/futk925337781/95 -TEST /tmp/futk925337781/95 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/95 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:01:40 Listening on 192.168.0.1:8080 at 2018-12-20 21:01:40.701053391 -0800 PST m=+0.004683518 -2018/12/20 21:03:34 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:05:10 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:05:10 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95 -2018/12/20 21:05:10 Try to remove 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP (45055A79-B385-4705-A3AC-11CE99A1CB47) -2018/12/20 21:05:10 removed [0xc000025b80] -+ echo TEST /tmp/futk925337781/96 -TEST /tmp/futk925337781/96 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/96 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:06:27 Listening on 192.168.0.1:8080 at 2018-12-20 21:06:27.528188918 -0800 PST m=+0.005195378 -2018/12/20 21:08:21 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:09:57 Accepted &{{0xc000142100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:09:57 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96 -2018/12/20 21:09:57 Try to remove 2E6A521C-F697-402D-9774-98B2B7E140F3:EFI_FV_FILETYPE_DRIVER:PlatformType (2E6A521C-F697-402D-9774-98B2B7E140F3) -2018/12/20 21:09:57 removed [0xc000025680] -+ echo TEST /tmp/futk925337781/97 -TEST /tmp/futk925337781/97 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/97 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:11:14 Listening on 192.168.0.1:8080 at 2018-12-20 21:11:14.768610516 -0800 PST m=+0.005840572 -2018/12/20 21:14:14 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:14:14.769035167 -0800 PST m=+180.006265062 -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 We are now done ...................... -2018/12/20 21:14:14 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:14:14 Try to remove 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir (4A3602BC-1A05-4C82-99B4-588CD2A32CD5) -2018/12/20 21:14:14 removed [0xc000024e80] -+ echo TEST /tmp/futk925337781/98 -TEST /tmp/futk925337781/98 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/98 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:15:32 Listening on 192.168.0.1:8080 at 2018-12-20 21:15:32.114669369 -0800 PST m=+0.004777217 -2018/12/20 21:17:25 Accepted &{{0xc000144100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:19:02 Accepted &{{0xc000144200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:19:02 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/98 -2018/12/20 21:19:02 Try to remove 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe (7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF) -2018/12/20 21:19:02 removed [0xc000025600] -+ echo TEST /tmp/futk925337781/99 -TEST /tmp/futk925337781/99 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/99 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:20:19 Listening on 192.168.0.1:8080 at 2018-12-20 21:20:19.466768989 -0800 PST m=+0.004988781 -2018/12/20 21:22:13 Accepted &{{0xc00015a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:23:49 Accepted &{{0xc00015a180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:23:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99 -2018/12/20 21:23:49 Try to remove F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 (F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4) -2018/12/20 21:23:49 removed [0xc008190500] -+ echo TEST /tmp/futk925337781/100 -TEST /tmp/futk925337781/100 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/100 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:25:06 Listening on 192.168.0.1:8080 at 2018-12-20 21:25:06.333436059 -0800 PST m=+0.004846825 -2018/12/20 21:26:56 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:28:33 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:28:33 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLightningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100 -2018/12/20 21:28:33 Try to remove 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP (5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9) -2018/12/20 21:28:33 removed [0xc000025d80] -+ echo TEST /tmp/futk925337781/101 -TEST /tmp/futk925337781/101 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/101 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:29:50 Listening on 192.168.0.1:8080 at 2018-12-20 21:29:50.189982224 -0800 PST m=+0.004673167 -2018/12/20 21:31:44 Accepted &{{0xc000022080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:33:20 Accepted &{{0xc000144100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:33:20 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeLightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101 -2018/12/20 21:33:20 Try to remove 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe (22EA234F-E72A-11E4-91F9-28D2447C4829) -2018/12/20 21:33:20 removed [0xc008191700] -+ echo TEST /tmp/futk925337781/102 -TEST /tmp/futk925337781/102 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/102 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:34:37 Listening on 192.168.0.1:8080 at 2018-12-20 21:34:37.715295132 -0800 PST m=+0.005162615 -2018/12/20 21:36:31 Accepted &{{0xc000146080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:38:07 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:38:07 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102 -2018/12/20 21:38:07 Try to remove 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe (529D3F93-E8E9-4E73-B1E1-BDF6A9D50113) -2018/12/20 21:38:07 removed [0xc008191680] -+ echo TEST /tmp/futk925337781/103 -TEST /tmp/futk925337781/103 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/103 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:39:24 Listening on 192.168.0.1:8080 at 2018-12-20 21:39:24.640238823 -0800 PST m=+0.005299504 -2018/12/20 21:41:18 Accepted &{{0xc000154080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:42:54 Accepted &{{0xc000154180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:42:54 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/103 -2018/12/20 21:42:54 Try to remove CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe (CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600) -2018/12/20 21:42:54 removed [0xc000024380] -+ echo TEST /tmp/futk925337781/104 -TEST /tmp/futk925337781/104 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/104 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:44:11 Listening on 192.168.0.1:8080 at 2018-12-20 21:44:11.365626903 -0800 PST m=+0.004529410 -2018/12/20 21:46:05 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:47:41 Accepted &{{0xc000142080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:47:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/104 -2018/12/20 21:47:41 Try to remove 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP (7474A4C6-7F30-4DE1-BC68-DA5EFE615B52) -2018/12/20 21:47:41 removed [0xc000025c00] -+ echo TEST /tmp/futk925337781/105 -TEST /tmp/futk925337781/105 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/105 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:48:58 Listening on 192.168.0.1:8080 at 2018-12-20 21:48:58.690742703 -0800 PST m=+0.004760520 -2018/12/20 21:50:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 21:52:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 21:52:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105 -2018/12/20 21:52:28 Try to remove 788DD6A1-F1EE-4BBA-A925-C0E7D66271BD:EFI_FV_FILETYPE_DRIVER:SystemBoardDxe (788DD6A1-F1EE-4BBA-A925-C0E7D66271BD) -2018/12/20 21:52:28 removed [0xc000025a00] -+ echo TEST /tmp/futk925337781/106 -TEST /tmp/futk925337781/106 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/106 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:53:45 Listening on 192.168.0.1:8080 at 2018-12-20 21:53:45.754837562 -0800 PST m=+0.005289240 -2018/12/20 21:56:45 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 21:56:45.755291306 -0800 PST m=+180.005742827 -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 We are now done ...................... -2018/12/20 21:56:45 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 21:56:45 Try to remove 90CB75DB-71FC-489D-AACF-943477EC7212:EFI_FV_FILETYPE_DRIVER:SmartTimer (90CB75DB-71FC-489D-AACF-943477EC7212) -2018/12/20 21:56:45 removed [0xc000024980] -+ echo TEST /tmp/futk925337781/107 -TEST /tmp/futk925337781/107 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/107 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 21:58:03 Listening on 192.168.0.1:8080 at 2018-12-20 21:58:03.298097231 -0800 PST m=+0.004954004 -2018/12/20 22:01:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:01:03.29856244 -0800 PST m=+180.005418999 -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 We are now done ...................... -2018/12/20 22:01:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:01:03 Try to remove DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup (DC92A37B-4AC5-4117-AABB-019FFC0FD06A) -2018/12/20 22:01:03 removed [0xc000025980] -+ echo TEST /tmp/futk925337781/108 -TEST /tmp/futk925337781/108 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/108 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:02:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:02:20.257288701 -0800 PST m=+0.004764903 -2018/12/20 22:04:14 Accepted &{{0xc000140080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:05:49 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:05:49 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/108 -2018/12/20 22:05:49 Try to remove B601F8C4-43B7-4784-95B1-F4226CB40CEE:EFI_FV_FILETYPE_DRIVER:RuntimeDxe (B601F8C4-43B7-4784-95B1-F4226CB40CEE) -2018/12/20 22:05:49 removed [0xc008190d80] -+ echo TEST /tmp/futk925337781/109 -TEST /tmp/futk925337781/109 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/109 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:07:06 Listening on 192.168.0.1:8080 at 2018-12-20 22:07:06.847850404 -0800 PST m=+0.005167920 -2018/12/20 22:10:06 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:10:06.848302351 -0800 PST m=+180.005619719 -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 We are now done ...................... -2018/12/20 22:10:06 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:10:06 Try to remove 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 (9AE51047-E0B9-4A50-9E72-84E359D20189) -2018/12/20 22:10:06 removed [0xc008190200] -+ echo TEST /tmp/futk925337781/110 -TEST /tmp/futk925337781/110 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/110 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:11:23 Listening on 192.168.0.1:8080 at 2018-12-20 22:11:23.961190693 -0800 PST m=+0.005224928 -2018/12/20 22:13:17 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:14:53 Accepted &{{0xc000022100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:14:53 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110 -2018/12/20 22:14:53 Try to remove C1C418F9-591D-461C-82A2-B9CD96DFEA86:EFI_FV_FILETYPE_DRIVER:LegacyInterrupt (C1C418F9-591D-461C-82A2-B9CD96DFEA86) -2018/12/20 22:14:53 removed [0xc000024900] -+ echo TEST /tmp/futk925337781/111 -TEST /tmp/futk925337781/111 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/111 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:16:10 Listening on 192.168.0.1:8080 at 2018-12-20 22:16:10.861995689 -0800 PST m=+0.004932345 -2018/12/20 22:18:03 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:21:03 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:21:03.797324572 -0800 PST m=+292.940261077 -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 We are now done ...................... -2018/12/20 22:21:03 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:21:03 Try to remove 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 (7FD082A9-3D6B-44E3-9C31-74D6B80F965C) -2018/12/20 22:21:03 removed [0xc008190100] -+ echo TEST /tmp/futk925337781/112 -TEST /tmp/futk925337781/112 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/112 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:22:20 Listening on 192.168.0.1:8080 at 2018-12-20 22:22:20.816990902 -0800 PST m=+0.005099742 -2018/12/20 22:24:14 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:25:50 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:25:50 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112 -2018/12/20 22:25:50 Try to remove A062CF1F-8473-4AA3-8793-600BC4FFE9A8:EFI_FV_FILETYPE_DRIVER:CsmDxe (A062CF1F-8473-4AA3-8793-600BC4FFE9A8) -2018/12/20 22:25:50 removed [0xc000025280] -+ echo TEST /tmp/futk925337781/113 -TEST /tmp/futk925337781/113 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/113 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:27:07 Listening on 192.168.0.1:8080 at 2018-12-20 22:27:07.652741885 -0800 PST m=+0.005140945 -2018/12/20 22:28:57 Accepted &{{0xc000164000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:31:57 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 22:31:57.349093708 -0800 PST m=+289.701492554 -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 We are now done ...................... -2018/12/20 22:31:57 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 22:31:57 Try to remove 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen (9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36) -2018/12/20 22:31:57 removed [0xc008191a00] -+ echo TEST /tmp/futk925337781/114 -TEST /tmp/futk925337781/114 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/114 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:33:14 Listening on 192.168.0.1:8080 at 2018-12-20 22:33:14.943430764 -0800 PST m=+0.005762702 -2018/12/20 22:35:08 Accepted &{{0xc000158100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:36:44 Accepted &{{0xc000158200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:36:44 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/114 -2018/12/20 22:36:44 Try to remove CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB (CD7C839D-0521-4B26-9476-9FF2CB70649A) -2018/12/20 22:36:44 removed [0xc008190700] -+ echo TEST /tmp/futk925337781/115 -TEST /tmp/futk925337781/115 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/115 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:38:01 Listening on 192.168.0.1:8080 at 2018-12-20 22:38:01.625109288 -0800 PST m=+0.004427742 -2018/12/20 22:39:55 Accepted &{{0xc000142080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:41:31 Accepted &{{0xc000196000}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:41:31 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115 -2018/12/20 22:41:31 Try to remove CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage (CDC1C80D-E6D3-4A42-9229-75F3BEFCF109) -2018/12/20 22:41:31 removed [0xc000025000] -+ echo TEST /tmp/futk925337781/116 -TEST /tmp/futk925337781/116 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/116 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:42:48 Listening on 192.168.0.1:8080 at 2018-12-20 22:42:48.916248401 -0800 PST m=+0.004366302 -2018/12/20 22:44:42 Accepted &{{0xc000140100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:46:18 Accepted &{{0xc000140200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:46:18 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSetupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116 -2018/12/20 22:46:18 Try to remove 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 (67820532-7613-4DD3-9ED7-3D9BE3A7DA63) -2018/12/20 22:46:18 removed [0xc000024600] -+ echo TEST /tmp/futk925337781/117 -TEST /tmp/futk925337781/117 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/117 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:47:35 Listening on 192.168.0.1:8080 at 2018-12-20 22:47:35.582221866 -0800 PST m=+0.004836803 -2018/12/20 22:49:25 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:51:01 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:51:01 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/117 -2018/12/20 22:51:01 Try to remove E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB (E6DC9900-CCF6-452B-85FA-C7F1E52F0152) -2018/12/20 22:51:01 removed [0xc008190780] -+ echo TEST /tmp/futk925337781/118 -TEST /tmp/futk925337781/118 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/118 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:52:18 Listening on 192.168.0.1:8080 at 2018-12-20 22:52:18.725295322 -0800 PST m=+0.005087849 -2018/12/20 22:54:12 Accepted &{{0xc000146100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 22:55:48 Accepted &{{0xc000022080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 22:55:48 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118 -2018/12/20 22:55:48 Try to remove BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig (BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4) -2018/12/20 22:55:48 removed [0xc000024c00] -+ echo TEST /tmp/futk925337781/119 -TEST /tmp/futk925337781/119 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/119 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 22:57:05 Listening on 192.168.0.1:8080 at 2018-12-20 22:57:05.963597055 -0800 PST m=+0.004854273 -2018/12/20 22:58:59 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:00:35 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:00:35 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/119 -2018/12/20 23:00:35 Try to remove 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 (7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57) -2018/12/20 23:00:35 removed [0xc008190080] -+ echo TEST /tmp/futk925337781/120 -TEST /tmp/futk925337781/120 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/120 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:01:52 Listening on 192.168.0.1:8080 at 2018-12-20 23:01:52.499126546 -0800 PST m=+0.002942545 -2018/12/20 23:03:46 Accepted &{{0xc00013a080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:05:22 Accepted &{{0xc000140100}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:05:22 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120 -2018/12/20 23:05:22 Try to remove 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe (025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A) -2018/12/20 23:05:22 removed [0xc008191600] -+ echo TEST /tmp/futk925337781/121 -TEST /tmp/futk925337781/121 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/121 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:06:39 Listening on 192.168.0.1:8080 at 2018-12-20 23:06:39.391761255 -0800 PST m=+0.004991323 -2018/12/20 23:08:33 Accepted &{{0xc00016e000}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:10:08 Accepted &{{0xc000022180}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:10:08 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/121 -2018/12/20 23:10:08 Try to remove 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe (0718AD81-F26A-4850-A6EC-F268E309D707) -2018/12/20 23:10:08 removed [0xc008190a00] -+ echo TEST /tmp/futk925337781/122 -TEST /tmp/futk925337781/122 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/122 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:11:25 Listening on 192.168.0.1:8080 at 2018-12-20 23:11:25.846974946 -0800 PST m=+0.005090289 -2018/12/20 23:13:19 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:14:55 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:14:55 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122 -2018/12/20 23:14:55 Try to remove 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 (8958EDFF-02F7-4E49-87B1-FBA4BE4E8768) -2018/12/20 23:14:55 removed [0xc008190600] -+ echo TEST /tmp/futk925337781/123 -TEST /tmp/futk925337781/123 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/123 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:16:12 Listening on 192.168.0.1:8080 at 2018-12-20 23:16:12.096148547 -0800 PST m=+0.005148276 -2018/12/20 23:18:05 Accepted &{{0xc000022180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:19:41 Accepted &{{0xc000022280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:19:41 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDxeLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123 -2018/12/20 23:19:41 Try to remove 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport (34FB5A1B-E3CD-4893-9403-0A39BA62FDA0) -2018/12/20 23:19:41 removed [0xc008191180] -+ echo TEST /tmp/futk925337781/124 -TEST /tmp/futk925337781/124 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/124 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:20:58 Listening on 192.168.0.1:8080 at 2018-12-20 23:20:58.284506368 -0800 PST m=+0.004793942 -2018/12/20 23:22:52 Accepted &{{0xc000022100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:24:28 Accepted &{{0xc000022200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:24:28 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/124 -2018/12/20 23:24:28 Try to remove 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE (4551F2F5-C684-4F27-936F-C7B04A5C5FF1) -2018/12/20 23:24:28 removed [0xc0084f8980] -+ echo TEST /tmp/futk925337781/125 -TEST /tmp/futk925337781/125 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/125 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:25:44 Listening on 192.168.0.1:8080 at 2018-12-20 23:25:44.854032771 -0800 PST m=+0.005205096 -2018/12/20 23:27:38 Accepted &{{0xc000150080}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:29:14 Accepted &{{0xc000152080}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:29:14 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/125 -2018/12/20 23:29:14 Try to remove 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe (5AAB83E5-F027-4CA7-BFD0-16358CC9E453) -2018/12/20 23:29:14 removed [0xc000024a80] -+ echo TEST /tmp/futk925337781/126 -TEST /tmp/futk925337781/126 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/126 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:30:31 Listening on 192.168.0.1:8080 at 2018-12-20 23:30:31.183744468 -0800 PST m=+0.005385213 -2018/12/20 23:32:24 Accepted &{{0xc000150100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2018/12/20 23:34:00 Accepted &{{0xc000150200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2018/12/20 23:34:00 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/126 -2018/12/20 23:34:00 Try to remove 62D171CB-78CD-4480-8678-C6A2A797A8DE:EFI_FV_FILETYPE_DRIVER:CpuArchDxe (62D171CB-78CD-4480-8678-C6A2A797A8DE) -2018/12/20 23:34:00 removed [0xc000024580] -+ echo TEST /tmp/futk925337781/127 -TEST /tmp/futk925337781/127 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/127 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:35:17 Listening on 192.168.0.1:8080 at 2018-12-20 23:35:17.59639142 -0800 PST m=+0.005489228 -2018/12/20 23:38:17 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:38:17.596917075 -0800 PST m=+180.006014652 -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 We are now done ...................... -2018/12/20 23:38:17 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:38:17 Try to remove CBC59C4A-383A-41EB-A8EE-4498AEA567E4:EFI_FV_FILETYPE_DRIVER:FlashDriver (CBC59C4A-383A-41EB-A8EE-4498AEA567E4) -2018/12/20 23:38:17 removed [0xc0084f8280] -+ echo TEST /tmp/futk925337781/128 -TEST /tmp/futk925337781/128 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/128 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -r -2018/12/20 23:39:34 Listening on 192.168.0.1:8080 at 2018-12-20 23:39:34.420211304 -0800 PST m=+0.005312749 -2018/12/20 23:42:34 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 23:42:34.420688673 -0800 PST m=+180.005789950 -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -2018/12/20 23:42:34 We are now done ...................... -2018/12/20 23:42:34 accept tcp 192.168.0.1:8080: i/o timeout -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK -[310 [/tmp/futk925337781/0 /tmp/futk925337781/2 /tmp/futk925337781/3 /tmp/futk925337781/5 /tmp/futk925337781/6 /tmp/futk925337781/7 /tmp/futk925337781/8 /tmp/futk925337781/9 /tmp/futk925337781/10 /tmp/futk925337781/11 /tmp/futk925337781/12 /tmp/futk925337781/13 /tmp/futk925337781/14 /tmp/futk925337781/16 /tmp/futk925337781/19 /tmp/futk925337781/20 /tmp/futk925337781/21 /tmp/futk925337781/23 /tmp/futk925337781/24 /tmp/futk925337781/25 /tmp/futk925337781/26 /tmp/futk925337781/27 /tmp/futk925337781/28 /tmp/futk925337781/30 /tmp/futk925337781/31 /tmp/futk925337781/32 /tmp/futk925337781/33 /tmp/futk925337781/34 /tmp/futk925337781/35 /tmp/futk925337781/36 /tmp/futk925337781/38 /tmp/futk925337781/41 /tmp/futk925337781/42 /tmp/futk925337781/43 /tmp/futk925337781/44 /tmp/futk925337781/45 /tmp/futk925337781/46 /tmp/futk925337781/47 /tmp/futk925337781/48 /tmp/futk925337781/50 /tmp/futk925337781/51 /tmp/futk925337781/54 /tmp/futk925337781/55 /tmp/futk925337781/57 /tmp/futk925337781/58 /tmp/futk925337781/59 /tmp/futk925337781/61 /tmp/futk925337781/62 /tmp/futk925337781/63 /tmp/futk925337781/64 /tmp/futk925337781/66 /tmp/futk925337781/67 /tmp/futk925337781/68 /tmp/futk925337781/69 /tmp/futk925337781/70 /tmp/futk925337781/71 /tmp/futk925337781/72 /tmp/futk925337781/73 /tmp/futk925337781/74 /tmp/futk925337781/75 /tmp/futk925337781/76 /tmp/futk925337781/78 /tmp/futk925337781/79 /tmp/futk925337781/80 /tmp/futk925337781/83 /tmp/futk925337781/84 /tmp/futk925337781/86 /tmp/futk925337781/88 /tmp/futk925337781/89 /tmp/futk925337781/90 /tmp/futk925337781/91 /tmp/futk925337781/92 /tmp/futk925337781/93 /tmp/futk925337781/94 /tmp/futk925337781/95 /tmp/futk925337781/96 /tmp/futk925337781/98 /tmp/futk925337781/99 /tmp/futk925337781/100 /tmp/futk925337781/101 /tmp/futk925337781/102 /tmp/futk925337781/103 /tmp/futk925337781/104 /tmp/futk925337781/105 /tmp/futk925337781/108 /tmp/futk925337781/110 /tmp/futk925337781/112 /tmp/futk925337781/114 /tmp/futk925337781/115 /tmp/futk925337781/116 /tmp/futk925337781/117 /tmp/futk925337781/118 /tmp/futk925337781/119 /tmp/futk925337781/120 /tmp/futk925337781/121 /tmp/futk925337781/122 /tmp/futk925337781/123 /tmp/futk925337781/124 /tmp/futk925337781/125 /tmp/futk925337781/126]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk925337781/ -[?2004l128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l !$ -[?2004lls -l /tmp/futk925337781/ -total 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -[?2004l98.splat config-4.13.0-rc7 fail.bin linux removeBMCcrap.bin RUN3 x.bin -bin.reset DIT futk.remove.99 LIST removemorecrap.bin RUN4 xxx -blacklist dxeclean.bin initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentmorecrap.bin DXECLEANER ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -commentsetupcrap.bin EATIT L NOTES rom211.rom uinit -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mroe Makefile -[?2004lbash: mroe: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u --root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/c -mds/elvish github.com/u-root/u-root/cmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo *128* -[?2004l*128* -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp tmp/fucp /tmp/futk925337781/128 futk.ls -l /tmp/futk925337781/ -[?2004ltotal 32768 --rw-r--r-- 1 rminnich primarygroup 33554432 Dec 20 23:38 128 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/ -0_motd_lastrun futk925337781/ -bad Grammar__py_binary_resource_gagent__qaVS9l.pickle -cacert__py_binary_resource_gagent__WVJMJH.pem .ICE-unix/ -cacerts__py_binary_resource_goobuntu-bridge-server__0cFwbz.txt initgoogle_syslog_dir.120/ -cacerts__py_binary_resource_goobuntu-bridge-server__BRBH19.txt initgoogle_syslog_dir.65534/ -cacerts__py_binary_resource_goobuntu-bridge-server__kzdZ03.txt initramfs.linux_amd64.cpio -cacerts__py_binary_resource_goobuntu-bridge-server___LaR15.txt libcapstone__py_binary_resource_gagent__HpHB0Q.so -cacerts__py_binary_resource_goobuntu-bridge-server__mnqRnb.txt ns.rminnich.:0/ -cacerts__py_binary_resource_goobuntu-bridge-server__ONKyLI.txt PatternGrammar__py_binary_resource_gagent__x6BiZ6.pickle -cacerts__py_binary_resource_goobuntu-bridge-server__R9ZskZ.txt ssh-bllrPgoTRFh5/ -cacerts__py_binary_resource_goobuntu-bridge-server__xvu6eS.txt swapcheck_record_156049 -cacerts__py_binary_resource_goobuntu-bridge-server__zJQzMh.txt tmpAVIbld__unpar__.runfiles/ -.com.google.Chrome.aE4Nzc/ tmplql2t9d_/ -.com.google.Chrome.qSI7TY/ tmpm1q2cyn4/ -.com.google.Chrome.sCGM9z/ tmp_m2klrxx/ -.com.google.Chrome.svwoCa/ tmux-156049/ -env.boot.1544790141.286376.174830.d/ .X0-lock -env.boot.1545057395.563833.8971.d/ .X11-unix/ -env.boot.1545224367.436330.68006.d/ .XIM-unix/ -env.boot.1545300877.259088.21394.d/ xxx -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cp /tmp/futk925337781/128 rom.futk /tmpfu/futk925337781/128 fv -[?2004l2019/01/03 11:26:28 Found 211 things -[211]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls *211* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cmp rom211.rom /tm/fp/futk925337781/128 rom128 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ rm /tmpfu/futk925337781/*-/tmp/futk925337781r/tmp/futk925337781f/tmp/futk925337781 /tmp/futk925337781 -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls idls ~/.ssh -[?2004lagent-stuff.xcpu.mtv.corp.google.com config~ github id_rsa_corp-old.pub jkhh5.pub -agent.xcpu.mtv.corp.google.com console_rsa git.pub id_rsa_corp.pub jkhh5root.pub -authorized_keys console_rsa.pub google_compute_engine id_rsa_google-cert.pub john -authorized_keys2 devlabs_id_rsa google_compute_engine.pub id_rsa_google-old-cert.pub known_hosts -backup-20170411-104708 devlabs_id_rsa.pub google_compute_known_hosts id_rsa_google-old.pub localjkhh5.pub -chromium dropbear_rsa id_rsa id_rsa_google.pub sk-passwords -chromium.pub dropbear_rsa.pub id_rsa_corp-cert.pub id_rsa.pub skynet -config git id_rsa_corp-old-cert.pub jkhh34.pub skynet.pub -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25h [?25l1,1Top[?25h[?25l/[?2004h[?25h-[?25l[?25hr[?25l[?25h [?25l23,35-42 Top[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l [?25h/[?25l[?25h=[?25l[?25h-[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h-[?25l[?25hr[?25l[?25h/[?25l[?25hp[?25l[?25h [?25lPattern not found: -r23,35-42 Top[?25h[?25l:[?2004h[?25he[?25l[?25h[?25l [?25hD[?25l[?25hX[?25l[?25h...[?25lECLEANER[?25h [?25l"DXECLEANER" 17L, 361C#!/bin/bashset -e -set -x -echo TEST $1echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -recho "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l0[?25h[?25l]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER9 [?25h[?25l-- INSERT --16,10All[?25h[?25lm1[?25h[?25lo2[?25h[?25ld3[?25h[?25le4[?25h[?25l5[?25h[?25lt6[?25h[?25le7[?25h[?25ls8[?25h[?25lt9[?25h[?25le20[?25h[?25lr1[?25h[?25l16,20All[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 371C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9669C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files /usr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/uu-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/ccmds/elvish github.com/u-root/u-root/cmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l2,0-1[?25h[?25l3,1 [?25h[?25l4,1-8[?25h[?25l5,0-1[?25h[?25l6,1 [?25h[?25l7,0-1[?25h[?25l8,1 [?25h[?25l9,1-8[?25h[?25l10,0-1[?25h[?25l1,1 [?25h[?25l2,1-8[?25h[?25l3,0-1[?25h[?25l4,1 [?25h[?25l5,1-8[?25h[?25l6,0-1[?25h[?25l7,1 [?25h[?25l8,1-8[?25h[?25l9[?25h[?25l20,1 [?25h[?25l1,1-8[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l3[?25h[?25l335-342[?25h[?25l0-337[?25h[?25l29-336[?25h[?25l5-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l2-319[?25h[?25l3-320[?25h[?25l7-324[?25h[?25l8-325[?25h[?25l9-326[?25h[?25l20-327[?25h[?25l1-328[?25h[?25l2-329[?25h[?25l3-330[?25h[?25l4-331[?25h[?25l5-332[?25h[?25l-- INSERT --23,325-332 Top[?25h[?25lxcmds/sshd6-333]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l23,325-332 Top[?25h[?25l36-343[?25h[?25l-- INSERT --23,337-344 Top[?25h[?25l8-345[?25h[?25li9-346[?25h[?25ld40-347[?25h[?25l_1-348[?25h[?25lr2-349[?25h[?25ls3-350[?25h[?25la4-351[?25h[?25l.5-352[?25h[?25lp6-353[?25h[?25lu7-354[?25h[?25lb8-355[?25h[?25l23,347-354 Top[?25h[?25l1 change; before #2 8 seconds ago23,336-343 Top[?25h[?25l1-338[?25h[?25l0-337[?25h[?25l25-332[?25h[?25l4-331[?25h[?25l0-327[?25h[?25l19-326[?25h[?25l8-325[?25h[?25l7-324[?25h[?25l3-320[?25h[?25l2-319[?25h[?25l1-318[?25h[?25l0-317[?25h[?25l07-314[?25h[?25l6-313[?25h[?25l0-307[?25h[?25l290-29[?25h[?25l89-296[?25h[?25l5-292[?25h[?25l4-291[?25h[?25l0-287[?25h[?25l79-286[?25h[?25l8-285[?25h[?25l7-284[?25h[?25l3-280[?25h[?25l2-279[?25h[?25l1-278[?25h[?25l0-277[?25h[?25l67-274[?25h[?25l6-273[?25h[?25l0-267[?25h[?25l55-262[?25h[?25l4-261[?25h[?25l0-257[?25h[?25l49-256[?25h[?25l1-8 [?25h[?25l2-9[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)uu-ccm7-24[?25h[?25l(GOPATH)uu-ccm9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l7-54[?25h[?25l8-55[?25h[?25l9-56[?25h[?25l50-57[?25h[?25l4-61[?25h[?25l5-62[?25h[?25l8-65[?25h[?25l9-66[?25h[?25l64-71[?25h[?25l5-72[?25h[?25l8-75[?25h[?25l9-76[?25h[?25l75-82[?25h[?25l6-83[?25h[?25l5-82[?25h[?25lusr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u--root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rroot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lr/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmdss/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/bin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lbin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd [?25h[?25lin/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd [?25h[?25ln/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l/sshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd [?25h[?25lsshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd [?25h[?25lshfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd [?25h[?25lhfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25lfs github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd [?25h[?25l github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l-- INSERT --23,75-82 Top[?25h[?25li github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/innit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd6-83[?25h[?25ld github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iinit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd7-84[?25h[?25l_ github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds//init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish  github.com/u-root/u-root/xcmds/sshd8-85[?25h[?25lr github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdss/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvishh github.com/u-root/u-root/xcmds/sshd9-86[?25h[?25ls github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd80-87[?25h[?25la github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elviish github.com/u-root/u-root/xcmds/sshd1-88[?25h[?25l. github.com/linuxboot/dut/uinit github.com/u-root/u-root/ccmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvvish github.com/u-root/u-root/xcmds/sshd2-89[?25h[?25lp github.com/linuxboot/dut/uinit github.com/u-root/u-root//cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/ellvish github.com/u-root/u-root/xcmds/sshd3-90[?25h[?25lu github.com/linuxboot/dut/uinit github.com/u-root/u-roott/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/eelvish github.com/u-root/u-root/xcmds/sshd4-91[?25h[?25lb github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshd5-92[?25h[?25l23,84-91 Top[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9666C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls -l idcp ~/.ssh/id_rsa.pub . -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:28:24 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:28:24 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:28:24 "github.com/u-root/u-root/xcmds/sshd" is neither package or path/glob: cannot find package "github.com/u-root/u-root/xcmds/sshd" in any of: - /usr/local/src/projects/nobinaryblobs/go1.6/src/github.com/u-root/u-root/xcmds/sshd (from $GOROOT) - /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/xcmds/sshd (from $GOPATH) -exit status 1 -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 1 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ maek i -[?2004lbash: maek: command not found -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -# command-line-arguments -/usr/local/google/home/rminnich/go/src/github.com/u-root/u-root/u-root.go:151:13: undefined: templates -Makefile:21: recipe for target 'i' failed -make: *** [i] Error 2 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ (reverse-i-search)`': [13@v': vi Makefile[1@i[1@  ]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi Makefile  -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"Makefile" 329L, 9666C▽ [>c]10;?]11;?default: build - -build:echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d:futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boott/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98:futk 98.splat fv ./DXECLEANER clean - -d4:futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage:(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i:(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build)cp ~/go/src/github.com/linuxboot/dut/uinit/uinit .go run $(GOPATH)/src/github.com/u-root/u-root/u-root.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-rooot/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds//elvish github.com/u-root/u-root/xcmds/sshdcp /tmp/initramfs.linux_amd64.cpio .lzma -f initramfs.linux_amd64.cpiols -l initramfs*cp *lzma linux - -cleanme:~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q:/usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit:jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxxjq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all:~/go/bin/utk tyan7102.bin \remove Ip.* \remove Tcp.* \remove Usb.* \remove Udp.* \remove Dhcp.* \remove .np.* \remove .tftp.* \remove Http.* \remove .*Dns.* \remove Arp.* \remove .*NetworkStackSetupScreen.* \remove Iscsi.* \remove Scsi.* \remove Fat.* \remove Ahci.* \remove Partition.* \remove Sata.* \remove Disk.* \remove Whea.* \remove .*Pxe.* \remove Ata.* \replace_pe32 FullShell bzImage \save x.bin \remove .*Ipmi.* \save ipmisucks.bin \remove DxeIpmiBmcInitialize \remove SmmBmcElog \remove BmcAcpi \remove SmmIpmiBmcInitialize \remove BmcElog \remove BmcLanConfig \save removeBMCcrap.bin \remove SecurityStubDxe \save removesomecrap.bin \comment TimestampDxe \comment Legacy8259 \comment HiiDatabase \comment DataHubDxe \comment EnglishDxe \1,1Top]2;Makefile (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hg[?25l[?25ho[?25l[?25h.[?25l[?25hr[?25l[?25hu[?25l[?25hn[?25l[?25h [?25l23,2-9Top[?25h[?25l5-12[?25h[?25l9-16[?25h[?25l11-18[?25h[?25l(GOPATH)oot//e7-24[?25h[?25l(GOPATH)oot//e9-26[?25h[?25l22-29[?25h[?25l3-30[?25h[?25l4-31[?25h[?25l5-32[?25h[?25l6-33[?25h[?25l7-34[?25h[?25l8-35[?25h[?25l9-36[?25h[?25l30-37[?25h[?25l1-38[?25h[?25l2-39[?25h[?25l3-40[?25h[?25l4-41[?25h[?25l5-42[?25h[?25l6-43[?25h[?25l7-44[?25h[?25l8-45[?25h[?25l9-46[?25h[?25l40-47[?25h[?25l1-48[?25h[?25l2-49[?25h[?25l3-50[?25h[?25l4-51[?25h[?25l5-52[?25h[?25l6-53[?25h[?25l7-54[?25h[?25lot.go -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmdds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvissh github.com/u-root/u-root/xcmds/sshd ]2;Makefile + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;Makefile[?25h[?25l -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/iniit github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd [?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"Makefile" 329L, 9656C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make i -[?2004l(cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) -cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . -go run /usr/local/google/home/rminnich/go/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/init github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish github.com/u-root/u-root/xcmds/sshd -2019/01/03 12:46:52 Build environment: GOARCH=amd64 GOOS=linux GOROOT=/usr/local/src/projects/nobinaryblobs/go1.6 GOPATH=/usr/local/google/home/rminnich/go CGO_ENABLED=0 -2019/01/03 12:46:52 Filename is /tmp/initramfs.linux_amd64.cpio -2019/01/03 12:47:00 Successfully wrote initramfs. -cp /tmp/initramfs.linux_amd64.cpio . -lzma -f initramfs.linux_amd64.cpio -ls -l initramfs* --rwxr-xr-x 1 rminnich primarygroup 3027359 Jan 3 12:47 initramfs.linux_amd64.cpio.lzma -cp *lzma linux -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make b -[?2004l(cd linux && make -j32 && ls -l arch/x86/boot/bzImage) -make[1]: Entering directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' - CHK include/config/kernel.release - CHK include/generated/uapi/linux/version.h - CHK include/generated/utsrelease.h - CHK scripts/mod/devicetable-offsets.h - CHK include/generated/timeconst.h - CHK include/generated/bounds.h - CHK include/generated/asm-offsets.h - CALL scripts/checksyscalls.sh - GEN usr/initramfs_data.cpio.lzma - CHK include/generated/compile.h - AS usr/initramfs_data.o - AR usr/built-in.o - CHK kernel/config_data.h - GEN .version - CHK include/generated/compile.h - UPD include/generated/compile.h - CC init/version.o - AR init/built-in.o - AR built-in.o - LD vmlinux.o - MODPOST vmlinux.o - KSYM .tmp_kallsyms1.o -ls KSYM .tmp_kallsyms2.o -rom LD vmlinux -* - SORTEX vmlinux - SYSMAP System.map - Building modules, stage 2. - CC arch/x86/boot/version.o - MODPOST 4 modules - VOFFSET arch/x86/boot/compressed/../voffset.h - OBJCOPY arch/x86/boot/compressed/vmlinux.bin - XZKERN arch/x86/boot/compressed/vmlinux.bin.xz - CC arch/x86/boot/compressed/misc.o - MKPIGGY arch/x86/boot/compressed/piggy.S - AS arch/x86/boot/compressed/piggy.o - DATAREL arch/x86/boot/compressed/vmlinux - LD arch/x86/boot/compressed/vmlinux - ZOFFSET arch/x86/boot/zoffset.h - OBJCOPY arch/x86/boot/vmlinux.bin - AS arch/x86/boot/header.o - LD arch/x86/boot/setup.elf - OBJCOPY arch/x86/boot/setup.bin - BUILD arch/x86/boot/bzImage -Setup is 15580 bytes (padded to 15872 bytes). -System is 5337 kB -CRC 32331d5c -Kernel: arch/x86/boot/bzImage is ready (#79) -make[1]: Leaving directory '/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102/linux' --rw-r----- 1 rminnich eng 5480496 Jan 3 12:47 arch/x86/boot/bzImage -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls rom* -[?2004lrom211.rom -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk rom211.rom fv bz linux/arch/x86/boot/bzImage splat xxx/tmp/xx.rom saverom -[?2004l2019/01/03 12:48:00 Found 211 things -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK -[211 [7C04A583-9E3E-4F1C-AD65-E05268D0B4D1:EFI_FV_FILETYPE_APPLICATION:FullShell]]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r - echo "date" > /dev/ttyUSB1 - ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ more DXECLEANER futk rom211.rom fv linux/arch/x86/boot/bzImage splat /tmp/xx.rom saverom^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ sudo ~rminnich/bin/em100 -c W25Q256FV -s -d /tmp/xx.rom -r -[?2004l[sudo] password for rminnich: -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ cat DXECLEANER -[?2004l#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ echo "./0" > /dev/ttyUSB1 - sleep 5 - echo "./1" > /dev/ttyUSB1 - sleep 10 -  -[?2004l' - - -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ' -[?2004l[?2004h> -[?2004l[?2004h> -[?2004l[?2004h> ^C[?2004l[?2004h[?2004l -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -mode tester -flag provided but not defined: -mode -Usage of ./uinit: - -C configure the network (default true) - -d string - directory to serve (default ".") - -h string - hostname (default "192.168.0.1") - -m string - what mode to run in -- device, tester, or ssh starter (default "device") - -me string - dut hostname (default "192.168.0.2") - -p string - port number (default "8080") -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ vi DXECLEANER -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"DXECLEANER" 17L, 371C▽ [>c]10;?]11;?#!/bin/bash -set -e -set -x -echo TEST $1 -echo "date" > /dev/ttyUSB1 -echo "./0" > /dev/ttyUSB1 -echo "./pg" > /dev/ttyUSB1 -sudo ~rminnich/bin/em100 -c W25Q256FV -s -d $1 -r -echo "date" > /dev/ttyUSB1 -echo "sleeping 50 because this piece of shit can't take it" -sleep 50 -echo "./0" > /dev/ttyUSB1 -sleep 5 -echo "./1" > /dev/ttyUSB1 -sleep 10 -./uinit -mode tester -echo "ALL DONE" -~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All]2;DXECLEANER (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25l/[?2004h[?25hm[?25l[?25ho[?25l[?25hd[?25l[?25he[?25l[?25h [?25l16,10All[?25h[?25l1[?25h[?25lde tester]2;DXECLEANER + (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;DXECLEANER[?25h[?25le tester[?25h[?25l tester[?25h[?25l:[?2004h[?25hw[?25l[?25hq[?25l[?25h [?25l[?2004l"DXECLEANER" 17L, 368C written ]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102 -[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER  -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER -98.splat EATIT LIST RUN3 -bin.reset fail.bin LOG RUN4 -blacklist futk.remove.99/ Makefile RUN4.4.rom -commentmorecrap.bin .gitignore NOTES tyan7102.bin -commentsetupcrap.bin id_rsa.pub removeBMCcrap.bin uinit -config-4.13.0-rc7 initramfs.linux_amd64.cpio.lzma removemorecrap.bin x.bin -DIT ipmisucks.bin removesetupcrap.bin xxx -dxeclean.bin L removesomecrap.bin yyy -DXECLEANER linux/ rom211.rom -]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER more Makefile -[?2004ldefault: build - -build: - echo b to build, i for initramfs, q for qemu, d to dxeclean - -b: buildbzimage - -d: - futk tyan7102.bin fv 'AMITSE|Ata.*|Disk.*|.*Ftp.*|.*Dhcp.*|Tcp.*|.*Pxe.*|.*Udp.*' ix r r tag /tmp/x saverom /tmp/x fv linux/arch/x86/boot -/bzImage splat drop /tmp/x saverom ./DXECLEANER clean - -d98: - futk 98.splat fv ./DXECLEANER clean - -d4: - futk RUN4.4.rom fv ./DXECLEANER clean - -buildbzimage: - (cd linux && make -j32 && ls -l arch/x86/boot/bzImage) - -i: - (cd ~/go/src/github.com/linuxboot/dut/uinit/&&go build) - cp ~/go/src/github.com/linuxboot/dut/uinit/uinit . - go run $(GOPATH)/src/github.com/u-root/u-root -build=bb -files id_rsa.pub github.com/linuxboot/dut/uinit github.com/u-root/u-root/cmds/ini -t github.com/u-root/u-root/xcmds/rush github.com/u-root/u-root/cmds/ls github.com/u-root/u-root/cmds/ip github.com/u-root/u-root/cmds/elvish -github.com/u-root/u-root/xcmds/sshd - cp /tmp/initramfs.linux_amd64.cpio . - lzma -f initramfs.linux_amd64.cpio - ls -l initramfs* - cp *lzma linux - -cleanme: - ~/go/bin/utk dxeclean.bin dxecleaner_blacklist ./DXECLEANER ./blacklist - -q: - /usr/bin/qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -serial stdio -monitor /dev/null -m 8192 -nographic -findit: - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated ' < xxx - jq -c 'to_entries[] | .value | select(.Type == "EFI_FV_FILETYPE_DRIVER") | .Sections [] | .Encapsulated[1] | [.Value.Name]'< xxx - -all: - ~/go/bin/utk tyan7102.bin \ - remove Ip.* \ - remove Tcp.* \ - remove Usb.* \ - remove Udp.* \ - remove Dhcp.* \ - remove .np.* \ - remove .tftp.* \ - remove Http.* \ - remove .*Dns.* \ - remove Arp.* \ - remove .*NetworkStackSetupScreen.* \ - remove Iscsi.* \ - remove Scsi.* \ - remove Fat.* \ - remove Ahci.* \ - remove Partition.* \ - remove Sata.* \ - remove Disk.* \ - remove Whea.* \ - remove .*Pxe.* \ - remove Ata.* \ - replace_pe32 FullShell bzImage \ - save x.bin \ - remove .*Ipmi.* \ - save ipmisucks.bin \ - remove DxeIpmiBmcInitialize \ - remove SmmBmcElog \ - remove BmcAcpi \ - remove SmmIpmiBmcInitialize \ - remove BmcElog \ - remove BmcLanConfig \ - save removeBMCcrap.bin \ - remove SecurityStubDxe \ - save removesomecrap.bin \ - comment TimestampDxe \ - comment Legacy8259 \ - comment HiiDatabase \ - comment DataHubDxe \ - comment EnglishDxe \ ---More--(24%)  comment here \ - comment PcRtc \ - comment FpgaDxe \ - comment LegacyInterrupt \ - comment SmartTimer \ - comment LegacySredir \ - comment LegacyRegion2 \ - comment TcgLegacy \ - comment LegacySmmSredir \ - comment DevicePathDxe \ - comment CpuIo2Dxe \ - comment CpuMpDxe \ - comment SmmAccess \ - comment WdtDxe \ - save commentmorecrap.bin \ - comment SetupConfigUpdateDxeNeonCityEPRP \ - comment StaticSkuDataDxeNeonCityEPRP \ - comment OpromUpdateDxeNeonCityEPRP \ - comment SmbiosDataUpdateDxeNeonCityEPRP \ - comment IioCfgUpdateDxeNeonCityEPRP \ - comment SlotDataUpdateDxeNeonCityEPRP \ - comment SetupConfigUpdateDxeLightningRidgeEXRP \ - comment StaticSkuDataDxeLightningRidgeEXRP \ - comment OpromUpdateDxeLightningRidgeEXRP \ - comment SmbiosDataUpdateDxeLightningRidgeEXRP \ - comment IioCfgUpdateDxeLightningRidgeEXRP \ - comment SlotDataUpdateDxeLightningRidgeEXRP \ - comment OpromUpdateDxeNeonCityFPGA \ - comment SetupConfigUpdateDxeNeonCityFPGA \ - comment SmbiosDataUpdateDxeNeonCityFPGA \ - comment StaticSkuDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeNeonCityFPGA \ - comment SlotDataUpdateDxeNeonCityFPGA \ - comment FpgaConfigDataDxeNeonCityFPGA \ - comment IioCfgUpdateDxeLightningRidgeEXECB1 \ - comment OpromUpdateDxeLightningRidgeEXECB1 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB1 \ - comment SlotDataUpdateDxeLightningRidgeEXECB1 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB1 \ - comment StaticSkuDataDxeLightningRidgeEXECB1 \ - comment IioCfgUpdateDxeLightningRidgeEXECB2 \ - comment OpromUpdateDxeLightningRidgeEXECB2 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB2 \ - comment SlotDataUpdateDxeLightningRidgeEXECB2 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB2 \ - comment StaticSkuDataDxeLightningRidgeEXECB2 \ - comment IioCfgUpdateDxeLightningRidgeEXECB3 \ - comment OpromUpdateDxeLightningRidgeEXECB3 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB3 \ - comment SlotDataUpdateDxeLightningRidgeEXECB3 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB3 \ - comment StaticSkuDataDxeLightningRidgeEXECB3 \ - comment IioCfgUpdateDxeLightningRidgeEXECB4 \ - comment OpromUpdateDxeLightningRidgeEXECB4 \ - comment SetupConfigUpdateDxeLightningRidgeEXECB4 \ - comment SlotDataUpdateDxeLightningRidgeEXECB4 \ - comment SmbiosDataUpdateDxeLightningRidgeEXECB4 \ - comment StaticSkuDataDxeLightningRidgeEXECB4 \ - comment IioCfgUpdateDxeNeonCityEPECB \ - comment OpromUpdateDxeNeonCityEPECB \ - comment SetupConfigUpdateDxeNeonCityEPECB \ - comment SlotDataUpdateDxeNeonCityEPECB \ - comment SmbiosDataUpdateDxeNeonCityEPECB \ - comment StaticSkuDataDxeNeonCityEPECB \ - save commentsetupcrap.bin \ - comment PchSerialGpio \ - comment PchSmbusDxe \ - comment IioInit \ - comment PpmInitialize \ - comment CpuArchDxe \ - comment PchInitDxe \ - comment start_dxecleaner \ - remove AB7ED12E-1D78-4635-AB87-23F00A911EC7 \ - save fail.bin \ - comment HeciInitDxe \ - comment SpsDxe \ - comment SpsSmm \ - comment Aint13 \ - comment Setup \ - comment ServerMgmtSetup \ - comment ACPI \ ---More--(55%)  comment S3SaveStateDxe \ - comment BootScriptExecutorDxe \ - comment SioDxeInit \ - comment OA3 \ - comment OptionRomPolicy \ - comment PciRootBridge \ - comment PciDxeInit \ - comment PciOutOfResourceSetupPage \ - comment RuntimeMemoryHoleVar \ - comment ExportHiiDb \ - comment DpcDxe \ - comment AmiBoardInfo2 \ - comment ReFlash \ - comment CsmDxe \ - comment UbaConfigDatabaseDxe \ - comment HardwareSignatureEntry \ - comment KbcEmulDxe \ - comment EsrtDxe \ - comment NvmeInt13 \ - comment OpalSecurity \ - comment AcpiPlatform \ - comment AcpiVTD \ - comment PlatformCpuPolicy \ - comment PciPlatform \ - comment PlatformEarlyDxe \ - comment PlatformType \ - comment S3NvramSave \ - comment UuidDxe \ - comment OpaPlatCfg \ - comment MemorySubClass \ - comment SocketSetup \ - comment FpgaSocketSetup \ - comment HstiPlatformDxe \ - comment HstiIhvProviderDxe \ - comment IsPlatformSupportWhea \ - comment OemVtdRmrr \ - comment MePolicyInitDxe \ - comment SpsAcpiHooks \ - comment Platform \ - comment FpkSetup \ ---More--(66%) [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ make d98 -[?2004lfutk 98.splat fv ./DXECLEANER clean -2019/01/03 13:03:22 Found 313 things -2019/01/03 13:03:22 script is ./DXECLEANER -2019/01/03 13:03:32 Try to remove 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB (9BB65D37-8CA8-4789-BE45-EE18536EE089) -2019/01/03 13:03:32 removed [0xc00ae98900] -+ echo TEST /tmp/futk077126222/1 -TEST /tmp/futk077126222/1 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk077126222/1 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:04:51 Listening on 192.168.0.1:8080 at 2019-01-03 13:04:51.512528012 -0800 PST m=+0.004948128 -dmesg -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ bg -[?2004l[1]+ make d98 & -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ dmesg -[?2004l[2090413.478133] print_req_error: 54 callbacks suppressed -[2090413.478135] print_req_error: I/O error, dev loop1, sector 9494400 -[2090413.478373] print_req_error: I/O error, dev loop1, sector 9494616 -[2090413.478442] print_req_error: I/O error, dev loop1, sector 5300224 -[2090413.478494] print_req_error: I/O error, dev loop1, sector 5300232 -[2090413.526050] print_req_error: I/O error, dev loop1, sector 85888 -[2090413.526200] print_req_error: I/O error, dev loop1, sector 86000 -[2090413.526349] print_req_error: I/O error, dev loop1, sector 20480 -[2090413.526499] print_req_error: I/O error, dev loop1, sector 20488 -[2090413.536462] print_req_error: I/O error, dev loop1, sector 5300096 -[2090413.536624] print_req_error: I/O error, dev loop1, sector 5300208 -[2090471.511176] print_req_error: 54 callbacks suppressed -[2090471.511178] print_req_error: I/O error, dev loop1, sector 9494400 -[2090471.511308] print_req_error: I/O error, dev loop1, sector 9494616 -[2090471.511372] print_req_error: I/O error, dev loop1, sector 5300224 -[2090471.511433] print_req_error: I/O error, dev loop1, sector 5300232 -[2090471.570180] print_req_error: I/O error, dev loop1, sector 85888 -[2090471.570306] print_req_error: I/O error, dev loop1, sector 86000 -[2090471.570375] print_req_error: I/O error, dev loop1, sector 20480 -[2090471.570519] print_req_error: I/O error, dev loop1, sector 20488 -[2090471.580574] print_req_error: I/O error, dev loop1, sector 5300096 -[2090471.580714] print_req_error: I/O error, dev loop1, sector 5300208 -[2112010.827903] print_req_error: 54 callbacks suppressed -[2112010.827905] print_req_error: I/O error, dev loop1, sector 9494400 -[2112010.828155] print_req_error: I/O error, dev loop1, sector 9494616 -[2112010.828225] print_req_error: I/O error, dev loop1, sector 5300224 -[2112010.828288] print_req_error: I/O error, dev loop1, sector 5300232 -[2112011.119197] print_req_error: I/O error, dev loop1, sector 85888 -[2112011.119368] print_req_error: I/O error, dev loop1, sector 86000 -[2112011.119454] print_req_error: I/O error, dev loop1, sector 20480 -[2112011.119604] print_req_error: I/O error, dev loop1, sector 20488 -[2112011.163172] print_req_error: I/O error, dev loop1, sector 5300096 -[2112011.163329] print_req_error: I/O error, dev loop1, sector 5300208 -[2112069.211288] print_req_error: 54 callbacks suppressed -[2112069.211289] print_req_error: I/O error, dev loop1, sector 9494400 -[2112069.211367] print_req_error: I/O error, dev loop1, sector 9494616 -[2112069.211400] print_req_error: I/O error, dev loop1, sector 5300224 -[2112069.211426] print_req_error: I/O error, dev loop1, sector 5300232 -[2112069.262885] print_req_error: I/O error, dev loop1, sector 85888 -[2112069.263034] print_req_error: I/O error, dev loop1, sector 86000 -[2112069.263180] print_req_error: I/O error, dev loop1, sector 20480 -[2112069.263330] print_req_error: I/O error, dev loop1, sector 20488 -[2112069.306796] print_req_error: I/O error, dev loop1, sector 5300096 -[2112069.306935] print_req_error: I/O error, dev loop1, sector 5300208 -[2133613.290508] print_req_error: 54 callbacks suppressed -[2133613.290510] print_req_error: I/O error, dev loop1, sector 9494400 -[2133613.290642] print_req_error: I/O error, dev loop1, sector 9494616 -[2133613.290676] print_req_error: I/O error, dev loop1, sector 5300224 -[2133613.290747] print_req_error: I/O error, dev loop1, sector 5300232 -[2133613.327409] print_req_error: I/O error, dev loop1, sector 85888 -[2133613.327483] print_req_error: I/O error, dev loop1, sector 86000 -[2133613.327532] print_req_error: I/O error, dev loop1, sector 20480 -[2133613.327600] print_req_error: I/O error, dev loop1, sector 20488 -[2133613.371295] print_req_error: I/O error, dev loop1, sector 5300096 -[2133613.371367] print_req_error: I/O error, dev loop1, sector 5300208 -[2133673.078115] print_req_error: 54 callbacks suppressed -[2133673.078117] print_req_error: I/O error, dev loop1, sector 9494400 -[2133673.078223] print_req_error: I/O error, dev loop1, sector 9494616 -[2133673.078280] print_req_error: I/O error, dev loop1, sector 5300224 -[2133673.078368] print_req_error: I/O error, dev loop1, sector 5300232 -[2133673.138524] print_req_error: I/O error, dev loop1, sector 85888 -[2133673.138692] print_req_error: I/O error, dev loop1, sector 86000 -[2133673.138846] print_req_error: I/O error, dev loop1, sector 20480 -[2133673.138999] print_req_error: I/O error, dev loop1, sector 20488 -[2133673.148904] print_req_error: I/O error, dev loop1, sector 5300096 -[2133673.149054] print_req_error: I/O error, dev loop1, sector 5300208 -[2155214.716211] print_req_error: 54 callbacks suppressed -[2155214.716213] print_req_error: I/O error, dev loop1, sector 9494400 -[2155214.716403] print_req_error: I/O error, dev loop1, sector 9494616 -[2155214.716465] print_req_error: I/O error, dev loop1, sector 5300224 -[2155214.716592] print_req_error: I/O error, dev loop1, sector 5300232 -[2155214.762579] print_req_error: I/O error, dev loop1, sector 85888 -[2155214.762732] print_req_error: I/O error, dev loop1, sector 86000 -[2155214.762819] print_req_error: I/O error, dev loop1, sector 20480 -[2155214.762915] print_req_error: I/O error, dev loop1, sector 20488 -[2155214.773346] print_req_error: I/O error, dev loop1, sector 5300096 -[2155214.773506] print_req_error: I/O error, dev loop1, sector 5300208 -[2155274.789779] print_req_error: 54 callbacks suppressed -[2155274.789781] print_req_error: I/O error, dev loop1, sector 9494400 -[2155274.789932] print_req_error: I/O error, dev loop1, sector 9494616 -[2155274.789990] print_req_error: I/O error, dev loop1, sector 5300224 -[2155274.790081] print_req_error: I/O error, dev loop1, sector 5300232 -[2155274.840226] print_req_error: I/O error, dev loop1, sector 85888 -[2155274.840384] print_req_error: I/O error, dev loop1, sector 86000 -[2155274.840474] print_req_error: I/O error, dev loop1, sector 20480 -[2155274.840615] print_req_error: I/O error, dev loop1, sector 20488 -[2155274.884080] print_req_error: I/O error, dev loop1, sector 5300096 -[2155274.884235] print_req_error: I/O error, dev loop1, sector 5300208 -[2176814.216805] print_req_error: 54 callbacks suppressed -[2176814.216807] print_req_error: I/O error, dev loop1, sector 9494400 -[2176814.217000] print_req_error: I/O error, dev loop1, sector 9494616 -[2176814.217072] print_req_error: I/O error, dev loop1, sector 5300224 -[2176814.217118] print_req_error: I/O error, dev loop1, sector 5300232 -[2176814.262798] print_req_error: I/O error, dev loop1, sector 85888 -[2176814.262945] print_req_error: I/O error, dev loop1, sector 86000 -[2176814.263087] print_req_error: I/O error, dev loop1, sector 20480 -[2176814.263175] print_req_error: I/O error, dev loop1, sector 20488 -[2176814.273059] print_req_error: I/O error, dev loop1, sector 5300096 -[2176814.273181] print_req_error: I/O error, dev loop1, sector 5300208 -[2176871.285406] print_req_error: 54 callbacks suppressed -[2176871.285407] print_req_error: I/O error, dev loop1, sector 9494400 -[2176871.285490] print_req_error: I/O error, dev loop1, sector 9494616 -[2176871.285523] print_req_error: I/O error, dev loop1, sector 5300224 -[2176871.285589] print_req_error: I/O error, dev loop1, sector 5300232 -[2176871.350776] print_req_error: I/O error, dev loop1, sector 85888 -[2176871.350863] print_req_error: I/O error, dev loop1, sector 86000 -[2176871.350930] print_req_error: I/O error, dev loop1, sector 20480 -[2176871.350997] print_req_error: I/O error, dev loop1, sector 20488 -[2176871.394953] print_req_error: I/O error, dev loop1, sector 5300096 -[2176871.395062] print_req_error: I/O error, dev loop1, sector 5300208 -[2198410.216834] print_req_error: 54 callbacks suppressed -[2198410.216836] print_req_error: I/O error, dev loop1, sector 9494400 -[2198410.217043] print_req_error: I/O error, dev loop1, sector 9494616 -[2198410.217109] print_req_error: I/O error, dev loop1, sector 5300224 -[2198410.217221] print_req_error: I/O error, dev loop1, sector 5300232 -[2198410.265514] print_req_error: I/O error, dev loop1, sector 85888 -[2198410.265662] print_req_error: I/O error, dev loop1, sector 86000 -[2198410.265803] print_req_error: I/O error, dev loop1, sector 20480 -[2198410.265962] print_req_error: I/O error, dev loop1, sector 20488 -[2198410.275651] print_req_error: I/O error, dev loop1, sector 5300096 -[2198410.275805] print_req_error: I/O error, dev loop1, sector 5300208 -[2198467.955698] print_req_error: 54 callbacks suppressed -[2198467.955700] print_req_error: I/O error, dev loop1, sector 9494400 -[2198467.955818] print_req_error: I/O error, dev loop1, sector 9494616 -[2198467.955881] print_req_error: I/O error, dev loop1, sector 5300224 -[2198467.956008] print_req_error: I/O error, dev loop1, sector 5300232 -[2198467.998405] print_req_error: I/O error, dev loop1, sector 85888 -[2198467.998555] print_req_error: I/O error, dev loop1, sector 86000 -[2198467.998681] print_req_error: I/O error, dev loop1, sector 20480 -[2198467.998824] print_req_error: I/O error, dev loop1, sector 20488 -[2198468.008641] print_req_error: I/O error, dev loop1, sector 5300096 -[2198468.008772] print_req_error: I/O error, dev loop1, sector 5300208 -[2220008.530143] print_req_error: 54 callbacks suppressed -[2220008.530145] print_req_error: I/O error, dev loop1, sector 9494400 -[2220008.530379] print_req_error: I/O error, dev loop1, sector 9494616 -[2220008.530446] print_req_error: I/O error, dev loop1, sector 5300224 -[2220008.530544] print_req_error: I/O error, dev loop1, sector 5300232 -[2220008.575136] print_req_error: I/O error, dev loop1, sector 85888 -[2220008.575302] print_req_error: I/O error, dev loop1, sector 86000 -[2220008.575382] print_req_error: I/O error, dev loop1, sector 20480 -[2220008.575538] print_req_error: I/O error, dev loop1, sector 20488 -[2220008.618923] print_req_error: I/O error, dev loop1, sector 5300096 -[2220008.619082] print_req_error: I/O error, dev loop1, sector 5300208 -[2220068.189294] print_req_error: 54 callbacks suppressed -[2220068.189296] print_req_error: I/O error, dev loop1, sector 9494400 -[2220068.189432] print_req_error: I/O error, dev loop1, sector 9494616 -[2220068.189501] print_req_error: I/O error, dev loop1, sector 5300224 -[2220068.189597] print_req_error: I/O error, dev loop1, sector 5300232 -[2220068.191523] print_req_error: I/O error, dev loop1, sector 85888 -[2220068.191614] print_req_error: I/O error, dev loop1, sector 86000 -[2220068.191712] print_req_error: I/O error, dev loop1, sector 20480 -[2220068.191792] print_req_error: I/O error, dev loop1, sector 20488 -[2220068.206998] print_req_error: I/O error, dev loop1, sector 5300096 -[2220068.207121] print_req_error: I/O error, dev loop1, sector 5300208 -[2241610.122690] print_req_error: 54 callbacks suppressed -[2241610.122691] print_req_error: I/O error, dev loop1, sector 9494400 -[2241610.122911] print_req_error: I/O error, dev loop1, sector 9494616 -[2241610.123023] print_req_error: I/O error, dev loop1, sector 5300224 -[2241610.123164] print_req_error: I/O error, dev loop1, sector 5300232 -[2241610.163946] print_req_error: I/O error, dev loop1, sector 85888 -[2241610.164097] print_req_error: I/O error, dev loop1, sector 86000 -[2241610.164252] print_req_error: I/O error, dev loop1, sector 20480 -[2241610.164399] print_req_error: I/O error, dev loop1, sector 20488 -[2241610.174298] print_req_error: I/O error, dev loop1, sector 5300096 -[2241610.174438] print_req_error: I/O error, dev loop1, sector 5300208 -[2241667.816991] print_req_error: 54 callbacks suppressed -[2241667.816992] print_req_error: I/O error, dev loop1, sector 9494400 -[2241667.817107] print_req_error: I/O error, dev loop1, sector 9494616 -[2241667.817168] print_req_error: I/O error, dev loop1, sector 5300224 -[2241667.817293] print_req_error: I/O error, dev loop1, sector 5300232 -[2241667.834639] print_req_error: I/O error, dev loop1, sector 85888 -[2241667.834714] print_req_error: I/O error, dev loop1, sector 86000 -[2241667.834777] print_req_error: I/O error, dev loop1, sector 20480 -[2241667.834829] print_req_error: I/O error, dev loop1, sector 20488 -[2241667.840304] print_req_error: I/O error, dev loop1, sector 5300096 -[2241667.840445] print_req_error: I/O error, dev loop1, sector 5300208 -[2263211.023405] print_req_error: 54 callbacks suppressed -[2263211.023407] print_req_error: I/O error, dev loop1, sector 9494400 -[2263211.023630] print_req_error: I/O error, dev loop1, sector 9494616 -[2263211.023690] print_req_error: I/O error, dev loop1, sector 5300224 -[2263211.023781] print_req_error: I/O error, dev loop1, sector 5300232 -[2263211.068997] print_req_error: I/O error, dev loop1, sector 85888 -[2263211.069093] print_req_error: I/O error, dev loop1, sector 86000 -[2263211.069188] print_req_error: I/O error, dev loop1, sector 20480 -[2263211.069250] print_req_error: I/O error, dev loop1, sector 20488 -[2263211.079662] print_req_error: I/O error, dev loop1, sector 5300096 -[2263211.079824] print_req_error: I/O error, dev loop1, sector 5300208 -[2263273.419934] print_req_error: 54 callbacks suppressed -[2263273.419935] print_req_error: I/O error, dev loop1, sector 9494400 -[2263273.420013] print_req_error: I/O error, dev loop1, sector 9494616 -[2263273.420046] print_req_error: I/O error, dev loop1, sector 5300224 -[2263273.420077] print_req_error: I/O error, dev loop1, sector 5300232 -[2263273.457260] print_req_error: I/O error, dev loop1, sector 85888 -[2263273.457415] print_req_error: I/O error, dev loop1, sector 86000 -[2263273.457554] print_req_error: I/O error, dev loop1, sector 20480 -[2263273.457698] print_req_error: I/O error, dev loop1, sector 20488 -[2263273.467665] print_req_error: I/O error, dev loop1, sector 5300096 -[2263273.467828] print_req_error: I/O error, dev loop1, sector 5300208 -[2284812.645887] print_req_error: 54 callbacks suppressed -[2284812.645888] print_req_error: I/O error, dev loop1, sector 9494400 -[2284812.646092] print_req_error: I/O error, dev loop1, sector 9494616 -[2284812.646153] print_req_error: I/O error, dev loop1, sector 5300224 -[2284812.646282] print_req_error: I/O error, dev loop1, sector 5300232 -[2284812.693987] print_req_error: I/O error, dev loop1, sector 85888 -[2284812.694131] print_req_error: I/O error, dev loop1, sector 86000 -[2284812.694209] print_req_error: I/O error, dev loop1, sector 20480 -[2284812.694338] print_req_error: I/O error, dev loop1, sector 20488 -[2284812.704225] print_req_error: I/O error, dev loop1, sector 5300096 -[2284812.704376] print_req_error: I/O error, dev loop1, sector 5300208 -[2284870.918182] print_req_error: 54 callbacks suppressed -[2284870.918184] print_req_error: I/O error, dev loop1, sector 9494400 -[2284870.918315] print_req_error: I/O error, dev loop1, sector 9494616 -[2284870.918374] print_req_error: I/O error, dev loop1, sector 5300224 -[2284870.918498] print_req_error: I/O error, dev loop1, sector 5300232 -[2284870.982223] print_req_error: I/O error, dev loop1, sector 85888 -[2284870.982373] print_req_error: I/O error, dev loop1, sector 86000 -[2284870.982481] print_req_error: I/O error, dev loop1, sector 20480 -[2284870.982550] print_req_error: I/O error, dev loop1, sector 20488 -[2284870.992423] print_req_error: I/O error, dev loop1, sector 5300096 -[2284870.992562] print_req_error: I/O error, dev loop1, sector 5300208 -[2306295.202505] print_req_error: 54 callbacks suppressed -[2306295.202507] print_req_error: I/O error, dev loop1, sector 9494400 -[2306295.202726] print_req_error: I/O error, dev loop1, sector 9494616 -[2306295.202797] print_req_error: I/O error, dev loop1, sector 5300224 -[2306295.202935] print_req_error: I/O error, dev loop1, sector 5300232 -[2306295.260881] print_req_error: I/O error, dev loop1, sector 85888 -[2306295.261025] print_req_error: I/O error, dev loop1, sector 86000 -[2306295.261164] print_req_error: I/O error, dev loop1, sector 20480 -[2306295.261304] print_req_error: I/O error, dev loop1, sector 20488 -[2306295.271478] print_req_error: I/O error, dev loop1, sector 5300096 -[2306295.271653] print_req_error: I/O error, dev loop1, sector 5300208 -[2306359.775188] print_req_error: 54 callbacks suppressed -[2306359.775190] print_req_error: I/O error, dev loop1, sector 9494400 -[2306359.775324] print_req_error: I/O error, dev loop1, sector 9494616 -[2306359.775383] print_req_error: I/O error, dev loop1, sector 5300224 -[2306359.775507] print_req_error: I/O error, dev loop1, sector 5300232 -[2306360.300717] print_req_error: I/O error, dev loop1, sector 85888 -[2306360.300895] print_req_error: I/O error, dev loop1, sector 86000 -[2306360.300979] print_req_error: I/O error, dev loop1, sector 20480 -[2306360.301048] print_req_error: I/O error, dev loop1, sector 20488 -[2306360.414414] print_req_error: I/O error, dev loop1, sector 5300096 -[2306360.414576] print_req_error: I/O error, dev loop1, sector 5300208 -[2326444.973753] print_req_error: 54 callbacks suppressed -[2326444.973755] print_req_error: I/O error, dev loop1, sector 9494400 -[2326444.973985] print_req_error: I/O error, dev loop1, sector 9494616 -[2326444.974048] print_req_error: I/O error, dev loop1, sector 5300224 -[2326444.974141] print_req_error: I/O error, dev loop1, sector 5300232 -[2326445.023289] print_req_error: I/O error, dev loop1, sector 85888 -[2326445.023437] print_req_error: I/O error, dev loop1, sector 86000 -[2326445.023582] print_req_error: I/O error, dev loop1, sector 20480 -[2326445.023730] print_req_error: I/O error, dev loop1, sector 20488 -[2326445.033675] print_req_error: I/O error, dev loop1, sector 5300096 -[2326445.033835] print_req_error: I/O error, dev loop1, sector 5300208 -[2326503.689529] print_req_error: 54 callbacks suppressed -[2326503.689531] print_req_error: I/O error, dev loop1, sector 9494400 -[2326503.689617] print_req_error: I/O error, dev loop1, sector 9494616 -[2326503.689650] print_req_error: I/O error, dev loop1, sector 5300224 -[2326503.689724] print_req_error: I/O error, dev loop1, sector 5300232 -[2326503.733569] print_req_error: I/O error, dev loop1, sector 85888 -[2326503.733658] print_req_error: I/O error, dev loop1, sector 86000 -[2326503.733691] print_req_error: I/O error, dev loop1, sector 20480 -[2326503.733762] print_req_error: I/O error, dev loop1, sector 20488 -[2326503.777500] print_req_error: I/O error, dev loop1, sector 5300096 -[2326503.777581] print_req_error: I/O error, dev loop1, sector 5300208 -[2348048.088540] print_req_error: 54 callbacks suppressed -[2348048.088542] print_req_error: I/O error, dev loop1, sector 9494400 -[2348048.088748] print_req_error: I/O error, dev loop1, sector 9494616 -[2348048.088817] print_req_error: I/O error, dev loop1, sector 5300224 -[2348048.088912] print_req_error: I/O error, dev loop1, sector 5300232 -[2348048.153775] print_req_error: I/O error, dev loop1, sector 85888 -[2348048.153921] print_req_error: I/O error, dev loop1, sector 86000 -[2348048.154021] print_req_error: I/O error, dev loop1, sector 20480 -[2348048.154118] print_req_error: I/O error, dev loop1, sector 20488 -[2348048.164476] print_req_error: I/O error, dev loop1, sector 5300096 -[2348048.164622] print_req_error: I/O error, dev loop1, sector 5300208 -[2348106.031526] print_req_error: 54 callbacks suppressed -[2348106.031527] print_req_error: I/O error, dev loop1, sector 9494400 -[2348106.031651] print_req_error: I/O error, dev loop1, sector 9494616 -[2348106.031711] print_req_error: I/O error, dev loop1, sector 5300224 -[2348106.031803] print_req_error: I/O error, dev loop1, sector 5300232 -[2348106.064496] print_req_error: I/O error, dev loop1, sector 85888 -[2348106.064658] print_req_error: I/O error, dev loop1, sector 86000 -[2348106.064743] print_req_error: I/O error, dev loop1, sector 20480 -[2348106.064889] print_req_error: I/O error, dev loop1, sector 20488 -[2348106.108566] print_req_error: I/O error, dev loop1, sector 5300096 -[2348106.108714] print_req_error: I/O error, dev loop1, sector 5300208 -[2369643.393219] print_req_error: 54 callbacks suppressed -[2369643.393220] print_req_error: I/O error, dev loop1, sector 9494400 -[2369643.393441] print_req_error: I/O error, dev loop1, sector 9494616 -[2369643.393502] print_req_error: I/O error, dev loop1, sector 5300224 -[2369643.393590] print_req_error: I/O error, dev loop1, sector 5300232 -[2369643.480266] print_req_error: I/O error, dev loop1, sector 85888 -[2369643.480414] print_req_error: I/O error, dev loop1, sector 86000 -[2369643.480497] print_req_error: I/O error, dev loop1, sector 20480 -[2369643.480613] print_req_error: I/O error, dev loop1, sector 20488 -[2369643.490617] print_req_error: I/O error, dev loop1, sector 5300096 -[2369643.490773] print_req_error: I/O error, dev loop1, sector 5300208 -[2369698.686380] print_req_error: 54 callbacks suppressed -[2369698.686382] print_req_error: I/O error, dev loop1, sector 9494400 -[2369698.686529] print_req_error: I/O error, dev loop1, sector 9494616 -[2369698.686605] print_req_error: I/O error, dev loop1, sector 5300224 -[2369698.686721] print_req_error: I/O error, dev loop1, sector 5300232 -[2369698.746285] print_req_error: I/O error, dev loop1, sector 85888 -[2369698.746425] print_req_error: I/O error, dev loop1, sector 86000 -[2369698.746569] print_req_error: I/O error, dev loop1, sector 20480 -[2369698.746704] print_req_error: I/O error, dev loop1, sector 20488 -[2369698.756858] print_req_error: I/O error, dev loop1, sector 5300096 -[2369698.757014] print_req_error: I/O error, dev loop1, sector 5300208 -[2391240.449429] print_req_error: 54 callbacks suppressed -[2391240.449430] print_req_error: I/O error, dev loop1, sector 9494400 -[2391240.449652] print_req_error: I/O error, dev loop1, sector 9494616 -[2391240.449715] print_req_error: I/O error, dev loop1, sector 5300224 -[2391240.449806] print_req_error: I/O error, dev loop1, sector 5300232 -[2391240.499313] print_req_error: I/O error, dev loop1, sector 85888 -[2391240.499451] print_req_error: I/O error, dev loop1, sector 86000 -[2391240.499588] print_req_error: I/O error, dev loop1, sector 20480 -[2391240.499734] print_req_error: I/O error, dev loop1, sector 20488 -[2391240.509801] print_req_error: I/O error, dev loop1, sector 5300096 -[2391240.509975] print_req_error: I/O error, dev loop1, sector 5300208 -[2391297.880530] print_req_error: 54 callbacks suppressed -[2391297.880531] print_req_error: I/O error, dev loop1, sector 9494400 -[2391297.880601] print_req_error: I/O error, dev loop1, sector 9494616 -[2391297.880716] print_req_error: I/O error, dev loop1, sector 5300224 -[2391297.880809] print_req_error: I/O error, dev loop1, sector 5300232 -[2391297.910109] print_req_error: I/O error, dev loop1, sector 85888 -[2391297.910248] print_req_error: I/O error, dev loop1, sector 86000 -[2391297.910331] print_req_error: I/O error, dev loop1, sector 20480 -[2391297.910459] print_req_error: I/O error, dev loop1, sector 20488 -[2391297.953994] print_req_error: I/O error, dev loop1, sector 5300096 -[2391297.954151] print_req_error: I/O error, dev loop1, sector 5300208 -[2412846.155681] print_req_error: 54 callbacks suppressed -[2412846.155682] print_req_error: I/O error, dev loop1, sector 9494400 -[2412846.155929] print_req_error: I/O error, dev loop1, sector 9494616 -[2412846.156000] print_req_error: I/O error, dev loop1, sector 5300224 -[2412846.156094] print_req_error: I/O error, dev loop1, sector 5300232 -[2412846.193598] print_req_error: I/O error, dev loop1, sector 85888 -[2412846.193724] print_req_error: I/O error, dev loop1, sector 86000 -[2412846.193843] print_req_error: I/O error, dev loop1, sector 20480 -[2412846.193942] print_req_error: I/O error, dev loop1, sector 20488 -[2412846.204186] print_req_error: I/O error, dev loop1, sector 5300096 -[2412846.204328] print_req_error: I/O error, dev loop1, sector 5300208 -[2412902.913051] print_req_error: 54 callbacks suppressed -[2412902.913053] print_req_error: I/O error, dev loop1, sector 9494400 -[2412902.913171] print_req_error: I/O error, dev loop1, sector 9494616 -[2412902.913280] print_req_error: I/O error, dev loop1, sector 5300224 -[2412902.913371] print_req_error: I/O error, dev loop1, sector 5300232 -[2412902.971032] print_req_error: I/O error, dev loop1, sector 85888 -[2412902.971175] print_req_error: I/O error, dev loop1, sector 86000 -[2412902.971321] print_req_error: I/O error, dev loop1, sector 20480 -[2412902.971416] print_req_error: I/O error, dev loop1, sector 20488 -[2412902.981552] print_req_error: I/O error, dev loop1, sector 5300096 -[2412902.981690] print_req_error: I/O error, dev loop1, sector 5300208 -[2434442.158586] print_req_error: 54 callbacks suppressed -[2434442.158588] print_req_error: I/O error, dev loop1, sector 9494400 -[2434442.158736] print_req_error: I/O error, dev loop1, sector 9494616 -[2434442.158813] print_req_error: I/O error, dev loop1, sector 5300224 -[2434442.158893] print_req_error: I/O error, dev loop1, sector 5300232 -[2434442.201518] print_req_error: I/O error, dev loop1, sector 85888 -[2434442.201659] print_req_error: I/O error, dev loop1, sector 86000 -[2434442.201728] print_req_error: I/O error, dev loop1, sector 20480 -[2434442.201859] print_req_error: I/O error, dev loop1, sector 20488 -[2434442.211940] print_req_error: I/O error, dev loop1, sector 5300096 -[2434442.212094] print_req_error: I/O error, dev loop1, sector 5300208 -[2434499.436873] print_req_error: 54 callbacks suppressed -[2434499.436875] print_req_error: I/O error, dev loop1, sector 9494400 -[2434499.436971] print_req_error: I/O error, dev loop1, sector 9494616 -[2434499.437029] print_req_error: I/O error, dev loop1, sector 5300224 -[2434499.437121] print_req_error: I/O error, dev loop1, sector 5300232 -[2434499.500723] print_req_error: I/O error, dev loop1, sector 85888 -[2434499.500862] print_req_error: I/O error, dev loop1, sector 86000 -[2434499.500997] print_req_error: I/O error, dev loop1, sector 20480 -[2434499.501130] print_req_error: I/O error, dev loop1, sector 20488 -[2434499.511433] print_req_error: I/O error, dev loop1, sector 5300096 -[2434499.511572] print_req_error: I/O error, dev loop1, sector 5300208 -[2456103.668662] print_req_error: 54 callbacks suppressed -[2456103.668664] print_req_error: I/O error, dev loop1, sector 9494400 -[2456103.668903] print_req_error: I/O error, dev loop1, sector 9494616 -[2456103.668969] print_req_error: I/O error, dev loop1, sector 5300224 -[2456103.669069] print_req_error: I/O error, dev loop1, sector 5300232 -[2456103.749691] print_req_error: I/O error, dev loop1, sector 85888 -[2456103.749847] print_req_error: I/O error, dev loop1, sector 86000 -[2456103.749925] print_req_error: I/O error, dev loop1, sector 20480 -[2456103.750063] print_req_error: I/O error, dev loop1, sector 20488 -[2456103.759881] print_req_error: I/O error, dev loop1, sector 5300096 -[2456103.760037] print_req_error: I/O error, dev loop1, sector 5300208 -[2456163.819983] print_req_error: 54 callbacks suppressed -[2456163.819984] print_req_error: I/O error, dev loop1, sector 9494400 -[2456163.820134] print_req_error: I/O error, dev loop1, sector 9494616 -[2456163.820198] print_req_error: I/O error, dev loop1, sector 5300224 -[2456163.820294] print_req_error: I/O error, dev loop1, sector 5300232 -[2456163.871015] print_req_error: I/O error, dev loop1, sector 85888 -[2456163.871166] print_req_error: I/O error, dev loop1, sector 86000 -[2456163.871280] print_req_error: I/O error, dev loop1, sector 20480 -[2456163.871393] print_req_error: I/O error, dev loop1, sector 20488 -[2456163.881601] print_req_error: I/O error, dev loop1, sector 5300096 -[2456163.881747] print_req_error: I/O error, dev loop1, sector 5300208 -[2477643.216650] print_req_error: 54 callbacks suppressed -[2477643.216652] print_req_error: I/O error, dev loop1, sector 9494400 -[2477643.216879] print_req_error: I/O error, dev loop1, sector 9494616 -[2477643.216944] print_req_error: I/O error, dev loop1, sector 5300224 -[2477643.217031] print_req_error: I/O error, dev loop1, sector 5300232 -[2477643.259151] print_req_error: I/O error, dev loop1, sector 85888 -[2477643.259303] print_req_error: I/O error, dev loop1, sector 86000 -[2477643.259453] print_req_error: I/O error, dev loop1, sector 20480 -[2477643.259603] print_req_error: I/O error, dev loop1, sector 20488 -[2477643.269553] print_req_error: I/O error, dev loop1, sector 5300096 -[2477643.269705] print_req_error: I/O error, dev loop1, sector 5300208 -[2477700.948247] print_req_error: 54 callbacks suppressed -[2477700.948249] print_req_error: I/O error, dev loop1, sector 9494400 -[2477700.948357] print_req_error: I/O error, dev loop1, sector 9494616 -[2477700.948415] print_req_error: I/O error, dev loop1, sector 5300224 -[2477700.948506] print_req_error: I/O error, dev loop1, sector 5300232 -[2477700.952272] print_req_error: I/O error, dev loop1, sector 85888 -[2477700.952413] print_req_error: I/O error, dev loop1, sector 86000 -[2477700.952509] print_req_error: I/O error, dev loop1, sector 20480 -[2477700.952573] print_req_error: I/O error, dev loop1, sector 20488 -[2477700.957689] print_req_error: I/O error, dev loop1, sector 5300096 -[2477700.957838] print_req_error: I/O error, dev loop1, sector 5300208 -[2499261.932980] print_req_error: 54 callbacks suppressed -[2499261.932982] print_req_error: I/O error, dev loop1, sector 9494400 -[2499261.933183] print_req_error: I/O error, dev loop1, sector 9494616 -[2499261.933245] print_req_error: I/O error, dev loop1, sector 5300224 -[2499261.933387] print_req_error: I/O error, dev loop1, sector 5300232 -[2499261.977326] print_req_error: I/O error, dev loop1, sector 85888 -[2499261.977491] print_req_error: I/O error, dev loop1, sector 86000 -[2499261.977580] print_req_error: I/O error, dev loop1, sector 20480 -[2499261.977735] print_req_error: I/O error, dev loop1, sector 20488 -[2499261.988056] print_req_error: I/O error, dev loop1, sector 5300096 -[2499261.988192] print_req_error: I/O error, dev loop1, sector 5300208 -[2499323.446519] print_req_error: 54 callbacks suppressed -[2499323.446520] print_req_error: I/O error, dev loop1, sector 9494400 -[2499323.446643] print_req_error: I/O error, dev loop1, sector 9494616 -[2499323.446773] print_req_error: I/O error, dev loop1, sector 5300224 -[2499323.446927] print_req_error: I/O error, dev loop1, sector 5300232 -[2499323.448940] print_req_error: I/O error, dev loop1, sector 85888 -[2499323.449103] print_req_error: I/O error, dev loop1, sector 86000 -[2499323.449161] print_req_error: I/O error, dev loop1, sector 20480 -[2499323.449291] print_req_error: I/O error, dev loop1, sector 20488 -[2499323.450739] print_req_error: I/O error, dev loop1, sector 5300096 -[2499323.450823] print_req_error: I/O error, dev loop1, sector 5300208 -[2520843.280826] print_req_error: 54 callbacks suppressed -[2520843.280827] print_req_error: I/O error, dev loop1, sector 9494400 -[2520843.281083] print_req_error: I/O error, dev loop1, sector 9494616 -[2520843.281158] print_req_error: I/O error, dev loop1, sector 5300224 -[2520843.281293] print_req_error: I/O error, dev loop1, sector 5300232 -[2520843.319983] print_req_error: I/O error, dev loop1, sector 85888 -[2520843.320096] print_req_error: I/O error, dev loop1, sector 86000 -[2520843.320261] print_req_error: I/O error, dev loop1, sector 20480 -[2520843.320414] print_req_error: I/O error, dev loop1, sector 20488 -[2520843.351829] print_req_error: I/O error, dev loop1, sector 5300096 -[2520843.351974] print_req_error: I/O error, dev loop1, sector 5300208 -[2520900.978009] print_req_error: 54 callbacks suppressed -[2520900.978010] print_req_error: I/O error, dev loop1, sector 9494400 -[2520900.978149] print_req_error: I/O error, dev loop1, sector 9494616 -[2520900.978224] print_req_error: I/O error, dev loop1, sector 5300224 -[2520900.978351] print_req_error: I/O error, dev loop1, sector 5300232 -[2520901.030631] print_req_error: I/O error, dev loop1, sector 85888 -[2520901.030781] print_req_error: I/O error, dev loop1, sector 86000 -[2520901.030848] print_req_error: I/O error, dev loop1, sector 20480 -[2520901.030920] print_req_error: I/O error, dev loop1, sector 20488 -[2520901.041341] print_req_error: I/O error, dev loop1, sector 5300096 -[2520901.041480] print_req_error: I/O error, dev loop1, sector 5300208 -[2542450.686954] print_req_error: 54 callbacks suppressed -[2542450.686956] print_req_error: I/O error, dev loop1, sector 9494400 -[2542450.687187] print_req_error: I/O error, dev loop1, sector 9494616 -[2542450.687267] print_req_error: I/O error, dev loop1, sector 5300224 -[2542450.687374] print_req_error: I/O error, dev loop1, sector 5300232 -[2542450.734988] print_req_error: I/O error, dev loop1, sector 85888 -[2542450.735139] print_req_error: I/O error, dev loop1, sector 86000 -[2542450.735291] print_req_error: I/O error, dev loop1, sector 20480 -[2542450.735441] print_req_error: I/O error, dev loop1, sector 20488 -[2542450.745541] print_req_error: I/O error, dev loop1, sector 5300096 -[2542450.745693] print_req_error: I/O error, dev loop1, sector 5300208 -[2542510.065446] print_req_error: 54 callbacks suppressed -[2542510.065448] print_req_error: I/O error, dev loop1, sector 9494400 -[2542510.065562] print_req_error: I/O error, dev loop1, sector 9494616 -[2542510.065622] print_req_error: I/O error, dev loop1, sector 5300224 -[2542510.065650] print_req_error: I/O error, dev loop1, sector 5300232 -[2542510.123230] print_req_error: I/O error, dev loop1, sector 85888 -[2542510.123379] print_req_error: I/O error, dev loop1, sector 86000 -[2542510.123519] print_req_error: I/O error, dev loop1, sector 20480 -[2542510.123663] print_req_error: I/O error, dev loop1, sector 20488 -[2542510.133786] print_req_error: I/O error, dev loop1, sector 5300096 -[2542510.133924] print_req_error: I/O error, dev loop1, sector 5300208 -[2564045.203961] print_req_error: 54 callbacks suppressed -[2564045.203962] print_req_error: I/O error, dev loop1, sector 9494400 -[2564045.204123] print_req_error: I/O error, dev loop1, sector 9494616 -[2564045.204186] print_req_error: I/O error, dev loop1, sector 5300224 -[2564045.204215] print_req_error: I/O error, dev loop1, sector 5300232 -[2564045.255472] print_req_error: I/O error, dev loop1, sector 85888 -[2564045.255599] print_req_error: I/O error, dev loop1, sector 86000 -[2564045.255744] print_req_error: I/O error, dev loop1, sector 20480 -[2564045.255842] print_req_error: I/O error, dev loop1, sector 20488 -[2564045.299007] print_req_error: I/O error, dev loop1, sector 5300096 -[2564045.299118] print_req_error: I/O error, dev loop1, sector 5300208 -[2564099.682454] print_req_error: 54 callbacks suppressed -[2564099.682456] print_req_error: I/O error, dev loop1, sector 9494400 -[2564099.682544] print_req_error: I/O error, dev loop1, sector 9494616 -[2564099.682609] print_req_error: I/O error, dev loop1, sector 5300224 -[2564099.682712] print_req_error: I/O error, dev loop1, sector 5300232 -[2564099.684605] print_req_error: I/O error, dev loop1, sector 85888 -[2564099.684726] print_req_error: I/O error, dev loop1, sector 86000 -[2564099.684823] print_req_error: I/O error, dev loop1, sector 20480 -[2564099.684913] print_req_error: I/O error, dev loop1, sector 20488 -[2564099.698660] print_req_error: I/O error, dev loop1, sector 5300096 -[2564099.698772] print_req_error: I/O error, dev loop1, sector 5300208 -[2585640.386471] print_req_error: 54 callbacks suppressed -[2585640.386473] print_req_error: I/O error, dev loop1, sector 9494400 -[2585640.386684] print_req_error: I/O error, dev loop1, sector 9494616 -[2585640.386747] print_req_error: I/O error, dev loop1, sector 5300224 -[2585640.386845] print_req_error: I/O error, dev loop1, sector 5300232 -[2585640.490270] print_req_error: I/O error, dev loop1, sector 85888 -[2585640.490372] print_req_error: I/O error, dev loop1, sector 86000 -[2585640.490509] print_req_error: I/O error, dev loop1, sector 20480 -[2585640.490604] print_req_error: I/O error, dev loop1, sector 20488 -[2585640.560227] print_req_error: I/O error, dev loop1, sector 5300096 -[2585640.560394] print_req_error: I/O error, dev loop1, sector 5300208 -[2585699.596860] print_req_error: 54 callbacks suppressed -[2585699.596861] print_req_error: I/O error, dev loop1, sector 9494400 -[2585699.596958] print_req_error: I/O error, dev loop1, sector 9494616 -[2585699.597006] print_req_error: I/O error, dev loop1, sector 5300224 -[2585699.597057] print_req_error: I/O error, dev loop1, sector 5300232 -[2585699.648223] print_req_error: I/O error, dev loop1, sector 85888 -[2585699.648388] print_req_error: I/O error, dev loop1, sector 86000 -[2585699.648536] print_req_error: I/O error, dev loop1, sector 20480 -[2585699.648637] print_req_error: I/O error, dev loop1, sector 20488 -[2585699.658832] print_req_error: I/O error, dev loop1, sector 5300096 -[2585699.658975] print_req_error: I/O error, dev loop1, sector 5300208 -[2607239.924971] print_req_error: 54 callbacks suppressed -[2607239.924973] print_req_error: I/O error, dev loop1, sector 9494400 -[2607239.925168] print_req_error: I/O error, dev loop1, sector 9494616 -[2607239.925228] print_req_error: I/O error, dev loop1, sector 5300224 -[2607239.925259] print_req_error: I/O error, dev loop1, sector 5300232 -[2607239.968843] print_req_error: I/O error, dev loop1, sector 85888 -[2607239.969008] print_req_error: I/O error, dev loop1, sector 86000 -[2607239.969091] print_req_error: I/O error, dev loop1, sector 20480 -[2607239.969255] print_req_error: I/O error, dev loop1, sector 20488 -[2607239.979299] print_req_error: I/O error, dev loop1, sector 5300096 -[2607239.979445] print_req_error: I/O error, dev loop1, sector 5300208 -[2607298.402303] print_req_error: 54 callbacks suppressed -[2607298.402304] print_req_error: I/O error, dev loop1, sector 9494400 -[2607298.402410] print_req_error: I/O error, dev loop1, sector 9494616 -[2607298.402466] print_req_error: I/O error, dev loop1, sector 5300224 -[2607298.402587] print_req_error: I/O error, dev loop1, sector 5300232 -[2607298.445597] print_req_error: I/O error, dev loop1, sector 85888 -[2607298.445741] print_req_error: I/O error, dev loop1, sector 86000 -[2607298.445885] print_req_error: I/O error, dev loop1, sector 20480 -[2607298.446035] print_req_error: I/O error, dev loop1, sector 20488 -[2607298.456281] print_req_error: I/O error, dev loop1, sector 5300096 -[2607298.456426] print_req_error: I/O error, dev loop1, sector 5300208 -[2628837.822047] print_req_error: 54 callbacks suppressed -[2628837.822048] print_req_error: I/O error, dev loop1, sector 9494400 -[2628837.822242] print_req_error: I/O error, dev loop1, sector 9494616 -[2628837.822308] print_req_error: I/O error, dev loop1, sector 5300224 -[2628837.822340] print_req_error: I/O error, dev loop1, sector 5300232 -[2628837.873366] print_req_error: I/O error, dev loop1, sector 85888 -[2628837.873515] print_req_error: I/O error, dev loop1, sector 86000 -[2628837.873657] print_req_error: I/O error, dev loop1, sector 20480 -[2628837.873764] print_req_error: I/O error, dev loop1, sector 20488 -[2628837.883752] print_req_error: I/O error, dev loop1, sector 5300096 -[2628837.883900] print_req_error: I/O error, dev loop1, sector 5300208 -[2628896.004288] print_req_error: 54 callbacks suppressed -[2628896.004290] print_req_error: I/O error, dev loop1, sector 9494400 -[2628896.004409] print_req_error: I/O error, dev loop1, sector 9494616 -[2628896.004480] print_req_error: I/O error, dev loop1, sector 5300224 -[2628896.004579] print_req_error: I/O error, dev loop1, sector 5300232 -[2628896.022008] print_req_error: I/O error, dev loop1, sector 85888 -[2628896.022118] print_req_error: I/O error, dev loop1, sector 86000 -[2628896.022227] print_req_error: I/O error, dev loop1, sector 20480 -[2628896.022335] print_req_error: I/O error, dev loop1, sector 20488 -[2628896.027460] print_req_error: I/O error, dev loop1, sector 5300096 -[2628896.027554] print_req_error: I/O error, dev loop1, sector 5300208 -[2650438.262483] print_req_error: 54 callbacks suppressed -[2650438.262485] print_req_error: I/O error, dev loop1, sector 9494400 -[2650438.262747] print_req_error: I/O error, dev loop1, sector 9494616 -[2650438.262817] print_req_error: I/O error, dev loop1, sector 5300224 -[2650438.262950] print_req_error: I/O error, dev loop1, sector 5300232 -[2650438.309559] print_req_error: I/O error, dev loop1, sector 85888 -[2650438.309743] print_req_error: I/O error, dev loop1, sector 86000 -[2650438.309830] print_req_error: I/O error, dev loop1, sector 20480 -[2650438.309974] print_req_error: I/O error, dev loop1, sector 20488 -[2650438.320558] print_req_error: I/O error, dev loop1, sector 5300096 -[2650438.320710] print_req_error: I/O error, dev loop1, sector 5300208 -[2650497.246965] print_req_error: 54 callbacks suppressed -[2650497.246967] print_req_error: I/O error, dev loop1, sector 9494400 -[2650497.247049] print_req_error: I/O error, dev loop1, sector 9494616 -[2650497.247086] print_req_error: I/O error, dev loop1, sector 5300224 -[2650497.247188] print_req_error: I/O error, dev loop1, sector 5300232 -[2650497.258079] print_req_error: I/O error, dev loop1, sector 85888 -[2650497.258191] print_req_error: I/O error, dev loop1, sector 86000 -[2650497.258251] print_req_error: I/O error, dev loop1, sector 20480 -[2650497.258374] print_req_error: I/O error, dev loop1, sector 20488 -[2650497.286243] print_req_error: I/O error, dev loop1, sector 5300096 -[2650497.286388] print_req_error: I/O error, dev loop1, sector 5300208 -[2672037.600551] print_req_error: 54 callbacks suppressed -[2672037.600552] print_req_error: I/O error, dev loop1, sector 9494400 -[2672037.600733] print_req_error: I/O error, dev loop1, sector 9494616 -[2672037.600836] print_req_error: I/O error, dev loop1, sector 5300224 -[2672037.600942] print_req_error: I/O error, dev loop1, sector 5300232 -[2672037.911080] print_req_error: I/O error, dev loop1, sector 85888 -[2672037.911252] print_req_error: I/O error, dev loop1, sector 86000 -[2672037.911338] print_req_error: I/O error, dev loop1, sector 20480 -[2672037.911409] print_req_error: I/O error, dev loop1, sector 20488 -[2672038.116902] print_req_error: I/O error, dev loop1, sector 5300096 -[2672038.117067] print_req_error: I/O error, dev loop1, sector 5300208 -[2672097.782012] print_req_error: 54 callbacks suppressed -[2672097.782014] print_req_error: I/O error, dev loop1, sector 9494400 -[2672097.782166] print_req_error: I/O error, dev loop1, sector 9494616 -[2672097.782274] print_req_error: I/O error, dev loop1, sector 5300224 -[2672097.782344] print_req_error: I/O error, dev loop1, sector 5300232 -[2672097.817002] print_req_error: I/O error, dev loop1, sector 85888 -[2672097.817144] print_req_error: I/O error, dev loop1, sector 86000 -[2672097.817221] print_req_error: I/O error, dev loop1, sector 20480 -[2672097.817375] print_req_error: I/O error, dev loop1, sector 20488 -[2672097.860971] print_req_error: I/O error, dev loop1, sector 5300096 -[2672097.861125] print_req_error: I/O error, dev loop1, sector 5300208 -[2693642.041832] print_req_error: 54 callbacks suppressed -[2693642.041833] print_req_error: I/O error, dev loop1, sector 9494400 -[2693642.042023] print_req_error: I/O error, dev loop1, sector 9494616 -[2693642.042085] print_req_error: I/O error, dev loop1, sector 5300224 -[2693642.042213] print_req_error: I/O error, dev loop1, sector 5300232 -[2693642.102519] print_req_error: I/O error, dev loop1, sector 85888 -[2693642.102699] print_req_error: I/O error, dev loop1, sector 86000 -[2693642.102850] print_req_error: I/O error, dev loop1, sector 20480 -[2693642.102998] print_req_error: I/O error, dev loop1, sector 20488 -[2693642.113049] print_req_error: I/O error, dev loop1, sector 5300096 -[2693642.113202] print_req_error: I/O error, dev loop1, sector 5300208 -[2693699.891841] print_req_error: 54 callbacks suppressed -[2693699.891842] print_req_error: I/O error, dev loop1, sector 9494400 -[2693699.891991] print_req_error: I/O error, dev loop1, sector 9494616 -[2693699.892051] print_req_error: I/O error, dev loop1, sector 5300224 -[2693699.892143] print_req_error: I/O error, dev loop1, sector 5300232 -[2693699.906214] print_req_error: I/O error, dev loop1, sector 85888 -[2693699.906325] print_req_error: I/O error, dev loop1, sector 86000 -[2693699.906384] print_req_error: I/O error, dev loop1, sector 20480 -[2693699.906475] print_req_error: I/O error, dev loop1, sector 20488 -[2693699.911921] print_req_error: I/O error, dev loop1, sector 5300096 -[2693699.912053] print_req_error: I/O error, dev loop1, sector 5300208 -[2715236.075419] print_req_error: 54 callbacks suppressed -[2715236.075420] print_req_error: I/O error, dev loop1, sector 9494400 -[2715236.075619] print_req_error: I/O error, dev loop1, sector 9494616 -[2715236.075682] print_req_error: I/O error, dev loop1, sector 5300224 -[2715236.075781] print_req_error: I/O error, dev loop1, sector 5300232 -[2715236.181342] print_req_error: I/O error, dev loop1, sector 85888 -[2715236.181498] print_req_error: I/O error, dev loop1, sector 86000 -[2715236.181646] print_req_error: I/O error, dev loop1, sector 20480 -[2715236.181802] print_req_error: I/O error, dev loop1, sector 20488 -[2715236.226301] print_req_error: I/O error, dev loop1, sector 5300096 -[2715236.226483] print_req_error: I/O error, dev loop1, sector 5300208 -[2715293.990452] print_req_error: 54 callbacks suppressed -[2715293.990454] print_req_error: I/O error, dev loop1, sector 9494400 -[2715293.990602] print_req_error: I/O error, dev loop1, sector 9494616 -[2715293.990663] print_req_error: I/O error, dev loop1, sector 5300224 -[2715293.990790] print_req_error: I/O error, dev loop1, sector 5300232 -[2715294.038690] print_req_error: I/O error, dev loop1, sector 85888 -[2715294.038834] print_req_error: I/O error, dev loop1, sector 86000 -[2715294.038978] print_req_error: I/O error, dev loop1, sector 20480 -[2715294.039116] print_req_error: I/O error, dev loop1, sector 20488 -[2715294.049167] print_req_error: I/O error, dev loop1, sector 5300096 -[2715294.049312] print_req_error: I/O error, dev loop1, sector 5300208 -[2736837.627712] print_req_error: 54 callbacks suppressed -[2736837.627714] print_req_error: I/O error, dev loop1, sector 9494400 -[2736837.627923] print_req_error: I/O error, dev loop1, sector 9494616 -[2736837.627995] print_req_error: I/O error, dev loop1, sector 5300224 -[2736837.628082] print_req_error: I/O error, dev loop1, sector 5300232 -[2736837.670124] print_req_error: I/O error, dev loop1, sector 85888 -[2736837.670291] print_req_error: I/O error, dev loop1, sector 86000 -[2736837.670390] print_req_error: I/O error, dev loop1, sector 20480 -[2736837.670546] print_req_error: I/O error, dev loop1, sector 20488 -[2736837.701903] print_req_error: I/O error, dev loop1, sector 5300096 -[2736837.702055] print_req_error: I/O error, dev loop1, sector 5300208 -[2736894.915792] print_req_error: 54 callbacks suppressed -[2736894.915794] print_req_error: I/O error, dev loop1, sector 9494400 -[2736894.915945] print_req_error: I/O error, dev loop1, sector 9494616 -[2736894.916011] print_req_error: I/O error, dev loop1, sector 5300224 -[2736894.916044] print_req_error: I/O error, dev loop1, sector 5300232 -[2736894.918335] print_req_error: I/O error, dev loop1, sector 85888 -[2736894.918472] print_req_error: I/O error, dev loop1, sector 86000 -[2736894.918551] print_req_error: I/O error, dev loop1, sector 20480 -[2736894.918601] print_req_error: I/O error, dev loop1, sector 20488 -[2736894.924535] print_req_error: I/O error, dev loop1, sector 5300096 -[2736894.924645] print_req_error: I/O error, dev loop1, sector 5300208 -[2758439.253962] print_req_error: 54 callbacks suppressed -[2758439.253964] print_req_error: I/O error, dev loop1, sector 9494400 -[2758439.254136] print_req_error: I/O error, dev loop1, sector 9494616 -[2758439.254234] print_req_error: I/O error, dev loop1, sector 5300224 -[2758439.254353] print_req_error: I/O error, dev loop1, sector 5300232 -[2758439.302007] print_req_error: I/O error, dev loop1, sector 85888 -[2758439.302167] print_req_error: I/O error, dev loop1, sector 86000 -[2758439.302259] print_req_error: I/O error, dev loop1, sector 20480 -[2758439.302416] print_req_error: I/O error, dev loop1, sector 20488 -[2758439.312317] print_req_error: I/O error, dev loop1, sector 5300096 -[2758439.312473] print_req_error: I/O error, dev loop1, sector 5300208 -[2758497.709296] print_req_error: 54 callbacks suppressed -[2758497.709298] print_req_error: I/O error, dev loop1, sector 9494400 -[2758497.709422] print_req_error: I/O error, dev loop1, sector 9494616 -[2758497.709486] print_req_error: I/O error, dev loop1, sector 5300224 -[2758497.709520] print_req_error: I/O error, dev loop1, sector 5300232 -[2758497.711161] print_req_error: I/O error, dev loop1, sector 85888 -[2758497.711312] print_req_error: I/O error, dev loop1, sector 86000 -[2758497.711387] print_req_error: I/O error, dev loop1, sector 20480 -[2758497.711504] print_req_error: I/O error, dev loop1, sector 20488 -[2758497.712560] print_req_error: I/O error, dev loop1, sector 5300096 -[2758497.712682] print_req_error: I/O error, dev loop1, sector 5300208 -[2780036.121667] print_req_error: 54 callbacks suppressed -[2780036.121668] print_req_error: I/O error, dev loop1, sector 9494400 -[2780036.121801] print_req_error: I/O error, dev loop1, sector 9494616 -[2780036.121836] print_req_error: I/O error, dev loop1, sector 5300224 -[2780036.121970] print_req_error: I/O error, dev loop1, sector 5300232 -[2780036.173720] print_req_error: I/O error, dev loop1, sector 85888 -[2780036.173889] print_req_error: I/O error, dev loop1, sector 86000 -[2780036.173972] print_req_error: I/O error, dev loop1, sector 20480 -[2780036.174117] print_req_error: I/O error, dev loop1, sector 20488 -[2780036.205487] print_req_error: I/O error, dev loop1, sector 5300096 -[2780036.205586] print_req_error: I/O error, dev loop1, sector 5300208 -[2780092.970132] print_req_error: 54 callbacks suppressed -[2780092.970156] print_req_error: I/O error, dev loop1, sector 9494400 -[2780092.970257] print_req_error: I/O error, dev loop1, sector 9494616 -[2780092.970319] print_req_error: I/O error, dev loop1, sector 5300224 -[2780092.970406] print_req_error: I/O error, dev loop1, sector 5300232 -[2780092.971506] print_req_error: I/O error, dev loop1, sector 85888 -[2780092.971588] print_req_error: I/O error, dev loop1, sector 86000 -[2780092.971616] print_req_error: I/O error, dev loop1, sector 20480 -[2780092.971684] print_req_error: I/O error, dev loop1, sector 20488 -[2780092.983513] print_req_error: I/O error, dev loop1, sector 5300096 -[2780092.983667] print_req_error: I/O error, dev loop1, sector 5300208 -[2801637.102362] print_req_error: 54 callbacks suppressed -[2801637.102364] print_req_error: I/O error, dev loop1, sector 9494400 -[2801637.102544] print_req_error: I/O error, dev loop1, sector 9494616 -[2801637.102678] print_req_error: I/O error, dev loop1, sector 5300224 -[2801637.102801] print_req_error: I/O error, dev loop1, sector 5300232 -[2801637.149329] print_req_error: I/O error, dev loop1, sector 85888 -[2801637.149496] print_req_error: I/O error, dev loop1, sector 86000 -[2801637.149590] print_req_error: I/O error, dev loop1, sector 20480 -[2801637.149745] print_req_error: I/O error, dev loop1, sector 20488 -[2801637.193116] print_req_error: I/O error, dev loop1, sector 5300096 -[2801637.193267] print_req_error: I/O error, dev loop1, sector 5300208 -[2801698.988086] print_req_error: 54 callbacks suppressed -[2801698.988088] print_req_error: I/O error, dev loop1, sector 9494400 -[2801698.988264] print_req_error: I/O error, dev loop1, sector 9494616 -[2801698.988328] print_req_error: I/O error, dev loop1, sector 5300224 -[2801698.988374] print_req_error: I/O error, dev loop1, sector 5300232 -[2801699.037381] print_req_error: I/O error, dev loop1, sector 85888 -[2801699.037524] print_req_error: I/O error, dev loop1, sector 86000 -[2801699.037602] print_req_error: I/O error, dev loop1, sector 20480 -[2801699.037739] print_req_error: I/O error, dev loop1, sector 20488 -[2801699.048017] print_req_error: I/O error, dev loop1, sector 5300096 -[2801699.048163] print_req_error: I/O error, dev loop1, sector 5300208 -[2823236.589303] print_req_error: 54 callbacks suppressed -[2823236.589305] print_req_error: I/O error, dev loop1, sector 9494400 -[2823236.589546] print_req_error: I/O error, dev loop1, sector 9494616 -[2823236.589611] print_req_error: I/O error, dev loop1, sector 5300224 -[2823236.589706] print_req_error: I/O error, dev loop1, sector 5300232 -[2823237.123073] print_req_error: I/O error, dev loop1, sector 85888 -[2823237.123244] print_req_error: I/O error, dev loop1, sector 86000 -[2823237.123328] print_req_error: I/O error, dev loop1, sector 20480 -[2823237.123469] print_req_error: I/O error, dev loop1, sector 20488 -[2823237.154731] print_req_error: I/O error, dev loop1, sector 5300096 -[2823237.154883] print_req_error: I/O error, dev loop1, sector 5300208 -[2823294.094139] print_req_error: 54 callbacks suppressed -[2823294.094140] print_req_error: I/O error, dev loop1, sector 9494400 -[2823294.094226] print_req_error: I/O error, dev loop1, sector 9494616 -[2823294.094293] print_req_error: I/O error, dev loop1, sector 5300224 -[2823294.094368] print_req_error: I/O error, dev loop1, sector 5300232 -[2823294.145004] print_req_error: I/O error, dev loop1, sector 85888 -[2823294.145141] print_req_error: I/O error, dev loop1, sector 86000 -[2823294.145215] print_req_error: I/O error, dev loop1, sector 20480 -[2823294.145341] print_req_error: I/O error, dev loop1, sector 20488 -[2823294.155207] print_req_error: I/O error, dev loop1, sector 5300096 -[2823294.155303] print_req_error: I/O error, dev loop1, sector 5300208 -[2844835.545593] print_req_error: 54 callbacks suppressed -[2844835.545595] print_req_error: I/O error, dev loop1, sector 9494400 -[2844835.545835] print_req_error: I/O error, dev loop1, sector 9494616 -[2844835.545901] print_req_error: I/O error, dev loop1, sector 5300224 -[2844835.545937] print_req_error: I/O error, dev loop1, sector 5300232 -[2844835.586263] print_req_error: I/O error, dev loop1, sector 85888 -[2844835.586417] print_req_error: I/O error, dev loop1, sector 86000 -[2844835.586562] print_req_error: I/O error, dev loop1, sector 20480 -[2844835.586710] print_req_error: I/O error, dev loop1, sector 20488 -[2844835.596654] print_req_error: I/O error, dev loop1, sector 5300096 -[2844835.596801] print_req_error: I/O error, dev loop1, sector 5300208 -[2844893.850206] print_req_error: 54 callbacks suppressed -[2844893.850208] print_req_error: I/O error, dev loop1, sector 9494400 -[2844893.850327] print_req_error: I/O error, dev loop1, sector 9494616 -[2844893.850387] print_req_error: I/O error, dev loop1, sector 5300224 -[2844893.850508] print_req_error: I/O error, dev loop1, sector 5300232 -[2844893.897174] print_req_error: I/O error, dev loop1, sector 85888 -[2844893.897306] print_req_error: I/O error, dev loop1, sector 86000 -[2844893.897459] print_req_error: I/O error, dev loop1, sector 20480 -[2844893.897602] print_req_error: I/O error, dev loop1, sector 20488 -[2844893.907478] print_req_error: I/O error, dev loop1, sector 5300096 -[2844893.907623] print_req_error: I/O error, dev loop1, sector 5300208 -[2866436.206426] print_req_error: 54 callbacks suppressed -[2866436.206428] print_req_error: I/O error, dev loop1, sector 9494400 -[2866436.206653] print_req_error: I/O error, dev loop1, sector 9494616 -[2866436.206711] print_req_error: I/O error, dev loop1, sector 5300224 -[2866436.206794] print_req_error: I/O error, dev loop1, sector 5300232 -[2866436.257428] print_req_error: I/O error, dev loop1, sector 85888 -[2866436.257588] print_req_error: I/O error, dev loop1, sector 86000 -[2866436.257658] print_req_error: I/O error, dev loop1, sector 20480 -[2866436.257781] print_req_error: I/O error, dev loop1, sector 20488 -[2866436.268068] print_req_error: I/O error, dev loop1, sector 5300096 -[2866436.268209] print_req_error: I/O error, dev loop1, sector 5300208 -[2866493.831641] print_req_error: 54 callbacks suppressed -[2866493.831642] print_req_error: I/O error, dev loop1, sector 9494400 -[2866493.831724] print_req_error: I/O error, dev loop1, sector 9494616 -[2866493.831758] print_req_error: I/O error, dev loop1, sector 5300224 -[2866493.831825] print_req_error: I/O error, dev loop1, sector 5300232 -[2866493.867705] print_req_error: I/O error, dev loop1, sector 85888 -[2866493.867788] print_req_error: I/O error, dev loop1, sector 86000 -[2866493.867855] print_req_error: I/O error, dev loop1, sector 20480 -[2866493.867927] print_req_error: I/O error, dev loop1, sector 20488 -[2866493.911999] print_req_error: I/O error, dev loop1, sector 5300096 -[2866493.912131] print_req_error: I/O error, dev loop1, sector 5300208 -[2888040.321150] print_req_error: 54 callbacks suppressed -[2888040.321152] print_req_error: I/O error, dev loop1, sector 9494400 -[2888040.321346] print_req_error: I/O error, dev loop1, sector 9494616 -[2888040.321408] print_req_error: I/O error, dev loop1, sector 5300224 -[2888040.321534] print_req_error: I/O error, dev loop1, sector 5300232 -[2888040.399396] print_req_error: I/O error, dev loop1, sector 85888 -[2888040.399545] print_req_error: I/O error, dev loop1, sector 86000 -[2888040.399641] print_req_error: I/O error, dev loop1, sector 20480 -[2888040.399789] print_req_error: I/O error, dev loop1, sector 20488 -[2888040.420874] print_req_error: I/O error, dev loop1, sector 5300096 -[2888040.421026] print_req_error: I/O error, dev loop1, sector 5300208 -[2888099.802044] print_req_error: 54 callbacks suppressed -[2888099.802045] print_req_error: I/O error, dev loop1, sector 9494400 -[2888099.802117] print_req_error: I/O error, dev loop1, sector 9494616 -[2888099.802168] print_req_error: I/O error, dev loop1, sector 5300224 -[2888099.802204] print_req_error: I/O error, dev loop1, sector 5300232 -[2888099.825369] print_req_error: I/O error, dev loop1, sector 85888 -[2888099.825451] print_req_error: I/O error, dev loop1, sector 86000 -[2888099.825517] print_req_error: I/O error, dev loop1, sector 20480 -[2888099.825584] print_req_error: I/O error, dev loop1, sector 20488 -[2888099.830689] print_req_error: I/O error, dev loop1, sector 5300096 -[2888099.830757] print_req_error: I/O error, dev loop1, sector 5300208 -[2909633.848576] print_req_error: 54 callbacks suppressed -[2909633.848578] print_req_error: I/O error, dev loop1, sector 9494400 -[2909633.848792] print_req_error: I/O error, dev loop1, sector 9494616 -[2909633.848886] print_req_error: I/O error, dev loop1, sector 5300224 -[2909633.848977] print_req_error: I/O error, dev loop1, sector 5300232 -[2909633.895892] print_req_error: I/O error, dev loop1, sector 85888 -[2909633.896003] print_req_error: I/O error, dev loop1, sector 86000 -[2909633.896139] print_req_error: I/O error, dev loop1, sector 20480 -[2909633.896277] print_req_error: I/O error, dev loop1, sector 20488 -[2909633.939700] print_req_error: I/O error, dev loop1, sector 5300096 -[2909633.939850] print_req_error: I/O error, dev loop1, sector 5300208 -[2909692.509340] print_req_error: 54 callbacks suppressed -[2909692.509342] print_req_error: I/O error, dev loop1, sector 9494400 -[2909692.509458] print_req_error: I/O error, dev loop1, sector 9494616 -[2909692.509522] print_req_error: I/O error, dev loop1, sector 5300224 -[2909692.509644] print_req_error: I/O error, dev loop1, sector 5300232 -[2909692.511192] print_req_error: I/O error, dev loop1, sector 85888 -[2909692.511296] print_req_error: I/O error, dev loop1, sector 86000 -[2909692.511355] print_req_error: I/O error, dev loop1, sector 20480 -[2909692.511447] print_req_error: I/O error, dev loop1, sector 20488 -[2909692.539275] print_req_error: I/O error, dev loop1, sector 5300096 -[2909692.539398] print_req_error: I/O error, dev loop1, sector 5300208 -[2931236.578934] print_req_error: 54 callbacks suppressed -[2931236.578936] print_req_error: I/O error, dev loop1, sector 9494400 -[2931236.579183] print_req_error: I/O error, dev loop1, sector 9494616 -[2931236.579254] print_req_error: I/O error, dev loop1, sector 5300224 -[2931236.579326] print_req_error: I/O error, dev loop1, sector 5300232 -[2931236.625290] print_req_error: I/O error, dev loop1, sector 85888 -[2931236.625457] print_req_error: I/O error, dev loop1, sector 86000 -[2931236.625553] print_req_error: I/O error, dev loop1, sector 20480 -[2931236.625704] print_req_error: I/O error, dev loop1, sector 20488 -[2931236.635509] print_req_error: I/O error, dev loop1, sector 5300096 -[2931236.635695] print_req_error: I/O error, dev loop1, sector 5300208 -[2931292.770310] print_req_error: 54 callbacks suppressed -[2931292.770311] print_req_error: I/O error, dev loop1, sector 9494400 -[2931292.770383] print_req_error: I/O error, dev loop1, sector 9494616 -[2931292.770447] print_req_error: I/O error, dev loop1, sector 5300224 -[2931292.770533] print_req_error: I/O error, dev loop1, sector 5300232 -[2931292.784678] print_req_error: I/O error, dev loop1, sector 85888 -[2931292.784793] print_req_error: I/O error, dev loop1, sector 86000 -[2931292.784906] print_req_error: I/O error, dev loop1, sector 20480 -[2931292.785020] print_req_error: I/O error, dev loop1, sector 20488 -[2931292.790256] print_req_error: I/O error, dev loop1, sector 5300096 -[2931292.790413] print_req_error: I/O error, dev loop1, sector 5300208 -[2952859.457978] print_req_error: 54 callbacks suppressed -[2952859.457979] print_req_error: I/O error, dev loop1, sector 9494400 -[2952859.458200] print_req_error: I/O error, dev loop1, sector 9494616 -[2952859.458260] print_req_error: I/O error, dev loop1, sector 5300224 -[2952859.458355] print_req_error: I/O error, dev loop1, sector 5300232 -[2952859.468678] print_req_error: I/O error, dev loop1, sector 85888 -[2952859.468789] print_req_error: I/O error, dev loop1, sector 86000 -[2952859.468906] print_req_error: I/O error, dev loop1, sector 20480 -[2952859.469016] print_req_error: I/O error, dev loop1, sector 20488 -[2952859.474360] print_req_error: I/O error, dev loop1, sector 5300096 -[2952859.474490] print_req_error: I/O error, dev loop1, sector 5300208 -[2952919.959887] print_req_error: 54 callbacks suppressed -[2952919.959888] print_req_error: I/O error, dev loop1, sector 9494400 -[2952919.960046] print_req_error: I/O error, dev loop1, sector 9494616 -[2952919.960112] print_req_error: I/O error, dev loop1, sector 5300224 -[2952919.960216] print_req_error: I/O error, dev loop1, sector 5300232 -[2952919.979258] print_req_error: I/O error, dev loop1, sector 85888 -[2952919.979382] print_req_error: I/O error, dev loop1, sector 86000 -[2952919.979505] print_req_error: I/O error, dev loop1, sector 20480 -[2952919.979631] print_req_error: I/O error, dev loop1, sector 20488 -[2952919.985305] print_req_error: I/O error, dev loop1, sector 5300096 -[2952919.985473] print_req_error: I/O error, dev loop1, sector 5300208 -[2974438.403854] print_req_error: 54 callbacks suppressed -[2974438.403856] print_req_error: I/O error, dev loop1, sector 9494400 -[2974438.404102] print_req_error: I/O error, dev loop1, sector 9494616 -[2974438.404168] print_req_error: I/O error, dev loop1, sector 5300224 -[2974438.404301] print_req_error: I/O error, dev loop1, sector 5300232 -[2974438.446573] print_req_error: I/O error, dev loop1, sector 85888 -[2974438.446755] print_req_error: I/O error, dev loop1, sector 86000 -[2974438.446918] print_req_error: I/O error, dev loop1, sector 20480 -[2974438.447054] print_req_error: I/O error, dev loop1, sector 20488 -[2974438.457171] print_req_error: I/O error, dev loop1, sector 5300096 -[2974438.457319] print_req_error: I/O error, dev loop1, sector 5300208 -[2974495.048081] print_req_error: 54 callbacks suppressed -[2974495.048082] print_req_error: I/O error, dev loop1, sector 9494400 -[2974495.048154] print_req_error: I/O error, dev loop1, sector 9494616 -[2974495.048205] print_req_error: I/O error, dev loop1, sector 5300224 -[2974495.048270] print_req_error: I/O error, dev loop1, sector 5300232 -[2974495.165834] print_req_error: I/O error, dev loop1, sector 85888 -[2974495.165954] print_req_error: I/O error, dev loop1, sector 86000 -[2974495.166058] print_req_error: I/O error, dev loop1, sector 20480 -[2974495.166128] print_req_error: I/O error, dev loop1, sector 20488 -[2974495.211023] print_req_error: I/O error, dev loop1, sector 5300096 -[2974495.211165] print_req_error: I/O error, dev loop1, sector 5300208 -[2996033.988114] print_req_error: 54 callbacks suppressed -[2996033.988116] print_req_error: I/O error, dev loop1, sector 9494400 -[2996033.988350] print_req_error: I/O error, dev loop1, sector 9494616 -[2996033.988415] print_req_error: I/O error, dev loop1, sector 5300224 -[2996033.988545] print_req_error: I/O error, dev loop1, sector 5300232 -[2996033.990619] print_req_error: I/O error, dev loop1, sector 85888 -[2996033.990746] print_req_error: I/O error, dev loop1, sector 86000 -[2996033.990818] print_req_error: I/O error, dev loop1, sector 20480 -[2996033.990963] print_req_error: I/O error, dev loop1, sector 20488 -[2996034.043058] print_req_error: I/O error, dev loop1, sector 5300096 -[2996034.043221] print_req_error: I/O error, dev loop1, sector 5300208 -[2996088.856635] print_req_error: 54 callbacks suppressed -[2996088.856637] print_req_error: I/O error, dev loop1, sector 9494400 -[2996088.856790] print_req_error: I/O error, dev loop1, sector 9494616 -[2996088.856854] print_req_error: I/O error, dev loop1, sector 5300224 -[2996088.856951] print_req_error: I/O error, dev loop1, sector 5300232 -[2996088.858696] print_req_error: I/O error, dev loop1, sector 85888 -[2996088.858798] print_req_error: I/O error, dev loop1, sector 86000 -[2996088.858912] print_req_error: I/O error, dev loop1, sector 20480 -[2996088.859053] print_req_error: I/O error, dev loop1, sector 20488 -[2996088.864200] print_req_error: I/O error, dev loop1, sector 5300096 -[2996088.864284] print_req_error: I/O error, dev loop1, sector 5300208 -[3017643.020541] print_req_error: 54 callbacks suppressed -[3017643.020542] print_req_error: I/O error, dev loop1, sector 9494400 -[3017643.020763] print_req_error: I/O error, dev loop1, sector 9494616 -[3017643.020832] print_req_error: I/O error, dev loop1, sector 5300224 -[3017643.020933] print_req_error: I/O error, dev loop1, sector 5300232 -[3017643.023060] print_req_error: I/O error, dev loop1, sector 85888 -[3017643.023197] print_req_error: I/O error, dev loop1, sector 86000 -[3017643.023270] print_req_error: I/O error, dev loop1, sector 20480 -[3017643.023419] print_req_error: I/O error, dev loop1, sector 20488 -[3017643.071245] print_req_error: I/O error, dev loop1, sector 5300096 -[3017643.071415] print_req_error: I/O error, dev loop1, sector 5300208 -[3017703.145099] print_req_error: 54 callbacks suppressed -[3017703.145101] print_req_error: I/O error, dev loop1, sector 9494400 -[3017703.145152] print_req_error: I/O error, dev loop1, sector 9494616 -[3017703.145186] print_req_error: I/O error, dev loop1, sector 5300224 -[3017703.145212] print_req_error: I/O error, dev loop1, sector 5300232 -[3017703.147404] print_req_error: I/O error, dev loop1, sector 85888 -[3017703.147446] print_req_error: I/O error, dev loop1, sector 86000 -[3017703.147475] print_req_error: I/O error, dev loop1, sector 20480 -[3017703.147501] print_req_error: I/O error, dev loop1, sector 20488 -[3017703.236316] print_req_error: I/O error, dev loop1, sector 5300096 -[3017703.236466] print_req_error: I/O error, dev loop1, sector 5300208 -[3039236.023366] print_req_error: 54 callbacks suppressed -[3039236.023367] print_req_error: I/O error, dev loop1, sector 9494400 -[3039236.023593] print_req_error: I/O error, dev loop1, sector 9494616 -[3039236.023665] print_req_error: I/O error, dev loop1, sector 5300224 -[3039236.023695] print_req_error: I/O error, dev loop1, sector 5300232 -[3039236.069107] print_req_error: I/O error, dev loop1, sector 85888 -[3039236.069268] print_req_error: I/O error, dev loop1, sector 86000 -[3039236.069363] print_req_error: I/O error, dev loop1, sector 20480 -[3039236.069522] print_req_error: I/O error, dev loop1, sector 20488 -[3039236.079332] print_req_error: I/O error, dev loop1, sector 5300096 -[3039236.079486] print_req_error: I/O error, dev loop1, sector 5300208 -[3039295.853058] print_req_error: 54 callbacks suppressed -[3039295.853060] print_req_error: I/O error, dev loop1, sector 9494400 -[3039295.853168] print_req_error: I/O error, dev loop1, sector 9494616 -[3039295.853226] print_req_error: I/O error, dev loop1, sector 5300224 -[3039295.853349] print_req_error: I/O error, dev loop1, sector 5300232 -[3039295.890612] print_req_error: I/O error, dev loop1, sector 85888 -[3039295.890767] print_req_error: I/O error, dev loop1, sector 86000 -[3039295.890836] print_req_error: I/O error, dev loop1, sector 20480 -[3039295.890920] print_req_error: I/O error, dev loop1, sector 20488 -[3039295.934533] print_req_error: I/O error, dev loop1, sector 5300096 -[3039295.934683] print_req_error: I/O error, dev loop1, sector 5300208 -[3060838.815272] print_req_error: 54 callbacks suppressed -[3060838.815273] print_req_error: I/O error, dev loop1, sector 9494400 -[3060838.815442] print_req_error: I/O error, dev loop1, sector 9494616 -[3060838.815516] print_req_error: I/O error, dev loop1, sector 5300224 -[3060838.815547] print_req_error: I/O error, dev loop1, sector 5300232 -[3060841.768061] print_req_error: I/O error, dev loop1, sector 85888 -[3060841.768225] print_req_error: I/O error, dev loop1, sector 86000 -[3060841.768315] print_req_error: I/O error, dev loop1, sector 20480 -[3060841.768491] print_req_error: I/O error, dev loop1, sector 20488 -[3060842.411262] print_req_error: I/O error, dev loop1, sector 5300096 -[3060842.411418] print_req_error: I/O error, dev loop1, sector 5300208 -[3060899.976945] print_req_error: 54 callbacks suppressed -[3060899.976946] print_req_error: I/O error, dev loop1, sector 9494400 -[3060899.977025] print_req_error: I/O error, dev loop1, sector 9494616 -[3060899.977059] print_req_error: I/O error, dev loop1, sector 5300224 -[3060899.977126] print_req_error: I/O error, dev loop1, sector 5300232 -[3060900.096652] print_req_error: I/O error, dev loop1, sector 85888 -[3060900.096809] print_req_error: I/O error, dev loop1, sector 86000 -[3060900.096951] print_req_error: I/O error, dev loop1, sector 20480 -[3060900.097041] print_req_error: I/O error, dev loop1, sector 20488 -[3060900.146757] print_req_error: I/O error, dev loop1, sector 5300096 -[3060900.146899] print_req_error: I/O error, dev loop1, sector 5300208 -[3082443.106383] print_req_error: 54 callbacks suppressed -[3082443.106384] print_req_error: I/O error, dev loop1, sector 9494400 -[3082443.106624] print_req_error: I/O error, dev loop1, sector 9494616 -[3082443.106675] print_req_error: I/O error, dev loop1, sector 5300224 -[3082443.106775] print_req_error: I/O error, dev loop1, sector 5300232 -[3082443.137001] print_req_error: I/O error, dev loop1, sector 85888 -[3082443.137142] print_req_error: I/O error, dev loop1, sector 86000 -[3082443.137226] print_req_error: I/O error, dev loop1, sector 20480 -[3082443.137362] print_req_error: I/O error, dev loop1, sector 20488 -[3082443.165586] print_req_error: I/O error, dev loop1, sector 5300096 -[3082443.165740] print_req_error: I/O error, dev loop1, sector 5300208 -[3082532.530318] print_req_error: 54 callbacks suppressed -[3082532.530320] print_req_error: I/O error, dev loop1, sector 9494400 -[3082532.530467] print_req_error: I/O error, dev loop1, sector 9494616 -[3082532.530524] print_req_error: I/O error, dev loop1, sector 5300224 -[3082532.530615] print_req_error: I/O error, dev loop1, sector 5300232 -[3082532.576196] print_req_error: I/O error, dev loop1, sector 85888 -[3082532.576332] print_req_error: I/O error, dev loop1, sector 86000 -[3082532.576466] print_req_error: I/O error, dev loop1, sector 20480 -[3082532.576605] print_req_error: I/O error, dev loop1, sector 20488 -[3082532.586767] print_req_error: I/O error, dev loop1, sector 5300096 -[3082532.586859] print_req_error: I/O error, dev loop1, sector 5300208 -[3104039.311075] print_req_error: 54 callbacks suppressed -[3104039.311077] print_req_error: I/O error, dev loop1, sector 9494400 -[3104039.311310] print_req_error: I/O error, dev loop1, sector 9494616 -[3104039.311374] print_req_error: I/O error, dev loop1, sector 5300224 -[3104039.311472] print_req_error: I/O error, dev loop1, sector 5300232 -[3104039.371578] print_req_error: I/O error, dev loop1, sector 85888 -[3104039.371733] print_req_error: I/O error, dev loop1, sector 86000 -[3104039.371812] print_req_error: I/O error, dev loop1, sector 20480 -[3104039.371954] print_req_error: I/O error, dev loop1, sector 20488 -[3104039.382318] print_req_error: I/O error, dev loop1, sector 5300096 -[3104039.382479] print_req_error: I/O error, dev loop1, sector 5300208 -[3104096.896355] print_req_error: 54 callbacks suppressed -[3104096.896357] print_req_error: I/O error, dev loop1, sector 9494400 -[3104096.896446] print_req_error: I/O error, dev loop1, sector 9494616 -[3104096.896509] print_req_error: I/O error, dev loop1, sector 5300224 -[3104096.896549] print_req_error: I/O error, dev loop1, sector 5300232 -[3104096.948990] print_req_error: I/O error, dev loop1, sector 85888 -[3104096.949140] print_req_error: I/O error, dev loop1, sector 86000 -[3104096.949290] print_req_error: I/O error, dev loop1, sector 20480 -[3104096.949443] print_req_error: I/O error, dev loop1, sector 20488 -[3104096.959393] print_req_error: I/O error, dev loop1, sector 5300096 -[3104096.959539] print_req_error: I/O error, dev loop1, sector 5300208 -[3125636.865105] print_req_error: 54 callbacks suppressed -[3125636.865106] print_req_error: I/O error, dev loop1, sector 9494400 -[3125636.865313] print_req_error: I/O error, dev loop1, sector 9494616 -[3125636.865373] print_req_error: I/O error, dev loop1, sector 5300224 -[3125636.865509] print_req_error: I/O error, dev loop1, sector 5300232 -[3125636.923574] print_req_error: I/O error, dev loop1, sector 85888 -[3125636.923650] print_req_error: I/O error, dev loop1, sector 86000 -[3125636.923685] print_req_error: I/O error, dev loop1, sector 20480 -[3125636.923731] print_req_error: I/O error, dev loop1, sector 20488 -[3125636.934304] print_req_error: I/O error, dev loop1, sector 5300096 -[3125636.934374] print_req_error: I/O error, dev loop1, sector 5300208 -[3125692.305122] print_req_error: 54 callbacks suppressed -[3125692.305123] print_req_error: I/O error, dev loop1, sector 9494400 -[3125692.305231] print_req_error: I/O error, dev loop1, sector 9494616 -[3125692.305289] print_req_error: I/O error, dev loop1, sector 5300224 -[3125692.305400] print_req_error: I/O error, dev loop1, sector 5300232 -[3125692.394529] print_req_error: I/O error, dev loop1, sector 85888 -[3125692.394675] print_req_error: I/O error, dev loop1, sector 86000 -[3125692.394821] print_req_error: I/O error, dev loop1, sector 20480 -[3125692.394965] print_req_error: I/O error, dev loop1, sector 20488 -[3125692.421724] print_req_error: I/O error, dev loop1, sector 5300096 -[3125692.421867] print_req_error: I/O error, dev loop1, sector 5300208 -[3147235.729527] print_req_error: 54 callbacks suppressed -[3147235.729528] print_req_error: I/O error, dev loop1, sector 9494400 -[3147235.729767] print_req_error: I/O error, dev loop1, sector 9494616 -[3147235.729843] print_req_error: I/O error, dev loop1, sector 5300224 -[3147235.729952] print_req_error: I/O error, dev loop1, sector 5300232 -[3147235.779882] print_req_error: I/O error, dev loop1, sector 85888 -[3147235.780039] print_req_error: I/O error, dev loop1, sector 86000 -[3147235.780126] print_req_error: I/O error, dev loop1, sector 20480 -[3147235.780277] print_req_error: I/O error, dev loop1, sector 20488 -[3147235.790471] print_req_error: I/O error, dev loop1, sector 5300096 -[3147235.790629] print_req_error: I/O error, dev loop1, sector 5300208 -[3147295.513257] print_req_error: 54 callbacks suppressed -[3147295.513259] print_req_error: I/O error, dev loop1, sector 9494400 -[3147295.513342] print_req_error: I/O error, dev loop1, sector 9494616 -[3147295.513376] print_req_error: I/O error, dev loop1, sector 5300224 -[3147295.513444] print_req_error: I/O error, dev loop1, sector 5300232 -[3147295.680616] print_req_error: I/O error, dev loop1, sector 85888 -[3147295.680774] print_req_error: I/O error, dev loop1, sector 86000 -[3147295.680930] print_req_error: I/O error, dev loop1, sector 20480 -[3147295.681012] print_req_error: I/O error, dev loop1, sector 20488 -[3147295.738432] print_req_error: I/O error, dev loop1, sector 5300096 -[3147295.738577] print_req_error: I/O error, dev loop1, sector 5300208 -[3168835.116700] print_req_error: 54 callbacks suppressed -[3168835.116701] print_req_error: I/O error, dev loop1, sector 9494400 -[3168835.116966] print_req_error: I/O error, dev loop1, sector 9494616 -[3168835.117037] print_req_error: I/O error, dev loop1, sector 5300224 -[3168835.117134] print_req_error: I/O error, dev loop1, sector 5300232 -[3168835.178088] print_req_error: I/O error, dev loop1, sector 85888 -[3168835.178251] print_req_error: I/O error, dev loop1, sector 86000 -[3168835.178340] print_req_error: I/O error, dev loop1, sector 20480 -[3168835.178488] print_req_error: I/O error, dev loop1, sector 20488 -[3168835.188297] print_req_error: I/O error, dev loop1, sector 5300096 -[3168835.188457] print_req_error: I/O error, dev loop1, sector 5300208 -[3168891.869300] print_req_error: 54 callbacks suppressed -[3168891.869302] print_req_error: I/O error, dev loop1, sector 9494400 -[3168891.869397] print_req_error: I/O error, dev loop1, sector 9494616 -[3168891.869426] print_req_error: I/O error, dev loop1, sector 5300224 -[3168891.869477] print_req_error: I/O error, dev loop1, sector 5300232 -[3168891.921766] print_req_error: I/O error, dev loop1, sector 85888 -[3168891.921900] print_req_error: I/O error, dev loop1, sector 86000 -[3168891.922033] print_req_error: I/O error, dev loop1, sector 20480 -[3168891.922202] print_req_error: I/O error, dev loop1, sector 20488 -[3168891.932414] print_req_error: I/O error, dev loop1, sector 5300096 -[3168891.932579] print_req_error: I/O error, dev loop1, sector 5300208 -[3190434.647128] print_req_error: 54 callbacks suppressed -[3190434.647130] print_req_error: I/O error, dev loop1, sector 9494400 -[3190434.647402] print_req_error: I/O error, dev loop1, sector 9494616 -[3190434.647479] print_req_error: I/O error, dev loop1, sector 5300224 -[3190434.647616] print_req_error: I/O error, dev loop1, sector 5300232 -[3190434.706983] print_req_error: I/O error, dev loop1, sector 85888 -[3190434.707148] print_req_error: I/O error, dev loop1, sector 86000 -[3190434.707236] print_req_error: I/O error, dev loop1, sector 20480 -[3190434.707389] print_req_error: I/O error, dev loop1, sector 20488 -[3190434.717429] print_req_error: I/O error, dev loop1, sector 5300096 -[3190434.717596] print_req_error: I/O error, dev loop1, sector 5300208 -[3190493.793657] print_req_error: 54 callbacks suppressed -[3190493.793658] print_req_error: I/O error, dev loop1, sector 9494400 -[3190493.793764] print_req_error: I/O error, dev loop1, sector 9494616 -[3190493.793822] print_req_error: I/O error, dev loop1, sector 5300224 -[3190493.793861] print_req_error: I/O error, dev loop1, sector 5300232 -[3190493.828428] print_req_error: I/O error, dev loop1, sector 85888 -[3190493.828571] print_req_error: I/O error, dev loop1, sector 86000 -[3190493.828649] print_req_error: I/O error, dev loop1, sector 20480 -[3190493.828792] print_req_error: I/O error, dev loop1, sector 20488 -[3190493.872480] print_req_error: I/O error, dev loop1, sector 5300096 -[3190493.872616] print_req_error: I/O error, dev loop1, sector 5300208 -[3212038.731204] print_req_error: 54 callbacks suppressed -[3212038.731206] print_req_error: I/O error, dev loop1, sector 9494400 -[3212038.731479] print_req_error: I/O error, dev loop1, sector 9494616 -[3212038.731563] print_req_error: I/O error, dev loop1, sector 5300224 -[3212038.731695] print_req_error: I/O error, dev loop1, sector 5300232 -[3212038.793278] print_req_error: I/O error, dev loop1, sector 85888 -[3212038.793420] print_req_error: I/O error, dev loop1, sector 86000 -[3212038.793561] print_req_error: I/O error, dev loop1, sector 20480 -[3212038.793709] print_req_error: I/O error, dev loop1, sector 20488 -[3212038.803782] print_req_error: I/O error, dev loop1, sector 5300096 -[3212038.803924] print_req_error: I/O error, dev loop1, sector 5300208 -[3212096.443414] print_req_error: 54 callbacks suppressed -[3212096.443416] print_req_error: I/O error, dev loop1, sector 9494400 -[3212096.443548] print_req_error: I/O error, dev loop1, sector 9494616 -[3212096.443648] print_req_error: I/O error, dev loop1, sector 5300224 -[3212096.443706] print_req_error: I/O error, dev loop1, sector 5300232 -[3212096.492853] print_req_error: I/O error, dev loop1, sector 85888 -[3212096.492995] print_req_error: I/O error, dev loop1, sector 86000 -[3212096.493135] print_req_error: I/O error, dev loop1, sector 20480 -[3212096.493274] print_req_error: I/O error, dev loop1, sector 20488 -[3212096.503336] print_req_error: I/O error, dev loop1, sector 5300096 -[3212096.503478] print_req_error: I/O error, dev loop1, sector 5300208 -[3233640.342726] print_req_error: 54 callbacks suppressed -[3233640.342728] print_req_error: I/O error, dev loop1, sector 9494400 -[3233640.342956] print_req_error: I/O error, dev loop1, sector 9494616 -[3233640.343021] print_req_error: I/O error, dev loop1, sector 5300224 -[3233640.343150] print_req_error: I/O error, dev loop1, sector 5300232 -[3233640.518237] print_req_error: I/O error, dev loop1, sector 85888 -[3233640.518422] print_req_error: I/O error, dev loop1, sector 86000 -[3233640.518568] print_req_error: I/O error, dev loop1, sector 20480 -[3233640.518812] print_req_error: I/O error, dev loop1, sector 20488 -[3233640.605979] print_req_error: I/O error, dev loop1, sector 5300096 -[3233640.606127] print_req_error: I/O error, dev loop1, sector 5300208 -[3233698.158090] print_req_error: 54 callbacks suppressed -[3233698.158091] print_req_error: I/O error, dev loop1, sector 9494400 -[3233698.158176] print_req_error: I/O error, dev loop1, sector 9494616 -[3233698.158209] print_req_error: I/O error, dev loop1, sector 5300224 -[3233698.158277] print_req_error: I/O error, dev loop1, sector 5300232 -[3233698.173031] print_req_error: I/O error, dev loop1, sector 85888 -[3233698.173177] print_req_error: I/O error, dev loop1, sector 86000 -[3233698.173225] print_req_error: I/O error, dev loop1, sector 20480 -[3233698.173369] print_req_error: I/O error, dev loop1, sector 20488 -[3233698.178751] print_req_error: I/O error, dev loop1, sector 5300096 -[3233698.178856] print_req_error: I/O error, dev loop1, sector 5300208 -[3255236.883197] print_req_error: 54 callbacks suppressed -[3255236.883198] print_req_error: I/O error, dev loop1, sector 9494400 -[3255236.883439] print_req_error: I/O error, dev loop1, sector 9494616 -[3255236.883506] print_req_error: I/O error, dev loop1, sector 5300224 -[3255236.883637] print_req_error: I/O error, dev loop1, sector 5300232 -[3255236.928203] print_req_error: I/O error, dev loop1, sector 85888 -[3255236.928306] print_req_error: I/O error, dev loop1, sector 86000 -[3255236.928385] print_req_error: I/O error, dev loop1, sector 20480 -[3255236.928541] print_req_error: I/O error, dev loop1, sector 20488 -[3255236.938857] print_req_error: I/O error, dev loop1, sector 5300096 -[3255236.939005] print_req_error: I/O error, dev loop1, sector 5300208 -[3255296.185782] print_req_error: 54 callbacks suppressed -[3255296.185784] print_req_error: I/O error, dev loop1, sector 9494400 -[3255296.185944] print_req_error: I/O error, dev loop1, sector 9494616 -[3255296.186017] print_req_error: I/O error, dev loop1, sector 5300224 -[3255296.186151] print_req_error: I/O error, dev loop1, sector 5300232 -[3255296.250069] print_req_error: I/O error, dev loop1, sector 85888 -[3255296.250211] print_req_error: I/O error, dev loop1, sector 86000 -[3255296.250305] print_req_error: I/O error, dev loop1, sector 20480 -[3255296.250457] print_req_error: I/O error, dev loop1, sector 20488 -[3255296.260370] print_req_error: I/O error, dev loop1, sector 5300096 -[3255296.260534] print_req_error: I/O error, dev loop1, sector 5300208 -[3276838.471936] print_req_error: 54 callbacks suppressed -[3276838.471939] print_req_error: I/O error, dev loop1, sector 9494400 -[3276838.472171] print_req_error: I/O error, dev loop1, sector 9494616 -[3276838.472304] print_req_error: I/O error, dev loop1, sector 5300224 -[3276838.472437] print_req_error: I/O error, dev loop1, sector 5300232 -[3276838.740978] print_req_error: I/O error, dev loop1, sector 85888 -[3276838.741133] print_req_error: I/O error, dev loop1, sector 86000 -[3276838.741274] print_req_error: I/O error, dev loop1, sector 20480 -[3276838.741426] print_req_error: I/O error, dev loop1, sector 20488 -[3276838.906653] print_req_error: I/O error, dev loop1, sector 5300096 -[3276838.906795] print_req_error: I/O error, dev loop1, sector 5300208 -[3276899.295988] print_req_error: 54 callbacks suppressed -[3276899.295989] print_req_error: I/O error, dev loop1, sector 9494400 -[3276899.296131] print_req_error: I/O error, dev loop1, sector 9494616 -[3276899.296186] print_req_error: I/O error, dev loop1, sector 5300224 -[3276899.296273] print_req_error: I/O error, dev loop1, sector 5300232 -[3276899.329767] print_req_error: I/O error, dev loop1, sector 85888 -[3276899.329935] print_req_error: I/O error, dev loop1, sector 86000 -[3276899.330056] print_req_error: I/O error, dev loop1, sector 20480 -[3276899.330176] print_req_error: I/O error, dev loop1, sector 20488 -[3276899.373966] print_req_error: I/O error, dev loop1, sector 5300096 -[3276899.374116] print_req_error: I/O error, dev loop1, sector 5300208 -[3298435.022426] print_req_error: 54 callbacks suppressed -[3298435.022428] print_req_error: I/O error, dev loop1, sector 9494400 -[3298435.022607] print_req_error: I/O error, dev loop1, sector 9494616 -[3298435.022667] print_req_error: I/O error, dev loop1, sector 5300224 -[3298435.022696] print_req_error: I/O error, dev loop1, sector 5300232 -[3298435.318796] print_req_error: I/O error, dev loop1, sector 85888 -[3298435.318917] print_req_error: I/O error, dev loop1, sector 86000 -[3298435.319035] print_req_error: I/O error, dev loop1, sector 20480 -[3298435.319149] print_req_error: I/O error, dev loop1, sector 20488 -[3298435.535494] print_req_error: I/O error, dev loop1, sector 5300096 -[3298435.535815] print_req_error: I/O error, dev loop1, sector 5300208 -[3298491.816365] print_req_error: 54 callbacks suppressed -[3298491.816367] print_req_error: I/O error, dev loop1, sector 9494400 -[3298491.816450] print_req_error: I/O error, dev loop1, sector 9494616 -[3298491.816483] print_req_error: I/O error, dev loop1, sector 5300224 -[3298491.816550] print_req_error: I/O error, dev loop1, sector 5300232 -[3298491.916821] print_req_error: I/O error, dev loop1, sector 85888 -[3298491.916964] print_req_error: I/O error, dev loop1, sector 86000 -[3298491.917099] print_req_error: I/O error, dev loop1, sector 20480 -[3298491.917247] print_req_error: I/O error, dev loop1, sector 20488 -[3298491.936057] print_req_error: I/O error, dev loop1, sector 5300096 -[3298491.936199] print_req_error: I/O error, dev loop1, sector 5300208 -[3320038.084433] print_req_error: 54 callbacks suppressed -[3320038.084435] print_req_error: I/O error, dev loop1, sector 9494400 -[3320038.084655] print_req_error: I/O error, dev loop1, sector 9494616 -[3320038.084722] print_req_error: I/O error, dev loop1, sector 5300224 -[3320038.084869] print_req_error: I/O error, dev loop1, sector 5300232 -[3320038.211777] print_req_error: I/O error, dev loop1, sector 85888 -[3320038.211900] print_req_error: I/O error, dev loop1, sector 86000 -[3320038.212037] print_req_error: I/O error, dev loop1, sector 20480 -[3320038.212190] print_req_error: I/O error, dev loop1, sector 20488 -[3320038.314908] print_req_error: I/O error, dev loop1, sector 5300096 -[3320038.315029] print_req_error: I/O error, dev loop1, sector 5300208 -[3320096.933509] print_req_error: 54 callbacks suppressed -[3320096.933511] print_req_error: I/O error, dev loop1, sector 9494400 -[3320096.933668] print_req_error: I/O error, dev loop1, sector 9494616 -[3320096.933788] print_req_error: I/O error, dev loop1, sector 5300224 -[3320096.933900] print_req_error: I/O error, dev loop1, sector 5300232 -[3320096.935818] print_req_error: I/O error, dev loop1, sector 85888 -[3320096.935959] print_req_error: I/O error, dev loop1, sector 86000 -[3320096.936038] print_req_error: I/O error, dev loop1, sector 20480 -[3320096.936174] print_req_error: I/O error, dev loop1, sector 20488 -[3320096.937383] print_req_error: I/O error, dev loop1, sector 5300096 -[3320096.937483] print_req_error: I/O error, dev loop1, sector 5300208 -[3341636.090522] print_req_error: 54 callbacks suppressed -[3341636.090524] print_req_error: I/O error, dev loop1, sector 9494400 -[3341636.090771] print_req_error: I/O error, dev loop1, sector 9494616 -[3341636.090837] print_req_error: I/O error, dev loop1, sector 5300224 -[3341636.090868] print_req_error: I/O error, dev loop1, sector 5300232 -[3341636.133664] print_req_error: I/O error, dev loop1, sector 85888 -[3341636.133794] print_req_error: I/O error, dev loop1, sector 86000 -[3341636.133862] print_req_error: I/O error, dev loop1, sector 20480 -[3341636.133979] print_req_error: I/O error, dev loop1, sector 20488 -[3341636.177474] print_req_error: I/O error, dev loop1, sector 5300096 -[3341636.177627] print_req_error: I/O error, dev loop1, sector 5300208 -[3341691.579292] print_req_error: 54 callbacks suppressed -[3341691.579293] print_req_error: I/O error, dev loop1, sector 9494400 -[3341691.579438] print_req_error: I/O error, dev loop1, sector 9494616 -[3341691.579499] print_req_error: I/O error, dev loop1, sector 5300224 -[3341691.579583] print_req_error: I/O error, dev loop1, sector 5300232 -[3341691.632909] print_req_error: I/O error, dev loop1, sector 85888 -[3341691.633053] print_req_error: I/O error, dev loop1, sector 86000 -[3341691.633157] print_req_error: I/O error, dev loop1, sector 20480 -[3341691.633306] print_req_error: I/O error, dev loop1, sector 20488 -[3341691.643725] print_req_error: I/O error, dev loop1, sector 5300096 -[3341691.643874] print_req_error: I/O error, dev loop1, sector 5300208 -[3363235.730879] print_req_error: 54 callbacks suppressed -[3363235.730881] print_req_error: I/O error, dev loop1, sector 9494400 -[3363235.731116] print_req_error: I/O error, dev loop1, sector 9494616 -[3363235.731181] print_req_error: I/O error, dev loop1, sector 5300224 -[3363235.731312] print_req_error: I/O error, dev loop1, sector 5300232 -[3363235.788840] print_req_error: I/O error, dev loop1, sector 85888 -[3363235.788996] print_req_error: I/O error, dev loop1, sector 86000 -[3363235.789108] print_req_error: I/O error, dev loop1, sector 20480 -[3363235.789210] print_req_error: I/O error, dev loop1, sector 20488 -[3363235.799471] print_req_error: I/O error, dev loop1, sector 5300096 -[3363235.799626] print_req_error: I/O error, dev loop1, sector 5300208 -[3363293.446109] print_req_error: 54 callbacks suppressed -[3363293.446111] print_req_error: I/O error, dev loop1, sector 9494400 -[3363293.446236] print_req_error: I/O error, dev loop1, sector 9494616 -[3363293.446300] print_req_error: I/O error, dev loop1, sector 5300224 -[3363293.446425] print_req_error: I/O error, dev loop1, sector 5300232 -[3363293.488553] print_req_error: I/O error, dev loop1, sector 85888 -[3363293.488691] print_req_error: I/O error, dev loop1, sector 86000 -[3363293.488766] print_req_error: I/O error, dev loop1, sector 20480 -[3363293.488838] print_req_error: I/O error, dev loop1, sector 20488 -[3363293.499132] print_req_error: I/O error, dev loop1, sector 5300096 -[3363293.499278] print_req_error: I/O error, dev loop1, sector 5300208 -[3384836.693947] print_req_error: 54 callbacks suppressed -[3384836.693949] print_req_error: I/O error, dev loop1, sector 9494400 -[3384836.694167] print_req_error: I/O error, dev loop1, sector 9494616 -[3384836.694233] print_req_error: I/O error, dev loop1, sector 5300224 -[3384836.694262] print_req_error: I/O error, dev loop1, sector 5300232 -[3384836.732692] print_req_error: I/O error, dev loop1, sector 85888 -[3384836.732846] print_req_error: I/O error, dev loop1, sector 86000 -[3384836.732929] print_req_error: I/O error, dev loop1, sector 20480 -[3384836.733092] print_req_error: I/O error, dev loop1, sector 20488 -[3384836.776373] print_req_error: I/O error, dev loop1, sector 5300096 -[3384836.776519] print_req_error: I/O error, dev loop1, sector 5300208 -[3384895.482130] print_req_error: 54 callbacks suppressed -[3384895.482131] print_req_error: I/O error, dev loop1, sector 9494400 -[3384895.482228] print_req_error: I/O error, dev loop1, sector 9494616 -[3384895.482336] print_req_error: I/O error, dev loop1, sector 5300224 -[3384895.482425] print_req_error: I/O error, dev loop1, sector 5300232 -[3384895.543162] print_req_error: I/O error, dev loop1, sector 85888 -[3384895.543316] print_req_error: I/O error, dev loop1, sector 86000 -[3384895.543398] print_req_error: I/O error, dev loop1, sector 20480 -[3384895.543544] print_req_error: I/O error, dev loop1, sector 20488 -[3384895.574684] print_req_error: I/O error, dev loop1, sector 5300096 -[3384895.574822] print_req_error: I/O error, dev loop1, sector 5300208 -[3406435.132607] print_req_error: 54 callbacks suppressed -[3406435.132609] print_req_error: I/O error, dev loop1, sector 9494400 -[3406435.132828] print_req_error: I/O error, dev loop1, sector 9494616 -[3406435.132888] print_req_error: I/O error, dev loop1, sector 5300224 -[3406435.132979] print_req_error: I/O error, dev loop1, sector 5300232 -[3406435.180273] print_req_error: I/O error, dev loop1, sector 85888 -[3406435.180447] print_req_error: I/O error, dev loop1, sector 86000 -[3406435.180530] print_req_error: I/O error, dev loop1, sector 20480 -[3406435.180675] print_req_error: I/O error, dev loop1, sector 20488 -[3406435.190406] print_req_error: I/O error, dev loop1, sector 5300096 -[3406435.190556] print_req_error: I/O error, dev loop1, sector 5300208 -[3406492.282656] print_req_error: 54 callbacks suppressed -[3406492.282658] print_req_error: I/O error, dev loop1, sector 9494400 -[3406492.282815] print_req_error: I/O error, dev loop1, sector 9494616 -[3406492.282879] print_req_error: I/O error, dev loop1, sector 5300224 -[3406492.282972] print_req_error: I/O error, dev loop1, sector 5300232 -[3406492.295191] print_req_error: I/O error, dev loop1, sector 85888 -[3406492.295259] print_req_error: I/O error, dev loop1, sector 86000 -[3406492.295321] print_req_error: I/O error, dev loop1, sector 20480 -[3406492.295350] print_req_error: I/O error, dev loop1, sector 20488 -[3406492.323633] print_req_error: I/O error, dev loop1, sector 5300096 -[3406492.323788] print_req_error: I/O error, dev loop1, sector 5300208 -[3428039.855980] print_req_error: 54 callbacks suppressed -[3428039.855982] print_req_error: I/O error, dev loop1, sector 9494400 -[3428039.856205] print_req_error: I/O error, dev loop1, sector 9494616 -[3428039.856271] print_req_error: I/O error, dev loop1, sector 5300224 -[3428039.856415] print_req_error: I/O error, dev loop1, sector 5300232 -[3428039.901772] print_req_error: I/O error, dev loop1, sector 85888 -[3428039.901925] print_req_error: I/O error, dev loop1, sector 86000 -[3428039.902023] print_req_error: I/O error, dev loop1, sector 20480 -[3428039.902164] print_req_error: I/O error, dev loop1, sector 20488 -[3428039.912366] print_req_error: I/O error, dev loop1, sector 5300096 -[3428039.912488] print_req_error: I/O error, dev loop1, sector 5300208 -[3428098.758644] print_req_error: 54 callbacks suppressed -[3428098.758646] print_req_error: I/O error, dev loop1, sector 9494400 -[3428098.758791] print_req_error: I/O error, dev loop1, sector 9494616 -[3428098.758847] print_req_error: I/O error, dev loop1, sector 5300224 -[3428098.758935] print_req_error: I/O error, dev loop1, sector 5300232 -[3428098.783757] print_req_error: I/O error, dev loop1, sector 85888 -[3428098.783943] print_req_error: I/O error, dev loop1, sector 86000 -[3428098.784045] print_req_error: I/O error, dev loop1, sector 20480 -[3428098.784234] print_req_error: I/O error, dev loop1, sector 20488 -[3428098.789716] print_req_error: I/O error, dev loop1, sector 5300096 -[3428098.789834] print_req_error: I/O error, dev loop1, sector 5300208 -[3449636.264452] print_req_error: 54 callbacks suppressed -[3449636.264453] print_req_error: I/O error, dev loop1, sector 9494400 -[3449636.264702] print_req_error: I/O error, dev loop1, sector 9494616 -[3449636.264779] print_req_error: I/O error, dev loop1, sector 5300224 -[3449636.264912] print_req_error: I/O error, dev loop1, sector 5300232 -[3449636.313883] print_req_error: I/O error, dev loop1, sector 85888 -[3449636.314044] print_req_error: I/O error, dev loop1, sector 86000 -[3449636.314136] print_req_error: I/O error, dev loop1, sector 20480 -[3449636.314284] print_req_error: I/O error, dev loop1, sector 20488 -[3449636.324257] print_req_error: I/O error, dev loop1, sector 5300096 -[3449636.324418] print_req_error: I/O error, dev loop1, sector 5300208 -[3449696.828170] print_req_error: 54 callbacks suppressed -[3449696.828172] print_req_error: I/O error, dev loop1, sector 9494400 -[3449696.828299] print_req_error: I/O error, dev loop1, sector 9494616 -[3449696.828362] print_req_error: I/O error, dev loop1, sector 5300224 -[3449696.828486] print_req_error: I/O error, dev loop1, sector 5300232 -[3449696.851511] print_req_error: I/O error, dev loop1, sector 85888 -[3449696.851634] print_req_error: I/O error, dev loop1, sector 86000 -[3449696.851809] print_req_error: I/O error, dev loop1, sector 20480 -[3449696.851943] print_req_error: I/O error, dev loop1, sector 20488 -[3449696.856902] print_req_error: I/O error, dev loop1, sector 5300096 -[3449696.857046] print_req_error: I/O error, dev loop1, sector 5300208 -[3471234.099525] print_req_error: 54 callbacks suppressed -[3471234.099526] print_req_error: I/O error, dev loop1, sector 9494400 -[3471234.099700] print_req_error: I/O error, dev loop1, sector 9494616 -[3471234.099763] print_req_error: I/O error, dev loop1, sector 5300224 -[3471234.099793] print_req_error: I/O error, dev loop1, sector 5300232 -[3471234.146698] print_req_error: I/O error, dev loop1, sector 85888 -[3471234.146887] print_req_error: I/O error, dev loop1, sector 86000 -[3471234.146984] print_req_error: I/O error, dev loop1, sector 20480 -[3471234.147138] print_req_error: I/O error, dev loop1, sector 20488 -[3471234.157523] print_req_error: I/O error, dev loop1, sector 5300096 -[3471234.157703] print_req_error: I/O error, dev loop1, sector 5300208 -[3471290.557099] print_req_error: 54 callbacks suppressed -[3471290.557101] print_req_error: I/O error, dev loop1, sector 9494400 -[3471290.557213] print_req_error: I/O error, dev loop1, sector 9494616 -[3471290.557273] print_req_error: I/O error, dev loop1, sector 5300224 -[3471290.557374] print_req_error: I/O error, dev loop1, sector 5300232 -[3471290.629285] print_req_error: I/O error, dev loop1, sector 85888 -[3471290.629452] print_req_error: I/O error, dev loop1, sector 86000 -[3471290.629535] print_req_error: I/O error, dev loop1, sector 20480 -[3471290.629694] print_req_error: I/O error, dev loop1, sector 20488 -[3471290.634437] print_req_error: I/O error, dev loop1, sector 5300096 -[3471290.634595] print_req_error: I/O error, dev loop1, sector 5300208 -[3492832.593738] print_req_error: 54 callbacks suppressed -[3492832.593739] print_req_error: I/O error, dev loop1, sector 9494400 -[3492832.593940] print_req_error: I/O error, dev loop1, sector 9494616 -[3492832.594005] print_req_error: I/O error, dev loop1, sector 5300224 -[3492832.594106] print_req_error: I/O error, dev loop1, sector 5300232 -[3492832.663214] print_req_error: I/O error, dev loop1, sector 85888 -[3492832.663368] print_req_error: I/O error, dev loop1, sector 86000 -[3492832.663502] print_req_error: I/O error, dev loop1, sector 20480 -[3492832.663662] print_req_error: I/O error, dev loop1, sector 20488 -[3492832.673451] print_req_error: I/O error, dev loop1, sector 5300096 -[3492832.673599] print_req_error: I/O error, dev loop1, sector 5300208 -[3492892.414411] print_req_error: 54 callbacks suppressed -[3492892.414412] print_req_error: I/O error, dev loop1, sector 9494400 -[3492892.414482] print_req_error: I/O error, dev loop1, sector 9494616 -[3492892.414515] print_req_error: I/O error, dev loop1, sector 5300224 -[3492892.414556] print_req_error: I/O error, dev loop1, sector 5300232 -[3492892.484869] print_req_error: I/O error, dev loop1, sector 85888 -[3492892.485048] print_req_error: I/O error, dev loop1, sector 86000 -[3492892.485121] print_req_error: I/O error, dev loop1, sector 20480 -[3492892.485183] print_req_error: I/O error, dev loop1, sector 20488 -[3492892.495398] print_req_error: I/O error, dev loop1, sector 5300096 -[3492892.495543] print_req_error: I/O error, dev loop1, sector 5300208 -[3513970.222026] linhelmk unloading -[3513970.372701] linhelmk exit done -[3514270.531959] linhelmk loaded -[3514270.531960] This linhelmk was built with the IMA EXPERIMENT! -[3514270.558456] helm_ima_bridge_init() succeeded - IMA experiment running. -[3514270.559585] message queue initialized in 1024 pages of shared memory -[3514270.559797] cdev created: /dev/helm -[3514270.594885] probe is now in state 1 (was 0) -[3514270.600443] probe <__x64_sys_execve> is now in state 1 (was 0) -[3514270.605802] probe <__x64_sys_execveat> is now in state 1 (was 0) -[3514270.611368] probe is now in state 1 (was 0) -[3514270.616777] probe <__x64_sys_finit_module> is now in state 1 (was 0) -[3514270.622401] probe is now in state 1 (was 0) -[3514270.628037] probe is now in state 1 (was 0) -[3514270.633676] probe is now in state 1 (was 0) -[3514270.639159] probe is now in state 1 (was 0) -[3514270.644901] probe is now in state 1 (was 0) -[3514270.644903] nf_hook 12 is now in state 1 (was 0) -[3514270.644904] nf_hook 13 is now in state 1 (was 0) -[3514270.644905] nf_hook 14 is now in state 1 (was 0) -[3514270.644906] nf_hook 15 is now in state 1 (was 0) -[3514270.644906] /dev/helm created; linhelm init done -[3514436.029562] print_req_error: 54 callbacks suppressed -[3514436.029563] print_req_error: I/O error, dev loop1, sector 9494400 -[3514436.029758] print_req_error: I/O error, dev loop1, sector 9494616 -[3514436.029821] print_req_error: I/O error, dev loop1, sector 5300224 -[3514436.029922] print_req_error: I/O error, dev loop1, sector 5300232 -[3514436.077270] print_req_error: I/O error, dev loop1, sector 85888 -[3514436.077416] print_req_error: I/O error, dev loop1, sector 86000 -[3514436.077506] print_req_error: I/O error, dev loop1, sector 20480 -[3514436.077650] print_req_error: I/O error, dev loop1, sector 20488 -[3514436.087779] print_req_error: I/O error, dev loop1, sector 5300096 -[3514436.087934] print_req_error: I/O error, dev loop1, sector 5300208 -[3514494.640068] print_req_error: 54 callbacks suppressed -[3514494.640069] print_req_error: I/O error, dev loop1, sector 9494400 -[3514494.640187] print_req_error: I/O error, dev loop1, sector 9494616 -[3514494.640249] print_req_error: I/O error, dev loop1, sector 5300224 -[3514494.640345] print_req_error: I/O error, dev loop1, sector 5300232 -[3514494.659407] print_req_error: I/O error, dev loop1, sector 85888 -[3514494.659525] print_req_error: I/O error, dev loop1, sector 86000 -[3514494.659658] print_req_error: I/O error, dev loop1, sector 20480 -[3514494.659787] print_req_error: I/O error, dev loop1, sector 20488 -[3514494.664686] print_req_error: I/O error, dev loop1, sector 5300096 -[3514494.664800] print_req_error: I/O error, dev loop1, sector 5300208 -[3536034.474176] print_req_error: 54 callbacks suppressed -[3536034.474178] print_req_error: I/O error, dev loop1, sector 9494400 -[3536034.474426] print_req_error: I/O error, dev loop1, sector 9494616 -[3536034.474484] print_req_error: I/O error, dev loop1, sector 5300224 -[3536034.474625] print_req_error: I/O error, dev loop1, sector 5300232 -[3536034.512857] print_req_error: I/O error, dev loop1, sector 85888 -[3536034.513017] print_req_error: I/O error, dev loop1, sector 86000 -[3536034.513105] print_req_error: I/O error, dev loop1, sector 20480 -[3536034.513250] print_req_error: I/O error, dev loop1, sector 20488 -[3536034.523547] print_req_error: I/O error, dev loop1, sector 5300096 -[3536034.523667] print_req_error: I/O error, dev loop1, sector 5300208 -[3536093.383893] print_req_error: 54 callbacks suppressed -[3536093.383894] print_req_error: I/O error, dev loop1, sector 9494400 -[3536093.384044] print_req_error: I/O error, dev loop1, sector 9494616 -[3536093.384108] print_req_error: I/O error, dev loop1, sector 5300224 -[3536093.384234] print_req_error: I/O error, dev loop1, sector 5300232 -[3536093.394824] print_req_error: I/O error, dev loop1, sector 85888 -[3536093.394896] print_req_error: I/O error, dev loop1, sector 86000 -[3536093.394929] print_req_error: I/O error, dev loop1, sector 20480 -[3536093.395050] print_req_error: I/O error, dev loop1, sector 20488 -[3536093.400440] print_req_error: I/O error, dev loop1, sector 5300096 -[3536093.400539] print_req_error: I/O error, dev loop1, sector 5300208 -[3557632.921211] print_req_error: 54 callbacks suppressed -[3557632.921213] print_req_error: I/O error, dev loop1, sector 9494400 -[3557632.921440] print_req_error: I/O error, dev loop1, sector 9494616 -[3557632.921503] print_req_error: I/O error, dev loop1, sector 5300224 -[3557632.921542] print_req_error: I/O error, dev loop1, sector 5300232 -[3557632.966902] print_req_error: I/O error, dev loop1, sector 85888 -[3557632.967029] print_req_error: I/O error, dev loop1, sector 86000 -[3557632.967207] print_req_error: I/O error, dev loop1, sector 20480 -[3557632.967365] print_req_error: I/O error, dev loop1, sector 20488 -[3557632.977118] print_req_error: I/O error, dev loop1, sector 5300096 -[3557632.977246] print_req_error: I/O error, dev loop1, sector 5300208 -[3557693.281736] print_req_error: 54 callbacks suppressed -[3557693.281738] print_req_error: I/O error, dev loop1, sector 9494400 -[3557693.281866] print_req_error: I/O error, dev loop1, sector 9494616 -[3557693.281943] print_req_error: I/O error, dev loop1, sector 5300224 -[3557693.282047] print_req_error: I/O error, dev loop1, sector 5300232 -[3557693.304203] print_req_error: I/O error, dev loop1, sector 85888 -[3557693.304339] print_req_error: I/O error, dev loop1, sector 86000 -[3557693.304624] print_req_error: I/O error, dev loop1, sector 20480 -[3557693.304748] print_req_error: I/O error, dev loop1, sector 20488 -[3557693.309956] print_req_error: I/O error, dev loop1, sector 5300096 -[3557693.310112] print_req_error: I/O error, dev loop1, sector 5300208 -[3579235.121495] print_req_error: 54 callbacks suppressed -[3579235.121497] print_req_error: I/O error, dev loop1, sector 9494400 -[3579235.121730] print_req_error: I/O error, dev loop1, sector 9494616 -[3579235.121795] print_req_error: I/O error, dev loop1, sector 5300224 -[3579235.121916] print_req_error: I/O error, dev loop1, sector 5300232 -[3579235.168119] print_req_error: I/O error, dev loop1, sector 85888 -[3579235.168270] print_req_error: I/O error, dev loop1, sector 86000 -[3579235.168401] print_req_error: I/O error, dev loop1, sector 20480 -[3579235.168513] print_req_error: I/O error, dev loop1, sector 20488 -[3579235.178392] print_req_error: I/O error, dev loop1, sector 5300096 -[3579235.178542] print_req_error: I/O error, dev loop1, sector 5300208 -[3579293.642549] print_req_error: 54 callbacks suppressed -[3579293.642550] print_req_error: I/O error, dev loop1, sector 9494400 -[3579293.642639] print_req_error: I/O error, dev loop1, sector 9494616 -[3579293.642708] print_req_error: I/O error, dev loop1, sector 5300224 -[3579293.642807] print_req_error: I/O error, dev loop1, sector 5300232 -[3579293.689796] print_req_error: I/O error, dev loop1, sector 85888 -[3579293.689905] print_req_error: I/O error, dev loop1, sector 86000 -[3579293.690027] print_req_error: I/O error, dev loop1, sector 20480 -[3579293.690114] print_req_error: I/O error, dev loop1, sector 20488 -[3579293.733610] print_req_error: I/O error, dev loop1, sector 5300096 -[3579293.733762] print_req_error: I/O error, dev loop1, sector 5300208 -[3600832.981532] print_req_error: 54 callbacks suppressed -[3600832.981534] print_req_error: I/O error, dev loop1, sector 9494400 -[3600832.981787] print_req_error: I/O error, dev loop1, sector 9494616 -[3600832.981859] print_req_error: I/O error, dev loop1, sector 5300224 -[3600832.981966] print_req_error: I/O error, dev loop1, sector 5300232 -[3600833.083414] print_req_error: I/O error, dev loop1, sector 85888 -[3600833.083566] print_req_error: I/O error, dev loop1, sector 86000 -[3600833.083714] print_req_error: I/O error, dev loop1, sector 20480 -[3600833.083815] print_req_error: I/O error, dev loop1, sector 20488 -[3600833.128503] print_req_error: I/O error, dev loop1, sector 5300096 -[3600833.128654] print_req_error: I/O error, dev loop1, sector 5300208 -[3600891.505895] print_req_error: 54 callbacks suppressed -[3600891.505896] print_req_error: I/O error, dev loop1, sector 9494400 -[3600891.506029] print_req_error: I/O error, dev loop1, sector 9494616 -[3600891.506102] print_req_error: I/O error, dev loop1, sector 5300224 -[3600891.506204] print_req_error: I/O error, dev loop1, sector 5300232 -[3600891.507979] print_req_error: I/O error, dev loop1, sector 85888 -[3600891.508089] print_req_error: I/O error, dev loop1, sector 86000 -[3600891.508191] print_req_error: I/O error, dev loop1, sector 20480 -[3600891.508353] print_req_error: I/O error, dev loop1, sector 20488 -[3600891.529160] print_req_error: I/O error, dev loop1, sector 5300096 -[3600891.529301] print_req_error: I/O error, dev loop1, sector 5300208 -[3622433.355127] print_req_error: 54 callbacks suppressed -[3622433.355129] print_req_error: I/O error, dev loop1, sector 9494400 -[3622433.355353] print_req_error: I/O error, dev loop1, sector 9494616 -[3622433.355416] print_req_error: I/O error, dev loop1, sector 5300224 -[3622433.355511] print_req_error: I/O error, dev loop1, sector 5300232 -[3622433.402877] print_req_error: I/O error, dev loop1, sector 85888 -[3622433.403069] print_req_error: I/O error, dev loop1, sector 86000 -[3622433.403217] print_req_error: I/O error, dev loop1, sector 20480 -[3622433.403305] print_req_error: I/O error, dev loop1, sector 20488 -[3622433.446888] print_req_error: I/O error, dev loop1, sector 5300096 -[3622433.447077] print_req_error: I/O error, dev loop1, sector 5300208 -[3622490.137640] print_req_error: 54 callbacks suppressed -[3622490.137642] print_req_error: I/O error, dev loop1, sector 9494400 -[3622490.137730] print_req_error: I/O error, dev loop1, sector 9494616 -[3622490.137792] print_req_error: I/O error, dev loop1, sector 5300224 -[3622490.137893] print_req_error: I/O error, dev loop1, sector 5300232 -[3622490.191787] print_req_error: I/O error, dev loop1, sector 85888 -[3622490.191944] print_req_error: I/O error, dev loop1, sector 86000 -[3622490.192032] print_req_error: I/O error, dev loop1, sector 20480 -[3622490.192184] print_req_error: I/O error, dev loop1, sector 20488 -[3622490.202024] print_req_error: I/O error, dev loop1, sector 5300096 -[3622490.202178] print_req_error: I/O error, dev loop1, sector 5300208 -[3644033.091601] print_req_error: 54 callbacks suppressed -[3644033.091602] print_req_error: I/O error, dev loop1, sector 9494400 -[3644033.091848] print_req_error: I/O error, dev loop1, sector 9494616 -[3644033.091913] print_req_error: I/O error, dev loop1, sector 5300224 -[3644033.092042] print_req_error: I/O error, dev loop1, sector 5300232 -[3644033.131541] print_req_error: I/O error, dev loop1, sector 85888 -[3644033.131696] print_req_error: I/O error, dev loop1, sector 86000 -[3644033.131789] print_req_error: I/O error, dev loop1, sector 20480 -[3644033.131940] print_req_error: I/O error, dev loop1, sector 20488 -[3644033.141820] print_req_error: I/O error, dev loop1, sector 5300096 -[3644033.141974] print_req_error: I/O error, dev loop1, sector 5300208 -[3644091.041431] print_req_error: 54 callbacks suppressed -[3644091.041432] print_req_error: I/O error, dev loop1, sector 9494400 -[3644091.041593] print_req_error: I/O error, dev loop1, sector 9494616 -[3644091.041669] print_req_error: I/O error, dev loop1, sector 5300224 -[3644091.041778] print_req_error: I/O error, dev loop1, sector 5300232 -[3644091.068820] print_req_error: I/O error, dev loop1, sector 85888 -[3644091.068987] print_req_error: I/O error, dev loop1, sector 86000 -[3644091.069068] print_req_error: I/O error, dev loop1, sector 20480 -[3644091.069137] print_req_error: I/O error, dev loop1, sector 20488 -[3644091.074682] print_req_error: I/O error, dev loop1, sector 5300096 -[3644091.074825] print_req_error: I/O error, dev loop1, sector 5300208 -[3665632.897935] print_req_error: 54 callbacks suppressed -[3665632.897936] print_req_error: I/O error, dev loop1, sector 9494400 -[3665632.898163] print_req_error: I/O error, dev loop1, sector 9494616 -[3665632.898230] print_req_error: I/O error, dev loop1, sector 5300224 -[3665632.898339] print_req_error: I/O error, dev loop1, sector 5300232 -[3665632.950709] print_req_error: I/O error, dev loop1, sector 85888 -[3665632.950857] print_req_error: I/O error, dev loop1, sector 86000 -[3665632.951006] print_req_error: I/O error, dev loop1, sector 20480 -[3665632.951148] print_req_error: I/O error, dev loop1, sector 20488 -[3665632.961268] print_req_error: I/O error, dev loop1, sector 5300096 -[3665632.961426] print_req_error: I/O error, dev loop1, sector 5300208 -[3665690.294882] print_req_error: 54 callbacks suppressed -[3665690.294884] print_req_error: I/O error, dev loop1, sector 9494400 -[3665690.294991] print_req_error: I/O error, dev loop1, sector 9494616 -[3665690.295047] print_req_error: I/O error, dev loop1, sector 5300224 -[3665690.295173] print_req_error: I/O error, dev loop1, sector 5300232 -[3665690.540402] print_req_error: I/O error, dev loop1, sector 85888 -[3665690.540544] print_req_error: I/O error, dev loop1, sector 86000 -[3665690.540630] print_req_error: I/O error, dev loop1, sector 20480 -[3665690.540771] print_req_error: I/O error, dev loop1, sector 20488 -[3665690.838535] print_req_error: I/O error, dev loop1, sector 5300096 -[3665690.838680] print_req_error: I/O error, dev loop1, sector 5300208 -[3687234.093014] print_req_error: 54 callbacks suppressed -[3687234.093016] print_req_error: I/O error, dev loop1, sector 9494400 -[3687234.093226] print_req_error: I/O error, dev loop1, sector 9494616 -[3687234.093295] print_req_error: I/O error, dev loop1, sector 5300224 -[3687234.093422] print_req_error: I/O error, dev loop1, sector 5300232 -[3687234.132722] print_req_error: I/O error, dev loop1, sector 85888 -[3687234.132891] print_req_error: I/O error, dev loop1, sector 86000 -[3687234.132986] print_req_error: I/O error, dev loop1, sector 20480 -[3687234.133143] print_req_error: I/O error, dev loop1, sector 20488 -[3687234.143013] print_req_error: I/O error, dev loop1, sector 5300096 -[3687234.143181] print_req_error: I/O error, dev loop1, sector 5300208 -[3687295.446239] print_req_error: 54 callbacks suppressed -[3687295.446240] print_req_error: I/O error, dev loop1, sector 9494400 -[3687295.446396] print_req_error: I/O error, dev loop1, sector 9494616 -[3687295.446460] print_req_error: I/O error, dev loop1, sector 5300224 -[3687295.446586] print_req_error: I/O error, dev loop1, sector 5300232 -[3687295.487592] print_req_error: I/O error, dev loop1, sector 85888 -[3687295.487751] print_req_error: I/O error, dev loop1, sector 86000 -[3687295.487839] print_req_error: I/O error, dev loop1, sector 20480 -[3687295.487989] print_req_error: I/O error, dev loop1, sector 20488 -[3687295.531375] print_req_error: I/O error, dev loop1, sector 5300096 -[3687295.531525] print_req_error: I/O error, dev loop1, sector 5300208 -[3708827.921260] print_req_error: 54 callbacks suppressed -[3708827.921262] print_req_error: I/O error, dev loop1, sector 9494400 -[3708827.921465] print_req_error: I/O error, dev loop1, sector 9494616 -[3708827.921531] print_req_error: I/O error, dev loop1, sector 5300224 -[3708827.921660] print_req_error: I/O error, dev loop1, sector 5300232 -[3708828.282852] print_req_error: I/O error, dev loop1, sector 85888 -[3708828.283014] print_req_error: I/O error, dev loop1, sector 86000 -[3708828.283095] print_req_error: I/O error, dev loop1, sector 20480 -[3708828.283239] print_req_error: I/O error, dev loop1, sector 20488 -[3708828.326843] print_req_error: I/O error, dev loop1, sector 5300096 -[3708828.327000] print_req_error: I/O error, dev loop1, sector 5300208 -[3708886.186873] print_req_error: 54 callbacks suppressed -[3708886.186874] print_req_error: I/O error, dev loop1, sector 9494400 -[3708886.186989] print_req_error: I/O error, dev loop1, sector 9494616 -[3708886.187052] print_req_error: I/O error, dev loop1, sector 5300224 -[3708886.187176] print_req_error: I/O error, dev loop1, sector 5300232 -[3708886.211531] print_req_error: I/O error, dev loop1, sector 85888 -[3708886.211665] print_req_error: I/O error, dev loop1, sector 86000 -[3708886.211802] print_req_error: I/O error, dev loop1, sector 20480 -[3708886.211880] print_req_error: I/O error, dev loop1, sector 20488 -[3708886.247357] print_req_error: I/O error, dev loop1, sector 5300096 -[3708886.247504] print_req_error: I/O error, dev loop1, sector 5300208 -[3730428.594615] print_req_error: 54 callbacks suppressed -[3730428.594617] print_req_error: I/O error, dev loop1, sector 9494400 -[3730428.594808] print_req_error: I/O error, dev loop1, sector 9494616 -[3730428.594870] print_req_error: I/O error, dev loop1, sector 5300224 -[3730428.594900] print_req_error: I/O error, dev loop1, sector 5300232 -[3730428.633135] print_req_error: I/O error, dev loop1, sector 85888 -[3730428.633230] print_req_error: I/O error, dev loop1, sector 86000 -[3730428.633302] print_req_error: I/O error, dev loop1, sector 20480 -[3730428.633445] print_req_error: I/O error, dev loop1, sector 20488 -[3730428.643601] print_req_error: I/O error, dev loop1, sector 5300096 -[3730428.643752] print_req_error: I/O error, dev loop1, sector 5300208 -[3730487.381141] print_req_error: 54 callbacks suppressed -[3730487.381143] print_req_error: I/O error, dev loop1, sector 9494400 -[3730487.381268] print_req_error: I/O error, dev loop1, sector 9494616 -[3730487.381335] print_req_error: I/O error, dev loop1, sector 5300224 -[3730487.381433] print_req_error: I/O error, dev loop1, sector 5300232 -[3730487.392995] print_req_error: I/O error, dev loop1, sector 85888 -[3730487.393112] print_req_error: I/O error, dev loop1, sector 86000 -[3730487.393185] print_req_error: I/O error, dev loop1, sector 20480 -[3730487.393320] print_req_error: I/O error, dev loop1, sector 20488 -[3730487.398683] print_req_error: I/O error, dev loop1, sector 5300096 -[3730487.398821] print_req_error: I/O error, dev loop1, sector 5300208 -[3752030.490479] print_req_error: 54 callbacks suppressed -[3752030.490481] print_req_error: I/O error, dev loop1, sector 9494400 -[3752030.490701] print_req_error: I/O error, dev loop1, sector 9494616 -[3752030.490762] print_req_error: I/O error, dev loop1, sector 5300224 -[3752030.490866] print_req_error: I/O error, dev loop1, sector 5300232 -[3752030.551580] print_req_error: I/O error, dev loop1, sector 85888 -[3752030.551699] print_req_error: I/O error, dev loop1, sector 86000 -[3752030.551855] print_req_error: I/O error, dev loop1, sector 20480 -[3752030.551969] print_req_error: I/O error, dev loop1, sector 20488 -[3752030.562144] print_req_error: I/O error, dev loop1, sector 5300096 -[3752030.562314] print_req_error: I/O error, dev loop1, sector 5300208 -[3752087.874041] print_req_error: 54 callbacks suppressed -[3752087.874042] print_req_error: I/O error, dev loop1, sector 9494400 -[3752087.874153] print_req_error: I/O error, dev loop1, sector 9494616 -[3752087.874211] print_req_error: I/O error, dev loop1, sector 5300224 -[3752087.874273] print_req_error: I/O error, dev loop1, sector 5300232 -[3752087.917649] print_req_error: I/O error, dev loop1, sector 85888 -[3752087.917797] print_req_error: I/O error, dev loop1, sector 86000 -[3752087.917912] print_req_error: I/O error, dev loop1, sector 20480 -[3752087.918070] print_req_error: I/O error, dev loop1, sector 20488 -[3752087.928001] print_req_error: I/O error, dev loop1, sector 5300096 -[3752087.928138] print_req_error: I/O error, dev loop1, sector 5300208 -[3773631.568600] print_req_error: 54 callbacks suppressed -[3773631.568601] print_req_error: I/O error, dev loop1, sector 9494400 -[3773631.568855] print_req_error: I/O error, dev loop1, sector 9494616 -[3773631.569006] print_req_error: I/O error, dev loop1, sector 5300224 -[3773631.569137] print_req_error: I/O error, dev loop1, sector 5300232 -[3773631.615282] print_req_error: I/O error, dev loop1, sector 85888 -[3773631.615436] print_req_error: I/O error, dev loop1, sector 86000 -[3773631.615520] print_req_error: I/O error, dev loop1, sector 20480 -[3773631.615661] print_req_error: I/O error, dev loop1, sector 20488 -[3773631.625742] print_req_error: I/O error, dev loop1, sector 5300096 -[3773631.625895] print_req_error: I/O error, dev loop1, sector 5300208 -[3773688.292887] print_req_error: 54 callbacks suppressed -[3773688.292889] print_req_error: I/O error, dev loop1, sector 9494400 -[3773688.292993] print_req_error: I/O error, dev loop1, sector 9494616 -[3773688.293106] print_req_error: I/O error, dev loop1, sector 5300224 -[3773688.293215] print_req_error: I/O error, dev loop1, sector 5300232 -[3773688.308292] print_req_error: I/O error, dev loop1, sector 85888 -[3773688.308421] print_req_error: I/O error, dev loop1, sector 86000 -[3773688.308468] print_req_error: I/O error, dev loop1, sector 20480 -[3773688.308615] print_req_error: I/O error, dev loop1, sector 20488 -[3773688.313880] print_req_error: I/O error, dev loop1, sector 5300096 -[3773688.314006] print_req_error: I/O error, dev loop1, sector 5300208 -[3785021.622611] usb 4-1.1: USB disconnect, device number 16 -[3785021.622617] usb 4-1.1.4: USB disconnect, device number 17 -[3785021.623398] usb 4-1.1.5: USB disconnect, device number 18 -[3785125.274899] usb 4-1.1: new high-speed USB device number 30 using ehci-pci -[3785125.383360] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785125.383366] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785125.383988] hub 4-1.1:1.0: USB hub found -[3785125.384144] hub 4-1.1:1.0: 7 ports detected -[3785125.670859] usb 4-1.1.4: new high-speed USB device number 31 using ehci-pci -[3785125.784391] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785125.784397] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.784400] usb 4-1.1.4: Product: servo:810-10010-02 -[3785125.784403] usb 4-1.1.4: Manufacturer: Google Inc -[3785125.784406] usb 4-1.1.4: SerialNumber: 641220-00008 -[3785125.870812] usb 4-1.1.5: new high-speed USB device number 32 using ehci-pci -[3785125.992537] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785125.992543] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785125.992546] usb 4-1.1.5: Product: servo:810-10010-02 -[3785125.992549] usb 4-1.1.5: Manufacturer: Google Inc -[3785125.992552] usb 4-1.1.5: SerialNumber: 641220-00008 -[3785170.870778] usb 4-1.1: USB disconnect, device number 30 -[3785170.870784] usb 4-1.1.4: USB disconnect, device number 31 -[3785170.871509] usb 4-1.1.5: USB disconnect, device number 32 -[3785399.444401] usb 4-1.1: new high-speed USB device number 33 using ehci-pci -[3785399.552969] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2517, bcdDevice= 0.02 -[3785399.552975] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 -[3785399.553492] hub 4-1.1:1.0: USB hub found -[3785399.553713] hub 4-1.1:1.0: 7 ports detected -[3785399.844386] usb 4-1.1.4: new high-speed USB device number 34 using ehci-pci -[3785399.961854] usb 4-1.1.4: New USB device found, idVendor=18d1, idProduct=5003, bcdDevice= 8.00 -[3785399.961859] usb 4-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785399.961863] usb 4-1.1.4: Product: servo:810-10010-02 -[3785399.961866] usb 4-1.1.4: Manufacturer: Google Inc -[3785399.961869] usb 4-1.1.4: SerialNumber: 686203-00054 -[3785400.052405] usb 4-1.1.5: new high-speed USB device number 35 using ehci-pci -[3785400.169888] usb 4-1.1.5: New USB device found, idVendor=18d1, idProduct=5002, bcdDevice= 8.00 -[3785400.169894] usb 4-1.1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 -[3785400.169897] usb 4-1.1.5: Product: servo:810-10010-02 -[3785400.169900] usb 4-1.1.5: Manufacturer: Google Inc -[3785400.169903] usb 4-1.1.5: SerialNumber: 686203-00054 -[3789440.536209] usb 2-2.3: USB disconnect, device number 6 -[3789487.590458] usb 2-2.3: new low-speed USB device number 7 using xhci_hcd -[3789487.699433] usb 2-2.3: New USB device found, idVendor=1a7c, idProduct=0195, bcdDevice= 3.10 -[3789487.699439] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 -[3789487.699442] usb 2-2.3: Product: Evoluent VerticalMouse C -[3789487.699445] usb 2-2.3: Manufacturer: SONiX -[3789487.715234] input: SONiX Evoluent VerticalMouse C as /devices/pci0000:00/0000:00:1c.7/0000:08:00.0/usb2/2-2/2-2.3/2-2.3:1.0/0003:1A7C:0195.0006/input/input18 -[3789487.715781] hid-generic 0003:1A7C:0195.0006: input,hidraw3: USB HID v1.00 Mouse [SONiX Evoluent VerticalMouse C] on usb-0000:08:00.0-2.3/input0 -[3795231.326042] print_req_error: 54 callbacks suppressed -[3795231.326044] print_req_error: I/O error, dev loop1, sector 9494400 -[3795231.326309] print_req_error: I/O error, dev loop1, sector 9494616 -[3795231.326377] print_req_error: I/O error, dev loop1, sector 5300224 -[3795231.326484] print_req_error: I/O error, dev loop1, sector 5300232 -[3795231.390354] print_req_error: I/O error, dev loop1, sector 85888 -[3795231.390514] print_req_error: I/O error, dev loop1, sector 86000 -[3795231.390611] print_req_error: I/O error, dev loop1, sector 20480 -[3795231.390755] print_req_error: I/O error, dev loop1, sector 20488 -[3795231.400824] print_req_error: I/O error, dev loop1, sector 5300096 -[3795231.400980] print_req_error: I/O error, dev loop1, sector 5300208 -[3795290.731079] print_req_error: 54 callbacks suppressed -[3795290.731081] print_req_error: I/O error, dev loop1, sector 9494400 -[3795290.731158] print_req_error: I/O error, dev loop1, sector 9494616 -[3795290.731226] print_req_error: I/O error, dev loop1, sector 5300224 -[3795290.731253] print_req_error: I/O error, dev loop1, sector 5300232 -[3795290.767720] print_req_error: I/O error, dev loop1, sector 85888 -[3795290.767890] print_req_error: I/O error, dev loop1, sector 86000 -[3795290.767997] print_req_error: I/O error, dev loop1, sector 20480 -[3795290.768132] print_req_error: I/O error, dev loop1, sector 20488 -[3795290.811384] print_req_error: I/O error, dev loop1, sector 5300096 -[3795290.811520] print_req_error: I/O error, dev loop1, sector 5300208 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mount -[?2004lsysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) -proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) -udev on /dev type devtmpfs (rw,nosuid,relatime,size=32916052k,nr_inodes=8229013,mode=755) -devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) -tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=6595740k,mode=755) -securityfs on /sys/kernel/security type securityfs (rw,relatime) -/dev/mapper/dhcp--100--123--187--143--vg-root on / type ext4 (rw,relatime,errors=remount-ro,i_version) -tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) -tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) -tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) -cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate) -cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd) -pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) -bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700) -cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids) -cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct) -cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer) -cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio) -cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event) -cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset) -cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory) -cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) -cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices) -systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1187) -mqueue on /dev/mqueue type mqueue (rw,relatime) -debugfs on /sys/kernel/debug type debugfs (rw,relatime) -sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime) -hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M) -/dev/sdb1 on /usr/local/src type ext4 (rw,relatime,data=ordered) -/dev/sda3 on /boot type ext2 (rw,relatime,block_validity,barrier,user_xattr,acl,i_version,stripe=4) -/dev/sdc1 on /usr/local/google type ext4 (rw,relatime,data=writeback) -/dev/sda2 on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro) -binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime) -fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) -/etc/auto.auto on /auto type autofs (rw,relatime,fd=7,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=41400) -/etc/auto.home on /home type autofs (rw,relatime,fd=13,pgrp=2509,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=48654) -tmpfs on /run/user/114 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=114,gid=120) -tmpfs on /run/user/156049 type tmpfs (rw,nosuid,nodev,relatime,size=6595736k,mode=700,uid=156049,gid=89939) -gvfsd-fuse on /run/user/156049/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -cros on /sys/fs/cgroup/cpuset/cros type cgroup (rw,relatime,cpuset) -/dev/mapper/cros_usr+local+src+chromiumos+chroot_000-chroot on /usr/local/src/chromiumos/chroot type ext4 (rw,noatime,stripe=64) -srcfsd on /google/src type fuse.srcfsd (rw,nosuid,nodev,relatime,user_id=125,group_id=65534,default_permissions,allow_other) -binfs on /google/bin type fuse.binfs (rw,nosuid,nodev,relatime,user_id=156049,group_id=89939) -objfsd on /google/obj type fuse.objfsd (rw,nosuid,nodev,relatime,user_id=126,group_id=65534,default_permissions,allow_other) -x20fsd on /google/data type fuse.x20fsd (rw,nosuid,nodev,relatime,user_id=124,group_id=65534,allow_other) -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ l2019/01/03 13:07:15 Accepted &{{0xc00013e180}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:09:21 Accepted &{{0xc00013e280}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:09:21 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1 -2019/01/03 13:09:21 Try to remove AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode (AE587172-CC15-48E1-8BE0-29DDF05C6A1F) -2019/01/03 13:09:21 removed [0xc007b78500] -+ echo TEST /tmp/futk077126222/2 -TEST /tmp/futk077126222/2 -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ mountdmesgbgmake d98./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -./DXECLEANER: line 5: /dev/ttyUSB1: Permission denied -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./DXECLEANER rom211.rom -[?2004l+ echo TEST rom211.rom -TEST rom211.rom -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d rom211.rom -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:11:31 Listening on 192.168.0.1:8080 at 2019-01-03 13:11:31.600020092 -0800 PST m=+0.005290149 -2019/01/03 13:14:31 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:14:31.600473929 -0800 PST m=+180.005743803 -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:14:31 We are now done ...................... -2019/01/03 13:14:31 accept tcp 192.168.0.1:8080: i/o timeout -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fls -[?2004l98.splat config-4.13.0-rc7 fail.bin L NOTES rom211.rom uinit -bin.reset DIT futk.remove.99 linux removeBMCcrap.bin RUN3 x.bin -blacklist dxeclean.bin id_rsa.pub LIST removemorecrap.bin RUN4 xxx -commentmorecrap.bin DXECLEANER initramfs.linux_amd64.cpio.lzma LOG removesetupcrap.bin RUN4.4.rom yyy -commentsetupcrap.bin EATIT ipmisucks.bin Makefile removesomecrap.bin tyan7102.bin -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ futk 98.splat fv -[?2004l2019/01/03 13:15:36 Found 313 things -[313]OK [?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ furtk RUN4RUN4.4.rom fv - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:44:24 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2019-01-03 13:44:24.684082266 -0800 PST m=+320.401630498 -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 We are now done ...................... -2019/01/03 13:44:24 accept tcp 192.168.0.1:8080: i/o timeout -2019/01/03 13:44:24 Try to remove 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus (3C1DE39F-D207-408A-AACC-731CFB7F1DD7) -2019/01/03 13:44:24 removed [0xc00fff1500] -+ echo TEST /tmp/futk219719675/2 -TEST /tmp/futk219719675/2 -+ echo date -+ echo ./0 -+ echo ./pg -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk219719675/2 -r -will emulate 'W25Q256FV' -MCU version: 3.03 -FPGA version: 2.10 (3.3V) -Serial number: DP142531 -SPI flash database: 4.3.01 -EM100Pro currently running -EM100Pro hold pin currently low - -Stopped EM100Pro -Sending flash chip configuration -Chip set to W25Q256FV -Sent 2097152 bytes of 33554432 -Sent 4194304 bytes of 33554432 -Sent 6291456 bytes of 33554432 -Sent 8388608 bytes of 33554432 -Sent 10485760 bytes of 33554432 -Sent 12582912 bytes of 33554432 -Sent 14680064 bytes of 33554432 -Sent 16777216 bytes of 33554432 -Sent 18874368 bytes of 33554432 -Sent 20971520 bytes of 33554432 -Sent 23068672 bytes of 33554432 -Sent 25165824 bytes of 33554432 -Sent 27262976 bytes of 33554432 -Sent 29360128 bytes of 33554432 -Sent 31457280 bytes of 33554432 -Sent 33554432 bytes of 33554432 -Transfer Succeeded -Started EM100Pro -+ echo date -+ echo 'sleeping 50 because this piece of shit can'\''t take it' -sleeping 50 because this piece of shit can't take it -+ sleep 50 -+ echo ./0 -+ sleep 5 -+ echo ./1 -+ sleep 10 -+ ./uinit -m tester -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301 -2019/01/03 13:48:07 Accepted &{{0xc000142100}} -Command.Welcome(&{}): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -Command.Reboot(&{0s}): -2019/01/03 13:50:13 Accepted &{{0xc000142200}} -Command.Welcome(): ______________ -< welcome to DUT > - -------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || - -2019/01/03 13:50:13 We are now done ...................... -+ echo 'ALL DONE' -ALL DONE -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaner R:saverom]}: file is /tmp/futk219719675/2 -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443) -2019/01/03 13:50:13 removed [0xc000026180] -^Cinterrupt -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ./uinit -m ssh -[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821 - - -^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ ls /tmp/futk219719675/ -[?2004l0 1 2 3 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ /tmpfutk more RUN4 -[?2004l[more RUN4]OK ^C -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ morvi RUN4 -[?2004l[?2004h[?1049h[?1h=[?2004h[?12h[?12l[?25l"RUN4" [noeol] 11690L, 581632C▽ [>c]10;?]11;?Script started on 2018-12-20 12:38:28-0800 -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ make d4^M -^[[?2004lfutk RUN4.4.rom fv ./DXECLEANER clean^M -2018/12/20 12:38:32 Found 310 things^M -2018/12/20 12:38:32 script is ./DXECLEANER^M -2018/12/20 12:38:42 Try to remove 70E1A818-0BE1-4449-BFD4-9EF68C7F02A8:EFI_FV_FILETYPE_DRIVER:ReFlash (70E1A818-0BE1-4449-BFD4-9EF68C7F02A8)^M -2018/12/20 12:38:42 removed [0xc000025200]^M -+ echo TEST /tmp/futk925337781/1^M -TEST /tmp/futk925337781/1^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/1 -r^M -[sudo] password for rminnich: ^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M -Sent 8388608 bytes of 33554432^M -Sent 10485760 bytes of 33554432^M -Sent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -r^M -2018/12/20 12:41:44 Listening on 192.168.0.1:8080 at 2018-12-20 12:41:44.760413326 -0800 PST m=+0.002850707^M -2018/12/20 12:44:44 Listen failed: accept tcp 192.168.0.1:8080: i/o timeout at 2018-12-20 12:44:44.760689226 -0800 PST m=+180.003126614^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 We are now done ......................^M -2018/12/20 12:44:44 accept tcp 192.168.0.1:8080: i/o timeout^M -2018/12/20 12:44:44 Try to remove 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE (00CC581D-5687-47C8-96C3-44EB1240A9F6)^^M -2018/12/20 12:44:44 removed [0xc0084f8b00]^M -+ echo TEST /tmp/futk925337781/2^M -TEST /tmp/futk925337781/2^M -+ echo date^M -+ echo ./0^M -+ echo ./pg^M -+ sudo /usr/local/google/home/rminnich/bin/em100 -c W25Q256FV -s -d /tmp/futk925337781/2 -r^M -will emulate 'W25Q256FV'^M -MCU version: 3.03^M -FPGA version: 2.10 (3.3V)^M -Serial number: DP142531^M -SPI flash database: 4.3.01^M -EM100Pro currently running^M -EM100Pro hold pin currently low^M -^M -Stopped EM100Pro^M -Sending flash chip configuration^M -Chip set to W25Q256FV^M -Sent 2097152 bytes of 33554432^M -Sent 4194304 bytes of 33554432^M -Sent 6291456 bytes of 33554432^M1,1Top]2;RUN4 (/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102) - VIM]1;RUN4[?25hP+q436f\P+q6b75\P+q6b64\P+q6b72\P+q6b6c\P+q2332\P+q2334\P+q2569\P+q2a37\P+q6b31\[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11690,1Bot[?25h[?25l?[?2004h[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h [?25l11668,21 Bot[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l[] -[]4[?25h[?25l[] -[]3[?25h[?25l[]2[?25h[?25l1[?25h[?25l0[?25h[?25l69[?25h[?25l8[?25h[?25l:[?2004h[?25hg[?25l[?25h/[?25l[?25hR[?25l[?25he[?25l[?25hm[?25l[?25ho[?25l[?25hv[?25l[?25he[?25l[?25h/[?25l[?25hp[?25l[?25h [?25l -2018/12/20 12:50:31 Removed &{00CC581D-5687-47C8-96C3-44EB1240A9F6 00CC581D-5687-47C8-96C3-44EB1240A9F6:EFI_FV_FILETYPE_DRIVER:TyanBoardDXE 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/2^M -2018/12/20 12:56:20 Removed &{DE141A05-FA40-432D-9631-5E3E990F44D5 DE141A05-FA40-432D-9631-5E3E990F44D5:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/3^M -2018/12/20 13:06:24 Removed &{9B680FCE-AD6B-4F3A-B60B-F59899003443 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/5^M -2018/12/20 13:12:12 Removed &{6C160B26-E04C-4098-A6AC-C8C7B6471A86 6C160B26-E04C-4098-A6AC-C8C7B6471A86:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/6^M -2018/12/20 13:18:00 Removed &{634E8DB5-C432-43BE-A653-9CA2922CC458 634E8DB5-C432-43BE-A653-9CA2922CC458:EFI_FV_FILETYPE_DRIVER:Nvme 7 map[r:clean -er R:saverom]}: file is /tmp/futk925337781/7^M -2018/12/20 13:23:49 Removed &{BB65942B-521F-4EC3-BAF9-A92540CF60D2 BB65942B-521F-4EC3-BAF9-A92540CF60D2:EFI_FV_FILETYPE_DRIVER:SataController 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/8^M -2018/12/20 13:29:37 Removed &{74346897-9E0C-4B41-BF1F-BAA1ECB85DA6 74346897-9E0C-4B41-BF1F-BAA1ECB85DA6:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/9^M -2018/12/20 13:35:25 Removed &{8EEF9AD2-463E-425F-A4FE-2F6783D6F97E 8EEF9AD2-463E-425F-A4FE-2F6783D6F97E:EFI_FV_FILETYPE_DRIVER:GenericSio 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/10^M -2018/12/20 13:41:13 Removed &{86CDDF93-4872-4597-8AF9-A35AE4D3725F 86CDDF93-4872-4597-8AF9-A35AE4D3725F:EFI_FV_FILETYPE_DRIVER:IScsiDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/11^M -2018/12/20 13:47:01 Removed &{AE587172-CC15-48E1-8BE0-29DDF05C6A1F AE587172-CC15-48E1-8BE0-29DDF05C6A1F:EFI_FV_FILETYPE_DRIVER:DxeSelStatusCode 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/12^M -2018/12/20 13:52:49 Removed &{580DD900-385D-11D7-883A-00500473D4EB 580DD900-385D-11D7-883A-00500473D4EB:EFI_FV_FILETYPE_DRIVER:Uhcd 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/13^M -2018/12/20 13:58:37 Removed &{43788BEB-638F-434C-8A84-46D33A589E76 43788BEB-638F-434C-8A84-46D33A589E76:EFI_FV_FILETYPE_DRIVER:BmcElog 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/14^M -2018/12/20 14:08:44 Removed &{24A44CAF-0BF2-4514-90C4-C794B3E778F5 24A44CAF-0BF2-4514-90C4-C794B3E778F5:EFI_FV_FILETYPE_DRIVER:MePolicyInitDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/16^M -2018/12/20 14:23:05 Removed &{271B424E-A4CC-4E0E-90A2-7EA4841F12F3 271B424E-A4CC-4E0E-90A2-7EA4841F12F3:EFI_FV_FILETYPE_DRIVER:ExportHiiDb 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/19^M -2018/12/20 14:28:52 Removed &{502B04F3-71AB-47B4-BEAE-4736EA190AA4 502B04F3-71AB-47B4-BEAE-4736EA190AA4:EFI_FV_FILETYPE_DRIVER:PciDxeInit 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/20^M -2018/12/20 14:34:40 Removed &{BDCE85BB-FBAA-4F4E-9264-501A2C249581 BDCE85BB-FBAA-4F4E-9264-501A2C249581:EFI_FV_FILETYPE_DRIVER:S3SaveStateDxe 7 m -ap[R:saverom r:cleaner]}: file is /tmp/futk925337781/21^M -2018/12/20 14:44:46 Removed &{961578FE-B6B7-44C3-AF35-6BC705CD2B1F 961578FE-B6B7-44C3-AF35-6BC705CD2B1F:EFI_FV_FILETYPE_DRIVER:Fat 7 map[r:cleane -rR:saverom]}: file is /tmp/futk925337781/23^M -2018/12/20 14:50:33 Removed &{DE5FC8BF-06ED-4DC5-BA9D-29F711699A85 DE5FC8BF-06ED-4DC5-BA9D-29F711699A85:EFI_FV_FILETYPE_DRIVER:TraceHubStatusCode -HandlerRuntimeDxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/24^M -2018/12/20 14:56:17 Removed &{AE587172-CC15-48E1-8BE1-29DDF05C6A1E AE587172-CC15-48E1-8BE1-29DDF05C6A1E:EFI_FV_FILETYPE_DRIVER:OemVtdRmrr 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/25^M -2018/12/20 15:02:05 Removed &{8F5A2E02-538C-4D59-B920-C4786ACBC552 8F5A2E02-538C-4D59-B920-C4786ACBC552:EFI_FV_FILETYPE_DRIVER:Ahci 7 map[R:saver -om r:cleaner]}: file is /tmp/futk925337781/26^M -2018/12/20 15:07:52 Removed &{9D0CEA63-745B-417D-BBA4-E5193061C907 9D0CEA63-745B-417D-BBA4-E5193061C907:EFI_FV_FILETYPE_DRIVER:DxeFrb 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/27^M -2018/12/20 15:13:41 Removed &{7D77B32E-BAB2-4CC7-8378-7550513F3FCA 7D77B32E-BAB2-4CC7-8378-7550513F3FCA:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/28^M -2018/12/20 15:26:10 Removed &{64A11188-5B86-4F59-A702-73365896E65E 64A11188-5B86-4F59-A702-73365896E65E:EFI_FV_FILETYPE_DRIVER:AcpiVTD 7 map[R:sa -verom r:cleaner]}: file is /tmp/futk925337781/30^M -2018/12/20 15:31:58 Removed &{97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F 97C81E5D-8FA0-486A-AAEA-0EFDF090FE4F:EFI_FV_FILETYPE_DRIVER:SerialIo 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/31^M -2018/12/20 15:37:46 Removed &{13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7:EFI_FV_FILETYPE_DRIVER:EbcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/32^M -2018/12/20 15:43:34 Removed &{FA20568B-548B-4B2B-81EF-1BA08D4A3CEC FA20568B-548B-4B2B-81EF-1BA08D4A3CEC:EFI_FV_FILETYPE_DRIVER:BootScriptExecutor -Dxe 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/33^M -2018/12/20 15:49:22 Removed &{BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F BB8C2CF3-A5E3-49EF-941B-4A01FAC6FD5F:EFI_FV_FILETYPE_DRIVER:SmiFlashDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/34^M -2018/12/20 15:55:10 Removed &{68D89864-C0A8-490D-BE18-C83D67240928 68D89864-C0A8-490D-BE18-C83D67240928:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/35^M -2018/12/20 16:00:58 Removed &{E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC E8F6A75C-3CDA-4B00-9837-8CA2A1F34EAC:EFI_FV_FILETYPE_DRIVER:SpsDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/36^M -2018/12/20 16:11:04 Removed &{52C877FD-C27C-4779-B750-7880B28B4306 52C877FD-C27C-4779-B750-7880B28B4306:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/38^M -2018/12/20 16:25:28 Removed &{43E7ABDD-E352-4CFB-A230-4CDC1D350E5C 43E7ABDD-E352-4CFB-A230-4CDC1D350E5C:EFI_FV_FILETYPE_DRIVER:GraphicsConsole 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/41^M -2018/12/20 16:31:15 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/42^M -2018/12/20 16:37:04 Removed &{536DF136-BD96-4E1E-ADF5-6B637C139063 536DF136-BD96-4E1E-ADF5-6B637C139063:EFI_FV_FILETYPE_DRIVER:UuidDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/43^M -2018/12/20 16:42:51 Removed &{69E6DD6D-F09E-485F-9627-EB70E9CFC82A 69E6DD6D-F09E-485F-9627-EB70E9CFC82A:EFI_FV_FILETYPE_DRIVER:UbaInitDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/44^M -2018/12/20 16:48:38 Removed &{25ACF158-DD61-4E64-9A49-55851E9A26C7 25ACF158-DD61-4E64-9A49-55851E9A26C7:EFI_FV_FILETYPE_DRIVER:CsmBlockIo 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/45^M -2018/12/20 16:54:25 Removed &{B11216C5-44E4-472C-ACB7-128A5A3AD7A1 B11216C5-44E4-472C-ACB7-128A5A3AD7A1:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/46^M -2018/12/20 17:00:13 Removed &{196CA3D8-9A5A-4735-B328-8FFC1D93D188 196CA3D8-9A5A-4735-B328-8FFC1D93D188:EFI_FV_FILETYPE_DRIVER:TcgPlatformSetupPo -licy 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/47^M -2018/12/20 17:05:56 Removed &{E052D8A6-224A-4C32-8D37-2E0AE162364D E052D8A6-224A-4C32-8D37-2E0AE162364D:EFI_FV_FILETYPE_DRIVER:PchSmbusDxe 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/48^M -2018/12/20 17:15:56 Removed &{858EBE6F-360F-415B-B7DC-463AAEB03412 858EBE6F-360F-415B-B7DC-463AAEB03412:EFI_FV_FILETYPE_DRIVER:TcgLegacy 7 map[r: -cleaner R:saverom]}: file is /tmp/futk925337781/50^M -2018/12/20 17:21:39 Removed &{6AC5D123-C6E5-41BA-9BE3-A0371EE54B78 6AC5D123-C6E5-41BA-9BE3-A0371EE54B78:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeNeonCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/51^M --- More --[?25h[?25l2018/12/20 17:35:59 Removed &{4C006CD9-19BA-4617-8483-609194A1ACFC 4C006CD9-19BA-4617-8483-609194A1ACFC:EFI_FV_FILETYPE_DRIVER:UsbInt13 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/54^M -2018/12/20 17:41:41 Removed &{29CF55F8-B675-4F5D-8F2F-B87A3ECFD063 29CF55F8-B675-4F5D-8F2F-B87A3ECFD063:EFI_FV_FILETYPE_DRIVER:CsmVideo 7 map[R:s -averom r:cleaner]}: file is /tmp/futk925337781/55^M -2018/12/20 17:51:42 Removed &{2ACA4F79-324F-4D6D-8268-A210B1537807 2ACA4F79-324F-4D6D-8268-A210B1537807:EFI_FV_FILETYPE_DRIVER:TyanBadDimmDxe 7 m -ap[r:cleaner R:saverom]}: file is /tmp/futk925337781/57^M -2018/12/20 17:57:23 Removed &{C4EB3614-4986-42B9-8C0D-9FE118278908 C4EB3614-4986-42B9-8C0D-9FE118278908:EFI_FV_FILETYPE_DRIVER:CrystalRidge 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/58^M -2018/12/20 18:03:05 Removed &{F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8 F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8:EFI_FV_FILETYPE_DRIVER:WatchdogTimer 7 ma -p[R:saverom r:cleaner]}: file is /tmp/futk925337781/59^M -2018/12/20 18:13:05 Removed &{16271FCA-55D9-4A33-93FC-5A3EB128DEB6 16271FCA-55D9-4A33-93FC-5A3EB128DEB6:EFI_FV_FILETYPE_DRIVER:CRBDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/61^M -2018/12/20 18:18:47 Removed &{5038E34E-0774-47A0-A5EF-4B94AF1A43DA 5038E34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/62^M -2018/12/20 18:24:29 Removed &{CF6BCADD-D4C4-4095-B2BC-417D7247890A CF6BCADD-D4C4-4095-B2BC-417D7247890A:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityFPGA 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/63^M -2018/12/20 18:30:11 Removed &{DEB0EE00-18DF-415C-AF03-74D09B0AAD87 DEB0EE00-18DF-415C-AF03-74D09B0AAD87:EFI_FV_FILETYPE_DRIVER:JedecNvDimm 7 map[ -R:saverom r:cleaner]}: file is /tmp/futk925337781/64^M -2018/12/20 18:40:11 Removed &{5038F34E-0774-47A0-A5EF-4B94AF1A43DA 5038F34E-0774-47A0-A5EF-4B94AF1A43DA:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/66^M -2018/12/20 18:45:53 Removed &{018A5C7A-12EB-429D-9DEF-6FCC410B04E8 018A5C7A-12EB-429D-9DEF-6FCC410B04E8:EFI_FV_FILETYPE_DRIVER:IioCfgUpdateDxeLig -htningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/67^M -2018/12/20 18:51:35 Removed &{A210F973-229D-4F4D-AA37-9895E6C9EABA A210F973-229D-4F4D-AA37-9895E6C9EABA:EFI_FV_FILETYPE_DRIVER:DpcDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/68^M -2018/12/20 18:57:18 Removed &{3237418A-478C-4700-B59F-768E2CCBC726 3237418A-478C-4700-B59F-768E2CCBC726:EFI_FV_FILETYPE_DRIVER:CmosDxe 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/69^M -2018/12/20 19:03:00 Removed &{171F43DC-C4D9-47A6-9641-65DDCDD5AA30 171F43DC-C4D9-47A6-9641-65DDCDD5AA30:EFI_FV_FILETYPE_DRIVER:UsbRtDxe 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/70^M -2018/12/20 19:08:43 Removed &{D93DE2E3-3727-4D5B-B49F-777C93A971D3 D93DE2E3-3727-4D5B-B49F-777C93A971D3:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/71^M -2018/12/20 19:14:21 Removed &{61422D26-81EC-47FF-B6CF-939EAEE73FBA 61422D26-81EC-47FF-B6CF-939EAEE73FBA:EFI_FV_FILETYPE_DRIVER:StatusCodeDxe 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/72^M -2018/12/20 19:19:58 Removed &{87AB821C-79B8-4EF6-A913-21D22063F55F 87AB821C-79B8-4EF6-A913-21D22063F55F:EFI_FV_FILETYPE_DRIVER:AcpiPlatform 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/73^M -2018/12/20 19:25:36 Removed &{3FFCAE95-23CF-4967-94F5-16352F68E43B 3FFCAE95-23CF-4967-94F5-16352F68E43B:EFI_FV_FILETYPE_DRIVER:PpmInitialize 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/74^M -2018/12/20 19:31:14 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/75^M -2018/12/20 19:36:52 Removed &{63809859-F029-41C3-9F34-EEEB9EA787A5 63809859-F029-41C3-9F34-EEEB9EA787A5:EFI_FV_FILETYPE_DRIVER:IioInit 7 map[r:cl -eaner R:saverom]}: file is /tmp/futk925337781/76^M -2018/12/20 19:45:57 Removed &{6372357A-06D7-43EF-B55C-1964F3DD6916 6372357A-06D7-43EF-B55C-1964F3DD6916:EFI_FV_FILETYPE_DRIVER:DxeIpmiBmcInitiali -ze 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/78^M -2018/12/20 19:50:45 Removed &{6B6FD380-2C55-42C6-98BF-CBBC5A9AA666 6B6FD380-2C55-42C6-98BF-CBBC5A9AA666:EFI_FV_FILETYPE_DRIVER:SocketSetup 7 map[ -r:cleaner R:saverom]}: file is /tmp/futk925337781/79^M -2018/12/20 19:55:33 Removed &{8C9D8537-9479-40F4-8C82-70D1EF5F7353 8C9D8537-9479-40F4-8C82-70D1EF5F7353:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeLigh -tningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/80^M -2018/12/20 20:08:55 Removed &{B7EE4835-84CE-4B15-BF52-2D11574CE470 B7EE4835-84CE-4B15-BF52-2D11574CE470:EFI_FV_FILETYPE_DRIVER:HardwareSignatureE -ntry 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/83^M -2018/12/20 20:13:39 Removed &{217828C1-DA75-5BC1-7B58-91954FED0101 217828C1-DA75-5BC1-7B58-91954FED0101:EFI_FV_FILETYPE_DRIVER: 7 map[r:cleaner R -:saverom]}: file is /tmp/futk925337781/84^M -2018/12/20 20:22:43 Removed &{BCEA6548-E204-4486-8F2A-36E13C7838CE BCEA6548-E204-4486-8F2A-36E13C7838CE:EFI_FV_FILETYPE_DRIVER:FpgaSocketSetup 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/86^M -2018/12/20 20:31:44 Removed &{72FE44FF-44FC-4653-918A-0D5E76C416D2 72FE44FF-44FC-4653-918A-0D5E76C416D2:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB3 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/88^M -2018/12/20 20:36:31 Removed &{1015EA63-7421-417D-BB51-E5193061C551 1015EA63-7421-417D-BB51-E5193061C551:EFI_FV_FILETYPE_DRIVER:DxeIpmiUsb 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/89^M -2018/12/20 20:41:19 Removed &{F80697E9-7FD6-4665-8646-88E33EF71DFC F80697E9-7FD6-4665-8646-88E33EF71DFC:EFI_FV_FILETYPE_DRIVER:SecurityStubDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/90^M -2018/12/20 20:46:06 Removed &{9E8DD95D-868B-41A4-966C-107338C291BB 9E8DD95D-868B-41A4-966C-107338C291BB:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB2 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/91^M -2018/12/20 20:50:53 Removed &{BB1FBD4F-2E30-4793-9BED-74F672BC8FFE BB1FBD4F-2E30-4793-9BED-74F672BC8FFE:EFI_FV_FILETYPE_DRIVER:PchResetRuntime 7 -map[R:saverom r:cleaner]}: file is /tmp/futk925337781/92^M -2018/12/20 20:55:36 Removed &{DC3641B8-2FA8-4ED3-BC1F-F9962A03454B DC3641B8-2FA8-4ED3-BC1F-F9962A03454B:EFI_FV_FILETYPE_DRIVER:Mtftp4Dxe 7 map[R: -saverom r:cleaner]}: file is /tmp/futk925337781/93^M -2018/12/20 21:00:23 Removed &{7AB22C56-2510-4FD2-AC18-57394419FBAB 7AB22C56-2510-4FD2-AC18-57394419FBAB:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityFPGA 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/94^M -2018/12/20 21:05:10 Removed &{D6207835-B7E3-4FF8-B276-CDE3E52206BC D6207835-B7E3-4FF8-B276-CDE3E52206BC:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/95^M -2018/12/20 21:09:57 Removed &{45055A79-B385-4705-A3AC-11CE99A1CB47 45055A79-B385-4705-A3AC-11CE99A1CB47:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeNe -onCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/96^M -2018/12/20 21:19:02 Removed &{4A3602BC-1A05-4C82-99B4-588CD2A32CD5 4A3602BC-1A05-4C82-99B4-588CD2A32CD5:EFI_FV_FILETYPE_DRIVER:LegacySredir 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/98^M -2018/12/20 21:23:49 Removed &{7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF 7F8D35BD-0CE3-4654-B5D3-73FC4B38AABF:EFI_FV_FILETYPE_DRIVER:PlatformEarlyDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/99^M -2018/12/20 21:28:33 Removed &{F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4 F8C6FEDE-EE15-47ED-99A4-60798A3C7DC4:EFI_FV_FILETYPE_DRIVER:StaticSkuDataDxeLi -ghtningRidgeEXECB3 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/100^M -2018/12/20 21:33:20 Removed &{5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9 5AE0C053-C2B3-4E7D-ADD9-FD3CEBC6D3D9:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeL -ightningRidgeEXRP 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/101^M -2018/12/20 21:38:07 Removed &{22EA234F-E72A-11E4-91F9-28D2447C4829 22EA234F-E72A-11E4-91F9-28D2447C4829:EFI_FV_FILETYPE_DRIVER:HttpUtilitiesDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/102^M -2018/12/20 21:42:54 Removed &{529D3F93-E8E9-4E73-B1E1-BDF6A9D50113 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113:EFI_FV_FILETYPE_DRIVER:ArpDxe 7 map[R:sav -e-- More --[?25hrom r:cleaner]}: file is /tmp/futk925337781/103^M -[?25l2018/12/20 21:47:41 Removed &{CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600 CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600:EFI_FV_FILETYPE_DRIVER:EnglishDxe 7 map[r -:cleaner R:saverom]}: file is /tmp/futk925337781/104^M -2018/12/20 21:52:28 Removed &{7474A4C6-7F30-4DE1-BC68-DA5EFE615B52 7474A4C6-7F30-4DE1-BC68-DA5EFE615B52:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eNeonCityEPRP 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/105^M -2018/12/20 22:05:49 Removed &{DC92A37B-4AC5-4117-AABB-019FFC0FD06A DC92A37B-4AC5-4117-AABB-019FFC0FD06A:EFI_FV_FILETYPE_DRIVER:FpkSetup 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/108^M -2018/12/20 22:14:53 Removed &{9AE51047-E0B9-4A50-9E72-84E359D20189 9AE51047-E0B9-4A50-9E72-84E359D20189:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB2 7 map[R:saverom r:cleaner]}: file is /tmp/futk925337781/110^M -2018/12/20 22:25:50 Removed &{7FD082A9-3D6B-44E3-9C31-74D6B80F965C 7FD082A9-3D6B-44E3-9C31-74D6B80F965C:EFI_FV_FILETYPE_DRIVER:SetupConfigUpdateD -xeLightningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/112^M -2018/12/20 22:36:44 Removed &{9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36 9C65AFA1-9A5E-49D9-AA81-3915CCBE2E36:EFI_FV_FILETYPE_DRIVER:DcScreen 7 map[r:c -leaner R:saverom]}: file is /tmp/futk925337781/114^M -2018/12/20 22:41:31 Removed &{CD7C839D-0521-4B26-9476-9FF2CB70649A CD7C839D-0521-4B26-9476-9FF2CB70649A:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/115^M -2018/12/20 22:46:18 Removed &{CDC1C80D-E6D3-4A42-9229-75F3BEFCF109 CDC1C80D-E6D3-4A42-9229-75F3BEFCF109:EFI_FV_FILETYPE_DRIVER:PciOutOfResourceSe -tupPage 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/116^M -2018/12/20 22:51:01 Removed &{67820532-7613-4DD3-9ED7-3D9BE3A7DA63 67820532-7613-4DD3-9ED7-3D9BE3A7DA63:EFI_FV_FILETYPE_DRIVER:Aint13 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/117^M -2018/12/20 22:55:48 Removed &{E6DC9900-CCF6-452B-85FA-C7F1E52F0152 E6DC9900-CCF6-452B-85FA-C7F1E52F0152:EFI_FV_FILETYPE_DRIVER:SlotDataUpdateDxeN -eonCityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/118^M -2018/12/20 23:00:35 Removed &{BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4 BC0B9FB8-97CF-4B17-9A9E-F574E62CBCC4:EFI_FV_FILETYPE_DRIVER:BmcLanConfig 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/119^M -2018/12/20 23:05:22 Removed &{7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57 7D9DDBFB-FB67-4303-90B0-9A7A7FF29B57:EFI_FV_FILETYPE_DRIVER:OpromUpdateDxeLigh -tningRidgeEXECB1 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/120^M -2018/12/20 23:10:08 Removed &{025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A:EFI_FV_FILETYPE_DRIVER:MnpDxe 7 map[r:cle -aner R:saverom]}: file is /tmp/futk925337781/121^M -2018/12/20 23:14:55 Removed &{0718AD81-F26A-4850-A6EC-F268E309D707 0718AD81-F26A-4850-A6EC-F268E309D707:EFI_FV_FILETYPE_DRIVER:Tpm20PlatformDxe 7 -map[r:cleaner R:saverom]}: file is /tmp/futk925337781/122^M -2018/12/20 23:19:41 Removed &{8958EDFF-02F7-4E49-87B1-FBA4BE4E8768 8958EDFF-02F7-4E49-87B1-FBA4BE4E8768:EFI_FV_FILETYPE_DRIVER:SmbiosDataUpdateDx -eLightningRidgeEXECB4 7 map[r:cleaner R:saverom]}: file is /tmp/futk925337781/123^M -2018/12/20 23:24:28 Removed &{34FB5A1B-E3CD-4893-9403-0A39BA62FDA0 34FB5A1B-E3CD-4893-9403-0A39BA62FDA0:EFI_FV_FILETYPE_DRIVER:SvSmmSupport 7 map -[r:cleaner R:saverom]}: file is /tmp/futk925337781/124^M -2018/12/20 23:29:14 Removed &{4551F2F5-C684-4F27-936F-C7B04A5C5FF1 4551F2F5-C684-4F27-936F-C7B04A5C5FF1:EFI_FV_FILETYPE_DRIVER:SecureBootDXE 7 ma -p[r:cleaner R:saverom]}: file is /tmp/futk925337781/125^M -2018/12/20 23:34:00 Removed &{5AAB83E5-F027-4CA7-BFD0-16358CC9E453 5AAB83E5-F027-4CA7-BFD0-16358CC9E453:EFI_FV_FILETYPE_DRIVER:WdtDxe 7 map[R:sav -erom r:cleaner]}: file is /tmp/futk925337781/126^M -2019/01/03 13:09:21 Removed &{9BB65D37-8CA8-4789-BE45-EE18536EE089 9BB65D37-8CA8-4789-BE45-EE18536EE089:EFI_FV_FILETYPE_DRIVER:UsbOcUpdateDxeNeon -CityEPECB 7 map[r:cleaner R:saverom]}: file is /tmp/futk077126222/1^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cle -aner R:saverom]}: file is /tmp/futk219719675/2^M -Press ENTER or type command to continue[?25h[?25lSent 12582912 bytes of 33554432^M -Sent 14680064 bytes of 33554432^M -Sent 16777216 bytes of 33554432^M -Sent 18874368 bytes of 33554432^M -Sent 20971520 bytes of 33554432^M -Sent 23068672 bytes of 33554432^M -Sent 25165824 bytes of 33554432^M -Sent 27262976 bytes of 33554432^M -Sent 29360128 bytes of 33554432^M -Sent 31457280 bytes of 33554432^M -Sent 33554432 bytes of 33554432^M -Transfer Succeeded^M -Started EM100Pro^M -+ echo date^M -+ echo 'sleeping 50 because this piece of shit can'\''t take it'^M -sleeping 50 because this piece of shit can't take it^M -+ sleep 50^M -+ echo ./0^M -+ sleep 5^M -+ echo ./1^M -+ sleep 10^M -+ ./uinit -m tester^M -2019/01/03 13:45:44 Listening on 192.168.0.1:8080 at 2019-01-03 13:45:44.189511857 -0800 PST m=+0.004766301^M -2019/01/03 13:48:07 Accepted &{{0xc000142100}}^M -Command.Welcome(&{}): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -Command.Reboot(&{0s}): ^M -2019/01/03 13:50:13 Accepted &{{0xc000142200}}^M -Command.Welcome(): ______________^M -< welcome to DUT >^M - --------------^M\ ^__^ ^M\ (oo)\_______^M(__)\)\/\^M||----w |^M|| ||^M -^M -2019/01/03 13:50:13 We are now done ......................^M -+ echo 'ALL DONE'^M -ALL DONE^M -2019/01/03 13:50:13 Removed &{3C1DE39F-D207-408A-AACC-731CFB7F1DD7 3C1DE39F-D207-408A-AACC-731CFB7F1DD7:EFI_FV_FILETYPE_DRIVER:PciBus 7 map[r:cleaaner R:saverom]}: file is /tmp/futk219719675/2^M -2019/01/03 13:50:13 Try to remove 9B680FCE-AD6B-4F3A-B60B-F59899003443:EFI_FV_FILETYPE_DRIVER:DevicePathDxe (9B680FCE-AD6B-4F3A-B60B-F59899003443))^M -2019/01/03 13:50:13 removed [0xc000026180]^M -^Cinterrupt^M -^C[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^C^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -[310 [/tmp/futk219719675/0 /tmp/futk219719675/2] context canceled]OK ^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ./uinit -m ssh^M -^[[?2004l2019/01/03 13:50:33 Listening on 192.168.0.1:8080 at 2019-01-03 13:50:33.488248147 -0800 PST m=+0.004136821^M -^M -^M -^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ^M -^[[?2004l^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinarybloobs/mainboards/tyan7102$ ls /tmp/fu^Gtk219719675/^M -^[[?2004l0 1 2 3^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ /tmp^H^H^H^H^[[Kfutk more RUN4^G^M -^[[?2004l[more RUN4]OK ^C^M -^[[?2004h^[]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102^Grminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainbooards/tyan7102$ m11668,1Bot[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10[?25h[?25l1[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l90,1 [?25h[?25l89[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l5[?25h[?25l4[?25h[?25l3[?25h[?25l2[?25h[?25l1[?25h[?25l0[?25h[?25l79[?25h[?25l8[?25h[?25l7[?25h[?25l6[?25h[?25l[]5[?25h[?25l:[?2004h[?25hq[?25l[?25h [?25l[?2004l]2;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102]1;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102[?2004l[?1l>[?25h[?1049l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Cinterrupt -^C^C^C -[313 [/tmp/futk077126222/0 /tmp/futk077126222/1] exit status 1]OK ^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ u -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit -There are stopped jobs. -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ fg -[?2004lmake d98 -^Z -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ kill -09 9 %1 -[?2004l -[1]+ Stopped make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[1]+ Killed make d98 -[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ -[?2004l[?2004h]0;rminnich@xcpu: /usr/local/src/projects/nobinaryblobs/mainboards/tyan7102rminnich@xcpu:/usr/local/src/projects/nobinaryblobs/mainboards/tyan7102$ [?2004lexit - -Script done on 2019-01-03 13:52:38-0800 diff --git a/mainboards/tyan7106/bin.reset b/mainboards/tyan7106/bin.reset deleted file mode 100644 index 20e99d46..00000000 --- a/mainboards/tyan7106/bin.reset +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# this is the reset script for the BMC so we don't have to deal with awful -# curl scripts. -sleep 1 -echo 0 > /sys/class/gpio/gpio315/value -sleep 1 -echo 1 > /sys/class/gpio/gpio315/value -sleep 5 -echo 0 > /sys/class/gpio/gpio315/value diff --git a/mainboards/tyan7106/blacklist b/mainboards/tyan7106/blacklist deleted file mode 100644 index a3e570d5..00000000 --- a/mainboards/tyan7106/blacklist +++ /dev/null @@ -1,48 +0,0 @@ -3FFCAE95-23CF-4967-94F5-16352F68E43B -13F4EA8E-BFF1-43BF-8F44-80BCC96040F1 -274F0C8F-9E57-41D8-9966-29CCD48D31C2 -C1C418F9-591D-461C-82A2-B9CD96DFEA86 -DE23ACEE-CF55-4FB6-AA77-984AB53DE823 -FC1B7640-3466-4C06-B1CC-1C935394B5C2 -90CB75DB-71FC-489D-AACF-943477EC7212 -WdtDxe -HeciInitDxe -SpsDxe -Aint13 -Setup -ServerMgmtSetup -.*ACPI.* -S3SaveStateDxe -BootScriptExecutorDxe -SioDxeInit -LegacySredir -OA3 -OptionRomPolicy -PciRootBridge -PciDxeInit -PciOutOfResourceSetupPage -RuntimeMemoryHoleVar -ExportHiiDb -DpcDxe -AmiBoardInfo2 -ReFlash -CsmDxe -UbaConfigDatabaseDxe -HardwareSignatureEntry -KbcEmulDxe -EsrtDxe -NvmeInt13 -OpalSecurity -.*Acpi.* -PlatformCpuPolicy -LegacyRegion2 -PciPlatform -PlatformEarlyDxe -PlatformType -S3NvramSave -UuidDxe -OpaPlatCfg -MemorySubClass -SocketSetup -FpgaSocketSetup - diff --git a/mainboards/tyan7106/chipsec-4.13.0-rc7.ko b/mainboards/tyan7106/chipsec-4.13.0-rc7.ko deleted file mode 100644 index 7c15463ff07331f34504922823a5d909235f2255..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 382264 zcmeFadw5jU)jxjD%mfBV%!L5qK7o)7R}-$`>I4#)Xn+Vr5)g7B35kRx%(cP_s(H!bD!C4!-o%X2QzS+U}1=y?1iF9qTs`EbNP zVD70ud7pZ#R~%3~c;||GJpI&P5_bO4-Q#6A(&M9?_K)p-5Bww6vRdQfAN^4Lj(?=< z%y0-?QLIP1&Lm`Yf$3@WI(q-HsuQNF=RRN61v&ALyy%!YGeYVD@6iY^QL5?%o!rn* z#4CiZ{SzCOS}y>XZ4vgFq3xfjqw$X#PF(vZ=XqHaX#Y$KqJ^p=Ed*Bz8kV*YOew2O z(_QE+^z2jb#h&YfI9j{ATH=F8h^&rt=YsahGgI?JzyFbyU|IRw-?Yx2J690;i)O&? zuGZwNmqZlBYw5B5jdStHnI7yjRs!2-8LIifsiHMLxcv><3Wi=2TTbpQ&AE*ElOK9{ zaen9*d0BrA?tCYqpffcXYCS%G_lNPjy5Ltq=#3-v2bBgt`kkpQKKEq7)DQCG=e-&X ztvKO07z`b4O`9Kj{jtAd7zB?!&1MCUJ*QuhWIi)H*jaQU*x7nK7&_*ZZJB(&W`5}8 zWA8`Is9NY%r|J2}o_!zrdnS!;gC(bwc*aMNOO!He$d_Fv>Gz@0`$XE02 z-{;$ZP)&Qq@zW{)CN|C##xU($5JWD?98=I)?L|%%j7|@BK5`JD$q)UrAoM4(7kc^# zCzIVTwag24UJ?v;{(uUQ7KGl@Bn)<5PgbyV0@@r5%?SpN?c5Ir{}qJ(=mZ4AA?C<` z!<3nSih@VXT-_d=dJL|_?|L33+Li`)o^pc|zw2(2slnan;&)$xyZTCNP9>k_qlz;V>RO?<>lC8O5dHURawSfW%*v~D)qXEp|pTo9#tX>ey( zEENGxB?7cw>S!)>z+4B+bihOhjCQ~<2lRJ9f&(yRM~2XfqXqkxq?h~;G z;`m+Da3*Yn@Bd z!Dt)2{j(UMK6FviO>i1je~me7`)6KZq@up$h;AXG_jn4z7M^}~qxe6e9qim)3}LWSbb>oSwp;q* z=xX(aPa2PQojweo!t^6urw>KZp{~P~kkLx%6^%^;$)t18&(8G)9eCGB@(L>QS4hNJO&Uxsf5`|f1Dd08Jy`sH?`%D*ki&J1=QkpAv`xQ5-{`6LZU!N*zC=@nvKlk{JzE{+JbuAe$}`9JUF zSgGq_T91EZAFGUiM6BkTv`;kk3_eEA zxi*r=;~(8eW5Ino+Cr}dL;IxbLND(86Bbt58@LpB>a;KT)F-~3uYj&<2}sq=V`q9dBzK$XFNfM8D=;GMaL|D_unxq<#x(krBjJ!pfd-^ zjPh*j`Jv553$QB5c>>1TInTT|-+l-4OefAUmW9laTw!M9+t19O`c`w2Oh0c$_fN2M zCY7a5X&Gv2`MQ%|80iI}8gD_!7YtpBbyX0j`9KN_1VeIRP!N(CvLJLPbLjMNoOqlj zB4Xz^u`ilvsw?Q!iM6wPaQiu$YiTT)+HkhD0+)#1U}wMJ&iAmuUyT}P;bM~tuuSExZuE`+0(tq*JVra zm;{e(4adGG2SM#|oJyiw(^`<*c^?I)SpLp`PKe)A_1U>|Kk91di9n}t=R}YPK|$zk zjFRX}iR6fn$5`R%5m3v)rLHHhb4yxmPG>=yH?Q;ZwB)?bC21*nAP41yp6d|5JMO#` zwLf(#CAZ_r%YgDw%-6AdF<@@!W0ueCxN|9}oU3xv5^^x}<$#x#)7g^d&+T}45hNY^ zmhdQ361B$64}I2gUlA>Ie5*vh4lI+eeal6$6vzC1c|XhT*nK%*pySCE^7Zga3Z@=g z-w$of4Sg2f4X3Y1O62Uj(w4XcZJku|Lr(=m66mb1`MaNQjdLP#df-3d^3>| zu^`>?TnlzNj^#Yb{FE*})2Cp%6m5=;_8hZ;Or@dM@g{!->RF@eN ztIXkvbUiz7>OY$kKbKc$E=T)AXA4GtQn0V-nf$5GwIl_1zMUQ2foG6i5qGQlKZZs%@_T9c!TA{|e26D?=ziS_Zw#De4*)uGtJ;JK&Iyo1nJ&pzhafS%Tg z7K^)13E;wgxie;%Q}4O`$C+@Ur(uezdpfxLr4PQFbIg9RjGeehiC*Vvz3WsaONi6=a)=vGz0$>ISBIBX-+_=5 zO?%KSZ4P$ISrVt>$H|pNnpv9J*htY{H}TOJU}+fa-xd7mL~!Tp@1N$St5aF==PP^e z?>zl=fh|0mcdvq)0> zus!L?>f*+77dPgD`>IYX&soN8WZ84e-&gT5Hk8a19{RHua!5I2DQl-Jn-B=$wRD#$ z1v{8g0o(bLbD-o)3@n~RUe+wu4e#iu(y{f@?4 z-H(zW&RLYRxNuQ0^!NPG`}v_?#*fblxpG3imlfxr6OI;M3P~_@Ha@eY_~<7`srYd) z^!|Ixio>`%ns^t2MM2(`_~ft498?{F@4zHXywwDoZ#BaRh}ibG8cD8;vibOf7R?6t z#-l;rg1z$+3id8cDcHNzSFpF#U$A#|=FwBHp>>yGkLpBq2s@rHRijKn=x9L**X^$^ z#Z*%LUg@bHLTCBPqlK3(`UEvqKmKv-d&SG%{S-Bw$EkkrUs&XX%Semff9KQBbE^OP zFD!7N9q;SXuM_%pQomm3S1yI|!;aze3O=vl^OvK!WN;S_w`B4%x#BOa4#rO#W?AwT z@Y?bnOi((QqI988=|aEK#hFSMXDeM6P`WIrbWNesHO2P)&`;-wp3Vf$s>!W8KEm)>RFaRV#cs zBx>td`$Xoet@pLmRQVd48dg;`H#ao-YAdJtMpRn%lo8E7{s+0CuDqqnH#aB0V2rO3 z(z@cF=gC(!G;S=dZfaOt+S**zhjvUDkNB>g}zxnZR6sli|6OVy{t$IOW#lPEnbqdq-b&J7j^!>Rc1m+GR-Y2@QwAY zYG|#ilwg$C)itbQurOIQG;KV;!lgNj7UVCOH_hj0RT?#)KXb!~y1ES`eYG0XimJMX zHs9Lv4W*6c5uv|!b$vq#b>tUT zzPhTVbbWbKZFxl z;^HqC#YmgKTqqg3NYo>tM0ft1kU9Ouni%wOJw89;j{#+Z{RM4UlskWZ{=zSA-_k|@ zUN(R6yxABui}M!bmd?kdnllemU}O2}s?yr#(x&pYR%6Y^W}cu+%U5ysFU47)#hRn1 z6JK?0ePwC$#2ITbWS{P)SA{R}BDyx|9a5?H+nOoJ|($pX)*#AkbYC~-cJG8tN#+|w0 zUuPUMLEyB@nZnFJJuPF|tRfoAo7T2$Y^<7DK7LwjT|@n9^s&RqGMqX%THjnXb6#PA zRaw+jLRI`v}(%OhWgs7(Z0p=3)zLGt&W<${~GR{iu*g3wPvjZx^z|f zs+y|iFIgCBf4=$fOVlncH5R^nQPJGI73IyiWco_~a$fEJIt#2p`eMFnF4ftpl*5?(|MahUXVxL= z;F3))&Hj`A=jB5$zeM(YDzQ-gKe6!jWlOH5&8q6!&zt^Ibg1fYi>SDUXDk`Kr81De zRADGhdiD5h>N?}E9*aQC0AIGa^}#b4xLwEc627mTfIpg%a&=VstjS-xW>tJVb`$p6 z(SDvUzG7Lbk1AaJcYd4Mr@9_%fcn*6-qPZ!U4Lcy+J@G8%wL3G>0jmi#m};Uj^D4` zd~0KB-5f11@t-jME7fjU-v1gWA=mjYe7*Xmt<2tb+l5rd*|mIaX+vXksh(}WtbsY# z)!a*6ng1%QzVZw>^l5(u%QvrWMEcj&l~%Xb%VGzM_4?J^f%%{RmA5oZ=P5 z+0EHjulSK*%x(orVD(8)kZi_@rB~8Ckr4K#A4xBZ2yM%%PMC#Po8M? zN@10=TM7F|)s@r_@u=q^j)!b~5(p48@5T5|BF97~X%28hcMpyJsz)sd?J+spYG5O{ zVjvy{t^|>I6%KCtrEQPB-~bq=?e)YGlGu3Gs&F8+6=sHG7Mm4;^KJ|425DY(m$HQl zizD2U2wWDiyPVMDWrLCixJBDg~6)-nAz!?ACK;p7*>aQewG%zHNstINX1uE-3-H4DP9F5>I%aOmRpMBuk}gmrI; zz}sTOReZ;b6<1$R-1jHo8(gHo{nAgSv4@9H?v4Aw;;{T7_LtMhhxxn&9+pFg#~s-j z)_IK3*c0qUpjSGo-nb`j534?TjH-@}E>h~pQz9_<1+Zy@jQvkfkhHYxJBym#sjz8UTwq$1A`!?_yvO*M}voO2zafe;gHJx z=`L3wK4{;9*+RQK-#)~PL?sGrw$-b|LVGT*V^fq^WM2lNP>IEMKa@GF#1flT98sc3 zh%O~Avv0e?vW_cJVqb$TffGtBvu^-#Qi3hDTZ1t)_sQBWM2-`enV{)%}hgW6U}TxT`4vLhT0)iuAz3?FT$6g zq4wBsA%KPUg>c-8583~Xa0J>7d6kgf6GnHRJqwZZxpaQM)@J88)b&z_-^gx|=w}-0 zfc*+;3>fMg_8(Zkp}uJ^232UNTkKPyY7BLo{Q;;(Lw(2Q46(sb-?e>A8bjSHwRafm z7gGCvL%k@}Aw&Jj{u|ssY^axQ4m$L>oB}QwHXk+xCd}XvRCqC?E->+$pP;bE`?4Ho zLnG+~piD|h^$euP`wos1bz1ufaJwD%JMwWx8L38+*8Lp}u@?=SB3ywoxTZ%H+n5PL zi)~^g6mH((_?fgT>}S$dY@{k&O>W%9=&BAembBF|)4L}*qSd<>VI1B5zGx|T)*WGm zMd8|eKN${9?;l0rj|uzXW1V%iciV`ujCyg{-fhe}ehaaqn{~(;m9CxL(m*7rWLLK! z2pyuX-Q7~IXKG2AJwo`E*xRiFYMDxO2$8KssM}qT1eCa{+jAg-N^}ZQsKnLXUWcSu ziGAHZ0a2#JHQkbLWA0h_=ekxTjY{nAmJP`UCBD{eDTsC@uIsiQM28aBcl$Po{Yu=> z?W0o5I;g~fZaJ4))*&TslrncKaZ|S!Q0A}_2fKX;;)oJo@8-MRvbvP`Mz>rL$CbFb z+cFR*lsMF_1H?%sZtwO0h}V_)cDLVxIAtaM8J*aRt?K<-oBg8GZ1T+e0c`SwmZF zP(U)--6ziVCI|^=p9@?(-x(ra2wiOSNpNwHxvZr7p&Z8&f5*qHzmiS^tEatPm+GPf0Y`&Uk{iIJLsm-48h$Ar#$}QRuTtZm zhM@li*F#gZV{;9+XiieSx zqIfvV`j8Ej5BByS*#obv$kT!SM@!XZ{uj(zL4%ESbcr{$3GD+GT|LSQ$!|dqdaL1 z*rtt>8DrDNDa0uz;sb}XbZm8{H873(YG>exd4L{qV_-UQH+ah`2mAXE9E4X{G!AL( z1cjNokSfe(bJTuj|NhgU9a~**^&hYh$Qu4WgkBwf`CzztfN>i2c&V(<>Gcl`>h3xK zQu1_AoGUm6dP*d?ZiZ{#!qrDCD-e*g{Gfc#h`yj;TBiA!o`=L>5stzbJdMp(I6Vxz z_l&?^gp!8|Lp&d$oHTz(jD#>2cYdrP-H5$b+)MNeugaOT-_Sl(7u!SoGKz9)8V3a# zE<@#r{!al%w0vhNl)COtO`V2wZERE4Br7$YE)Y+&QZtCXz!R)gKXC%^cq?@zaY}4O zqm?>}&=*^=!Ac!X=!Zs@l{%I<6FAdK9Y>rU+cecmy^t^v+mvmk%3ut}mZM-6xrMQ- z0LK#+$5sMPAS{b*uC-Dp64u040!|`q#K*EyC7c^#YvINWvfE=EM{dAuo}XwsAHnbz#c?B1Sfm5p@{=}PoWYjg-Z!Iblf8BeTdTKRgYDrxufOp6db zVJ0l;;hDBNOnA>Tg6jZG6vO(Z!}l!qY8IPlM%u8xQ^6k2b~$M_Y{E~&t(+Lu%1P47 zX}ED}4Vx_Pxd)qyl#Fp2ZAhn`N}6^mfp%)>rqF0N#n~SM>ohTJDsil?_l8|cACu^n zBxlcIE3HH)_NAPJO+S>e7jbU*9W>cQYq(7G3NN5gVdTntcw&Sr8v}j4!;>$C@z}peRA281 z?+@`EON|j;Dw~={c)tSzCPvzS07z+Ug^7{&K+(`zM%vG*$}HPTqRLvR%(4@rRA$+y zLB%}>CkH`AMtgTXyQLkpW5J61A!ON~mwny#gQeB{%q|4>crU}zPyYf5>Hcd$NQb4% zNVkUnW*NF|_^IWnWcc38;Z5NuIC_1w~|;IGcrQ;bDIHGd_vX|dWOxI@vLJs zW2O&R2BxP|GICtKO>G&onR8lm#vIOPnnD?KnL?U28Tq`dOfb2fQ7|xExM&t2PSdnO z=;rQ{n&&@P&O9dV;ONn188OvJ37B1&P-&DVX*i^Za*i@O2QT~l^fr?uJO@UPp z0eh{9_k!c`Ql~p1xo$QE%sYYe34L}(^%k77B*qyv^60YfDF z^+85G`99TeAm6XJiTq5(&EzvumX*;)_XCPI{0jV_;*G?GiZ`DDE>^syM_oazF6vif{cn@F~T&y#ahy@jbNpG5Q1X zxsTYgmAIdT*ANf<7fK`;;z1HAw$+`9#4dBXl|7lreiMe|89MuGV8|)V<~xx zAQ?X=g9j*cvh#S4lKp40c>sg6oX7iHvTgKrbf!J}h{YmVQ8p zF-klr#5g4$wm(FXOeKzpt!yP86C$9*GxqhUKB&ZVBB@d0xDbsgtD44J{+|f3K_x#G zqFsrf3DKd%OZN9+O)nDtzZA(qmHb-vFb*m4irogayC=ax%l{jZc9yGQ|m!->VxVckXS zRs0ljg5sx%F?R7U;~9={pW%;-Yf25tD;y>L5{X)fWJpo*-_%A1c%M}0h zUEmtU?-DmEevf#A;m`JxyQdj_?cc+K*#pi<5t-Qo&gd_c+4apBB$V0p%@{0{+4apBYJUtXX4f}kjGc>f zfZ6rU7;pFXN%Rx9AQ9Z*1M+YO7#Gv2!|wFeHal4SO|P*BbKX><*1q^Mc&Nk`GCL+H zQD<{ED@BP$nYDaMtP{eoM2iraO0)`*twfs;0VOsF5tLPE`bPUDcvGm7U9ulrti(Pc zxU*te>DSt^!e7doGsFUAjY_ z{*awi#=Mt|PJhI{VHgu%smJVJA*cLqrG6-W))?wZI|bz$4fP9q2&fH)ddUv0#OOBE zd(zDvhI(H%@UAx0f7vg>mwkr%*uG>6M!y^R%$Y8cbCYB_7>j@to5_&FO+esYhcB6a z10&;!Wsr}IpNU4`+HE5^xSxfi>@g*MOXyWN%Dm6%%Q1f+a3T{`M->r@^76>zeVQ`P zS1RLL3*1-9^J<-p4~aQWr&{ugDOPa-AG(@KCSF+jN-crk@i{PK7+DdX%FRW@3y zfbu=(%Z21s8_M$w@uL>!x+p936Qb+z)t!EF_WM`yec&c?CUZwy{TaFMlPd>aLc$ck zJl;Q1#+gY^qP*Sd=7lOmpFt%3;~6z{JTzqYag>iYWz1#gsMP-8i;j16uL@x4!_l## zqd1O5J$e~E`huAtuwX!9X3Vso03o91-BeNgbg@Or?AV1W8x_s+;ZU68@X~k33e|sG8Wssj#RwF=B1mA?8_P)OEz!h&ce=I+#!fhfg#uO zX487?B2L?4#WQvtXKt}FwkfJ-$Msu`ZkFbF#wOe2p_H=ce1vBoJivX~;}mPFvP2wYC+V>KhYT!&Z%8Hb%JKo5b- zT@KydN}^0+H1cmQ@nt(-8?eQV-d5j)i5Z{Ji6&Oy*Dc_t zO5l;Y1q_AJ6L3F5Js3kP!1Q1&u}3`^M+`6N!G*-J*5HJR>2pyqi?wC34r_4c#FkoeZix`b+$D`8^lXJBfWhP_OlhG{slOT&~#OlRQv2;y$T>9toI zKmJ2-Oi(5eo1jdlVV~+uyZCYzhEFsi|`ov|#>r`bqJ>H=Ba#q!jdEvfP=d?TV&D3-=_$U5ZQbSeWlGITA z7pf#!ab#r?@(dcIeHU;ACjNajn0YX5P5gv?Yg-!PPtT%ii}NWY|DaO9WyR6A^}v_P zd3dK(VI>46dhKVy9WBZ|>_Q|HRu(AO)0TWuK`)zqqJmhP&ID8tC#BUoFSavj9l!ay z%jOk$0QURXgEGt|!T+iW3XCJQm&rlWy?756geF(@ugHzVGk zPlGYk^j{o-mqcJe1kR7Z1rfNAP$r5~{-y6?uQYZ;_GHVCSKIMVBI7S1wiPcUb}3#? z>{h&T4Y2NO`pd}IG2t&K?x8xXhy{PlIGQ1ds_~&0w{F34};$JD= zK>V`eO~fY^Zz2Az;%&sgSKLngs^T5QuPfg9A@G}49GlH%NslI3@-zpVCUm^gLmc`d z)6KVT4EOk<2)v#9C1P-)Qy|e4xZ@&lG)2B0fp@WN4>(}?CJnt08sgd{-ydqgQkvZF!VgCSMyJgbwqrfRvQe)We_h~@R(lvg+Js(>#lF9y&a(!ra9x5htCjHRjMLb0aTdj3oy%2bkNGrE;Zj2EI>=L&8QNjSUd z`k)?kri^-zwOf0m*kcITfmx?>ECF-0-%*| z5^RXga<${vj{J*LKEqna@>am#WOpBJrW=2=;H)1&OZ8JA5>L-vq)Q6_l{Rf?P*MEm>8m2T?t+xDnfr<>EJN`TEGE^DI9Y1bnO4Kk{-T};y z(7dd=2ZXub&baiF!d>#zf#RRJxWTLVUDq1O6~7mS|K{Rz63XA?W@5zQhL9D93v+4o zMYtLEkI^P?Cl4cE6vhIGCqu2I!N8K&lZTV7@It~K^vOGAN;xpB;)%~}>2uY|md!g+ zpPE4T6ebdu;bU1-e{72h&$Q%kJ0_;}8SkS^mX*_do!}4lOv^cnZ&_$en@yHh?U@$f z7Q^uS$uT7gsM*&$z1N5M7N@4iR`|m5>HYo)zScV9!U1EA&J1~~*4UUa(FT8(cg78N zK7eH0i~}~AhPY9-HawQtopF;r0wN8@faFcUQttqH^w?mzzizIJW_G^@mLwXpdK5uj z;6=m2F}i4Y1YR0}iwGqpq(C6)36$;Y2_*j!-*UMY=u5qv$B0>l>_` z5yZY&yftg(q-R3kul6&D$HcbQR$4iJx}F)kns_ALoTxgZc0ngw@n}AI5>PybxKQy} z;xfhKh#M8l(%11f63NaX%&(pw_ z!C>-ZPI(`2qz~p)P#DKUnWN>=@iu3_T}YV^E!pD8+*VQ@u$0Z6L$<=p*tOCX!Q9d( zz?P=umJu3UPFDg}93B4|*k+=@c@6&pxoh79FLr~KTTg&`Iq*LK)WsLpYS>Ef?7%U% zl?x3o8G6)bkj#@v!awg>Ea7yMV|O`v<=8`xJ>}R-jGCdsk49FyhPM~;2v*iVira_le10dgFuJ>biIWfol59(Y}n zR`DN+&5hjl+&4FemHtd<3cST;Ylh~Y;?=fhW$xSTz75)aoluePGZRAYKiMyGW(?%^ zv`<3pV(;YkvY8i#h!sK?ueotT=&ng_f)v5Bow;$!G44`}g}J@$!Q(M18&@@2xykm8 zkQXELY`}8(`&vbTV#) zeIo=CS_sK)Z^bwbM~idp8m39ms>a zKbrefIYS(B%UI0)xfbg(!e2{e4)v~VvmQ69XI0hmsMYuF$*2N5YBCeC#nLTUF!15L zUpcf}qt}%j$gOrU6zcA3*S)|2OKsJ-o}jHHrD|oFP-v)jSy&VsYP(QnhT0)ijiGi) zxkf|nc5!~)V5mJp?Kjk3*P%Gv{V`NX${jY;RW7E=Lx#FqWJe5jyVTc}q_MltB_X$Z ztJ~jq$t-TDE*FQY*HF*7cA$M7hB_{0_V-pZKT$JXM)-p3XNZME{oM5usN=n{>|#hg zUJjzTn^2O`mxyDpj-z?5Lz{t-kelPG2Tv1XwqQfdkw$TEj>#{hyD)c&>)Nn(kziCr zqqjPS&FLd|nTwCsEN9sO`%S!XTX8MG^j&EB%CRcG{mJ1D(22~GcfqG%Ay074-dnf( z|Y-efk`;3k=-dCUo3BmDI676xTKSl zs&Fs4ny{QrEhwOW0mbu&6N^g0<5Y>K%KSmR%ogr~9yHgB+yzB4)P=q9H>_Kf3wuwT z!Z=UEF)!kxZc)i-pTgKJVGGkNxn;R17*YNkLg3;4A= zl3%7#iA-*cn{VwXzSvDm@>az2P>|NSjBLI8v2d9kZoV9$W%jx`nERoem5_U}r_WSp zm@f6OMV5})Wgb2Sf~RBCA?GKP!gJlx*1v|$wn%9;`(qDXkr;Rv&0c{L($+f-({j*0tl(2z>HEtZE#WzBXsB+;EWW=Y!AX~xu&5eFevvrE!T0CjD? zB!jCxeM)kPpSXK$1Adur$w(H}HT#lL`M?R{(vs24ZXJC~#?X#W`D2NPDIQ0iG{qMZ zn=5QF!x(kfMP>=jlJ2EJNnSGN@vy_W+;B4v=Mn4v){?ozy1%t#98sC;7M z{KYgGYsHcE6Q@Gk^um()pN1=35LMyAs0s_Ig3~5hy>JkZV;lqP>cCPDny6uLGqLfw zg`qJXw~}wXTu&UMW!s2NH*6s8t`!7|dXB_XHlkG2i(7IA#}aD=MR5y&wSuAxh_!;E zcY+vGd#r>$Gc~LZgI7#^f ziFI4BXb>@fSKqRV2DjmuqId|g=26j5>iCo|So5gJN51A!Q7Y?ASDj(R8H$G!b9oK> zX~ZKHk02hUIGuR3;tb+3iv7f66^~?H;}nk~&Qv^_c)a2<#Cn}sG?xBPR{l8RX^Jmo zcg?cmXnHE3WQ)0>c3C$ji;Vx|r72H3{kpV2?P|X+l{ji&E*(g_+Lucuj@oBS2UB1B zY3UGR?Wd&@JME{X5d=PB)|;tXQ# zsA4~{c2x05V(pw_Ik9Rd6ptoxIETw~QCD2p4bUko#A!ptk)3NzP) znQK1{GwYQ(*jsYh+>4Ndwaw*L$?{2%r#G&uwMr`3wmzu9DygRD3Ts)v!aCNfuz_{q zW?M;9CrnAklr%@Ru_daFtx>^QAIXH0Hu~eGk&V9(8`&gAV(VJ#t&+`AMz#=}Ky4*9 zf!Y>j@XD~k?a2W|9$P9UJEWJ?-cHJmja}qx>Xq!KjaWLecT&JW;%Vn) z0jO5BB3xIKX%zMmi^8>S0f)JtOiQc&8nGx`e=y)E+(4$WaDZ48ZhAK0Fb~o(qww{p zhJND^*rI%M&m2eLTa1cPzJ=JN*sW3FKNMx;wnNYnBX^7r8~HYw#>kz-UflOAS$8`W z(#u;|BnYVYg<4;h!(uT|`$&YH(#ZisAgji>nk^*9#QA*|?0@hiiWC6?Sq)@Vu zIs;;Pr@y3-eBNh={Yx1@pW;Qtsfrgb*#@;LosZEwoF$Kw7>m`! z4vL^8Ex@fLdSC0%G1gwG;A9$GASaB3Wqlt6mM|>q$M74RLabgd>rbrRxNHD%tj@#B z`?NZC+AsIK?AWCyg&*MErHtP|#n=f61`zRRFmXwtvKLgf!N6`m^M@O|~ zj5`l)u_m%Go_C6rojeT!EjuNuY<5)Hsl?7p9QdP|;R3Ux3e1rL>XCQl{0(8H1)}7* zT6|AfP!d&onUq#HmJ^%myeli74i{L(H``64eJj_V3k&3xchiUlDwz&!6iaG#9kF?Z z^7zUPb#t9oZ+rp4FoicUPfRaw?g9J7aw)NL3xm|ChPJZ(?TWXtnH`F+WXlf4@`Spw zolf8Fw7KJ3;mShv!c-<?zi*leGA{l*~h{fgftUnk6!f6f43C(M;^ksnZ< zzYqr%pCT?)e40%yR{S>kHC7_4ck@MG#Ejm`wfsNGA+Ii6B32ejNeT$x}_sonQ}+*(H4dB3ai3#Y@fnh!hC!XkVLg!@hE_6?NxO1{|CP%gjC zqqUXy;RcHKPI+IS$H}?!em{r0=3IGyZVYB?xEm{CpLYyZ#Ib-Hs*rahy|LwWEmnn` zL$sR}>ts=p#2sm$G_xX^SQEUW53yEO(U({gyrLg*03XY$NFmk)ujo%)sQdxMn&1@! ziOZBfh`7c|VzWJ7`YaJGPyYqNC=p)OUpDi4(7dnGTYQOWN@b4^$r3Y_J&ASDSIQ%M z8mmfqL`)Y?mGa1*Hn&n9)6=V~O1Vv{O|Kk4JA<@)D#xrsT^{clI3=g#7LewR>&mgU zAfy*7<-KNwncO{5DDO2ZoDk8S7=hEmu*$y%wTf<)T*fJkY>!sSMVxZSM0CeSU?gFy zE{t$9BQPrhCxlbJN?zBOd1X}rhMpW40U6rP_^yQrA>h+H)f?T{VO53%wyf$+qL15A zR`nLQ^#|mq^0&F~x&nhmi7VYq61{6v-R}P3Z;=Hm*&&;PWhuO{tlr~3_X>>9!$Q0GkaXV>(y zQ!X{xS`#Y|{b=geTp&Ntr1@GCZ;ydif@Digg3Vu*(MQ#55=G6YlHT$Fm0yWuA;u`t z*DgRAb{M)WMP{pPB?bsFLy3WQ9n=C!47T@y2r4mDem|*DiB$UzNOX|Y3>Qh6O47u) z8YM>9k3p?biFA={P$I+rB_!=ijI>XI=ul#`{ZA14l^APZy9lp(DKXx@6T~4UCfGj& zakml^g*dFlWORg*8o zS(RKYgpS#oOYB}yvotwt3Pj{J)O?9gf}s}JeW8h|T&6Vks$5?<7a2?jk+6%M*=;=V zM84kQ@y?^1Gk7)Sa$t@@!gD%ahXFfrFJ)xA1+gSVe9qnDZK48uPYcrmxYv`*&eCFr zdk+}m3_D9Drm`PXvI9lgbIz;6zaf*pu?L;kCEq2Jr3N9W`i_nuzR`(_hk+}n&FtF4 z>}!<9MePHeOt7oew9cx1kk#mEv-StHuBXk~hwS6d09O_^PNhDzbA(mt z%Aodft}rrDr5n6NrqX#WIzTRSN_{l#ycZ1dp2?#6bOBbLqJ(ZTS#<8eOVGfHOc-G} z+_T_L*yHWD5GQfMsrZ<8G-@{3YV6-W)dOcCkL0k*?Up<|=F_jN?s!Br+xZY!sctt{E4(=2&wfv98Y6WXbD7 zl4fhhQ(seV%>?o_<9kX<$wxDK z&B1%u$P~JoNM%V@Fp7b-&9iSqlN8<`j_~5P2;3YFVBG``3DK>acrPq?yxfyZqmTOZ zR$cz@!1j`%M_aIYqDr6MJOd3`rSqpw95?C;$yU>g9sor2@utC4*ZVF+hd9MspO$-> ziE{l28CBBq`gF2&kk@ArC%~~Jd`m}p>qoB&7aKz{{k|4vWl`Rc(E^qX*_!~|a$t*P zRpw?f~nekCi8d_*X`@W%-4=U=)ykR|S(5a`PEeB>a z4;nVi1J*of*eFwv+T28(4VU@Qp;Yf{SjloKE|n)I6qo4@bC0(cRp8g3poEqF6dw5` zqsPl<7~|NCD){~SH0!W8eUP2F%&Y~|hstAH zmW!fvpAcRp(&W|cglHmVvZ$ro9420$ipEKyY$e9qd@DSl#02@hpr8^HMXgXR%(M@# zgoR=i<;knl89j_)BQ3Tncmjm!-;Hk zA1b9!l949;d&ukBWm8F_;o5DdY=VXod+hX8@Jork@-$zH5*_lA^dKcd@}9m=iL2x# zcfS%>YbPpkjS$+0F8#IEGL`JN-8W!_DDgE>YgFPosZ_h#b-m4LdW%Z*Ctcf>I3OLm zUx^#->ASHyM-np(2*|&Ga*iuxUATLFHb^(Ay*2CM+8(_ zDkOtG*pt4nE^M@f(Nv?$sgf0`uUt~7uQz=@fAeWLYtkM}U(G`N&9U^rp|GV~o^P^f z8TTU7x4ra6r_kz`4irI02|`gYpqjmz|_`EydLyf1RrO23H?8Rdh-vDV@QZ+cVa z3RtacYPHgvc_FXfZlE86N44wMmRqgaQ9oSLI@R8Rf+pnCWY&t+ zxJ;M+Gx0Z_DZfkCI@9K_Civuc>{>6f`C|qq{y1G(~Jb0+?I_N`Zj<3Cp< z_!SfUCSPlT&5fTz5Or2-p?!C|vn|rP#LmTer%ab(6+Uho%c`uxABO7}(tY8sUlf67 zBk*r)pdis%-_7Q7LPmEWuztP03n39#*SE=~pds`(Rx~8*H)<4&g)R01l#yj}Tl^sy zQ<$(I43pc!uunvx?=|2K_O@OB7K+QP({{rHVR&FaASTAPuXV356Jy(TPmpKhW3}CQ z4A?yO*>)36$hkbF?Z>Ob`d#0N=s(3K>h*rx)5Q9?TielZLPu|}w>`r;b+T=HmaZh2 zwmg>vn{jkxD?VmPyde$ao3ru8%6kB$1skh48_Vpwv07$d>k_&faCtYb@U1e=Z(J$y zwkg?IN^C1GBi83zHkK3XGcp@1SX3R`xatz%gu)I~>D5K@#+pmP^7n?mwXwFG*oAzj zQxcPejg2g$RjlJV*x)8H3so)?m_%hKo~9b;_{?Gmmr*uLrB{f@y+->VhFl5U&s z|0ehzFN=lj+RAb(VbcRY468oKdYq2he91eGU~@s_jJJ7#{AiHa+`J@E$xe_~6mC95 zDt1l1wfS~emD7mLckBSv*lhmJZ7``<6r1n*#cGU4wewx}ieK^fc=^LCB~~w%y_=Vo z!m^5s#k5}DZ18SgLsBJmvglI0R?hy4+o)n3*ucw;ghfb<&6{M=oDy5#Y;E3R_jRsH zHgBcB*~8yKp@16L#g$B%;yqZmn`@2DdwD&0g}jKixr3$ZR3|jB8fQ7QfL==re4Cf& z!Cox>z>~H4^4|d(pI5vU@ogo~lqNW(^x51+FW!9gWl(DS_`#ZR;pguGHVu3ED6lDf zk}v*h>TUiFU-tEB+28UdU=!uvPX^9Z{#(3^W?(F9^Iy5x4Jdw>Izh#MD+I>*hRwil zz~PuoeO!_P4)$%{))#F~udHpdHebnvlF_!geJ&!PaJv_ZP9ZAyVEN3=*RKcGI&QcY z(BK10ksYROH?0RYZTosBuxZ;jz8lG)o1X{v>ka_TxS5M?`KdSa90%)>4T5_pmIHOr zg!{n|Z`votvsye*SZz&8kaFVLq(nwYy_u9mtlmuOO|0HbN+$NHejj$FMtV|TVvY2q ze!Q~QNKZ=PebWF^!kX0oG%iTXwCDg%{WXdQz6XAz;z3Np4e<7W(+)<(%{-C&SZ*dG z#4Es+W-?GB26KzUWW=;gxFEz|bHogyhDO9DK8L}@Gy6`I4sO1GCz47A`UBLn#KX-G za#3Kq><5gm>9U9Dx#_Y;*=P;Y<|7gSE&CW-tr6J#I41**z~&#a6E>*MlMHZsDip2F zKVq8V#!rWmKUT6^hiZ1oRjP*JI=JfQ0ZsU|G=$D4a_BhhTYx2G97EcCx{Lz%Q$oxU zr4qA?^t>bC_==QqHksZ4H<80FB7!*=7~Q`C&pEK9cD)I}hRHe^Iw{m)G&tZ?M}D%+ z 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�NV22Z^`} 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 NURVG6cmjS5`XAd%VK@K) diff --git a/mainboards/tyan7106/chipsec_out b/mainboards/tyan7106/chipsec_out deleted file mode 100644 index a67b69d0..00000000 --- a/mainboards/tyan7106/chipsec_out +++ /dev/null @@ -1,190 +0,0 @@ -2019/01/10 22:38:05 os.Args is [uname -p 2> /dev/null]: you need to specify which command to invoke. -[*] Ignoring unsupported platform warning and continue execution -################################################################ -## ## -## CHIPSEC: Platform Hardware Security Assessment Framework ## -## ## -################################################################ -[CHIPSEC] Version 1.3.5.dev1 -[CHIPSEC] Arguments: -i -[CHIPSEC] API mode: using OS native API (not using CHIPSEC kernel module) -ERROR: Unsupported Platform: VID = 0x8086, DID = 0x2020 -ERROR: Platform is not supported (Unsupported Platform: VID = 0x8086, DID = 0x2020). -WARNING: Platform dependent functionality is likely to be incorrect -[CHIPSEC] OS : Linux 4.13.0-rc7-onie+ #125 SMP Thu Jan 10 15:35:51 PST 2019 x86_64 -[CHIPSEC] Platform: UnknownPlatform -[CHIPSEC] VID: 8086 -[CHIPSEC] DID: 2020 - -[*] loading common modules from ".home.rminnich.projects.NERF.chipsec.chipsec.modules.common" .. -[+] loaded chipsec.modules.common.spi_lock -[+] loaded chipsec.modules.common.spi_fdopss -[+] loaded chipsec.modules.common.spi_desc -[+] loaded chipsec.modules.common.spi_access -[+] loaded chipsec.modules.common.smrr -[+] loaded chipsec.modules.common.smm -[+] loaded chipsec.modules.common.rtclock -[+] loaded chipsec.modules.common.ia32cfg -[+] loaded chipsec.modules.common.bios_wp -[+] loaded chipsec.modules.common.bios_ts -[+] loaded chipsec.modules.common.bios_smi -[+] loaded chipsec.modules.common.bios_kbrd_buffer -[+] loaded chipsec.modules.common.uefi.s3bootscript -[+] loaded chipsec.modules.common.uefi.access_uefispec -[+] loaded chipsec.modules.common.secureboot.variables -[*] No platform specific modules to load -[*] loading modules from ".home.rminnich.projects.NERF.chipsec.chipsec.modules" .. -[+] loaded chipsec.modules.smm_dma -[+] loaded chipsec.modules.remap -[+] loaded chipsec.modules.memconfig -[*] running loaded modules .. - -[*] running module: chipsec.modules.common.spi_lock -[x][ ======================================================================= -[x][ Module: SPI Flash Controller Configuration Lock -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.common.spi_lock.run(): ''FlashLockDown'' - -[*] running module: chipsec.modules.common.spi_fdopss -[x][ ======================================================================= -[x][ Module: SPI Flash Descriptor Security Override Pin-Strap -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers (HSFS) - -[*] running module: chipsec.modules.common.spi_desc -[x][ ======================================================================= -[x][ Module: SPI Flash Region Access Control -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.common.spi_desc.run(): ''FRAP'' - -[*] running module: chipsec.modules.common.spi_access -ERROR: Exception occurred during chipsec.modules.common.spi_access.run(): ''HSFS'' - -[*] running module: chipsec.modules.common.smrr -[x][ ======================================================================= -[x][ Module: CPU SMM Cache Poisoning / System Management Range Registers -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers - -[*] running module: chipsec.modules.common.smm -[x][ ======================================================================= -[x][ Module: Compatible SMM memory (SMRAM) Protection -[x][ ======================================================================= -ERROR: Couldn't find definition of required registers (PCI0.0.0_SMRAMC) - -[*] running module: chipsec.modules.common.rtclock -Skipping module chipsec.modules.common.rtclock since it is not supported in this platform - -[*] running module: chipsec.modules.common.ia32cfg -[x][ ======================================================================= -[x][ Module: IA32 Feature Control Lock -[x][ ======================================================================= -[*] Verifying IA32_Feature_Control MSR is locked on all logical CPUs.. -ERROR: Exception occurred during chipsec.modules.common.ia32cfg.run(): ''Ia32FeatureControlLock'' - -[*] running module: chipsec.modules.common.bios_wp -ERROR: Exception occurred during chipsec.modules.common.bios_wp.run(): ''HSFS'' - -[*] running module: chipsec.modules.common.bios_ts -[x][ ======================================================================= -[x][ Module: BIOS Interface Lock (including Top Swap Mode) -[x][ ======================================================================= -ERROR: BiosInterfaceLockDown (BILD) control is not defined - -[*] running module: chipsec.modules.common.bios_smi -[x][ ======================================================================= -[x][ Module: SMI Events Configuration -[x][ ======================================================================= -ERROR: Couldn't find definition of required configuration registers - -[*] running module: chipsec.modules.common.bios_kbrd_buffer -[x][ ======================================================================= -[x][ Module: Pre-boot Passwords in the BIOS Keyboard Buffer -[x][ ======================================================================= -[*] Keyboard buffer head pointer = 0x1E (at 0x41A), tail pointer = 0x1E (at 0x41C) -[*] Keyboard buffer contents (at 0x41E): -00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | -00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | -[*] Checking contents of the keyboard buffer.. - -[+] PASSED: Keyboard buffer looks empty. Pre-boot passwords don't seem to be exposed - -[*] running module: chipsec.modules.common.uefi.s3bootscript -[x][ ======================================================================= -[x][ Module: S3 Resume Boot-Script Protections -[x][ ======================================================================= -[+] Didn't find any S3 boot-scripts in EFI variables -[!] WARNING: S3 Boot-Script was not found. Firmware may be using other ways to store/locate it - -[*] running module: chipsec.modules.common.uefi.access_uefispec -[x][ ======================================================================= -[x][ Module: Access Control of EFI Variables -[x][ ======================================================================= -[*] Testing UEFI variables .. - -[-] Variables with attributes that differ from UEFI spec: - -[+] PASSED: All checked EFI variables are protected according to spec. - -[*] running module: chipsec.modules.common.secureboot.variables -[x][ ======================================================================= -[x][ Module: Attributes of Secure Boot EFI Variables -[x][ ======================================================================= -[!] Secure Boot variable SecureBoot is not found -[!] Secure Boot variable SetupMode is not found -[!] Secure Boot variable PK is not found -[!] Secure Boot variable KEK is not found -[!] Secure Boot variable db is not found -[!] Secure Boot variable dbx is not found - -[*] Secure Boot appears to be disabled -[*] SKIPPED: None of required Secure Boot variables found. Secure Boot is not enabled - -[*] running module: chipsec.modules.smm_dma -[x][ ======================================================================= -[x][ Module: SMM TSEG Range Configuration Check -[x][ ======================================================================= -ERROR: Exception occurred during chipsec.modules.smm_dma.run(): ''PCI0.0.0_TSEGMB'' - -[*] running module: chipsec.modules.remap -Skipping module chipsec.modules.remap since it is not supported in this platform - -[*] running module: chipsec.modules.memconfig -Skipping module chipsec.modules.memconfig since it is not supported in this platform - -[CHIPSEC] *************************** SUMMARY *************************** -[CHIPSEC] Time elapsed 0.014 -[CHIPSEC] Modules total 18 -[CHIPSEC] Modules failed to run 11: -ERROR: chipsec.modules.common.spi_lock -ERROR: chipsec.modules.common.spi_fdopss -ERROR: chipsec.modules.common.spi_desc -ERROR: chipsec.modules.common.spi_access -ERROR: chipsec.modules.common.smrr -ERROR: chipsec.modules.common.smm -ERROR: chipsec.modules.common.ia32cfg -ERROR: chipsec.modules.common.bios_wp -ERROR: chipsec.modules.common.bios_ts -ERROR: chipsec.modules.common.bios_smi -ERROR: chipsec.modules.smm_dma -[CHIPSEC] Modules passed 2: -[+] PASSED: chipsec.modules.common.bios_kbrd_buffer -[+] PASSED: chipsec.modules.common.uefi.access_uefispec -[CHIPSEC] Modules failed 0: -[CHIPSEC] Modules with warnings 1: -[!] WARNING: chipsec.modules.common.uefi.s3bootscript -[CHIPSEC] Modules skipped 4: -[*] SKIPPED: chipsec.modules.common.rtclock -[*] SKIPPED: chipsec.modules.common.secureboot.variables -[*] SKIPPED: chipsec.modules.remap -[*] SKIPPED: chipsec.modules.memconfig -[CHIPSEC] Modules with Exceptions 6: -ERROR: chipsec.modules.common.spi_lock -ERROR: chipsec.modules.common.spi_desc -ERROR: chipsec.modules.common.spi_access -ERROR: chipsec.modules.common.ia32cfg -ERROR: chipsec.modules.common.bios_wp -ERROR: chipsec.modules.smm_dma -[CHIPSEC] ***************************************************************** -Exception: python exited with 51 -, line 1: python /home/rminnich/projects/NERF/chipsec/chipsec_main.py -i diff --git a/mainboards/tyan7106/config-4.13.0-rc7 b/mainboards/tyan7106/config-4.13.0-rc7 deleted file mode 100644 index 365ba9bd..00000000 --- a/mainboards/tyan7106/config-4.13.0-rc7 +++ /dev/null @@ -1,2528 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.13.0-rc7 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_ISA_DMA=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_ARCH_MAY_HAVE_PC_FDC=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_HAVE_UID16=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_ELF_CORE=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y -CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 -CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -CONFIG_OLD_SIGSUSPEND3=y -CONFIG_COMPAT_OLD_SIGACTION=y -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_STRICT_MODULE_RWX=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -CONFIG_MODULES=y -CONFIG_MODULE_FORCE_LOAD=y -CONFIG_MODULE_UNLOAD=y -CONFIG_MODULE_FORCE_UNLOAD=y -CONFIG_MODVERSIONS=y -# CONFIG_MODULE_SRCVERSION_ALL is not set -# CONFIG_MODULE_SIG is not set -# CONFIG_MODULE_COMPRESS is not set -# CONFIG_TRIM_UNUSED_KSYMS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -CONFIG_BLK_DEV_BSG=y -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -CONFIG_BLK_CMDLINE_PARSER=y -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -CONFIG_PARTITION_ADVANCED=y -# CONFIG_ACORN_PARTITION is not set -# CONFIG_AIX_PARTITION is not set -# CONFIG_OSF_PARTITION is not set -# CONFIG_AMIGA_PARTITION is not set -# CONFIG_ATARI_PARTITION is not set -# CONFIG_MAC_PARTITION is not set -CONFIG_MSDOS_PARTITION=y -# CONFIG_BSD_DISKLABEL is not set -# CONFIG_MINIX_SUBPARTITION is not set -# CONFIG_SOLARIS_X86_PARTITION is not set -# CONFIG_UNIXWARE_DISKLABEL is not set -# CONFIG_LDM_PARTITION is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -CONFIG_EFI_PARTITION=y -# CONFIG_SYSV68_PARTITION is not set -CONFIG_CMDLINE_PARTITION=y -CONFIG_BLOCK_COMPAT=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_DEADLINE=y -CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_DEADLINE is not set -CONFIG_DEFAULT_CFQ=y -# CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="cfq" -CONFIG_MQ_IOSCHED_DEADLINE=y -CONFIG_MQ_IOSCHED_KYBER=y -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_X2APIC is not set -CONFIG_X86_MPPARSE=y -# CONFIG_GOLDFISH is not set -# CONFIG_INTEL_RDT_A is not set -CONFIG_X86_EXTENDED_PLATFORM=y -# CONFIG_X86_VSMP is not set -# CONFIG_X86_GOLDFISH is not set -# CONFIG_X86_INTEL_LPSS is not set -CONFIG_X86_AMD_PLATFORM_DEVICE=y -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -# CONFIG_QUEUED_LOCK_STAT is not set -# CONFIG_XEN is not set -CONFIG_KVM_GUEST=y -# CONFIG_KVM_DEBUG_FS is not set -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -CONFIG_CPU_SUP_AMD=y -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -CONFIG_GART_IOMMU=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -# CONFIG_SCHED_SMT is not set -CONFIG_SCHED_MC=y -CONFIG_SCHED_MC_PRIO=y -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_PERF_EVENTS_AMD_POWER is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -CONFIG_SPARSEMEM_VMEMMAP=y -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_BOUNCE=y -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -CONFIG_X86_SMAP=y -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -CONFIG_COMPAT_VDSO=y -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -CONFIG_ACPI_AC=y -CONFIG_ACPI_BATTERY=y -CONFIG_ACPI_BUTTON=y -CONFIG_ACPI_FAN=y -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_CPU_FREQ_PSS=y -CONFIG_ACPI_PROCESSOR_CSTATE=y -CONFIG_ACPI_PROCESSOR_IDLE=y -CONFIG_ACPI_CPPC_LIB=y -CONFIG_ACPI_PROCESSOR=y -CONFIG_ACPI_HOTPLUG_CPU=y -# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set -CONFIG_ACPI_THERMAL=y -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -CONFIG_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -CONFIG_X86_PM_TIMER=y -CONFIG_ACPI_CONTAINER=y -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -CONFIG_X86_INTEL_PSTATE=y -# CONFIG_X86_PCC_CPUFREQ is not set -# CONFIG_X86_ACPI_CPUFREQ is not set -# CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -CONFIG_CPU_IDLE_GOV_MENU=y -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -CONFIG_PCIEAER=y -# CONFIG_PCIE_ECRC is not set -# CONFIG_PCIEAER_INJECT is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -CONFIG_PCIE_PTM=y -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -CONFIG_PCI_DEBUG=y -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -CONFIG_HT_IRQ=y -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -CONFIG_ISA_DMA_API=y -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_COMPAT_BINFMT_ELF=y -CONFIG_ELFCORE=y -# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -CONFIG_COREDUMP=y -CONFIG_IA32_EMULATION=y -CONFIG_IA32_AOUT=y -# CONFIG_X86_X32 is not set -CONFIG_COMPAT_32=y -CONFIG_COMPAT=y -CONFIG_COMPAT_FOR_U64_ALIGNMENT=y -CONFIG_SYSVIPC_COMPAT=y -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=y -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_IRDA is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -CONFIG_CONNECTOR=y -CONFIG_PROC_EVENTS=y -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_FD is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_CPQ_CISS_DA is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -CONFIG_VIRTIO_NET=y -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -CONFIG_NET_VENDOR_ALACRITECH=y -# CONFIG_SLICOSS is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -CONFIG_NET_VENDOR_AMAZON=y -# CONFIG_ENA_ETHERNET is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -CONFIG_NET_VENDOR_CAVIUM=y -# CONFIG_THUNDER_NIC_PF is not set -# CONFIG_THUNDER_NIC_VF is not set -# CONFIG_THUNDER_NIC_BGX is not set -# CONFIG_THUNDER_NIC_RGX is not set -# CONFIG_LIQUIDIO is not set -# CONFIG_LIQUIDIO_VF is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -CONFIG_NET_VENDOR_EZCHIP=y -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -CONFIG_E1000=y -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -CONFIG_8139CP=y -# CONFIG_8139TOO is not set -CONFIG_R8169=y -CONFIG_NET_VENDOR_RENESAS=y -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -CONFIG_NET_VENDOR_SAMSUNG=y -# CONFIG_SXGBE_ETH is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_STUB is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_PTP_1588_CLOCK_KVM is not set -CONFIG_PINCTRL=y - -# -# Pin controllers -# -# CONFIG_DEBUG_PINCTRL is not set -# CONFIG_PINCTRL_MCP23S08 is not set -# CONFIG_PINCTRL_CHERRYVIEW is not set -# CONFIG_PINCTRL_BROXTON is not set -# CONFIG_PINCTRL_CANNONLAKE is not set -# CONFIG_PINCTRL_GEMINILAKE is not set -# CONFIG_PINCTRL_SUNRISEPOINT is not set -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -CONFIG_POWER_SUPPLY=y -# CONFIG_POWER_SUPPLY_DEBUG is not set -# CONFIG_PDA_POWER is not set -# CONFIG_TEST_POWER is not set -# CONFIG_BATTERY_DS2780 is not set -# CONFIG_BATTERY_DS2781 is not set -# CONFIG_BATTERY_DS2782 is not set -# CONFIG_BATTERY_SBS is not set -# CONFIG_CHARGER_SBS is not set -# CONFIG_BATTERY_BQ27XXX is not set -# CONFIG_BATTERY_MAX17040 is not set -# CONFIG_BATTERY_MAX17042 is not set -# CONFIG_CHARGER_MAX8903 is not set -# CONFIG_CHARGER_LP8727 is not set -# CONFIG_CHARGER_BQ2415X is not set -# CONFIG_CHARGER_SMB347 is not set -# CONFIG_BATTERY_GAUGE_LTC2941 is not set -# CONFIG_HWMON is not set -CONFIG_THERMAL=y -CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 -# CONFIG_THERMAL_WRITABLE_TRIPS is not set -CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y -# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set -# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set -# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_GOV_FAIR_SHARE is not set -CONFIG_THERMAL_GOV_STEP_WISE=y -# CONFIG_THERMAL_GOV_BANG_BANG is not set -# CONFIG_THERMAL_GOV_USER_SPACE is not set -# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set -# CONFIG_THERMAL_EMULATION is not set -# CONFIG_INTEL_POWERCLAMP is not set -# CONFIG_INTEL_SOC_DTS_THERMAL is not set - -# -# ACPI INT340X thermal drivers -# -# CONFIG_INT340X_THERMAL is not set -# CONFIG_INTEL_PCH_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_WACOM is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -# CONFIG_EDAC is not set -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV is not set -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -CONFIG_MAILBOX=y -CONFIG_PCC=y -# CONFIG_ALTERA_MBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# -# CONFIG_RPMSG_QCOM_GLINK_RPM is not set - -# -# SOC (System On Chip) specific Drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -CONFIG_RAS=y -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set - -# -# FPGA Configuration Support -# -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_ECRYPT_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -CONFIG_NLS_ISO8859_1=y -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_ARCH_WANT_FRAME_POINTERS=y -CONFIG_FRAME_POINTER=y -# CONFIG_STACK_VALIDATION is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KMEMCHECK=y -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_TEST_KMOD is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_DEBUG is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -CONFIG_X86_DEBUG_FPU=y -# CONFIG_PUNIT_ATOM_DEBUG is not set - -# -# Security options -# -CONFIG_KEYS=y -CONFIG_KEYS_COMPAT=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_ENCRYPTED_KEYS is not set -# CONFIG_KEY_DH_OPERATIONS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=m -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=m -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=m - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_SALSA20_X86_64 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=m -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=m -CONFIG_CRYPTO_JITTERENTROPY=m -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set -# CONFIG_ASYMMETRIC_KEY_TYPE is not set - -# -# Certificates for signature checking -# -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -CONFIG_XZ_DEC_POWERPC=y -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_ARCH_HAS_MMIO_FLUSH=y -CONFIG_SBITMAP=y diff --git a/mainboards/tyan7106/config-4.14.111 b/mainboards/tyan7106/config-4.14.111 deleted file mode 100644 index 668213a2..00000000 --- a/mainboards/tyan7106/config-4.14.111 +++ /dev/null @@ -1,2385 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.111 Kernel Configuration -# -CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" -CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_MMU=y -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_BUG=y -CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y -CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y -CONFIG_ARCH_HIBERNATION_POSSIBLE=y -CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y -CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y -CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y -CONFIG_BUILDTIME_EXTABLE_SORT=y -CONFIG_THREAD_INFO_IN_TASK=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="-onie" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -# CONFIG_KERNEL_GZIP is not set -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -CONFIG_KERNEL_XZ=y -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="onie" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -CONFIG_CROSS_MEMORY_ATTACH=y -# CONFIG_FHANDLE is not set -CONFIG_USELIB=y -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_GENERIC_IRQ_MIGRATION=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -CONFIG_SPARSE_IRQ=y -# CONFIG_GENERIC_IRQ_DEBUGFS is not set -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_TICK_ONESHOT=y -CONFIG_NO_HZ_COMMON=y -# CONFIG_HZ_PERIODIC is not set -# CONFIG_NO_HZ_IDLE is not set -CONFIG_NO_HZ_FULL=y -CONFIG_NO_HZ_FULL_ALL=y -# CONFIG_NO_HZ is not set -CONFIG_HIGH_RES_TIMERS=y - -# -# CPU/Task time and stats accounting -# -CONFIG_VIRT_CPU_ACCOUNTING=y -CONFIG_VIRT_CPU_ACCOUNTING_GEN=y -# CONFIG_IRQ_TIME_ACCOUNTING is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -CONFIG_TREE_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -CONFIG_RCU_NEED_SEGCBLIST=y -CONFIG_CONTEXT_TRACKING=y -# CONFIG_CONTEXT_TRACKING_FORCE is not set -CONFIG_RCU_NOCB_CPU=y -CONFIG_BUILD_BIN2C=y -CONFIG_IKCONFIG=y -CONFIG_IKCONFIG_PROC=y -CONFIG_LOG_BUF_SHIFT=14 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y -# CONFIG_CGROUPS is not set -# CONFIG_CHECKPOINT_RESTORE is not set -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="initramfs.linux_amd64.cpio.lzma" -CONFIG_INITRAMFS_ROOT_UID=0 -CONFIG_INITRAMFS_ROOT_GID=0 -# CONFIG_RD_GZIP is not set -# CONFIG_RD_BZIP2 is not set -CONFIG_RD_LZMA=y -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -CONFIG_INITRAMFS_COMPRESSION=".lzma" -# CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set -CONFIG_CC_OPTIMIZE_FOR_SIZE=y -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -# CONFIG_MULTIUSER is not set -CONFIG_SGETMASK_SYSCALL=y -CONFIG_SYSFS_SYSCALL=y -CONFIG_SYSCTL_SYSCALL=y -CONFIG_POSIX_TIMERS=y -CONFIG_KALLSYMS=y -# CONFIG_KALLSYMS_ALL is not set -CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y -CONFIG_KALLSYMS_BASE_RELATIVE=y -CONFIG_PRINTK=y -CONFIG_PRINTK_NMI=y -CONFIG_BUG=y -CONFIG_PCSPKR_PLATFORM=y -CONFIG_BASE_FULL=y -CONFIG_FUTEX=y -CONFIG_FUTEX_PI=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -CONFIG_EVENTFD=y -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -CONFIG_ADVISE_SYSCALLS=y -# CONFIG_USERFAULTFD is not set -CONFIG_PCI_QUIRKS=y -CONFIG_MEMBARRIER=y -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y -# CONFIG_PC104 is not set - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -CONFIG_VM_EVENT_COUNTERS=y -# CONFIG_SLUB_DEBUG is not set -# CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLAB_MERGE_DEFAULT=y -# CONFIG_SLAB_FREELIST_RANDOM is not set -# CONFIG_SLAB_FREELIST_HARDENED is not set -CONFIG_SLUB_CPU_PARTIAL=y -# CONFIG_SYSTEM_DATA_VERIFICATION is not set -CONFIG_PROFILING=y -CONFIG_CRASH_CORE=y -CONFIG_KEXEC_CORE=y -CONFIG_HOTPLUG_SMT=y -CONFIG_OPROFILE=y -# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_NMI=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_HAS_FORTIFY_SOURCE=y -CONFIG_ARCH_HAS_SET_MEMORY=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_CLK=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_HAVE_RCU_TABLE_FREE=y -CONFIG_HAVE_RCU_TABLE_INVALIDATE=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_HAVE_GCC_PLUGINS=y -# CONFIG_GCC_PLUGINS is not set -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_THIN_ARCHIVES=y -CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_HAVE_MOD_ARCH_SPECIFIC=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_ARCH_MMAP_RND_BITS=y -CONFIG_HAVE_EXIT_THREAD=y -CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_HAVE_COPY_THREAD_TLS=y -CONFIG_HAVE_STACK_VALIDATION=y -CONFIG_HAVE_RELIABLE_STACKTRACE=y -# CONFIG_HAVE_ARCH_HASH is not set -# CONFIG_ISA_BUS_API is not set -# CONFIG_CPU_NO_EFFICIENT_FFS is not set -CONFIG_HAVE_ARCH_VMAP_STACK=y -CONFIG_VMAP_STACK=y -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set -# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set -CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y -CONFIG_STRICT_KERNEL_RWX=y -CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y -CONFIG_ARCH_HAS_REFCOUNT=y -# CONFIG_REFCOUNT_FULL is not set - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=0 -# CONFIG_MODULES is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_SCSI_REQUEST=y -# CONFIG_BLK_DEV_BSG is not set -# CONFIG_BLK_DEV_BSGLIB is not set -# CONFIG_BLK_DEV_INTEGRITY is not set -# CONFIG_BLK_DEV_ZONED is not set -# CONFIG_BLK_CMDLINE_PARSER is not set -# CONFIG_BLK_WBT is not set -# CONFIG_BLK_DEBUG_FS is not set -# CONFIG_BLK_SED_OPAL is not set - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y -CONFIG_BLK_MQ_PCI=y -CONFIG_BLK_MQ_VIRTIO=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -# CONFIG_MQ_IOSCHED_DEADLINE is not set -# CONFIG_MQ_IOSCHED_KYBER is not set -# CONFIG_IOSCHED_BFQ is not set -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -CONFIG_ZONE_DMA=y -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_FAST_FEATURE_TESTS is not set -# CONFIG_X86_MPPARSE is not set -# CONFIG_GOLDFISH is not set -# CONFIG_RETPOLINE is not set -# CONFIG_INTEL_RDT is not set -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -CONFIG_SCHED_OMIT_FRAME_POINTER=y -# CONFIG_HYPERVISOR_GUEST is not set -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -# CONFIG_MCORE2 is not set -# CONFIG_MATOM is not set -CONFIG_GENERIC_CPU=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -CONFIG_PROCESSOR_SELECT=y -CONFIG_CPU_SUP_INTEL=y -# CONFIG_CPU_SUP_AMD is not set -# CONFIG_CPU_SUP_CENTAUR is not set -CONFIG_HPET_TIMER=y -CONFIG_DMI=y -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=512 -CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set - -# -# Performance monitoring -# -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_PERF_EVENTS_INTEL_RAPL=y -CONFIG_PERF_EVENTS_INTEL_CSTATE=y -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -# CONFIG_X86_5LEVEL is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -CONFIG_ARCH_HAS_MEM_ENCRYPT=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ARCH_PROC_KCORE_TEXT=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_HAVE_GENERIC_GUP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -# CONFIG_BOUNCE is not set -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -CONFIG_ARCH_WANTS_THP_SWAP=y -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -CONFIG_ARCH_HAS_ZONE_DEVICE=y -# CONFIG_PERCPU_STATS is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -CONFIG_MTRR=y -CONFIG_MTRR_SANITIZER=y -CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 -CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 -CONFIG_X86_PAT=y -CONFIG_ARCH_USES_PG_UNCACHED=y -CONFIG_ARCH_RANDOM=y -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -# CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS is not set -CONFIG_EFI=y -CONFIG_EFI_STUB=y -# CONFIG_EFI_MIXED is not set -# CONFIG_SECCOMP is not set -# CONFIG_HZ_100 is not set -# CONFIG_HZ_250 is not set -# CONFIG_HZ_300 is not set -CONFIG_HZ_1000=y -CONFIG_HZ=1000 -CONFIG_SCHED_HRTICK=y -CONFIG_KEXEC=y -CONFIG_KEXEC_FILE=y -# CONFIG_KEXEC_VERIFY_SIG is not set -# CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -CONFIG_RELOCATABLE=y -# CONFIG_RANDOMIZE_BASE is not set -CONFIG_PHYSICAL_ALIGN=0x1000000 -CONFIG_HOTPLUG_CPU=y -# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set -# CONFIG_DEBUG_HOTPLUG_CPU0 is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -CONFIG_CMDLINE_BOOL=y -CONFIG_CMDLINE="earlyprintk=ttyS0,115200,keep console=ttyS0,115200" -# CONFIG_CMDLINE_OVERRIDE is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_HAS_ADD_PAGES=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -# CONFIG_ACPI_BUTTON is not set -# CONFIG_ACPI_DOCK is not set -CONFIG_ACPI_PROCESSOR_CSTATE=y -# CONFIG_ACPI_PROCESSOR is not set -# CONFIG_ACPI_CUSTOM_DSDT is not set -CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y -# CONFIG_ACPI_TABLE_UPGRADE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_DPTF_POWER is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_ACPI_CONFIGFS is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -CONFIG_CPU_FREQ=y -# CONFIG_CPU_FREQ_STAT is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set -CONFIG_CPU_FREQ_GOV_PERFORMANCE=y -# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set -# CONFIG_CPU_FREQ_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set -# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set -# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set - -# -# CPU frequency scaling drivers -# -# CONFIG_X86_INTEL_PSTATE is not set -# CONFIG_X86_P4_CLOCKMOD is not set - -# -# shared options -# -# CONFIG_X86_SPEEDSTEP_LIB is not set - -# -# CPU Idle -# -CONFIG_CPU_IDLE=y -CONFIG_CPU_IDLE_GOV_LADDER=y -# CONFIG_CPU_IDLE_GOV_MENU is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set -# CONFIG_INTEL_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -CONFIG_PCIEPORTBUS=y -# CONFIG_PCIEAER is not set -# CONFIG_PCIEASPM is not set -# CONFIG_PCIE_DPC is not set -# CONFIG_PCIE_PTM is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -CONFIG_PCI_LOCKLESS_CONFIG=y -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y -# CONFIG_HOTPLUG_PCI is not set - -# -# DesignWare PCI Core Support -# -# CONFIG_PCIE_DW_PLAT is not set - -# -# PCI host controller drivers -# -# CONFIG_VMD is not set - -# -# PCI Endpoint -# -# CONFIG_PCI_ENDPOINT is not set - -# -# PCI switch controller drivers -# -# CONFIG_PCI_SW_SWITCHTEC is not set -# CONFIG_ISA_BUS is not set -# CONFIG_ISA_DMA_API is not set -# CONFIG_PCCARD is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_ELFCORE=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -CONFIG_PACKET_DIAG=y -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -# CONFIG_TLS is not set -# CONFIG_XFRM_USER is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -# CONFIG_NET_IP_TUNNEL is not set -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -# CONFIG_INET_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -CONFIG_INET_DIAG=y -CONFIG_INET_TCP_DIAG=y -# CONFIG_INET_UDP_DIAG is not set -# CONFIG_INET_RAW_DIAG is not set -# CONFIG_INET_DIAG_DESTROY is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET6_XFRM_MODE_TUNNEL is not set -# CONFIG_INET6_XFRM_MODE_BEET is not set -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_SIT is not set -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_FOU is not set -# CONFIG_IPV6_FOU_TUNNEL is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_IPV6_SEG6_LWTUNNEL is not set -# CONFIG_IPV6_SEG6_HMAC is not set -# CONFIG_NETWORK_SECMARK is not set -CONFIG_NET_PTP_CLASSIFY=y -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_NET_DSA is not set -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -CONFIG_NETLINK_DIAG=y -# CONFIG_MPLS is not set -# CONFIG_NET_NSH is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -# CONFIG_NET_NCSI is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_BT is not set -# CONFIG_AF_RXRPC is not set -# CONFIG_AF_KCM is not set -# CONFIG_STREAM_PARSER is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=y -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -# CONFIG_CEPH_LIB is not set -# CONFIG_NFC is not set -# CONFIG_PSAMPLE is not set -# CONFIG_NET_IFE is not set -# CONFIG_LWTUNNEL is not set -# CONFIG_DST_CACHE is not set -# CONFIG_GRO_CELLS is not set -# CONFIG_NET_DEVLINK is not set -CONFIG_MAY_USE_DEVLINK=y -CONFIG_HAVE_EBPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -# CONFIG_UEVENT_HELPER is not set -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -CONFIG_STANDALONE=y -CONFIG_PREVENT_FIRMWARE_BUILD=y -CONFIG_FW_LOADER=y -# CONFIG_FIRMWARE_IN_KERNEL is not set -CONFIG_EXTRA_FIRMWARE="" -# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set -CONFIG_ALLOW_DEV_COREDUMP=y -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -CONFIG_GENERIC_CPU_VULNERABILITIES=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -# CONFIG_MTD is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=y -CONFIG_BLK_DEV_LOOP_MIN_COUNT=256 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -# CONFIG_VIRTIO_BLK is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set -# CONFIG_NVME_FC is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_AD525X_DPOT is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ICS932S401 is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_APDS9802ALS is not set -# CONFIG_ISL29003 is not set -# CONFIG_ISL29020 is not set -# CONFIG_SENSORS_TSL2550 is not set -# CONFIG_SENSORS_BH1770 is not set -# CONFIG_SENSORS_APDS990X is not set -# CONFIG_HMC6352 is not set -# CONFIG_DS1682 is not set -# CONFIG_USB_SWITCH_FSA9480 is not set -# CONFIG_SRAM is not set -# CONFIG_PCI_ENDPOINT_TEST is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -CONFIG_EEPROM_AT24=y -# CONFIG_EEPROM_LEGACY is not set -# CONFIG_EEPROM_MAX6875 is not set -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_EEPROM_IDT_89HPESX is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# -# CONFIG_SENSORS_LIS3_I2C is not set - -# -# Altera FPGA firmware download module -# -# CONFIG_ALTERA_STAPL is not set -# CONFIG_INTEL_MEI is not set -# CONFIG_INTEL_MEI_ME is not set -# CONFIG_INTEL_MEI_TXE is not set -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# VOP Bus Driver -# -# CONFIG_VOP_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# - -# -# VOP Driver -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set -# CONFIG_CXL_BASE is not set -# CONFIG_CXL_AFU_DRIVER_OPS is not set -# CONFIG_CXL_LIB is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -CONFIG_BLK_DEV_SD=y -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -# CONFIG_BLK_DEV_SR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -# CONFIG_SCSI_ISCSI_ATTRS is not set -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -# CONFIG_SCSI_LOWLEVEL is not set -# CONFIG_SCSI_DH is not set -# CONFIG_SCSI_OSD_INITIATOR is not set -# CONFIG_ATA is not set -# CONFIG_MD is not set -# CONFIG_TARGET_CORE is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_MII=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set -CONFIG_DUMMY=y -# CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_MACSEC is not set -CONFIG_NETCONSOLE=y -CONFIG_NETPOLL=y -CONFIG_NET_POLL_CONTROLLER=y -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -# CONFIG_VIRTIO_NET is not set -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# - -# -# Distributed Switch Architecture drivers -# -CONFIG_ETHERNET=y -# CONFIG_NET_VENDOR_3COM is not set -# CONFIG_NET_VENDOR_ADAPTEC is not set -# CONFIG_NET_VENDOR_AGERE is not set -# CONFIG_NET_VENDOR_ALACRITECH is not set -# CONFIG_NET_VENDOR_ALTEON is not set -# CONFIG_ALTERA_TSE is not set -# CONFIG_NET_VENDOR_AMAZON is not set -# CONFIG_NET_VENDOR_AMD is not set -# CONFIG_NET_VENDOR_AQUANTIA is not set -# CONFIG_NET_VENDOR_ARC is not set -# CONFIG_NET_VENDOR_ATHEROS is not set -# CONFIG_NET_VENDOR_AURORA is not set -# CONFIG_NET_CADENCE is not set -# CONFIG_NET_VENDOR_BROADCOM is not set -# CONFIG_NET_VENDOR_BROCADE is not set -# CONFIG_NET_VENDOR_CAVIUM is not set -# CONFIG_NET_VENDOR_CHELSIO is not set -# CONFIG_NET_VENDOR_CISCO is not set -# CONFIG_CX_ECAT is not set -# CONFIG_DNET is not set -# CONFIG_NET_VENDOR_DEC is not set -# CONFIG_NET_VENDOR_DLINK is not set -# CONFIG_NET_VENDOR_EMULEX is not set -# CONFIG_NET_VENDOR_EZCHIP is not set -# CONFIG_NET_VENDOR_EXAR is not set -# CONFIG_NET_VENDOR_HP is not set -# CONFIG_NET_VENDOR_HUAWEI is not set -CONFIG_NET_VENDOR_INTEL=y -# CONFIG_E100 is not set -# CONFIG_E1000 is not set -CONFIG_E1000E=y -# CONFIG_E1000E_HWTS is not set -CONFIG_IGB=y -# CONFIG_IGBVF is not set -# CONFIG_IXGB is not set -# CONFIG_IXGBE is not set -# CONFIG_IXGBEVF is not set -# CONFIG_I40E is not set -# CONFIG_I40EVF is not set -# CONFIG_FM10K is not set -# CONFIG_NET_VENDOR_I825XX is not set -# CONFIG_JME is not set -# CONFIG_NET_VENDOR_MARVELL is not set -# CONFIG_NET_VENDOR_MELLANOX is not set -# CONFIG_NET_VENDOR_MICREL is not set -# CONFIG_NET_VENDOR_MYRI is not set -# CONFIG_FEALNX is not set -# CONFIG_NET_VENDOR_NATSEMI is not set -# CONFIG_NET_VENDOR_NETRONOME is not set -# CONFIG_NET_VENDOR_NVIDIA is not set -# CONFIG_NET_VENDOR_OKI is not set -# CONFIG_ETHOC is not set -# CONFIG_NET_PACKET_ENGINE is not set -# CONFIG_NET_VENDOR_QLOGIC is not set -# CONFIG_NET_VENDOR_QUALCOMM is not set -CONFIG_NET_VENDOR_REALTEK=y -# CONFIG_8139CP is not set -# CONFIG_8139TOO is not set -CONFIG_R8169=y -# CONFIG_NET_VENDOR_RENESAS is not set -# CONFIG_NET_VENDOR_RDC is not set -# CONFIG_NET_VENDOR_ROCKER is not set -# CONFIG_NET_VENDOR_SAMSUNG is not set -# CONFIG_NET_VENDOR_SEEQ is not set -# CONFIG_NET_VENDOR_SILAN is not set -# CONFIG_NET_VENDOR_SIS is not set -# CONFIG_NET_VENDOR_SOLARFLARE is not set -# CONFIG_NET_VENDOR_SMSC is not set -# CONFIG_NET_VENDOR_STMICRO is not set -# CONFIG_NET_VENDOR_SUN is not set -# CONFIG_NET_VENDOR_TEHUTI is not set -# CONFIG_NET_VENDOR_TI is not set -# CONFIG_NET_VENDOR_VIA is not set -# CONFIG_NET_VENDOR_WIZNET is not set -# CONFIG_NET_VENDOR_SYNOPSYS is not set -# CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -CONFIG_MDIO_DEVICE=y -CONFIG_MDIO_BUS=y -# CONFIG_MDIO_BITBANG is not set -# CONFIG_MDIO_THUNDER is not set -CONFIG_PHYLIB=y - -# -# MII PHY device drivers -# -CONFIG_AMD_PHY=y -# CONFIG_AQUANTIA_PHY is not set -CONFIG_AT803X_PHY=y -CONFIG_BCM7XXX_PHY=y -CONFIG_BCM87XX_PHY=y -CONFIG_BCM_NET_PHYLIB=y -CONFIG_BROADCOM_PHY=y -# CONFIG_CICADA_PHY is not set -# CONFIG_CORTINA_PHY is not set -# CONFIG_DAVICOM_PHY is not set -# CONFIG_DP83848_PHY is not set -# CONFIG_DP83867_PHY is not set -# CONFIG_FIXED_PHY is not set -# CONFIG_ICPLUS_PHY is not set -# CONFIG_INTEL_XWAY_PHY is not set -# CONFIG_LSI_ET1011C_PHY is not set -CONFIG_LXT_PHY=y -CONFIG_MARVELL_PHY=y -# CONFIG_MARVELL_10G_PHY is not set -# CONFIG_MICREL_PHY is not set -# CONFIG_MICROCHIP_PHY is not set -# CONFIG_MICROSEMI_PHY is not set -# CONFIG_NATIONAL_PHY is not set -# CONFIG_QSEMI_PHY is not set -# CONFIG_REALTEK_PHY is not set -# CONFIG_ROCKCHIP_PHY is not set -# CONFIG_SMSC_PHY is not set -# CONFIG_STE10XP is not set -# CONFIG_TERANETICS_PHY is not set -# CONFIG_VITESSE_PHY is not set -# CONFIG_XILINX_GMII2RGMII is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set -# CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -CONFIG_INPUT_KEYBOARD=y -# CONFIG_KEYBOARD_ADP5588 is not set -# CONFIG_KEYBOARD_ADP5589 is not set -CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_QT1070 is not set -# CONFIG_KEYBOARD_QT2160 is not set -# CONFIG_KEYBOARD_DLINK_DIR685 is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_TCA6416 is not set -# CONFIG_KEYBOARD_TCA8418 is not set -# CONFIG_KEYBOARD_LM8333 is not set -# CONFIG_KEYBOARD_MAX7359 is not set -# CONFIG_KEYBOARD_MCS is not set -# CONFIG_KEYBOARD_MPR121 is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_OPENCORES is not set -# CONFIG_KEYBOARD_SAMSUNG is not set -# CONFIG_KEYBOARD_STOWAWAY is not set -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set -# CONFIG_RMI4_CORE is not set - -# -# Hardware I/O ports -# -CONFIG_SERIO=y -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=y -# CONFIG_SERIO_CT82C710 is not set -CONFIG_SERIO_PCIPS2=y -CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set -# CONFIG_SERIO_ALTERA_PS2 is not set -# CONFIG_SERIO_PS2MULT is not set -# CONFIG_SERIO_ARC_PS2 is not set -# CONFIG_USERIO is not set -# CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -CONFIG_LEGACY_PTYS=y -CONFIG_LEGACY_PTY_COUNT=256 -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -CONFIG_DEVMEM=y -CONFIG_DEVKMEM=y - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -# CONFIG_SERIAL_8250_FINTEK is not set -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_PCI=y -CONFIG_SERIAL_8250_EXAR=y -CONFIG_SERIAL_8250_NR_UARTS=4 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -# CONFIG_SERIAL_8250_RSA is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -CONFIG_SERIAL_8250_LPSS=y -# CONFIG_SERIAL_8250_MID is not set -# CONFIG_SERIAL_8250_MOXA is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_SC16IS7XX is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_SERIAL_DEV_BUS is not set -CONFIG_TTY_PRINTK=y -# CONFIG_VIRTIO_CONSOLE is not set -# CONFIG_IPMI_HANDLER is not set -CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set -CONFIG_HW_RANDOM_INTEL=y -CONFIG_HW_RANDOM_AMD=y -CONFIG_HW_RANDOM_VIA=y -CONFIG_HW_RANDOM_VIRTIO=y -CONFIG_NVRAM=y -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set -# CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -CONFIG_I2C=y -CONFIG_ACPI_I2C_OPREGION=y -CONFIG_I2C_BOARDINFO=y -# CONFIG_I2C_COMPAT is not set -# CONFIG_I2C_CHARDEV is not set -# CONFIG_I2C_MUX is not set -# CONFIG_I2C_HELPER_AUTO is not set -# CONFIG_I2C_SMBUS is not set - -# -# I2C Algorithms -# -CONFIG_I2C_ALGOBIT=y -# CONFIG_I2C_ALGOPCF is not set -# CONFIG_I2C_ALGOPCA is not set - -# -# I2C Hardware Bus support -# - -# -# PC SMBus host controller drivers -# -# CONFIG_I2C_ALI1535 is not set -# CONFIG_I2C_ALI1563 is not set -# CONFIG_I2C_ALI15X3 is not set -# CONFIG_I2C_AMD756 is not set -# CONFIG_I2C_AMD8111 is not set -# CONFIG_I2C_I801 is not set -# CONFIG_I2C_ISCH is not set -# CONFIG_I2C_ISMT is not set -# CONFIG_I2C_PIIX4 is not set -# CONFIG_I2C_NFORCE2 is not set -# CONFIG_I2C_SIS5595 is not set -# CONFIG_I2C_SIS630 is not set -# CONFIG_I2C_SIS96X is not set -# CONFIG_I2C_VIA is not set -# CONFIG_I2C_VIAPRO is not set - -# -# ACPI drivers -# -# CONFIG_I2C_SCMI is not set - -# -# I2C system bus drivers (mostly embedded / system-on-chip) -# -# CONFIG_I2C_DESIGNWARE_PLATFORM is not set -# CONFIG_I2C_DESIGNWARE_PCI is not set -# CONFIG_I2C_EMEV2 is not set -# CONFIG_I2C_OCORES is not set -# CONFIG_I2C_PCA_PLATFORM is not set -# CONFIG_I2C_PXA_PCI is not set -# CONFIG_I2C_SIMTEC is not set -# CONFIG_I2C_XILINX is not set - -# -# External I2C/SMBus adapter drivers -# -# CONFIG_I2C_PARPORT_LIGHT is not set -# CONFIG_I2C_TAOS_EVM is not set - -# -# Other I2C/SMBus bus drivers -# -# CONFIG_I2C_MLXCPLD is not set -# CONFIG_I2C_SLAVE is not set -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set -# CONFIG_HSI is not set -CONFIG_PPS=y -# CONFIG_PPS_DEBUG is not set - -# -# PPS clients support -# -# CONFIG_PPS_CLIENT_KTIMER is not set -# CONFIG_PPS_CLIENT_LDISC is not set -# CONFIG_PPS_CLIENT_GPIO is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -CONFIG_PTP_1588_CLOCK=y - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_AVS is not set -# CONFIG_POWER_RESET is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_AS3711 is not set -# CONFIG_PMIC_ADP5520 is not set -# CONFIG_MFD_BCM590XX is not set -# CONFIG_MFD_BD9571MWV is not set -# CONFIG_MFD_AXP20X_I2C is not set -# CONFIG_MFD_CROS_EC is not set -# CONFIG_PMIC_DA903X is not set -# CONFIG_MFD_DA9052_I2C is not set -# CONFIG_MFD_DA9055 is not set -# CONFIG_MFD_DA9062 is not set -# CONFIG_MFD_DA9063 is not set -# CONFIG_MFD_DA9150 is not set -# CONFIG_MFD_MC13XXX_I2C is not set -# CONFIG_HTC_PASIC3 is not set -# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_INTEL_SOC_PMIC_CHTWC is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_88PM800 is not set -# CONFIG_MFD_88PM805 is not set -# CONFIG_MFD_88PM860X is not set -# CONFIG_MFD_MAX14577 is not set -# CONFIG_MFD_MAX77693 is not set -# CONFIG_MFD_MAX77843 is not set -# CONFIG_MFD_MAX8907 is not set -# CONFIG_MFD_MAX8925 is not set -# CONFIG_MFD_MAX8997 is not set -# CONFIG_MFD_MAX8998 is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_MENF21BMC is not set -# CONFIG_MFD_RETU is not set -# CONFIG_MFD_PCF50633 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_RT5033 is not set -# CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_SEC_CORE is not set -# CONFIG_MFD_SI476X_CORE is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_MFD_SKY81452 is not set -# CONFIG_MFD_SMSC is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_LP3943 is not set -# CONFIG_MFD_LP8788 is not set -# CONFIG_MFD_TI_LMU is not set -# CONFIG_MFD_PALMAS is not set -# CONFIG_TPS6105X is not set -# CONFIG_TPS6507X is not set -# CONFIG_MFD_TPS65086 is not set -# CONFIG_MFD_TPS65090 is not set -# CONFIG_MFD_TPS65217 is not set -# CONFIG_MFD_TPS68470 is not set -# CONFIG_MFD_TI_LP873X is not set -# CONFIG_MFD_TPS65218 is not set -# CONFIG_MFD_TPS6586X is not set -# CONFIG_MFD_TPS65912_I2C is not set -# CONFIG_MFD_TPS80031 is not set -# CONFIG_TWL4030_CORE is not set -# CONFIG_TWL6040_CORE is not set -# CONFIG_MFD_WL1273_CORE is not set -# CONFIG_MFD_LM3533 is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_MFD_ARIZONA_I2C is not set -# CONFIG_MFD_WM8400 is not set -# CONFIG_MFD_WM831X_I2C is not set -# CONFIG_MFD_WM8350_I2C is not set -# CONFIG_MFD_WM8994 is not set -# CONFIG_REGULATOR is not set -# CONFIG_RC_CORE is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# ACP (Audio CoProcessor) Configuration -# -# CONFIG_DRM_LIB_RANDOM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -CONFIG_HID=y -# CONFIG_HID_BATTERY_STRENGTH is not set -CONFIG_HIDRAW=y -# CONFIG_UHID is not set -CONFIG_HID_GENERIC=y - -# -# Special HID drivers -# -# CONFIG_HID_A4TECH is not set -# CONFIG_HID_ACRUX is not set -# CONFIG_HID_APPLE is not set -# CONFIG_HID_AUREAL is not set -# CONFIG_HID_BELKIN is not set -# CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set -# CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CYPRESS is not set -# CONFIG_HID_DRAGONRISE is not set -# CONFIG_HID_EMS_FF is not set -# CONFIG_HID_ELECOM is not set -# CONFIG_HID_EZKEY is not set -# CONFIG_HID_GEMBIRD is not set -# CONFIG_HID_GFRM is not set -# CONFIG_HID_KEYTOUCH is not set -# CONFIG_HID_KYE is not set -# CONFIG_HID_WALTOP is not set -# CONFIG_HID_GYRATION is not set -# CONFIG_HID_ICADE is not set -# CONFIG_HID_ITE is not set -# CONFIG_HID_TWINHAN is not set -# CONFIG_HID_KENSINGTON is not set -# CONFIG_HID_LCPOWER is not set -# CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set -# CONFIG_HID_MAGICMOUSE is not set -# CONFIG_HID_MAYFLASH is not set -# CONFIG_HID_MICROSOFT is not set -# CONFIG_HID_MONTEREY is not set -# CONFIG_HID_MULTITOUCH is not set -# CONFIG_HID_NTI is not set -# CONFIG_HID_ORTEK is not set -# CONFIG_HID_PANTHERLORD is not set -# CONFIG_HID_PETALYNX is not set -# CONFIG_HID_PICOLCD is not set -# CONFIG_HID_PLANTRONICS is not set -# CONFIG_HID_PRIMAX is not set -# CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set -# CONFIG_HID_SPEEDLINK is not set -# CONFIG_HID_STEELSERIES is not set -# CONFIG_HID_SUNPLUS is not set -# CONFIG_HID_RMI is not set -# CONFIG_HID_GREENASIA is not set -# CONFIG_HID_SMARTJOYPLUS is not set -# CONFIG_HID_TIVO is not set -# CONFIG_HID_TOPSEED is not set -# CONFIG_HID_THRUSTMASTER is not set -# CONFIG_HID_UDRAW_PS3 is not set -# CONFIG_HID_XINMO is not set -# CONFIG_HID_ZEROPLUS is not set -# CONFIG_HID_ZYDACRON is not set -# CONFIG_HID_SENSOR_HUB is not set -# CONFIG_HID_ALPS is not set - -# -# I2C HID support -# -# CONFIG_I2C_HID is not set - -# -# Intel ISH HID support -# -# CONFIG_INTEL_ISH_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -CONFIG_RTC_LIB=y -CONFIG_RTC_MC146818_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set - -# -# DMABUF options -# -# CONFIG_SYNC_FILE is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -# CONFIG_VIRTIO_PCI_LEGACY is not set -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -# CONFIG_VIRTIO_MMIO is not set - -# -# Microsoft Hyper-V guest support -# -# CONFIG_HYPERV_TSCPAGE is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -CONFIG_PMC_ATOM=y -# CONFIG_CHROME_PLATFORMS is not set -CONFIG_CLKDEV_LOOKUP=y -CONFIG_HAVE_CLK_PREPARE=y -CONFIG_COMMON_CLK=y - -# -# Common Clock Framework -# -# CONFIG_COMMON_CLK_SI5351 is not set -# CONFIG_COMMON_CLK_CDCE706 is not set -# CONFIG_COMMON_CLK_CS2000_CP is not set -# CONFIG_COMMON_CLK_NXP is not set -# CONFIG_COMMON_CLK_PXA is not set -# CONFIG_COMMON_CLK_PIC32 is not set -# CONFIG_HWSPINLOCK is not set - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_I8253_LOCK=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set -# CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_REMOTEPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# - -# -# Amlogic SoC drivers -# - -# -# Broadcom SoC drivers -# - -# -# i.MX SoC drivers -# - -# -# Qualcomm SoC drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set -CONFIG_ARM_GIC_MAX_NR=1 -# CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -CONFIG_GENERIC_PHY=y -CONFIG_BCM_KONA_USB2_PHY=y -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_DAX is not set -CONFIG_NVMEM=y -# CONFIG_STM is not set -# CONFIG_INTEL_TH is not set -# CONFIG_FPGA is not set - -# -# FSI support -# -# CONFIG_FSI is not set - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -CONFIG_FIRMWARE_MEMMAP=y -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set -CONFIG_DMIID=y -# CONFIG_DMI_SYSFS is not set -CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y -# CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_FW_CFG_SYSFS is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -CONFIG_EFI_RUNTIME_MAP=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_CAPSULE_LOADER is not set -# CONFIG_EFI_TEST is not set -# CONFIG_APPLE_PROPERTIES is not set -# CONFIG_RESET_ATTACK_MITIGATION is not set -# CONFIG_EFI_DEV_PATH_PARSER is not set - -# -# Tegra firmware driver -# - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -# CONFIG_EXT4_FS is not set -# CONFIG_REISERFS_FS is not set -# CONFIG_JFS_FS is not set -# CONFIG_XFS_FS is not set -# CONFIG_GFS2_FS is not set -# CONFIG_BTRFS_FS is not set -# CONFIG_NILFS2_FS is not set -# CONFIG_F2FS_FS is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -# CONFIG_EXPORTFS_BLOCK_OPS is not set -# CONFIG_FILE_LOCKING is not set -# CONFIG_FS_ENCRYPTION is not set -# CONFIG_FSNOTIFY is not set -# CONFIG_DNOTIFY is not set -# CONFIG_INOTIFY_USER is not set -# CONFIG_FANOTIFY is not set -# CONFIG_QUOTA is not set -# CONFIG_QUOTACTL is not set -# CONFIG_AUTOFS4_FS is not set -CONFIG_FUSE_FS=y -# CONFIG_CUSE is not set -# CONFIG_OVERLAY_FS is not set - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -# CONFIG_ISO9660_FS is not set -# CONFIG_UDF_FS is not set - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=y -CONFIG_MSDOS_FS=y -CONFIG_VFAT_FS=y -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -# CONFIG_FAT_DEFAULT_UTF8 is not set -# CONFIG_NTFS_FS is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -CONFIG_PROC_KCORE=y -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -# CONFIG_TMPFS_POSIX_ACL is not set -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -# CONFIG_CONFIGFS_FS is not set -CONFIG_EFIVAR_FS=y -CONFIG_MISC_FILESYSTEMS=y -# CONFIG_ORANGEFS_FS is not set -# CONFIG_ADFS_FS is not set -# CONFIG_AFFS_FS is not set -# CONFIG_HFS_FS is not set -# CONFIG_HFSPLUS_FS is not set -# CONFIG_BEFS_FS is not set -# CONFIG_BFS_FS is not set -# CONFIG_EFS_FS is not set -# CONFIG_CRAMFS is not set -CONFIG_SQUASHFS=y -CONFIG_SQUASHFS_FILE_CACHE=y -# CONFIG_SQUASHFS_FILE_DIRECT is not set -CONFIG_SQUASHFS_DECOMP_SINGLE=y -# CONFIG_SQUASHFS_DECOMP_MULTI is not set -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set -# CONFIG_SQUASHFS_XATTR is not set -CONFIG_SQUASHFS_ZLIB=y -# CONFIG_SQUASHFS_LZ4 is not set -# CONFIG_SQUASHFS_LZO is not set -# CONFIG_SQUASHFS_XZ is not set -# CONFIG_SQUASHFS_ZSTD is not set -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set -# CONFIG_SQUASHFS_EMBEDDED is not set -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 -# CONFIG_VXFS_FS is not set -# CONFIG_MINIX_FS is not set -# CONFIG_OMFS_FS is not set -# CONFIG_HPFS_FS is not set -# CONFIG_QNX4FS_FS is not set -# CONFIG_QNX6FS_FS is not set -# CONFIG_ROMFS_FS is not set -# CONFIG_PSTORE is not set -# CONFIG_SYSV_FS is not set -# CONFIG_UFS_FS is not set -CONFIG_NETWORK_FILESYSTEMS=y -# CONFIG_CEPH_FS is not set -# CONFIG_CIFS is not set -# CONFIG_NCP_FS is not set -# CONFIG_CODA_FS is not set -# CONFIG_AFS_FS is not set -CONFIG_9P_FS=y -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set -CONFIG_NLS=y -CONFIG_NLS_DEFAULT="iso8859-1" -CONFIG_NLS_CODEPAGE_437=y -# CONFIG_NLS_CODEPAGE_737 is not set -# CONFIG_NLS_CODEPAGE_775 is not set -# CONFIG_NLS_CODEPAGE_850 is not set -# CONFIG_NLS_CODEPAGE_852 is not set -# CONFIG_NLS_CODEPAGE_855 is not set -# CONFIG_NLS_CODEPAGE_857 is not set -# CONFIG_NLS_CODEPAGE_860 is not set -# CONFIG_NLS_CODEPAGE_861 is not set -# CONFIG_NLS_CODEPAGE_862 is not set -# CONFIG_NLS_CODEPAGE_863 is not set -# CONFIG_NLS_CODEPAGE_864 is not set -# CONFIG_NLS_CODEPAGE_865 is not set -# CONFIG_NLS_CODEPAGE_866 is not set -# CONFIG_NLS_CODEPAGE_869 is not set -# CONFIG_NLS_CODEPAGE_936 is not set -# CONFIG_NLS_CODEPAGE_950 is not set -# CONFIG_NLS_CODEPAGE_932 is not set -# CONFIG_NLS_CODEPAGE_949 is not set -# CONFIG_NLS_CODEPAGE_874 is not set -# CONFIG_NLS_ISO8859_8 is not set -# CONFIG_NLS_CODEPAGE_1250 is not set -# CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ASCII=y -# CONFIG_NLS_ISO8859_1 is not set -# CONFIG_NLS_ISO8859_2 is not set -# CONFIG_NLS_ISO8859_3 is not set -# CONFIG_NLS_ISO8859_4 is not set -# CONFIG_NLS_ISO8859_5 is not set -# CONFIG_NLS_ISO8859_6 is not set -# CONFIG_NLS_ISO8859_7 is not set -# CONFIG_NLS_ISO8859_9 is not set -# CONFIG_NLS_ISO8859_13 is not set -# CONFIG_NLS_ISO8859_14 is not set -# CONFIG_NLS_ISO8859_15 is not set -# CONFIG_NLS_KOI8_R is not set -# CONFIG_NLS_KOI8_U is not set -# CONFIG_NLS_MAC_ROMAN is not set -# CONFIG_NLS_MAC_CELTIC is not set -# CONFIG_NLS_MAC_CENTEURO is not set -# CONFIG_NLS_MAC_CROATIAN is not set -# CONFIG_NLS_MAC_CYRILLIC is not set -# CONFIG_NLS_MAC_GAELIC is not set -# CONFIG_NLS_MAC_GREEK is not set -# CONFIG_NLS_MAC_ICELAND is not set -# CONFIG_NLS_MAC_INUIT is not set -# CONFIG_NLS_MAC_ROMANIAN is not set -# CONFIG_NLS_MAC_TURKISH is not set -CONFIG_NLS_UTF8=y - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -# CONFIG_PRINTK_TIME is not set -CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_REDUCED is not set -# CONFIG_DEBUG_INFO_SPLIT is not set -# CONFIG_DEBUG_INFO_DWARF4 is not set -# CONFIG_GDB_SCRIPTS is not set -CONFIG_ENABLE_WARN_DEPRECATED=y -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_FRAME_WARN=1024 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -CONFIG_SECTION_MISMATCH_WARN_ONLY=y -CONFIG_FRAME_POINTER=y -CONFIG_STACK_VALIDATION=y -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -CONFIG_MAGIC_SYSRQ=y -CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 -CONFIG_MAGIC_SYSRQ_SERIAL=y -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_PAGE_POISONING is not set -CONFIG_DEBUG_RODATA_TEST=y -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KASAN=y -# CONFIG_KASAN is not set -CONFIG_ARCH_HAS_KCOV=y -# CONFIG_KCOV is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_SOFTLOCKUP_DETECTOR is not set -CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y -# CONFIG_HARDLOCKUP_DETECTOR is not set -CONFIG_DETECT_HUNG_TASK=y -CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set -CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 -# CONFIG_WQ_WATCHDOG is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=120 -# CONFIG_SCHED_DEBUG is not set -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_WW_MUTEX_SELFTEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_BUGVERBOSE is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_PERF_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=60 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACE_CLOCK=y -CONFIG_RING_BUFFER=y -CONFIG_RING_BUFFER_ALLOW_SWAP=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_TEST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_BITMAP is not set -# CONFIG_TEST_UUID is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_TEST_HASH is not set -# CONFIG_TEST_FIRMWARE is not set -# CONFIG_TEST_SYSCTL is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_BUG_ON_DATA_CORRUPTION is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y -# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set -# CONFIG_UBSAN is not set -CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y -# CONFIG_STRICT_DEVMEM is not set -CONFIG_X86_VERBOSE_BOOTUP=y -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_EARLY_PRINTK_USB_XDBC is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_WX is not set -CONFIG_DOUBLEFAULT=y -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set -# CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set -# CONFIG_UNWINDER_ORC is not set -CONFIG_UNWINDER_FRAME_POINTER=y -# CONFIG_UNWINDER_GUESS is not set - -# -# Security options -# -# CONFIG_KEYS is not set -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITYFS is not set -# CONFIG_PAGE_TABLE_ISOLATION is not set -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y -# CONFIG_HARDENED_USERCOPY is not set -# CONFIG_FORTIFY_SOURCE is not set -# CONFIG_STATIC_USERMODEHELPER is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=y -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=y -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=y -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_KPP2=y -CONFIG_CRYPTO_ACOMP2=y -# CONFIG_CRYPTO_RSA is not set -# CONFIG_CRYPTO_DH is not set -# CONFIG_CRYPTO_ECDH is not set -CONFIG_CRYPTO_MANAGER=y -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -# CONFIG_CRYPTO_GF128MUL is not set -CONFIG_CRYPTO_NULL=y -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -CONFIG_CRYPTO_AUTHENC=y - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -# CONFIG_CRYPTO_SEQIV is not set -CONFIG_CRYPTO_ECHAINIV=y - -# -# Block modes -# -CONFIG_CRYPTO_CBC=y -# CONFIG_CRYPTO_CTR is not set -# CONFIG_CRYPTO_CTS is not set -CONFIG_CRYPTO_ECB=y -# CONFIG_CRYPTO_LRW is not set -CONFIG_CRYPTO_PCBC=y -# CONFIG_CRYPTO_XTS is not set -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=y -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=y -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -# CONFIG_CRYPTO_MD4 is not set -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -CONFIG_CRYPTO_SHA1=y -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -# CONFIG_CRYPTO_SHA256_MB is not set -# CONFIG_CRYPTO_SHA512_MB is not set -CONFIG_CRYPTO_SHA256=y -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_SHA3 is not set -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_TI is not set -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -# CONFIG_CRYPTO_ARC4 is not set -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=y -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=y -CONFIG_CRYPTO_LZO=y -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=y -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -CONFIG_CRYPTO_DRBG=y -CONFIG_CRYPTO_JITTERENTROPY=y -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HW=y -# CONFIG_CRYPTO_DEV_PADLOCK is not set -# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set -# CONFIG_CRYPTO_DEV_CCP is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set -# CONFIG_CRYPTO_DEV_QAT_C62X is not set -# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set -# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set -# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set -# CONFIG_CRYPTO_DEV_VIRTIO is not set - -# -# Certificates for signature checking -# -CONFIG_HAVE_KVM=y -# CONFIG_VIRTUALIZATION is not set -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_RATIONAL=y -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=y -# CONFIG_CRC_ITU_T is not set -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC4 is not set -# CONFIG_CRC7 is not set -# CONFIG_LIBCRC32C is not set -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_ZLIB_DEFLATE=y -CONFIG_LZO_COMPRESS=y -CONFIG_LZO_DECOMPRESS=y -CONFIG_XZ_DEC=y -CONFIG_XZ_DEC_X86=y -# CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set -# CONFIG_XZ_DEC_ARM is not set -# CONFIG_XZ_DEC_ARMTHUMB is not set -# CONFIG_XZ_DEC_SPARC is not set -CONFIG_XZ_DEC_BCJ=y -# CONFIG_XZ_DEC_TEST is not set -CONFIG_DECOMPRESS_LZMA=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -# CONFIG_DMA_NOOP_OPS is not set -# CONFIG_DMA_VIRT_OPS is not set -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -# CONFIG_IRQ_POLL is not set -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_SG_POOL=y -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y -CONFIG_SBITMAP=y -# CONFIG_STRING_SELFTEST is not set diff --git a/mainboards/tyan7106/pox.tcz b/mainboards/tyan7106/pox.tcz deleted file mode 100644 index 1d179eb4be9dd282e470ec579fc01eee6fe4948d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6266880 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�D4_@}GC1UV{ihv$%@o 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%0AhCx} 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]%E{iR$QV>kAc#n&|cPbwMii`u6Uv?V-lC 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

      3Gmg$e2BS0D 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

      f`NY$&=%FF$ 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

      5y`ePi#Gr4XlWB|4C3=E;wJ(y=g^Nn!6sVn+1 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%0D8Gidsyshc3 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

      P(v9M_?Ov@*CRZ2g2dvn5b8$E~4oQX_S&mRX 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

        )9eYk+-zuyr2Y-#KB6jI$DR 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 +r+6KLCBk#bZqZyR$D4bzhU4>#v{Gc0)1FZN^ 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

        =8s<=1-yvrne`K&OD;&Q~+c*QsNHx>VM* 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�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 z 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

        {LGBs|u$=9;dAK7u5D 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

        bhw!Ek{Db1%cJ{go!j|LhRh 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%0D<2M)A`Mf;}uTor%=zp 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 z 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

        K`JU5!h)b7 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

        a4&FWsGR-G{-U#1=4o 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%0ASbt0 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⁡@FkT!-u90&m_>d3L07;n4O5P(AKpl5 z)6#$`*M|!Ym1iQ7SIKX=ltNq2hjC*<=}+L$tABVM5Mi+ZlYRH$we{ z;sYzT0n`Ia!LMtB&Rg(EMTFB&@LSfU;J*9q`IRsoTzOU!&ocCN5t!+P#$M5%tc;1&e=e*B( zo!9*WmcI<}UI?zOieDwJt;}9+vDD&6H6#Gr?beBOG^DBZ-suebi;2VU4N90o{hbir z6*Lt&d>N3XG`m;gPZf`^EP!iDc!~S)i^cF(43G6YYL87%DYRE_u~Z0C6Ad_t4o(ew zs;me<%7ag(juL}n!!f5ydV17t@M!@~>(Pn-ee7|Aj!nA+f1(;%1-skOTl|GT5o1xt z62hnvvzXVtB+gnzBj>;)!iv*gC4{Zrz^i2#xiGyL#~s$OIYD&lj$joD^c$4Ic$Kc< z_`b-Gy4pwI1DkWMvI4#=K|JsRcFQbh?{&?X;!t**;jWWSxT%&w5pDwA;U&cB5kZKw z8IlN~fff%6Xk=#ypsAxgb~&|sgTf9!LT56M-oZ6NEYKJoj?;$qXP^dH)7;Crpo=ii zUd0+8eeyB_{?>U18pgaKZwGF}Eqb(1K4K?qgI;*h`<>%Ke`Nr>iH=_IKqh{OJ$5NAPL^6(OY zI13qZ4&P7PKa75Ff`tB*A26heai)oJripQ;DM)EEl^ZsWBAgigrF2+7x!B+9WjJI; z)GpR|oT}9QfaqiFcSF=v<8k01Pl$Bpzkx^#aVD^gYeo@)@FwsyBUHk)95aZcrTP6F zUT9iWFgm8C{C5feUBrKl%=dJM_YzDt(6V&X!e<+jJ_09|XFkI&yxMW3###7}$#F4W zvALN#=u~Ey_R(nfOegABZcoTf$+lPT6r{eCJ4RP4!WG`#JYz4W2i&)xE-Kv6`Xyr6 zHoA?WJ3;GDa|fQo)|e}3*s}ykJnST9HxjHVu#!9#?lv}tz&X$4E)+VbXL&I&9NolM zR~V9>*E@$jMPD!gTPcB@vG=@TkGp-XX&en(!Cy^3wwDlzkX{(MYhhLIib z@Sx3*RH>7Gk$`9#j@c@96lkFx=@FQg*b-t|@=PZL!?N4lK|@auVs^5+%u?*+T9{)A zZv#6+*Yz}|Iq>f7p%-d+W4j}Xn`+cC;XKG_sKHnQgbB_^!&ktOVK+R)P}oQilG*@Y z_hRa?fq&8+Sz=g!8;tX7Zs~Mlt$ZA)8!wdyYEiG7KQv*H(O+t^!u#woW-4OF=N8x- zfNd%l`3nQI;VQ3HT{rMKpj(Dbr~6o%ia3rJYWt)<$&Nl>|K(6Gk}HHMJ8(ZJI!LS07f^;nE>ePKbF1?mc#HC!;=I*~uGy9;&rRSP##9oJ8F;eKx zhmRC~vwdJ+_7QF@QoLzx7aR8qifEl|QkgwmF(J=xD@-XPq*g@lT7uvFJFL8O#ZEDP z!lzxo2#B&u#0_!d8tqP@c4zb=i9=U}pHarrff+^|D}hnJVQq*`a9$1Q83>U9i5oTS zvb)%HLYZi4wAy)Lg z5pqSTvqoM_j62@!`b-6e(iDvQJ~+v-^c5*$+=ibtE;QVY3$dzh<45?*RXD3aJBC%T zjwhNDGm-`)9-cO^RuZDKh9o_^9FLUitSxa9wy}YSj-d&|hF{CtV_p|xN@_7c8N?pu ziH;KAQH)tu15WC}IaPBYPi$ez5xdPId~ldS6%tZ0@8Us%m`0amgrm62c+`+&9KtTm zd31Gxx3ZkYk_JYPd9-n0s6CjKONMv}M#ROez(=T&4u1)^Ntn6j0f=PgBYaH=j-H=| zXQE+!9L~v_*f!^}&%?35^%8mPAEgug20oykhB&3(*@g28;B?TGSw03SIi`;Fu%`); zsYwV7#l~iJb&rRCk9gjpQG!nO)VcmY6^#8QfjX+rJNNlf7WX8cD^U%-p8XpSY7R*t z0qXP)#t$BhC_HSAsL0XwhLcZp@`z>X{b$_phdbk5%^bA)eY@LpH{M!49^dZn?Wj_p-v`}k4UP-Tr8M3t^|Z!A$Uwj8iJP_%Mc-{VSR_y0kaR~VQHQ^+v9er-|D`vh-Vgx>;s(Fy-u09%7d+&MQ zhouKhSF7)~i23B1JKeMnL_gK8X5f24w)t5rzo0(a?EZb{KQC$;7;uCJiF#FYH4moJ zxK)kQ;i`0QG&#``kdGi>_YTew?5r|XR_YDk78_E6vViH?1A^}Sl7M{9Izjjm64{7NvU)wE!Z z5bbT?2K2T3DAEp2@y`Q7XI%CPGxJeb-w!f^Q(!J&J+#(ej@HQ58d+LH(HeH{!~{DQ zhU}p>!YIIIgcX=rTjwLBBQp;5-h{Ws$ZBcK3TFctVht6xjBy8HqJv6wfN)l5 z`X3s`%eD_}b=YuvVNJPG6@P?H&wSC;$L!51}?8Ema$9eOwS}iwI+fRfeU%!{mVjUeX zuy%*A2*Hy+=0!O8!jNV6CC3e0mEn&9S{N>UICLeUh>JQ1;3=Tr)uUl&t9yg7Qu2ry z;D^vzV8cf`;nT2wr5^GWvj46rH*6XPuZObvVUzt}ndo!cZE8%J>M55W0xjA}TC@^x zELs4q)he^US6CnNuazh3rYFC~mHzlkuyT66T)A(4N%xa?T&oibN%(yqv{2{h#q+P)NO{1U-S8Rxrw&=UkF|73Z$)mmk`gY%9kI{ zxPBMHKX*ycrI&Fo;Wv%Ds z3D3(K&&z7}OOPTR4OgY@PB-sP{rS7IkE7YJj(2Qvt>dg->`nuAr_r@LYP!z3JNra< zZLwL!Atmxg3)V)v)5blzcBk({SFdM;6dKVr8hU%)rRbTX)Qe0AsIdNG6Ej9)>^xQC)ljrm&7eb zJn!B25F)L5nNcTQE}Fv@)ZuW6B+}8nryBU->GyRUMy!8IYb@0oe|}#wafCjed7nqF zq-zA-N40H0pf{qv%RblN^*%$QDpZlcQZ##0DqBTU^Od%RIat-OyTzTfu)DOzomykI z)|izFrqEPGYi#8Rlmu()ekIYEVNckZYJ>X68qCM0#9qBK^$^KM)j)+Tukl_KrMmWF zLnjBEJ2XCU89bu-Ai%#G$7vcJCu6ST%waDtN%`P0J(~Tf{WuW{+_ErKmI4b8(@1+l z>z@5Mg3E{y?t;#q;GtK*1H2@dEZ>{zBFjFQ2a(iE27EYKMev@#GjEys#u_M7_Zc>Q zLo%UbV6WgK!5@vJSJk6!PX4HSzTS&&0iCMZL}|ub&+zJ*J=CrbYF)yzGj9FJE{h6pA2w;mh}!Lkby~ z?T@p-;hGI-ONr@kTKDg0jkmSNU$w?tTI0?4oDx%yvcS9-5)&l!3?-9pkhqkq)3JjU z-Z*Htb*HlxF&8T2eQ-8_<@JC)q0DjsN)+hY3*cQzZ!IwA3RJbzB7&V7%#fkr@RccK zDEdHNH~E1tfiegg%IG8hk~bx^pGtOv9QsAsHigoF-rGamiQr`Z(pQ;Ur(h#U%&c zJqPkt%Nl4-b*+YtKlm~x&6t@y-8Xr;5U`d)!0NgaS(*mc6u~WdlvNO)s2xE=y;zRw zPF}79$lX4I@a*CN?VgWYdx*2m9ARtnQg1;~EYqm%haMAo4ikNa2DX6KXMls^1e6`d zY6M4!)hNa$bVEW|3NdU=5vWK9^MzR5QLQ33Rl21V`XMxI;5G~!|D#fs42uVIL1~n z7|diac$gzj@R(Uk;cjZ2$>M^(>TeJi=IWV+C|7^M`Anpo_qitL1*Y7k$$3SP^L7Y1 zuS4$O=Q^>2*q(0cZ)Wl zf8|YJ0qvWU&P`A+wh4a=aBV`J+=Pk4JvO1%b6rn(UeJBY&j^+gt`W9}40WTM zJ&?FNEKfXsN4(jzGmU(d%%=M!jx5msZyLac(XGH zsAy>OA-JFKa0+-%m}*TQJ z&KwcozK}LieXvW~HE17!)QbU^(489@E_Kv}dg*y^7xCg70`BamCA-QxpM;26g{rw?$|5)wGGAaGi({UmT&32ctV66UXa zSu$L7<5Y|gIjs;mHI0&O$#p8?iOuiVW$}3 zXUlJ*H7=5F60ipq@fkh2NpNR|^(YK)SaazR4$v%D?-K6zQ7`!p#Rj+1zaC8DvY|u4 zLY-mPSk1CTJw>e%J+-|sWZC!b0xAcpv!(}9>4UjaD?3iAU}=c4zC#69CZgIKh~3UJ z$HS_@jJ0i0PVY)FTplJ15PrX1aC`h!!#24Eo%QXJ*e4OM6cdmD*cb^K6%E*Kprukj z67C!fW$$bhP`0o|LRlCb$21T-sfnS6)tj{xp@xkdL0oP;s*b=&H69~nY9oD=Oe0P0 z;&0-V+B zrDSVellyEq!7Y*jZF;#)WIUL!Cn*=y_1QpYTrm6OyGgnte;rufnuX=+Z`(W-4iC$n zd^=mlvWCn3L@Wi1Nh}1tlq`fG?2lpnA3)Dn_nf9vkH}cZr)`~1`W_R1-}l51c+HJl z+34kmd{+-k#@r8~5lg+#38?5AihzpQ>rRT;a)eQ2umFwta>q;mkTP6Q+`4A&7b*|O zAL(|wFZXa{_PRQHhQ4?BVz_OgK|}`}U+okk@WJT;UfORRH~a%XX~N5k^s#7kA z(f*mU%X;qexFhBhgeQ>9_^r6#>==mUbr+C6ley7q7*G$N^5KM4_!yT=SQa1FL=Tki zdG=?A$E~z`$q-f~sO zd92^^VOYPI4L4h6i&bbDBITX%*@&*3o%|h#pm0FR4O>K7Fd+}oqB}yi$hZ)EbrbH4 zJt`8JP4bf|#H>UjkHxLaW>9i8ekffu#jl!Yuj`3hm*x064Qns*nK_^I&t7LkIiVoO zynl#J5j5j^97o?a9eLfk=c129S-&6=@L96%iYuyc}) zO?UHe$GO{k-&{sk)ZEVrA6GSo$E+(r?vR+3l{kjyCX*(Kst{^TvX;2#$<$;w`N zk|SC~py2ImGM=4>GAWC_weXe5qc1%5?4JSL^Sy_9IrF7?W>$^5)|qr#)QMhajX`v) z!7FB1Egl>k9zjfH5n^DzyQCy)!(aO8^`y``~}0kWh~>sv#7GZ z`k-Dzn5$#-+~-hS4lK)XWgNfplt+&7Twe~BgeP<6bAG^;+4VRkk=5`{r8|VEzot7g zCuAd=!6qNW#tspw4yB(y!HYgRX*LZ8pW)R$KOqC~aaa64tL_Y5!&(fhS3{+M=)Vj% z`2>ls5mEV1k+V#H{d0OR^#j-MiS@Cmn_Sljo$l)w^n=#mtXvMlkKX>S_{@c}xA#eG zQSWj0&t+CbpG5Z!>!!%JrcVp-QYQ*~$x32nmi8H5Z?MO<;>82 z%zw0*_S01s-`mgk6uO55k5;JuT6%qHdOkL2lR!;FpTPQAHoZ>Ikf{9w=1+B3{Yb@tRuB8jVo{I^Sz=rI%Ak+#J z=L(Tb1=(XVSfS*{gY~oP1I@Sc*W6JGE`lGg_k(*~$bx#L`t7zvU%Ct)%*JeZm(_Ew zk%aCv{c1c$V>^C~#{JrzEp$hjYRW*?Klm75O){kj85j|-B9t^obKY+>B=uhD#j(wW zc#xraII#;6)c&P1V`ZYLfVgo}C0y1JDp871iAoVFL6iLzhD68&^@Px&;D}!fC%sBB zYs72N;Bd-Bipxql_#bF+Wuo~Yk8O`Z0!;doNsD!m$7YYa800mev8#o9R_x9cgeU}O zI{bKqdbgQi2%3$T>IeT%yPN>b1=Rp$Blc zBZ{bzp4j0{hQM~i`m{hG<*k9js?2_vx$#j4Y6mh0DiLd$o0!n7A1!DkBq{OJvd4(@rnr!EN=+L>5eB+abA}CVz&%Vmh}LBN!M#w zEO>G((Wo^&kc$_0Y5Pdvy+|jQBQYrObeAu$`kUQYmZySvS+ESq)D%66Ca270kN;E3 zc2hnCxBUUAoF)vOxHL^Ij9xcgb zH;E-_5la$aY{Qbkfj9CPF!UD&o+Tt*Bv%eObOOjYE#)jBbBq3!C*cu3kI!_oc=HiF zU<^TLGVHhLi7*B5KqnAWrZV0{UB#xSv;m(WiA(T~8~u?x>x8{}rR5~v?!X8=!dH5# zu?~S75QwQj*)DJr(p-hiqaKm}8R!FH6bF?B7&Rd+rJbNmyk}2X zX*rI`c3^GlG}L+wGrFvXGg-EadC+J)s`zw_T0M5KQK!(aE;1?>{p=)vuX9I7c5Lyj z9@D_L0=K)q^}8`5Pp?hGzdY&-lf<`H%Teue)N~qkyIGP)URi3g>ZjE8wAj7GWv9^kpY$GIsV0M~ul-Ch3v&w5?|iNxvAw$hVo@eQ7EgGHmuF zBkOV_hsY8*_Q_bElZK=*V^|LeCIhfRA3lrSe$U{vjY1Gqv6(&H=_V)yC_y<4UgJkH`{mU=1o%hEb>Ryp2j zVHeQAg~wURaDAwd)zwRY<0XC>auaik`o|upnI+Bg^TaP-MKap0@W3yhL`o#`vDWxV zYi!dRTO(cg<@mAl@XP36Cw?(&_{D{C{~d90{Bl=-Cw_UZ(jC8ydu%ZL@@<5~ChICC zHrb)wc~HCaal}u?FHc=Q7=Ece{uA)aoQR)~UyfZi*h%lW{(r+S|2}qc{4#scQA>~g zD1J%3{(rzP-v$qcUw(1@{}=cL@OokV(ra!!AHN(JrQsJ^3)C8M$1h)9=Z0U@lwR$$ zn`zDc4nGoP`l+KkCecsR z?g;0<~%6IGkQAa_>4K5J}p-;_%P%_49meGe7ct-GVguG zUkh!=S#LYygAcntNDIIefq=%dZsCqkjc_hzhes6qV_FouHSMvb{C5feUBrJ8#ol~g z6nh0p3yND5dtZ<%irpFg!SV-cH5_&u5B%N?;xK2KDj32NcBYgdj{BsD{pO(cUBsDB zHUm-KfxyiQF}&m;5!_F2)XI?`3*xw>eIgscT%$t-_sli!^BfowM-`BR6%t38h}TL_ zLFVH-I5@q^Z59|tMzc5a*J9S%*J=|mBpotbU~K#OV^?DA9E@Em#@?Ay;Q8I~8@qoT zrc%u-fJsa?=Mz>?I54m~yq3w`ipUd&q+epetrIyssMZ-fU*lSF5x?$S?mW{Ox8=^& zhV2bn?#GEpFdz=#F7p|hMqCi0M+t!1-9|lVNP5p8f=DZ61X!JOWFi`7h)PKCk-^6i zPzVvL*IXyUe8Yphq}MRf9KizU*PjCX(=g@q78gDW3cKu=F#FKq#&xl=Nz#7Buwnjb zwi@i^stU$>ImEdautoFREIZ zYaX>9^+6D}W5WmF$aNW#aspZ6E}(5Vq`j{snkwBQv3rA7OhSlm5G;ixs^afB{yQ3i za34aW{p_~1^j-+TnTAdAfnGB9H2TqNwS)i1YdHbSVS8+MY9YOtZUu@iWEKc>u^HAs z;1AwszQ0rKDF7pK?O`{uXHBEPUzSi_kk8uP@Yi2Le=`2M_ov{movB=TBPmS#gwuJVaPaC=19V>I_Xw6}5$BJ+we*{o2ZPKejE;99%kahI9+jz*GKG#$SB6ds$ zN5@V<{|@|&yYD7?UTv{(2v{3Nold>hA@c@^u1l*z&_w64-H_C1@REYB8`7*%7I0pl zF8GZ0H%wF`e8C6+3XZRjU8q$vU?>8g{_7Jx5PqA{Q_pf5sQKw*X?Tc9WULjJv6#+%T4 zU*pe}t7H_TOLD1Y(Wx%Wpo5RX$_%XHCo ziu(gxr`XAXIO(D1DJ~)Iqn24wI>o2lPI0mG6gL94n>lz?JH@qwoum@52!^C3B9o1B z-bpGs_ax0VLz9K{h_g)99NSG?$Pv%cz<1QjOg1MZ&r{+$=**S4j?zK@|I4w*4LUaM z(P)-N=X#vt7=PiO=Hz=G{W%mq_EXL#4pJN1JNU46js zCl38#i2tBNYjUqLlCzf*WrFPM8aG5QR$Eox62fK?EoRs?AwraH6%;lGDT!#{L*VQB zHM>$1*t$xQ(gJy3CSslw%_Y#7pT$|r7yDvOQGjj*6OC7@B$b!gIWqf_c7TuKmr91OD|={lWL`jvFbsQ+a(v)BOeuw7#XfU~3FyX^x5 z=-URBP=@-PgYkOTQ~u6eKZMWySlg3FsMf_2d+D7vmkzgtHN8QP0*}YUf%ScKDgRx< ze;4sz;BkkRn(X&;m}KKa+;B%sJ6rgQJ(qOmIkX$Fxq!1=A;WbN0 zPk|wH#T2awl*nc#bN~H*x)kL~7#BIyTYy8zgecc9>J#7^9Hm)>WCAth( zwNAs89Fazw#Ca|<-LM(z6w>U%Wv;_oH*EIA|2Q<(e6%y=p~q+6GtN1Y8B&78YCHL% zvLRep@1%zii3DufJhaFOB-0)y(&kxbnObaE_ zK4Xy4=Zn*Vi#j{n-%H(si#+-en32?*PBZMYr6oh%Tu0Bw!{ma4P*cxtSe!XRWr?15 zMGb8k{Qet6CzuGj9sqFF{w5x=6U0Yd--H2?OpZA!X|%PgKOob#R6UB@tn^W@yTJXo ztIqF-P=o4KB_;vM{G@hf>ePo?P0tDpfHjnGBj*76oS;JS^>58WaN^bY|IC){?%STCW?DGH@?TC%**}dqp!O09k3T` z&#t1M0i$w0W>!5&1onpto|+=(%%7-Dty48r^G(1~wgyL8>X&DEuTGwu9p!3qzft2F zRI!Dd`Ubsymc0Va&2Fa>8;hDqTsa3D+uOtA*RlzlMS{u3{VHdwF6V>gOt#gcR@I4R z6oz>$qwO-Os#SkeH&{Q_b*^oacg_3N>l+5^9dPT}`@_!Or^{zffhX*Z96$N&3-#P* zS2%xng(|?!39Ce*Y3arJTWcmhrR@s7WkVmp40Se@fNSh2uzW zryIT#wXtqI1qZjdm5uLe`NkJ*pno2oh$vTs>@u3C*Al~;wZ3lNZAI{Ib4xvQpY$;e z%zX$B4e|QTb|0B~=5Hd-+QvyC6MRH9Q1tKS;5OwB$iVWj z%tZ5N{<$&ad2}3e%Y2deKm@LY-CxEz_*;}-sOL<9_lv$AqV#X3sY@imQ!UL(xv7r- z?J{u@xjgz=1;TK-ZV7uxXS2gGLXL|$jT47`2j0yq7iq6LhndW+tJ`QbLFiby;u^r93zWo~}b}%8ChKI;QQl+tv}k zkv3BY@!bV>PUQ-4A<~aBg69UF&w$p$*Mo-UM2*uiCq`a++qo77-JX#ktLNXFUqE%BLd*rW{M>Tn_X89rj5 z-k_-TL%vAy+G~&To$H#hjPuj6!d zfUImJbIlwXAj%rdp>MOpws{ktCI*Gwo5PXeC)}Y0*)80*oK8{IdE33fbQHD1d+oN( zmIj(ZDOT?+#;v@RT@?>-J_NfBxu|RwOQtB&M8IL=xP01?J^jd1&_@#2o_<2l*~$X8 zP7Sbs;*f=WIJ*EJ@4(HMzk5}${O-1cJbnGD60Y#njY*;^9PHDxjHS@dvlm@6tEQ~P zHNq;LVYjuWs|3S)&MMC!vDz%6M=|4#NL`Fn;am1}(WjiTSFcP}sn-KY5%?n349&vS z{p|QfP;=i8K3;ZPS*n96ovnLMCFiXY2nKYMQzg*i?}v>e;(Iekq&T#CYdb`(s25S< z;6+9sf#dN#ndY#}gIq06l$1klH%2<;W~*SU%(;$rADxGG;w9R7>7YB>=?@bmhw>%^_%e=MkQi%@I_#`_eHQ{_;ivUzw_AQTT8y~weZ15P3C}%O zTVf2GQe_ao{%S_rjIF#60>unc}O`mk_L;_Rxf zA*hF}-$PIA359#~-=R^Rp4v^AEF1DhzG1Z&N@R8U7*;R!L&Mv!`j38MM*rU911F1< zz$xz)^P1QVNwsFd+^Fc(?MmsS)Y!l)z;mm z*vg|MCS@u!h=`0gmgB^Z#ZWiK=V@LM{q~p}=N+&oY)KECzCZ_!NDh~G#6CRHCFtJs z=zRvE7?E*8|7VO4GsE1fOg2@DY>xrZXN)yfDH}|1yR;mY^^p=yO+@DOck(Y1O&!X1 zqkalc5crnxVhunxo1^|?%PjlE_~QvKx03)wv^q zt20OP7&IJH*zWLVr7*sU(6ypAcDUysYmPN+x>FLK2d?zh@NUSKLSNw_J$i;7N0Pab zn{kuiwU6MG7B`Pzm0(n4fDQ_|vXJE;9QszothJ+zZ5#YpYk|pc;2z6TD?n%v#a4%0 z6k1Maq#9{W)nAG}%8gxg#t(3e>gt9562AWyAmMvsfPn8q-!gn3$JDuUaA=F?u4jH>KlND*DZY56I=#u0o4*Cj~EroKs|~6iV&<986}%TgB(NO zmSI)P8C)kx@WpEYTn%Wc2kX2(wg`Q+-yKkQvN!YgKnbXG81#b}Q~|OYxJF~HMCyX* z$LeV52kT@@;qT_05L@yEZOLm^NfR8R=>en}yCdfK>>PK@c4sTHYjC#^vD zg7tNL@VcZDLGDzdro+u%7R_b#HdeZ}0{&<4vbg_z)}9H-w$GNHUQ4tv?Pg+~)}>Yx`$4A_Hm`~1c4dQ6q=Oz7-vMO4A15W^ z08Ll=(AQ#rFO?ZF?#6wv^{^wse+5bnxIq%bl>P*UvZObFT`E(iQs3i^X1a$`d6+{3 zzMVL_b;L)-7N#n!08B{RLmY+OmS#~EsMTZ3(nSaYKA=)l$vFt$>o48Mw5OIOmNCS1 z$J{c{&Pe6mxjK*OF6Mx3C%MrMrYBJH!5rsUw%G|m0^}P^5j*mnltpqwL3}<@rCgkj z!g?0SQAHt|Gc`axb7;@vUA1oTV<_B@t7QRKub``k=q z*R~}!1N>KLDC6I$T#oRBtmknIu$RY-#N+pPG7_tVMj>qEUKaa=JFd~ND$7sCWljg_ z`Z^alKY+xz0M3p*JQRtLn2|@og@cofCn9I%E|OTP*AcW%r?39}37T0<01@NKM(T-9 zN$Nf&g_VU*VCw7k__Lo8>%+)%WKN4zX47r4nMR<{jsV z@4x1_AohhJ%fe$;o$&s_+m+VIW>}p-l9Hn_i5T|wQ%=5z-Wy_AU2}?qth3Z3+>oH1 zdtbYfJMRo#XQ@{4z=ojFCHR6xa@rdz`Uhgx*(LwO^Ea%XFjR6X`!!Bn@ssIz7xC9E z!Pyx1FE}8WfJsAi{H2klhNNE%6;(D8vW1@||6k1UU-~PveMRh9h}Kx93lNR5+MQeR zK8h90HN(;N0R0Pz%;t4Gs!TK%5>LHP*=`yDRF?rS9}%HXwk-&DLW?8nip{;uG~29} zD&Eo>g6?=H;Yf{)di4I;`*uRDZNISdM03C-Ijd9i-VSg)2KZXNdidGpM$uo&- ztQ3CJD<&L;;zuc)7xpg&yzQ3sFpJ{rJk*Bud7KG?^)u)4XQ}lbWWbRvwJ{-|*{R#Y_=x&1d>E1c%bU?{FyALqu=n3SfF(tgl%-`XcVEV0c9Ca|3~==$ z^dk+8&*9wY3ruzpf*cS62N*cQ!s)fVEFMZat~*a8!O3Ybg^0MGXETB^yu|(p1tcz= z#8E4dzb+IQk_b(ADr?6x2^R~SH$wlUfbb`~5D>zinB|EXSBsKHh@%ZG$YjRec5;Za zn8*v^AutzZw6=CI81)$3p_JWMC2F`ax-XlTfn<4A(nol_IagUsq+q^O^gqoU zM6hVM!}I8G1>fn0`WfGAs6RB+P4P0xk^Pp(3CG!_uMelUs^X714>;bhns=1Z{YN&p z6TTr3A%y-t9Pe0USc7aIaU1k2awd5_ob7crR5Tmf#o_+^pPF`aex3TTsPC(vV`B_k zNyM_0wMtuQBj=Jp8Z#bcxSUZzYIs@wg<^5GECz7Xpe9&K{_poLq0+Fvipw;W>m)@rtc^TL zU;VpovCPeKnO973`~;LbZ|#4JQg61pFZky@C@p&)g?*o75XXBfX}#a9WANs6X3l21 z8qq1X;JWQ@Tj1ywH-oqPc#_9L5>c3A7{T}GlrB*Vx+H!fEOKHDGm^Q$#Gih~nD~@( z;m+gGi5oK*Gj~Ci0hH3^#LSgaLIEAuUz#CM$^sL7 zYY3ZEThjD_XZ^jD-KGqQk$qNWc#DL$F;k6gtmqelF*dmu!g?>*Frccaq8~t@Eoo7O zeg2~1*a`d|U}~qwFq9DW4waZD24yf3N8B8$EHHP96F=2BQ%D`HbXe07j!Y64Nga%V zstB2aUP14?DeF{l%t3G6iGU{ok|p zFD>k$UVovpT+F(cuzR!zb9((n*bh;H7)h`1JvJL2M45IG6`Fzj7O)xGBcoBWpf@j-0G`B)KolGP1P77SX- z^Asn-q8GV}@x-W5mk_yXkDGc@>PjvkMP_{G&W8P+&8+VTcNd8BLW=BjGGGgI2&Cb`FOoN4L0d_J#Esv$FWWNQG4ju_US@#O?{ND2~o%Wgh`pN;Yp@mpQ~ zsM{O-*hhjj6V^0vUZZz22Np6;{2wv>b9!U@`8L$;oEvYNCS11}>jtrbPO~v9MyIR= z%uJ(T#mX!!#AkJK!B$}vW0_qrSsV-#yD~KkkZlK4cXHtrIBJ&*pMw^t@1jn{vQexB z=P6etbveTJ;gD6^n4;*P`IeQxR+?T5Yz#tWlaQW%iVi(-Q*erb*`dvx1$>R{JW z+fAc|-8A~`t>Wv~q|?`TO_)Z|AKyd!2VGxC&Nu8{*}&y`>801w`9MJ9Tp={)`-NgG z?2B*MG8FZj?NW38(Kk|a-gib+VGG;(jntgK@KV&>7`5E2{~N#6y&Ix)KR&gWaD6r* zb@(53@=a?Di;dAwq_Z)}5;Y!+0eiIE&0d+jX2CbioVD;qA@2*W=b8^GvrIW0^&mvr z{Up+60E)T+K=2PW*_1q!{^oCl2E7Ox^sBfpGttQ0^eT8Baw=iPsX)(!Yo)~E4W_W= z-$)U+EIu?;%(!gcNdRxi+1osE`JE!2@D<=#D>zREj$wCX!}EH(^(mN!{u%lTqrMR^ z>MRGQ6?ivZGG)^p*1xzJgI;I<6wIRMKRgTAQivT`0eow>-b0)>I3iW-diU0+LcRi>Hq6K%)!0`o~_23vX#5F1lP+{j@i1(qK6#Yu#S znn>T6Y0|&`wSdzTBthz*$3->k8yA?%VCfO1pKMi@9v*uaou*w3s3^D@ec)?mH_GXd z!`$zhuhkMVH~Jj8tk(spN8KQ`W-v&d!;m^%gVaf!7JZysTJ$B3fJ6zklUz{yxJf_r zYX%&+OJ5T%W&=naZ`<$WJ7wO`sr#8*}rRy`*2WtRcU-hZEIUuY=N#Ww@}kYkSx zl$U%ZbZ`7Wm?eU_OTXd`uHz7GH&aNjxr1=gemFQ+aUL191t7RHP4Cbe10bFR3tyDN^L^HJ2bM`bqRK4eb>LFye`Vvy6>DsJYopdb==Wo39d04fR!O2P25_dAbxBy)%JD0ARcWQL4*r>mq z`!Y8JW>hC#W1PYI1DLP{U8^AGAi}YeH?hrb{e64~G~93!47u(WPekzo=R1uIdn`rh zZe#I3>+2=rkO(6#`8y3^2%o?wGy*3Ce~0=UFSf)DE2L8m6g>1MBL#PSfIh0`Rj`)l z9nSO5c40X)L>)tja4cNOKXwi#=LGS9t-*Kg@O3&s zzR=;Ut7p4$z>&F>1cE1F z==UIon&#K>daC+v&wAU@JHDj7jj>-AlEKsNbEIPEoRarwD07oNS+T-)#r;@$8pOS%{vP z;!jA*VwzV2<|3;5R}9&mTsV3C3|3D?>pam)rxUGAJmZdsj~dqIi{xc0R^T!V!&ua@ zciBof)KBE*```;-P{&*08`%!eP4JT~ZuUZ!7<@`JYKX}vvW%=|h6?1;d37@&WpCxG4@-$xEZ!86r879^y#$af3LL%m7KaG$$m&dsqIIxfAFuLxy~&S%8y=2@CL|H0DC1 z`2TXq>p{_1q%qT#7ClyLJYDB68e_COQ__4zUFZcQ-y{3gTvPD%X}mNQ?5RH0q;PBi zu@$AL$6Y8W1ThZTvXx8RL%F$4NFBMr8+1rvjH_|65nIv*Vp-EIknrXGQ2;9 z);345wQ6c$`zQR~p1?M4v=S<9Gv}kx!dfn{$F{=MR@z6R9IZmnoU_cI7JGh&K#mOL z-H~mq2p}Ov6X4bfRo*yWxk*kH1Fe-~;hzRQH(!1tv1T_NYF^e!0(C-};l?hZQ;9#_ zR0~ItS(sB{GXVf!1}CUPu64Y@qq8oIsyt8u}zg2_Uxr4Mv}x1ESQ~ z^B=Rx7};sUR(;HxEuQaT7K+a?=WG{z^{kKi5KVKT(SBge10)%x>3>rL32kLsSac0C z*-WU_j1Gih@j}FJ--YI2uBn+Q{$x{*5Y=>hC4~oW1&0N9|5JABWX|IcEhRWLOEV%a znn8O72ae330&||S$BZDXG-6)FogZWOH(MfZ{@B-p5HL2)y6U^pp5g$x+Qy z;TlI|_bu}&V*7+)F=nI@erU#QOsA4_$Run|ueIAOsco9SQf}&TA$3_TXHXU$4Tp$3 zL$@+I5X+wZ5yOL1nmNl{$*>4duEeVIB-X@b|EMfb@z~Fm1$J$7*V?zY4QhbA3kJwB zkI)(Yu3iEa^O|8g7q9u*M&`!*2(CUj%WxHS75es$kA83?YfYnnStS@n!#0jRfLeSN z?JIGlf!hSz8SxGWiFk0EtIP=RJmtYg_Sq8(;h}qu3z{@DYA$FI-&e98T)LtOE28j3 z%ONNulywe=X-`Q1JRWM2wA5@Un}M`u5EDE@D6TR@lzz;O@%xn<=LI^pLOHh6qCa^Z z?ch{6A<7KdkwV5hYFIVg<#t9`>^JlaIw@IDv|EW}j0zQMbNEsSW4ATY3_kaYP^1mW zMY(eJJhQ^{jGz*^r{d{GY+))9m+@RH2s@mRyQc&s#-ZuVxwF{9J;jU}ZPrv3q2J&k zyG8a~f=?S)fTad96GvRPbui$3;yO>@jOY50?!ejQ2Aph9dP1VeAjj>`oC}pfPN*Dr z9#oDBbpqv;|8NJ&|B#5IesxBxPZZs?g@FZTvOMB`6Pc};Y&>j_T}f*hyV+94sb#ja z_*Oz}`2k372eE?)n6T{U;B|XKTKWN2qd|fYw&HP+;h;k~13|wNDTmPDsNX(i7Q%{w z85&GcUu|K$(hMTqc0L0hH9_Ykz1j)y%zgGA4-T!x$)Ww}q$nFwfRZ4WwX%Q3m`_~( z6+UzehwIJ_tWZ;l?V8`DPB`tc2^V1K9wvrP`NN=ussF=s3DdYi2$ROrzwx0vLpKA8 zzctZ9-SRLqbc(08;N3bgJ;U0K)KVw5i*H!B-u)XmxSSA4Tyo&j?x9}N(j9U0dLIta z%u>p2nL`92DkKK~miP=f8?ZxfVo>mz51^)5F%K~l`fomPnlhMDowimJ;yBIX5lS*8 zKh2H@mJfWnO4D3Z1p__K2=Uch()62-`f~=V(@LfZJx-&a_^h%KUMa$1sTZ}KrXekh zxd>=#A%;)bk{0m*eu>61(B7DlrgCL233tM`h4Y}p08W(fibANHvtbJB(Imn2Y!(mb z^rze4Y~avz3x%vlXd<|@)N}18YMd7FsKs0&jPq?^xt{%CutWQwYdsI`pZm`}w3VK0 zpTd2&8M5MZ1Uko;N3?M z?(Jhbg;1(og)=;kHCDn0%uZwV2lHb>N1XSeDWu^ z{oSAo{jV5@7yj-h=+o%IH2SCKG7i~92-P5wNHy?{zr)SK4r`Xe?iPtb`qh6I)+;OX zN$|O#gHQ>>Rx7(&*b4V>2rW2tC+slRLS+(Q2I}lbICL;b-#s)aA`JZd|H7e9X#*;} zsZFB7>F1-u5)3Q3iieO=6*j8E)pvnm!qayG7;FgWHXoAof+!q;X<**8!i;6 zlXUn6FRyR;XX}pPI=if&%kKES0jG&2-tJYBxRBDb{&6eq7+}EznGO@p!l_S1nIyLy z1UZ<9?t)$%OLU$&2$mbx#p8$Fbmwg*n-6cnxcUaze z^?IR82)?;cN2?teSjwDj;BN!;tSbl(#hbm?+v46u;UsIdo}f8&1m>=koBEzdvYbHU zDw4w1+2}^Icq1sd;*h^roHx=TJne^!cfkh_F$WtP1l4do;kE(-+Y(rbm4<~##uo99 zLn6^BQWQX~*aSH^OD4y0;AAfH6Am2oR{e8+O5yy7{#V&UK4RV>uKbc7ao-`XHmxWP z$nZu#8)(#WF`$D(~WQy!LLq&BR+&Q zU&lmv>UQHPd+e5!I>>pXbNxW!-`8##?s%vhuvnPEaM0JxWrB_2AqFr@+k;5Jdr1hFY|jRhjP zo^^q#N114cGrtn#~uKzv_#MV`P*)!<=TIxNU5n++p~-6lk}&Dl~hQR39ANC5u`vZAi-84 zd56A+{gP?3zk9_;WaCxi4{`RL?#OyhlvixdGOYc@cqGrH-*JgxW4SDOUa4d*JSfu$ zu~o9E7`ZS_^(=c-m+ck}mOqHr(d-u5ITc3(*Sv>QZziCZz^W?!Ag6?CFdo$4(4t4} zvVVq-6DC$GO4coBtjBCb9HD=Q{yB-!X0NNm^_hbLqs58xVapqS>(qzN*LS_l+(~fU zLG4ug5_VO05oh{_NPq(D^Xw(Wldnl}^5jaJ*~$q|b|U}w27%1noXhTuVCOPmKeuXR zm~camn|-RyRE4p>D(3SY@z-LUp|Z5#?ONkat+7&Tyi%nXP9trmgQzYkPkpKlN56!v zk`2Z}ZMlpx`N?&~{z674$*HMGbfpiGed={uqfL8Mtu+d@Mn)0uVg{!qt}aVaalSXa z#4MNots-`JD?*kq0^%0s#(4O5L>3y>ekig$XSwHN%2X0rle14Ixmkb|W(eBNb1VBJ z6NnLt3`6heHPZ}3%po3W1}BG(9#O5PBO%> z$k5;#7AeQhANKvi3lF=#aL{4Lx`yosgWrWe-Q39v6t|>hSimY{E-Z;0buhz3UoU%e z8y}c~=HQPfyZPsbIQK2hLCaK^fx!()YYqSVr@mEi;ZJ?JV9-xpYWS}|)pN|tU-A>5 zhR@Q*+|6k<^eM*#{w}2({ceMnU*b##2z8M2Q?tdVa$dRxrVJ6vf%S;(PRU^-UUi{G zBqwKlhS{|d^_YbmA*caSn1VuPtt3XA20lbk)=3T{P~!_&)as5r&DmhvkTmo}AY*_M zl-8ArLkas44%RRs>X9GNC~_6fW?}jfE~r{#JOVoe&gOT7Ixd3B;27k%^(jwOc3pu$ zWz!`pQ=f+fy@42ksSDZeb<2LY=6ufnHW`(Iq3xiK4C^nw3W#nv{dMwx ztUgmuxcr2eof3IG!a5ie1()V){M2uJ1^4u%cIVY?BZMQ&vG9j^<1ydL2|`7FL6Ra{%08T8F@Hah?mEU9Q{_V<7Zv4P*od-KF6_TY|HGM&gIn}4;;M2!cW!d4_e#Ge*1fvKE;&N%^8 z`8a<9m;A^CI`&>*0+aubCh(WN7oWf*7n;By#{J(+pfUI26F8WAfeGxp>gP@XXF9M{ z4=yL_k>^FV#%{M+@fchTQr6JnjJ9@kd{DV1-X;=BCEawDsE1;6f*#jf%EF&|F#%*U zpb6xIc%2gI3}Sbt)H1(iD-^X7QD?+K$U+eb%hOXzSRV!Hf&>fZuTZDQL1arLwgonj z+=3zLohv;sfy|AGMk^toUFJhzzYVJkQP8q{VG|wZvxGde3Crw0E8N=!L;rO)aFDu( z2+qPR=_~jXSobS0y(sIx1oZ8W$2{rXt+|5UEz#)R+ICO>t*D^GOe+dO7KX0}t;n?m z=k@BmNHFSPZ%TwaB($dLkFDdUd-N6SM0%%wq<4~Noe(_ShYqp6i17PPL7c+UpJDu7 z&-j&K;n7~5hTp^V*#f`U7*_qmU*Puw)=OtQ@q4l1)xV*qOo`tkaAHl(2nZQ8tGw87b84aqoQ0c{B)QoH&z(|YCBEw8v0OiAKhm-h^r7$qsy$>e(VfJ3 z{+eDy z82yZmObX#Yr!W;hg~$1f6*OTA^}tGyUh9-0X*P|mj5p^yu^8vgMFOr09vi#q8e7mt zZSei}3l6^B{!<43&zPS-c+7OU^v@qWyHJ0j!G}NP zhr#plSQQ|pu`faiHQrcgNa}Jgc9+ZWM6kw$tXi0vK!S(`Z^Y$stcMq|C1;T0h9{)?x=eCX<>gB?i^g|rd1?c-qH;Jwe#;UYjLMn;`soJ z$}BXimCc^dJKaQh5iHEcnHSEl zSAWy3+0lcSf6Kb-d#tRx4t^*D`>`c0cu5B9u8Uv@TX!hVTBncm-cMUQ-h3tf>?J<{ za2v59bpRtfJPv{*@Y~p23y9$Ff-t`V0t^#@!Bi*;SZ6(Ae#9O4qLHSE`+s2JB0XXY8ZnQX83fsbvWTd9 z5oFXNPAN!TK(CI$iedX1F`82WfXw@Ws^&cIBUD$CStC+9?s7im$5=TG1qOV^=mdYn zgIb8}B&1t{Z|fvV6EhY`*TF*Cni=Yceu{;8!C6ccCWeG9Bmv}^meCs|YD@dVR^u5~h;JpN(H&XMEKRw& z$*{I#6f4Bf$Wk;=h#x1kafVKfNOWFqSUoV3=fBXVY)9cNw)gJVbl(8bkUxIM68@e7 zJ|u*Cs--f$=;A2xu`Mh5QW6lAF+_%sZV}7?sV9Yrh z#vG=~ejW~;f`putIFQYcEpojhhKI`E9ek^QKx7|bljszjvqejok%oPvQN+s{+nEdO z4H_QGk!aLS3gu3q9J61%|+LU^mN*~ypd|Fj!A zu*ht~s$U0*kjBN|F-OifUwu4)6%|>`kVjAXPI~zMT5DXXH3GH9@V$Ec0s#i;&4$%u zN3gyniy3j$6}trtEHmOHW$hfvh&r3CF69fGA+CW9Z?Pv>cPmI*V0Ru*)?=fht`51q)uH1M!nKeOmhO{k4$7(X*4k3N7%)28x_#u=dBZ zBhc(nKgadIqW#6ov=+11HPK7!bfFqhIQH+>c8xony{^--o!HEDaZx{eT?hTZQF@i^ zL+`aj1O=B5Kjzy3H9<11 zCw-NZhhO}yWXlt@#_zSp6s_?~t#O&w(0_YD9=_<(pUuPnE&YPb@U)|0fMT>VFu#4Se*WM-Sr_Et;~x1b zJbb<3{|`JotSqy@!~fRcs=CN(BtkXJUAAn{g%W<;%{rmOhSlmNKf=d9_4R+v#~aq) z2{v@i?cGj$LHB(9k^~O9wz(Gwva1nQZv3zIT$-MZ*=k{> zdpw|1Nms)B5`aRzs?wETTpI1?N~Z(h1NGJ8oJ1+2;327fA>y;`A;DLhRU$eQ=9fsm zx=HmFbsD3_f5}XB-`C7kM-2a3)MJkt`86}uht6fHCz`KyGS%&bIgepqi`l2J^ee$s zqvYI^K`@&uoD)@MJrqoJ)V+8sX6i!lIRq%N=@u}8sU`4c=wOdUK;mgok5BrMXJ|!u zfil(B=1tQNKC=j38WW^jD*c&Pq)apgckFWN>^G-J?cl4aaK2!@C3iUzyxfXN8~VLl z_KR|#3cIpMt{N${M~r3$j9FbnQUtZ<;Iq4A;{?wUk#q>uf_qJLy8MWG!RWfI0-FQe7~LYadk{=;rTPY~ z*1WlbIP4dhJp_wA-gv~xV)ud@KE^!!`7CxXaK&M(hAU!FC*8$j_xcMQAX1<)UyqXN zLm%?vFO@az;A-L;y+p_X%wDHq1}iOW#pw9iJoZsA(9F7*p37s;@E2I&w3Ej!hbRP0 zbwsANvLTwW4bWJ_sAI*1W3ZhPcF8g%nf-+-vR$iObB6xi94dPo3oZN%Qw>*x?GEp> z+bk(<%6QWip}<&N(pO25EOv^M#Xdz?r{A#lR_5J|oo+041+m!8bcQn79$RBr-9C&@ z@#;2{w6= z#wJ%+aBZUk8uO53?aS4wqrw3C!wxnKXM?|kVc2q*`MU<=fL4HFYXzg6;D`qZ6~0lg zl_TQ05;Hq*hXCmUdxC1oRuGqxpr#&H7XYpv&}QUkj1L=kNFT9)9gGJ{&c%Z>Sh)~=^h?H@&jlf; z1C$I+aMnLXL^mxu=S%ihvos5YNf4L?ZzjX)j!G;#ammsWe%qJQ5>8aJ2_|wN#Qn$^ zmn%%+w9+XkE#__xuU{~jIlS=;&S{n&G5JfEIh=dqezo2}&NN*EXWSSun(-e;r6B$Z z;?9alqPyWxY-}|*2{MByLJ)1jfS2Oy5;mvo=a7=4bwGY2Vec9VT0hc=dZPLeu{;qK zU&s^~eOjaD3r5n2k{-dBV?}r$qZ47L8fz@o@KC=YX@j2|26Wm**)G)}3y=~9M2=J^ zA_B5t3mSrWhr>5ETI>nR+ENLi7Rjo-!jw<4KlidFs}D90}W0! zwhK!e^--q;n4ZAslTD0pGl1m!5#qt|IL&O}p+53OmJmXNt(c^h6L*SoavJhWSZCRf zJ2~jbDkq2nE_BHOzm;yX!IYtHss^5*lVQta=Yw29k-&eExPbXPEgQh|mA(QEwz<@S z0uNHF0m=pi1ZFFijrccwRFyK>ge25EEnOnF;CQ%gJc{C!Gz?=xoOTi>yA5kQVOQEk zC%2rv1Iz8!#T-6*l5rubNA?<4U**eun?g{G?3;uN3tg!2^X-fZ57TklQy@G^e~Plf zu>NhR6V_~MM%F@)`qcyxmD@SkuT+Y!Th13>?WH($;m6^opzb{m^u|SPac&8!pWiOf zTM6iYvocb+usG2hD+U+$x_Fod=3#C$3Lb_C<%s(n^hfY8*KF6wKcT&d#?J%~QzD=Z zXbM!YS^*U9f8^%KdArp31KXtg3M$FTMm3-9)%;rcT$mBU~+I!U}PY!;+ ztZwl8GcR!e%UV%GPxYvw*P#A_?sJGEw9sn&3GtSd`R!FTqQvH7X)Yp{1y3STs1pGz z-H|PZ_0fQ!)!!bXkG`qdtpg`>uRg+sEyoIrxz%YbSJd1}u^c&0*^OtuPrczn58gg5 zcH+#Z7vG5ot1ziBOe((W0)6EiyTF6UW9Js)v;(E8Z&$dl&x>FJwl9QI5!J0rAV)RQ zc_fH@97g=~)T2tx!ebneUd{{+pVYaZGA+vkq0h(6Q4}p-SYF^|x#4UBO}f89+A|1Y zv4%5SXg7hH)G-ZWJu{{69IH(0)l6nDCYqW1JxE95|26j};89iQ|M<*gh73!*gC;d9 zsj&<;K|rXWrjnXSs5crEHOdT*6b<4MEhq^)fjCKEj03dRrDEM{v8}EBYAv|5Gf9SQ zELjw@ASQ%mE@4SnvO?zfe%^EM%mh%oJkS66^E_eBJ?GrByytyC?>Xnb=RGm2?=!QJ zML-$OY3gEik2X9L99VpOloZ<;kC6ZTThGHcoBwe?YNQm ziCOPAitcoHOL#JlS-F^TsI?tYcANw`M>|gOED&(YS2@0cvqqoJ`I>OAmI1k*NuJv8*y#8Xlb(&L6vUA z`4gH_;s{E*>-4?%$gX-h|Hu{tOtZrdo@_So*%!Cz)z63VDH)6GqUjBxcv|t~jk4>Q zzy7U(!1ThdyeBf;?^x&Rb-L-3upi-SBCwZT$K`H^H8#~*uJ>O)7581z%dSQlTcij5 zwu^A`X3CrIN9tUS8LoXeQu7Wih_npQ6{komqpV{{d<1nR4dlKBGxE)bFf;Ppi{<<> zv_8y)-0#1)I}q}hnvqqR?yAY)J~;Qcqy}<(?v-5!K!JPGihrEu`cX#K59F-K8TzX9 z#F80>b<+Aj7Jgvd3W0$HKuF4EoU3$4MK>solanp1}hI^Eh zq4(lEOnO9Gy;;5{ZMS*pJlU02YbGi>59@OeWw@&3a<6!)PA;s=dsvQ0`^t<&xzMxp za*9fKrPWw+X3!g9Da#JZCaPE;Odl`1D%wl6{;7$m2`@+mG&?7K>sJ;9cz-C}xzwUd zb!S-hQsF{M`UIAy?IVKo5uCbl-=a@AJ)$Q)u~had5ps8<6I6LDVn$NC^vqJ^ zDy&TX6m{n$r5C4psIk5JbXST+D!3f#9Vov>(MnjkG zni(&haz347wP!r zbc-J8cTxH51NSH!<;~uG`$vJ0Ps- z?uR>4A5g~L9qvE*w&Jwi77{CIeZrYQ;1d>}#1gsO1IbKxWj2_V%g=<(*VV$gC=xoI zno}9C-5=VsL|G6B?T==-T2eoafHn6W?9Ws#Y@Y6lPi3*&g8!uTw*mtQLflUol9ce!2WsRsf}8=b~C}iwN>V>44w|F+SZv zdP6tq+FuUx(-!bX`?}CGz)i^wj;Bz}r=Xa3%g!Tax%gHyv1`sR(u*^#6spTfmXm5^ z*XdLeVpl%~{$S2*|KDF32(aJDm3la!qy_|Bj~CU4~n#DK=X@( z_zc&fVA82q2Dm@|`zcW9NzXbhtq0x}-{e}Qn~^obDrZHc>pMy6W)xOR>py42jy^3! zpn{a7+}$vpw52<`V~g!ZKtPqk8uGO~uJXBn+wE&ADawCGOvsAy^t-j~((RDWlC zcIv;QJtM>0ljc&yBt~|9<6qs4lW)_^vTM3IYz%^YB8r@mSaF*>V@M!f-$7b3Z$^4z z#U1W6pH4=r&TCSI8MWqI%dduIS^ae=@u$=pugbT?JJ%4t&`gZD0a`*wS^TflY?B7mdVU9~++gR@-5C?L z&fThYj#=Q_IyaVI4a*YVxiRP*x-|-PJf~m3)Y{4Ym>b@YAE6(2Xz4;uZ9%z9L#K{m z(E45)2q-@%0Txl{=OIL0g1j3cpCo$s-a|qvyS@w)QK?`H=vRCnQKO#(RVvuX08`_t zk_x`0px^RRP?S!8yC^k%zbIi|S4_k?hi~sck8gi?9^Yb=s8>NbAMuiqbJ0^*mB0VR zfq>loz`6VyR_G+b@5(ahC;v?^s>t(GgNi)q7e*cx-@Z*=ule`nmGMLVK6(94{74L! zSI)E*|79drX1I+P$?lAc0$|m9|1CMZ;k)GUmXI7$=(kMg3(DgKL1K+6k9n;@9-ebs zcc8uQ-)#4Hir5X`C1U?}yM^#~H=Hm3gWLUXy4LQHoc;PYBvcWDaYe<=TThTi^+Shl z9E3O5Qha-Hn7ktLHk7kSD<{JZHOcF|r^Px?b-0l3`ZD$Idq`g6!xp;JD`>F=@sn?yi#@^YMD_Okk$|3c9rWVRf?$|>pf~yy7bpff&+c6>>5#y8E8gQPwoMl6VWTM zkaCamaT{Hosh?oBM6!B^d+L=Lu0Gj&m{xgB&V97XyCovs*<+d^-BOa_zAu0^bW+Wd zCA?lO$r&R%`}7&^nZ$ZhPAomp3o{M3xiYRa=MJS{1cH`yT1QidWqr*IS4G*rRrcvy zsMF=?UcX_IN5w4q*$IM&n7eP=R~s%~=|FO~`<1FuRl+$nl`)hE_2 zBg!+9w&f*Lq(OFNTx!PCwe%E$Ckvjgq9-GsV)1kduQ})`o`{ggp@j6LF3F7pn(3|+ zlRPsLPjGuuy0+Tret7Cp> z{XulUvpA#7oDSxQ$gDQch{zxz#DYxvYb}u=gBCRn@-=DQJ?Yp2fLn~7*!+DEQd*## zrmV;GXjI`+UPyFd(k!iC#{(R|BL`0uyJ z*nM78EbSZRYe;$q$KM-ENOIadosd2);-+-xDvM4kc$IbIH1l+zhV)m0jdWl}@$`x? zmjGqR3H>1$e;=yHbuN^(ySCb>sk4EIZY2Fx>2CA^+vvwqtVAX~~_yY~4xPFg;NT@%3f0t3&qsiLX24+8&xB zmjWR@=~PM54pPo}353a$#Jr(6qZBK3J!JsX@<*_P8ubh*kg>~ zj^CF0|A6Z=cvQQvecFw^+le&X{?TrHe9N&WAo_TD0q4R$fA2;%Pc?Pk6rp4PM!xtMi*EPsU9vt>)a12*0ec*gCc#!!dt6B`JqV ziv2@Uy0!H(QTLxiFx`VJY*QFgz|UA%x}C$m{>n2CF;~yBp~L*O*8iwA=5a!fWurS3|`5wcLAs|wMEiq8CI?8_C(SRVNMYY~Op5ew_<^CgT zyqV+C~7+4-w8?CBw_<-yx_pe~NEU;p{=(Q&<@Y=dg@fwS-T4lNa7Prb4@yr$p%dNRT z!YI*!7@_)=Eqb~9I`;WG3BmsMKRFf7(di@&_Ro<>LNVi~+e;goc z#1EoI!6|0%AP-r86#Vu-066%~bApF1&^jX|dh*onzyY)r?u~GO@HJtYY_p|`?J?TiA zIs$n8r*7)zVPSY62#O_OBYqNt`)8|wna>1&xwc`LQvW#uFJ`}njwW0GI81!pf~uvu z7E)bTApL%lcUP0jGwav#7)A}e9jR0INl!XVk6s_a@Ae5u6ekm~gQ@OaiqiZexg>_y zfIp2&lCieNdjQLmCxW;-fU2e)=V7IiQc0y!HBoPRjk??ocnOdO;bE91yz+m10yC!n zmUdfyie<@Ut4cS&?RQL)k?#!?p9lRf6%B-F@NAKwfq`g1N;o=-iU{}r$>RiFDJ zv|v2F{`5wnHM{&vf!D>VDi8S63kTT079`-D52M2de;D0$ql(&L_eo~n%QDWo)2Mnx z6o3tWU#J)6Jp#OC^&T!WP}XzqH)At9EA+o|h#Ad6Xe#9Ykgv_bzVGd(#Wcn6FFT~7 zha8+N3{h0fiRA=nhW+mZ#t4s~pVY5{&kj{deB*{{j6kKlttR?;>^U?>%rH1&a<1qCXK0L$Ky`8iKV| z>VQ1XPtOT+E_D2^zVpcb+JW=PUVT_2yR`nV+U2Vt&^#j0h;RaZ|1d~}1!D3W9Ey#^ z9KCOXIrjP=JUmD%ps3(E>0mb|*VtgR{zg5wzsBWVnqC;FCOI>s9xNNWkofk+N$9 ztwKHKj3iI4lHvZmrXO46t(a&Dh|Gt8WpTW(an^oHOYALcZ65p1*#>w3boCU%`~2@c z^dPMtLEP(}MeEohQqjv1)ZE_TQqhJ8MC#MrsRPuyG}5cZzxfg`dyg5M1GM6Op@kmY zvkYjvnnaPf#5>)c8Ho4wEr12Ujcft1y0C*U_g=t805{$;k>e~_kr&kPN$>@?q~JRt z5@&MaL{9urO`Pi-FmmETPMpb!FN#Dq0&otPkS^>1kYyod$ytKrH#m6+Cx4(NZ$z>U z$sSIQ;A-RQ<&79n!CD$PNawMxC{cjW>{kf-SFcu}weP>dWYTQppNCodu zl6&ezY!76ScKA#kgU?Rm*Zs6HX{WSd&3ET9C3Q;AIlep35ahX0u0wKG<)p5}uds>FUR5=6vFJ!*s-RvQUc9pT6E%9^Z;_?|WF}Ca~x&j+DFa zH>Y-go$5RgAs0V@?Wa*JgJ~|mR5(>EI3TR&Z9-}HI)0AwsKVBDkvbND!#GM>YMb)G zI9|;B9qIo11Dweb)~e(FIn*lU;cz?})OE?N2f)OJ*%JU0W^OP632Ma6nKTdm9I{V> z$G7+zKEj1J4liy!TSWU_9VXh>$BUuAL-PH5#PKVpMH;Wn{mM5i$lOGp&%{#G zl@?wz=-f{Q+)MT8?pc-@?zHY$8e4T=syL^wM|PIbBH`(tjHHs>V@eXre_|r7%r~BU zUp3Z-rgPVZCLm2pK|rj~`EYd3Lag26d4_Eii#n(|O_BN6_o8{v zVB_NKC+45U0lienU*O>0SzU@82ks9gLMX-RK9Z(n)#b2It1uReN6|a?GPR7>poaTw zZ&1l-8ZNy>TQEUQPJ200x8yOc2daMA%T*ut|L`P6Mr)5O+Our6y1bTM`&jeYOy@b2 zmJ0tSG#|(q{K}HX`mFbrVY(p2c)`K7`tNEB={I$*{Te>3tQf2h&uLA2UTC*rmg#Jw zx;~Fp?EL-nJZgSADF2R7{zRzB2PQyG>i%1PkO~TPVn2r$fMSC5>R_H&-lOq^FEl29 zr|GowEb+u-u)yANPP03?EcL;d~(R&i=Coi1F0}HFmu(v!z3@C$0WobjW6@$nWi{` zFOphO{zu{UHlcm_RIlO;h#l+m8c@G7oI(eF9HbCT3BuC~%Dy7^?*m zwLpRv_%RA@w}0WQw;lA=JNEER^wVs(O?rIw>PQ{mir$wu<W>auO{2R5M*r)=5()@rPIdi6mMu61m`o|(H)R&1Dh%Ea1MYm_;ZJr=#z;@9@EVf8XCWo%P`W_P(uL=W*Y4I2pxu|8Pr7 zwXg*~^(*owc7S#kgsJg)GY5RjCVV3m@ht39cDZ&I{pl0_aWO!>2}hXvxLKltDO~cm zP3%C8sJy?dq;;#f^Wj6=5#NW7uZf$!g!dsLKQ*e&-hc}T6mC?z?ErTHXADtuzip4N zGP8r?kMhN#YyZgdgWG}mP&B+5RpQ=YzG|+2WF(b~dF!2KUiWEKLZg#+StH;R_^fj1 zY|y^0UL23^2|6I^Q^p3u&rb`U`br~kt@6S^_Ny*qum;)gh4|zA$z&l7xEv2C6 zxFIHH4<2xWnufgz#O)U+PkH!cNBhK7u_Iu(zMO;Ax02NszkP zM*tNx01pKR!9d3ZbKUaWO?z<={3%qq?^ogg8J|Ob1Z};-c3e2Ghf{o%%Ui#PJjxqHAzJiBgFardf%Ve z8CN6jXGaJh`plb zQW8$k8T0Fw1a{FrW#aNM#=yzKzu=qfeKaa9WhLHCRlY2n z*N5|;R8|GW;@D!Nuig%(Ac=(<$g(xCw=TG|AQ3BrKpqr#DNn) z!@aTCrjjT(u604 zW$x}V#T*!fxA$P{89VNS4Lxb0I?03k-0ecE?AE zJFwTjBQ8E0zyD))+z}T&fp5q5FTMkyD)UE`O2SqzV=NU+;Yz8f5DV<3r+A~zX!Z4s zjF5||?l6;v^};GT{{G;8;+WWXjMT(K#4DR<0onTL_F%bGrvH;(E^V^aS2@eHxyXKtl0;<4*6g14Xdwxy(pJ@nGzf7rN8YYXPRpDd1sl5)MAu5SeS1a6*@18+r#*J zF_olgn~b{pK5tL-_y9p@ zVu!QGw0aWGY`u%k@H%IYKIbz07;-MgPejge{21LME|#X(I{SVktv8GBW+kPCp4@J} zB$oom(60B;q}(@2uF~{;bw7YQ+XjWnA9wMrTjI^xTv5Q0U2d%6IZE+_zHeJBb$) z_K^g7%Jy|`+Q-W}+*J|MfJ{_ojgI{D?Ksrk}#uqSc$;eNszX+4&&s#zZK9n5sw?KMdyxu=yC zl)~rFCUq&-QkW}ge>)_s(v`Z9dG;CDLiUM|W!S(MhI3zO9 z0M6_DfnfNCI-`#xS4#yGCl4Fj! znsOUp?+}Y!%KPUH1lnUm``3sEWe)jM=LtKAK|7;TVW<9_J<&n-l1^_dkEJ?{^)2$t z%1^@95BQ9*{vAFbywVy=#l5W84)IC6Pl|J!&Z%X(+#yM&F7K-2?rHj@3h6f<>0?h~ ziOOReUOkIX6eFb#kI~y;G9JDwP;Ax?;@_^d*uo!CNq={y6&u&3>T9MG-fidw)m*1j zoktB)!4aLBUCTFu^3_f+tdus?2J=No1!d>vi>7>a(+lgQ4etf>8HGvqpnRh!U;XsL zW@$ryFrO)B=>_wweo&+j$+2CquGOg`Ju>IU3$}UnRnB8(%93-LoV8O+j)-2zU$hJB z(xf~5BupMvn0Sb$6O6ocM)OBbET1wm#PZ4QB9Vh{(apKefO7ze8M$nMXqGua#ML4QsCV7sA-JA~dHP)`-DZq3Jof0Rxaw8cfvm6TJt5wn7~ zqVXjU^htO1fJAH#cJDpxFkaLHj)a+OnYW6~D8jEQoJiz`Gmj!UnnN7XyK` zn+Pa#oiGsGs27eZjRw_8pmbl6V{mq&i!1i=*m8|=|`#t zcWr99C@uG&8Jc0W=C;_YWn~r#_(zsQBhXmD0xf}Z7PAMCE^eCt`6~5R$H5l6zZ7V@ zbg;#42=8;|WB{=>K5#Xi#|FXC7WU9reKD~9etYGGJ|%0Y+XmFTmgC>VaXe~b_gUA6xiAsiEL ze+wbjJuf4~N6Xjydo35dUzp{zg32nsbdaQO8N$}@!j6`hNHbb@)p-3^GAq#d=xba} zwLPh>a%xz#|BypHJ3!=jHBECHZ^k(Qzh^F!I1};kH5m8O(~-P7s1sXTw6yvCdl5Qb zA$Y_Z;YwZpPMxmhX4%!5c*3<;_O`~?_Q^vlU_eVt7W%K>5%uWs2wL}dz87~V%0u9v zMer`z`d-wGr};wjxbc@@S!OS#iH#q()+rR&!6u>fKvNuhCz`zLZcuU&@TJ4vo;wmnKv#zJvac`9a|@o#fnTz{QIb zVs7Lo163oD4AZ0m&M%HoA{Au1juKBu_RpyZ&_H?PBoy?L zm&$CC*8W=01;jmT=9-(NqNSq9xOmDY^8Axxq)gLGB($GAZ%zO8d?|06ci>XWG^PLQ z2%YoTN>@ksVd{s+ZTyLM;7Za0?ZgY-9%EvMoYg`3qEEON>ZyG-a#j~Tj-yAhCCtxu zKh?9F;;kp>p@sg8B@(TRsU5O3u0(dW^hoQ58bvoKYAkibLG()a`h;X_qIdU7&Ywnz z+@(0*y6#j&Smw=oWS0tWKo-gNCH;LteDi4MoQKez={|bx$G!$P& zzg`+IPuO^&$c0Xx^tC>NoR%?{QA;T&<+g1{N4>6++QU>-^ln#4u!-|1bEtXL`X+j% zNh-KsjB<=sR9jDl#KZ@~j+jwl@v&j?(V=)EnZ1OY2}>9$p&D$r@)@lg=z`6ZBc8n= zHtUj%-543d(@Ze>7he-u#3X>L8iI zB?}}IBxiu?+a^*EI}hsRp(l{1iSwN559_Zb#n-iWk6htjH)v@?Us zTPV^%fS4zOVMolPVe#{VVS6jm9HF$T!R@nG5UrKv{p!hE>3AK+;Lks0eNjVnts;F9 zb;`i-)yVoH>R=u;#2TS5qRdpb^h^mqB~(EI4vN|UI4Zk2OiimpQu?t05JN1;{N>MM z{I8YPu2<1xzNoEMDk=~xi%7iE)&bu8Qu%H0S7~SD-5N zRo>n!y?w^SDme?S8&ToD4Jx8S&Z>lpphttVB!W$CD^(q_6FQ3CA9{7HA8J_!(MeYcsWDa&BWk&Ix1QTNXg6@SRFEV_ILf#x z1Xj9LArL#WG8EslG8BI*6u&*F#u#ty;8)W}D}z{U`XCr~nEo6Vzd0=aov`=>oyv_W ze#i2&!+Vats3cCS27DW-N#=^sn9K}|&j^c`!{WCO7<9_*gYbX%VEpI0z6itrn3w4tnzJ!0 zomnQR5u#GK$k-b+3boNgn^f?%VA;6eFXtxg0kgju3_Id}7Z(59u=p23@l8rsn7sw$ zR>glB9b26uoeAN;SEL?xwi5nVAx|CWi5-O3QJ!TQ8rq^h3x*w0Tf*W$3Wj+&qy8L9 zYg8T{T;9TEAr1D#vXBOQG%S8zFl=u_nj@6fsKkVqXKx@{Yv7{1)*o(7g7rh5M@r}c zj-DjCjwj|!b$Q?pV0Ch{lzy}H%x#Rv-;k0p9bW;&wZwcwzsb8N?MsoIXIMP!^=U5e zNgC@6cT^L##H+-S()r{fO1!G%M5^Q<0840@Fa2Q52*EoZcBVI9iuUMBq=bt36eA_X z1eQYy*lVPOIO7TqHcX;1u*D1!Pc_6P^cWYZCVCY-#+X;|%znufUu9K1OeEvoJl0~wIyyH=jO={jis$jsR_xG z*MF(gpSG2^B}=+GX&f8I;EYFh#VG3Jwxt5H=W}Nh{M358!`nf@3Iw0<_Tb0pb$TyB zAj4};s#itm)?BuOX^@0#4=f(;^pke8jk%N3 zuEJPP5YoGc3b&1d!f4`d*-EL?ssx*!p*+gKSylc)q~w*$s2ju$aRW;QH-HgTHlW6g z>0ZiXM+}oNzF&k%Y1_sGg7LQT5z9jHks{nmf9>?wMsWu)hv0N)!z9}Rln5m4X#St)<#%JT@HmU$&! ze>8v3^_`eqk$f%9IF>wxPnx|;u=yWz0!BscHZOk-hLIK0P9x3bmAx(3I$N)lBaBsS z5YcZjRdY(3wF4VaF<;V}8UfR1FrzwYuY{pD_L(SyubR2oSF}u1A+$uGW zOKvapEWMQ|l0$V>*~cf|4pWmnzk40!J*8Yb$R3ii(W{~P?7w*P`{TC;H2ZT-SA1^` zsNc!{BYI5$zu?O;&EhU08eM=k{g#W_NaG+Zwb|RT z@g1{gF%z-{6mD27j>nAoMg-n7?c_k?Z*hsqQ6l_SAIwtNjz{+TubrR#&o$E8TGhlu z!5;caTgf0GJVKGOzMS2Go64VxBni1v_8z)cj+k1bLE;wVajjG#vE-x*iSIrAZIGB2 zq7>#$X>Q}isct!t-z(y9UT;#Mux{zoY@Q*l{gC2ane=*}g=+DY*puUA9@{?lEw-A+ zl(a-|{UKMcdv&0&JJ(8W?M#tgC?~pDc*dxt1^tIA5nQrP zZ9dUJNu`*L%5V{1Seg6i6rC;w3}-5DHR$vnuy$bakHb4`^Ooj!A(z{DJtr?|MgEs4 zzq)_NqR;`V1&LI?^#19Ep4{n$UCWx3Kfg8*U|G-kSntV){Xii1cbEhOmb{3c)j5BG zyT?3NM|X|%5~+|YA#pdB$=JXzHVAaZx0^9fK8f41W|x)v z{IlvNRYI+TtLHq)8}?L4y|nf*;omx@v4g9smx_LD5HSnzHs^Vm3(YhgAbrofG1PtR z*sDAB1b3mG`l}X(cIt`kd8b~^>Z0J(@LhU(9tRVy$tS>%Mu|T})=1804Z<04PO(Fe{d!@g*M=Q>7?4YaXVLCbTOE{IBKlWtE8)v3xqw^Q zR?T7h>k8hX2R4vKJZY~DZbm+wt!_r*6l1Ma@T5VVM?ArIR=yWCP78dvKn;x5V&3DJ z*56j)`AsNT1FYvp}z$WL&e8-fID7Lb zR~{4lBq$8~%b#if|Dn@KP%^ATcpeVE_bHh%zd6DnQ?(fP48{~a8ir>voALC_(+1`O zOtr@!e1gZti*v4~Wsj+hITvMU@aqQtoRIr+-1=>{s zje1CnX?^^{IMzf($7Bl}+i_UnSloz5gzT28o5j@jXwizx&us-J!&1S;s`hD~ugYSR z7I;vT&IT=J*5d+zYH_=Q212U-Y_o&kOuv~gEFw(LYk|ujR|CJ&Vk}zBrH55Unve6L zCNn=eG&BH?#^eux>Z&R0GA1jS!Z{O79mDpw|diM`aK1OpehdbPCnv|93QQqk-P-UamaBviO( z7Nl+&lm2U~uOl<+Zkj?6_qZ^zOa9yxp-b&0f2~qr*0c?)i!(v5&HZ5>i3v{xe*}XJ# zaJJ}4%2J&zhBEI8%Lv?vZW&eU>$Qy$?<+5t_?j&>QUUPT*BMQ-d=jbN*`BhtWtT?k zX{@yUK5CP8Qo%G674%1CorhTG(tuTHH}4j9xcU#M{(k|bkJi39f0HSU>2 zIMar?8WdBrs|Y_xsa#AVsBAX_ojz~cvSEB<^p(iMKGQ4d*)n5?o=;QrP`Y4=U_HF5epXn|SgqQG>>eXiqErA#xCd56e zOgs}D2Oi@_IBXC6|C6p^I{hG~J3S|Bz{rC+ZtYE+gczb7plUG<|GrvJl`(IRR8A7 zhH$&X+n^My{p!6ST{qr)&!nTW^GJfP=PwScrI`NCJyqvwShN52q*54)N`-L|;pfBH z^0S7Oiu(hdZeeNufIhw}LRx#hIvHA=W`dEwd`$)XGhcouSZFhRq?i$x6ka{H=y_6_H*~M z^QgWt1N3%&$-^-0%<6&XaClFz!{KU+btlbdp2AR2(J|lrB~mw$n7gU0&6_>GlAhvm z=z2H!*IU-snq4;&C$W2JS%=#+kCnAGW*@MWwRL81pIg?ZWLH}7f9*ul$yHQ8j{Qho@dlq_(0vW`*BRCaIc<6Cc|n@DL5(>Lcb0^FNiZYQsLWtmqb~@{STCqlH4$L z^+?QVQ(FwW_HtF6T@6@-|MTkcbB!*W*=j6?pXM38p;_ ztDnkQjn{V3YfEl%t$NUR&6-{Fv zo!_RLOOU<)^`WIMiV_)>qw2bqFsMTL>TGa+S6G>Q1oe$T5Bf_?)9CjiUuR~8@_%Os z?YGhB$BJGmi-!{uRl4N>CX4yK2C9DL>U=Mxiivo`Lm*;nwCt)FL`Uql-AASRcbP?B zpp4s=^XkvL7(P5rQ4eAB-;OC()Yh+wn9p8=widvPoDv^4fAtruWhhIT9{Jw0k=)AU zPaZVtP`S62#F-uZS~9I>4E+HMX|+=b?POMHoJh!8jZn;U^wL7&=T^SnTcojk&E$iT z_^?Dgy+ht26rx2ZkfJY-@xorAObUGe7<8Wf{yaJyI$F@$b*_I`215Yoxv&Xr#Fvo^ z;^WT+H;uXPW)|bGR`GqZF?a64U|XjA_>V%I$A8^n(xnh__M;jlpv%uaUhOjos4NZQBH^VttW0crQL{mpw_U}`R6*n^oykn( zr&lsoCRc5aWN{d?=D0~W7k2@dwWY6!tJ@50E48)bY078x1g;Da;S?r*7+QW4MmUtX zhB6BR66uJBs%NEL*sH3xH3L3@kk||Y8K=xbRiIGwT+kR~{PKQ5#;G9VI2A9e?Yqjn z)9gKEZI#*GGZ{A5fTTxf;{UHLB<=0sew^)>*8LyP9&I%YnkrNZX&_#BV2)7-dVdM^ z^yTu)axbM(VlRAlQ|lihb;@rBG#s*+5-79c6!<3aFp=hKy%Xa8)d(1!BI|g?ycz3MpWldV9H2rsArKKSYAr51fZT4&YB~b_=O3 z;7@DzF{Uh)-fUA4iW^5S#fz)GZIx;o*Nn?%q{5xz-fYkL_@jC-SEil~(Y3;%670tS z+aG=1#pmxBL4ubo5NgQzNBl$1Ieyo`hkEdRR1)W#68P($wEi<3nyy5`@zv6XgC;RO z7}8*Xhk)_NzTyQs&BYU1eT|t1sO@8xH{n>*b`#H)T^{v(|2~u~=U35i-|QWT25z{Y zo217TIKlHYRx94WyD?HnBi3vmv+f&%&gs|{P<+AOc$&+_9R8A4 z*#t&aDeNO;St2eiKg4fVQwi0M6ZG3jCGMi>#}3xMMb}5L3&S$XDegDe&Ax6-T@M+# zthoI*&^(kSs16|_X%om^<4er^k_c5zFIM{|W$sYDG43{SdGMUl?8~P1BmXpIf!6}; zYqkhCSl8J~RsVz8_8K4Vd@ofNRIQ<5uPU2XneAOe4dM8w40PoU^i$ps3^wpR@QdXSS zn+dO@Z|KDtvyFTlHhG{Jo)B;|NP#uQh+}6*8DQWkG=(P`2+4fBa9Z)?KWDhQ2_0w= z=gP58^-ny;Xn=JcJ<2Zl(JA#`PO-(Ac;=f=hWqJ}lFRZ*WgW*!uHK^*lR+7ZqphkB z{G#Jp6uhB}xQkD!N&Tx5)Ki)%q9N>PT?Q3KN8-%APoM5Q zYs^U$7tip)WYs@S>P?O#zDsQF$~$KU`yWlC3f!62gpFKcismP!Sb${s%BoZ<{Hd9b ztNMqW;~YQ-A4e_l38XwZsC>BJ04G!`yZJt5_+tbQz=_UI`U@x{2L|QGrf$2fQg9FD zQML}ApSQtZ4sowy<@=(2r4DwT)1#De`L0?xQ3Xix}iNw)(XOKV(85s!e2Lo(-C+u844A3hT9D!z9WRIHn3!{n_y$SVYS&R~Ja0It+ zy%Y9HMW33u)9_c>OfPuR*hc7(TfT^7T^o}^0bZ`fTuq^P4n-s6yNR;nX`o(pYc4E5D%A%8Hm8zGvy_6g6Xgu#EO7~fUE?}S~z*016T zn!eExixBV~6C+kBBcSS3wU1F?k-dZUA*wZ ziYlnO>yh*+!33ZYrD_$y6DvxUiY`HgrR+?#Syc*fvXo^j5sp-8jC*K6c2jLU&b!ux z*F$v}Y79F5P*>{c=X$6P)md)x^|ROy?>F25YLnW@)yDs^&O2%&zqQVv)<#~a&i07^ zvCg`hZ?AJs!UgM`^}p76-*?oxZ`TFuEH(U(b^c`Mw~y!iiKYwHdF}sN=losY-p|9= zUa-zh`U}?CM$*zwsI$mk?wh982#HyEPK_Bm43LaIc5Dn!Y^d>5_GM^VH`}Na5)0W3 zRcX-=l1+9y+(*q6njO8Y;a+0)MZK)zUN%h>$d`?5-%kt>p*FLf3DG;@0DsUXTwT1H zHU3HV2MEdUqRG=P%GFCbXrcL3cHCt8aaql_$MR-|DQT2j&hNC%DeL`6o5b@Md);oe2L>0biZ=*VC`G!YDD5|-G{1Km@ zzWwZXr{DNJ>F=ER?sUudq_6D%?sR`&c>4MMzE9k16PIqo#R_xclq!Qx`K%j}4y;|{ z8W8a(ity*{>I#IrvkJez4C;6X{wsyuCN0|5iCIVEpq-$l*a_;7FFcA*5>g@Tb6ris z+7YJI9jm1RJE3geO;}(5q6*8kk)y2Av(Yg3F1(1pSSFNF|g_i z@)aHtdk|64RlEn-Ncx}hO9c%P!nW?!dyQ;OH_s%V|9qEt{$hyu#7S{q^E)*Ect_pb zZ*bop5H8--hV~9%b-C7Wfc-bEH1Cu)WTJfRnJr8!o@ZS+eNtDNt7Xmp*He?qsMk4C zVd*e-QkR@vY0xoL&;oeLH3SipGIy1Emrd|WYd52JB*z^;z#JvZ-a(6vQu^zlLETMV zj<)9G;{~^=McVM7kh`l1`VJAHY6^R3PykK$c8vY?*h3qfB;BS=BvE=kofp9pgWw z7kn%1(L31%tlhX%_xcf3gWdWn7f&t8mV&!S(D7?0RVi$M>t zFcuno6M@en;`vSXsC8paI`*PSxuTrv!`A?=?Y_}AY{ogFawrL^;K-E z_W$89ODNSy-Ok`ugOAZKmapH6r`R;U9TN5SCQw5th8iUm{T{wK3c9312TlBa-pn3) zHCb0~(Cmk)AaMULRjC=siV(Lk6>a9dbbE#Jy72Q-*qob#!EW{S<{c`mlnNvGo~8*0 zmK$=iwCxt$nYpso(|y-u5aK2kYqc6uH=o(51_u>x!mW%%G_C^k9of+Jeq43jmfzO+dqHu zVfTLlZ@fJw{1TQjX8CJVRCF?}_3=J7;Zp(j>G^i$pg(0>nQ~L;xv*JUhkX=Lzf|}> z@2HiO>V1uw9_8ZTda#hd6SU>(dNWPYKJjJe$d64rVK1klmHSyL){{?K^5zJs=mmBZ zIiX!zJ5w)qCza2`^&6m|5Z<2*So+Y}6@t-~yj!dzo^7=)9YI-7JcA_Fg2deM+yQ!=s?l^H-a&c#OHf%m5IK zxoNurAKasyh$lIuHN-xamn-O(75sQl&0`eG6E3Dv{H@0mD;&fcT(b+<>Tv?aWa-G+xm`v0gtpr%Y)M z*+~%w_jUq8(cb&Wl`Jj3Ok?oQD&L7iR$01lh?BX(k+shP@(-d6VJBHM^^!u9A~a6sgHn=llh z3irx{uwQVw*y9GwF0u0H*tQeW6=8vvzaLYt;KERN*7CIi`o2MQ$nryYn$3sm>l6l8r;) z)3Jxfq!9i(-7X%KWAz6M31IJ!;HcoJ6#mK-l;VQ>g@x#t*StJB)fgeaw~L@4MU|&8 z&AvJcTD|`wq19_-?}2!iC#0F>p?+4)aQg}UObR)ZR6@HgYT-kgLO$s*Wjz#9$jKj& zBF>Ep>Sg#YAV%moK1@f$?J5ToT=Nk0v1RH`c%pu7G|@Q1W*s0dsrnOtCqhjmL}wnP zI#RRk(6JfTxtix<$I-F}d-EE@7$bFs{cGY2p*~kw;$YQZcGYOx)bccU3N(FLYJ~j^ z{bxIfy{9hl**27Xkk&v`?p@DkY@(*GhvHvhKMMQFZK9&9hTA4@OLM2{nbmB@T{P16 z07sYmoG{TL2Drj@7!!yme*`(c1TNCqhxc&DNt!WWX%clCCk?lq#?dTr-J1_YFhlJ? zc}L+4n<`x7fO~iQmv}58&0M3oE%zW=%mXIEfqE0eWGv4Eu)j+)jGMrb+6(~`)Tvh1 z47{^TAk%Y|iDxw}w5&Qtf93GvT}?dRMId(wD;8{YR|rWs$rmDc83Nz7Rr;Ubr_Ko` zvS#5a0hGRlrvb4%4TzVV0nFoDbpX#-Vz~j9FMXmp&HOJ_lVEL-bO%M{5Ln7iRvG7n*K{e@J7d$w@P!Ek67?4e#^Yb9p0wNZc=ZUxQhvh9aidx(-Q z;U`-eimUyACVaTfrvy=@g2@)yT2x>6*>+5LJ=png@(@oP&~ldX9I@SQ@?FU+M78zX zOddSYYJ9txDkCpEpwn!-5oTQPT`6Y7`?ZuW@Y1F$F*}8UvBNYg%_zd83X!%JX~d{& zx!@JJenT{{hT#@%Q%;}JwA^0>X}8m?6RY;?;WYVxUMg_o$E&8#*ppDtHN( zB;GN?RU`D;Jc@VUF}!|XVVzVk3vXTB8?;YbYCr?zcQuw>Sp0-_A)JRte8y`{2t(tneXjO3hh9(m z+C@CgQqz+dO^eGviWP0Oe@G|KyrQkDbqL;4X4SG6YSoa~`6*AxVxFhpC1b=#(t98; zg)>eI7QgFOq`ozq$^@^Vj3X zIA$Cw+7dor#QHzOojg5lIA3*_;U3d>zgc(hJ@_({f8<8`5_-y#fpJwG0stX6+M^`2KU@?>*wP2^<*Wdr!(2gTCyHwCMTE4tsqTpLhImUuYk4 za-dER<3o+S#YH+oIu_Kb@VwAObly%ZkSJRqJGOg6usuAjGMjRdMozSw_Ow1FreG4yb zqTbme&i_b7KULR~w^W@Vti};_%5TV)yJMn+^-ifRyaZLpFezbiZDm{}jmbLXRIE+o0sDuA7@RyUg z=uaZmdVU%#)4w%R4NX8C0U%DGB>!=%`0Db?R^GqL6PW}th#GdkA-&L87e61a=FGh-uJ>FBrw{iT}>AO9+!yBx$jb=g@s`U3;BEPlL zNn0W>ROvI8|F}|+Z!~p5+zS}i0xA`)_{yYq9W6jhs1@SozEWC7d}?|wo z&8~^(FI4rmCSPY}HDA8bJE4=FF|#B+XP5X$){d}UZG89s5?A3-uKh3#jdB`?>QX3_ zJ!Tm~{Jp!`wvVSH!=-{`qq^VW|Fn-Gxk7>@(Rgs(+l<>9@#P6|y^e z2g65Vm9u97J?$pC45RXvPsI1g%88JU#}hD_O#U0yfX{-D$Is-SSn*?->6_-b+f3mV z$7V|FuQS68;~qz)??c;B{`!k+0dcRo0y&(_7815H*=IikO&eJ@t#ySbg}PD~ zZtO};jmAD>)Xg99UTLW>DbvgMO14pfs;E^+MI9sfdoymNtXB(^^_a@fUP=_XO@_V2 z?1gM7Hv3V=huL$*k8Pr_p4RrnhOLzI?wK^7Yo!XBeb@azh(Uvlc-p+Z3tUuX{y#ok zMnR=BZc?^pQ4W1E#dM9zh=Q<|(h3uGCMUyi%Nk28Eor)7Duym)-}cgNH@j?GTf1vp z?biCOW|%o##0wWS5mR6g=g376MFvFvpZDiE=gbUJ+wT5ee_t<|=iHvpb3V`K{(PR# zvAE^SvT8kPc~iVn!SYcCgC}jetxW#ZQYU*YO&-@mOQR=kp`|RNaC?TUad<{pvB#Bc zqX*_%t2}9TYXjewUbXzdW{V8j zrpnuB6v;LZK|08wlPwi=;pPO4sGhDK3<7;EKquSWbh_!kg&a2|ggWL^8o>s z{`ll=w!QQ~sqD5Lk!NJNZ9LOAFd(h(roYr{kKCEHU3O)qJn>1mLGGNt zyJf6;Hs)%ap({4^O6s~cX}x4L7&11^G)FDTm>wCQV4#8c6I{~zOKAQw)_TS+yw~k% z@IPA|PcRJ8mD0M)dI(ORrL3h~x^$fZ|7dhE2^gJ!%67tkB%N`XV)ktf$CZ>japluR z2jmuOm+ZB+$kT1RJYHpa_f(J9WskXrE@uMoF;`Q|#I2v{t*Lrz3R?7h8=j|rlNOa2 z4f0%~n!JP(x%b(a`G7ZzaEG~?ZuK&zF=u&GWU1hT;h3ITwqtUQtp&q+Ql`hAtQ{4 z(>5AoSdB4c5KeB(WDFBFc|f^wGFh|2eibg@IZSg>X;O|;52xjH>khdF+^8%s$@RDudo4?W{oE}&%1e-WVk<0t z7$BtHE;{%QjEGq(lL}%4&@MU+z^7^2Eho@HDA1|0*Y+I&?I$AI0rUW9X(oD22!;#* z;Bq&O0MOmGentj>(Mi1VcT&M>qYku<-eADvO1BWLS^7eNTH^@lVf{_LmhZ%y0^yKl z-v$GoNYbH#f$rp2#~{)zG63U3msH@51W~8kdO*kotQ)Udho?J)gsmh{?Q(^+2@Kbt zO@gSKMv-d5d|=}C(7ai`r6&(CTlf>Yx?@C)7XXtW?km+HZlN zvOq}fg{UMTx}>W1co#e3i~FJsL?(;vv0tD?=e_)ZA53)TX-KP#)4H@`9xD4-<)H^5 z%r4E>BZKF+jQtLdpSC5`TSK$kxxZE^{a;ylg#x3=dhu)!)iCB4*j2I9(; zxEwb$)4>CqsXq_;zPQ+EkT!Jp@(nSIaDzezo8_Lr*vyfevdoc%`{NDS219=HThWz; zGtH57h0ZEFdIg{J(N|$K1m%h@oKnYw5x&(Mc#r9%q8+CAkN-RzV@-UMexWkYc+wjj z<*6hbtK~4laE@iW(1@<-R)vUzkon2-?>3V#tM=qfw8u`kHqt<}F;~nM3nskTSG~;c z_QXxpFY#l8J@FGdmC3F9=$vT%0q0nN<|Ukx#}Ug!XLW*@&Pp48%7jER5WPbhGC6UB z)T^~go@6~qgI(U5D!*%Mf}mUqp!5!XG`UAGdXKxo-prQD5xiq6U6vv^2qXkVS0(?p(`B=+S0U*w#ayv`Iw31Om{#^#F2&fnX5vbsq_YPWo6y zD0S7!s07prw!kaO6Np6L0MxfgX3~I~=!l`V{A;KLA}QZb?;8R=@ppcKf`00}iBaI1 zK&m9|d;(QNXYwWM)>MHj!#*>hcoy5UI36lmHDxHzZF! zwH%ZRvco}_q>etNkzxvA*|gAA2*nDTFS1}lZIlbb4Z{8i*eC-ecUp<__j0?>6#LK9 zQLtkU@G(g@y53LR)+cSWfIrsX-KBGV1-QQY1C{GnoDSk=yvQ*E)uznt0l$JWeKhpL z{Du(K%GeP8hwQ2$WD-UpbB`-)iTNIwGU$4@rU*_e?f#JKcxNa8RXZJ2tb?x~WOh`A z-CkuxUugf9J@nSS^tRp50ZLjo%ZCsv^Z+obw4NgQqMM1jiCC-Ldn!nN1Y7KlY&Wf>Fu}Rp{8KgC?o8}}vGB7akT*|<} zT{k|LD*LmHAN(O4dcq6Mv*Tvgab?nmpF{{_{JLOc+#{{89mU3Y>Owc*Q8(Y*B)#-` z7*wRS4A$(+=)z0xBbkTBO>~g!@%rt?LTZ_~wLx#K*IR3~mKSD8D_SzC?L5121zkyn znuNJ%A7BM(`~_f;;r-{6#N=LZf~^wg=h1nFJNIS?IrKb7hjEwQxV!sv)!fZkiIvCqLEsI!#NwNg5+!IRaw)cV%rt+l%|0dYHQxJr+=++LoE zvyGYbL^(Mp4RRkji+vUszl}F7=xu&SHoDxopqvov&M11?94GgUzS!*B-^ljH5*(YB znG@*m#b%Fpj@|fY_33&%eIK6geKuBkm#1$B?udT{cdW0I8?p|t^QC0%LGRLwKPR8i zciujp#d>7|dj~TOn7_j`e@S87+)d46BwJlQ(%SkbB1m zxm|kk!C_3;&Z5=BigJyZ_o9s9894(PIq(i|=*`F}hkZWggrO)ml1{?B~FzscK)E1QYYVCn6H2NU~ws=&jZr@~jxDawdm>l~5s zs`}`tVwz8rc{?UyFZlBqTC#yW4<~g{ubPZb+#9n}?P!Oz@hKx5s+IJ2eVz1DI7tV& zc0v6Ay%TOwPMrzZPhP8AITAP~q#Y%s?F<9bMiQ=O9U5tfKNE&tiXu~sUWg;hLc9ks z*B_~3?u-ASR?*fgBAIV0i(W|J`&1NOEl^l)A4Q1T8qb%y8A&)c4?3PO==k!GW1x5x zq4R~y#7H#szA#ZA*$^0h{3Z>^9Xk3tGhQUv4Gumt>|1zeZl(Wy|Wxk+?=lXIx>8?H#9)ed(^iCs~O^oB867vRiEfwsH;AwsF(cv)M?`={pXBnMJlXl+P`kO%M z>oT)x)|42bFH#1cYr9E$@pI;j=h|tC{}zEMj-e@DdT^v+ZT)k0=Xo^8FRY9Rp5VCQ z+5|rnfeC&(LYv@cBZ4Ma=MkPTM?~lZJ~ik#Z_x4TLB~%HI({NzNCH?D5lR5hMf?B( zJeCqf0LRXN0P^X64A}k zq8IA*R~|!?br&4vK3jFs7e1b>qY>=ZZ7+I3i5Q9-BTvK?ZEe<&>lepI1|2sII`$4a zZVWlb97S%Yku_+O^AJrA9UnV)a&{ni0)C0vn;eA7JNhs=Ets6vz~nq+k1RImle069 zo>!PV38#d#E}EP!?omw6rr;j?gd3W;;Zvi5Cn+Ua@aIYB_Z4I=h{>r5og6}uBk50n zGa7OQ-(q4g>IzG_vgoXs7h=u|Qh6~;en))UWpgSgRR2{K1_Z3~dIF}j_lfiB{a0)E zzu?#7T4mR>tx_u$EK=Ef7f;}QO-lOdfPMq>{+#7ANTRUV)fhRkczs=AB~iui_Jb-6 zI<7|%Rs5P+)>dBh#R#T~XdHK0tBPJ2IV1~5o-h?{jS8MsIvzggc-Ww0AKa!O~1MVH(w}5L7ejhgkZp89^+4p&wKe1FAVMKs75usAjK8m+2-@jgmlIOBg*) z7@Zvsl*3BOdn4Q+y_g%$&H}8kq`P2|v{?7S7Oni}0NaM9lo!Hp7Rbw%u@?VSwWimazDjMgV>z%9K%lLvlDT0$x7-=R8nnYFI zq9#QmaK2@~>n5)-$lpY7cB3*}y)e(m=MaR#O3kI(aD()sU)a*$+yoR!FO3Kn zG4bo^Ms|^Em`PF|P7*H6Q-3xJmnEA{A|AqG-FWpi2=)7?xG}@of)R}g0`mCPN29-p!FTLo_h~cYM&%xNr@cJY zlha_|k&Dm@G1r&&@?7AE7{yjaF1xLq>DAp}ug#@5r6U{Ms#>A~x9(N}KjJ;ZS3a$} zRGv^?TE=Q>i8;!*dN1Q)w(4J*RCcPdx!CK9A|IPrhUclpRt4w;=YR^YnmNaOwF*z# z*gFh{?=Ckf9viD-QOBT{#HgtQOxja_*)(85mJrp zlwK?y#ZPDTVDga;1TTI`G~$_-;ZlV`u7(^Qljg?=48ifO|{V78L*gJ|0UmD0XtY4Of< zfsq!0CTi|_#gzJ!TIX%rlZ&)y_QVnYKHz)U89C7=!y zF0-v^;@d4V*?TbF`!jeC_Ziu&s8cREtI0Xl@B6dn_r=Vu)cn3`_2`Ro9Gp*w(E;Q$6t>11_EQ>-5vIi@~}ChUv&NFhyHKU8P6Q=At*Vc>Ye zpySI!j@c!k>D_vn>MG{s*&}g0Q606zG>S&OK@G(d8>Z9Pw}~lNHJD4VS-6h2?zIB(GL>Osd( z4my4!V#oO7!JH%daCI$*@jdB^y_~vz+)^&R z=nxB_HT1t&NKi;`lhJln1ZZHla* zFwwW_j@|cgl>)BX8_ZR|i)5VdRdFtBI3GJj#rYqC<5`xSEM{5kTCg@jK333rAz6LE zlqZp%C7bQzmsFeW`hb7N^8craES3{IzKL#rY`@Zh?2K)ey`(G7Diwb1{vGW9Y5gSV z{#;DYWHt6&AhRELZ=Lez9@UQ{`*p9JY$;Wq=u`Qa{kjq1x?ksVHAGHyt*&Wk;p1to1>WTE5ioS?asb}eXD)soq`QaKh zsK>(w9UBK7M-DoU7<3#Sa?EPFlin&!qb_pRNMCOq6+&H;RO)hR)U_XMN46K#CrQvu zO@iKi8q}pbfI4+iudcWNb(x5zcY4wr?BynO;vy~#*U4);P2o;VBc`u#63j|VX{Zs} zX|KSfR!E!fq`6e?>QUnW6*Qla@HL=Ogw`!gqsyoh#dr?=B{p3t=x=h7N;d`}&xtPf zF7_ z&CjU@7@hdFTR5dI%_-fByqLrXt`rWVaS1gt*%rS4N_GsXm5ml##a=9o2xoNVL_D#= zp7^IL*?L~#NZcZxt#Z_4vWq(PO4Y8GO>)bkGH`b6OnNLEkYaD97ALyIrs}O5_0|m& z*#NTEz)_{&O6i3s!Z=P=t!7qW^{86-cUNi_+sIYXBnRr0n@)u~p|FMFbN+n08hDLk z`zS$}$!rLBO;inGbilErlL+il_YLAoLIn$jG2f^{q3$GL(4=AVSwLB2ZSsfHBT7^c zdx$*ik4_Y`e$6Iz*4N{rHs!PZs@o{7%YiFb>VQGoO!6c#5#J<|zXsim>Ss@MFQ#|i{|fR_ z-sF>}q&MF(f>}E0e=k<0uinB@&Ql~459w=p-rMX+?<5FBb^(cxo*g_9TKp5!@kLq4 zbRYzfboE=@Zv{^c(GB@B6*itK_F9V1F{7_n;Z&sUq5N9+jsFPlb>EhQMe=mVozMywr6{Gsu()uUqC4znJnKaVgXJKf27u6{>C&=4A zThtx2whOtCmNoBdG8qhWGuE^kq6~)FMN6~=fsCS$&ABwWL7w)@H@u_yU&p=6hC+%2?w8Iu_oWW^?;Wf7v~d zwjgc(?4p>9$BZ(h%}dLgU6eG9n)BvPt0T<45X~qcCuVlhGIJ*0YD<`kmADZ6t&Rr% z(l%ZF+H8S^j&RjCN|;?Z+dOu5(f^t2Y5avN%{TbIdD~#vL=E9P5z>8s#+ljX8~Cl; zac1E`y!ATs)F^Q;DGgKPp^U;(CIH{lZ>uSu;;G}a3wtvPOMJKd3AkTpPL0(1qbp}; z7Z%T^r%b-)cSNU~jlq{Q=-pB?3X4V0_rFhFP|v1KS-61)Q|dcZ*FPYj;T+9H1`Whl zR>#vY)0{e+I-^;bGSi&#)K6Ct^~}U=#5Ng42%d?XS|(%+xHH!F8Kw1mK+;3rgy{n= z_32w_^u=xJ9-w){WMJOX?oC^ib{|L6LgP!@=glQbs6=xY!b%xyTNBa>E9qQq+M0SW zPe|}-EX~)N9u{`%9tjg&@WWNC%1YN9#kDm9_`CAw>z%9SuP+x8Qm$RlL~ncWsTHf1 zgSh|rhS8wvSzu|bK6q*UO;>QtB4OdZZnnSD3SDVy8jyFJ7F{l_$9gfzfsrJ04f)c# zCxSa4v+5`7oq2Boz;E_M8Cu@M8?WgV10F?pa(iG^)cS5|9c&;WxYw-+=RSwyaA2jA zGv7>`=>N2~!u|P8Z_RMi%a4)PM{~~W6eL2spNN9YzHmL*WD4<8!ge}C3d2ZeW=;yfG3_aMROU*MDqKRzoG6`m$(qP!J&o{XYm<)y$e;b8rl zvqFy%4pLNf3`pzJNEobliryBfy|u3mHz;$?2IYgWiDKMG=cU5y)VntCi#8~egkQCW zOq|>^(l5;-_Ln%5u0db$uYZc~$zk+YA*8`R>9X#kqY^&1i_gh)ZYLcfVbqxV8(@z0 zYu6$l=9=#4C#^yn%)fjfQ^bW9bw~v-LWpp#^P?kRdr==WuFC2tv_*V#I~|DVVVT}4 z(OVw9RV-RAdx-(-ekrf-jYdpzj@`IET{0U@r?RcI@ zqdY6=Bz|4<&(ir)B_as_#2THX`jsLzPl(=1DtO<>@3~Yz0bz1 zRQr7szYSTna>M*XyztzaRR)Yo1;6j-=(Xpm@RgBt#Yb=6rWE#T{tV$`bybu>c~V_( z7W2Q@sL%hU(U^a!@b7ek5`R{IZjr*6?;_0i0rQ;!%y&u!W5NXH(SO-*F<~P9jfO}>lwOHU#dMpGT$2GLC?2CDk=4Fe+Ia7Un7{=W zs)){;=mV0k1ss2ti&SBWa_gCpd^hG$k@tF(EVcD)-aY#Tz4`io(y=l@^Hbqh-V~`~ z$6<;I$H3^`cbKa0H8GZem3m;wOv9Ata>{j^{E>Ahzx)MsatpV{=&hgVEtB3l4=oKz zx98K~2|@DcECp|QL@K!IVu2(#AxQS5C6lS1OlBw{1Q@z(x4=+`z|crb7chiu$|;9n zs7*Vchg#xsS1s?&L;~#LHNy>_oEdgw(a1!-16}hbiT9beprr zZtS4Db3Hj<+Km^`Dbe!i=SJY1oNO%>8MR0yrACJ*ZGxpTkfmGj*GusV6Kn@?0d6L; z+v4xUK++ashfBKEEl;rCVD_ZDmUnEWq1ftZ6tVxei}3m`wiLPShg0!zH~Q}tIjhN* zW^AniN)8d`Phy`@5YVs31L!33@0mW5iHWua!7SV<-m{TldUTi_sq#lQ&V=-O+%Ef3&Iu+gT29I%t$VSV z>#QfeaQT5ul9XrYR5$KAn~6OEee_C4X&fHT%|(hoIYJo1F`CPMsUYlP_M4A$swIsA z(~PY^M`gF|4Bg`6BvXIF8FiDzQK{hFi#f&uj}8Pu?>viBE>H2g(+_n zd~r8v!0|nrICzo{rS%_?yQhpft)0C8GsuYF;N(EJ8cfDI>twU<$u7>Ui+Sm3_5~-K zg~O{{iuFuYd`#cXiq!Z<6ag-n9~CM-j#RLa{Vqg&d|ROjh`oBNMsHQ=t=$zt;$!5~ z=ZKH97wY1}riqV$fNk9V!{Xz_d4t8rmS>-BRL z+kce!7(H$%@gY6)uf)eQ+y4vkk^j@7So!kp|Bd))a{RFP=(uPon8Tj_Vezr6{J#+& z*%u8ZK5j4n|5<#v$NrG`=(Dw+D?XkYtBDW7L!B*Dd?=+s;zRjAUD>}}0q)*OJgZzI z!Vxhqmhg_Z!_SPuSBz} zp+RNXq4a$6}l&gH0N%gebL(_O_P6T>N%HclVSTL4Gv#!@9@ z<%rcm#?nOsAt}$ujF4SVk7C<7W{HekgD%@{eG6b&M$wp^0s-6kWyb6yWRD;rc6$_g zIcKSt+j+;|?FqU36DNMgiXRhx95EmNlC!@|DN9PU*SMcr^5eErn(cBHR=hHVS15xx zau0)RZ~QD`ltJB$i}{ItG8}U~*`)3F6Fbky)(`Bhdw+~hU)_Oyyae*$)r8{PGq7g* zaBeRDEEPZ5;>VIp#`tkCR0Fp3X0m+EOZZNnPL4!iyL951z;rd4%)6sMwY199ZO|OIW1rx60=Q~B6XSU3jw34EcYebAVRis4 zb`^Sa$hEw3Ga&FL=!W1i0EoJ6x|QD)qt@P311}Yr zz7Mh|6mmTvmjUvA4RTffpm#=o(min)Nh7~KhA`c>lXyqwO=$jvBdp%@rZhMwbS6EL4A(~jDSq0i>T8+)n-!eGJqfc$8Xb>4DY*i%UIT-|V zk5tfQ5<3>_)jdbeI$TnnwsyMtEcNDO=>!U_pziK|9%gVyzf_uMl zG54DCRPKG>_2aqs?jOm$?oLNJbMBvtHO~E@IFxgX!MWRY&c(7Bac=Lx$Y9Q0`1rY; zyO-YlthVv1QYyITCpzc0hj8v=;M}`2u+sJzIG28wil1!pL!4V-Jq@Bd2J*^;RYU+t z9THkqFSJ!EXc!&Px==YyIyH3!!ArO9BSWYegmggLk9zZU=-h{A*y19ZKA8$V&;@v; zEJ-=$B{V_(>hPcrh$2r)1#?ClRA)CxSa{`ymXcupnPuw$|5T#dKt1S^N06_VFYqzc zYylN7NRX%g3&`J?{tL*#@W8YT3vd7rdKHwNKa z=iCxTc8#@N<6J^`pDCC3l^;=SO5`ORVuAP(@!2F6m6;|M`4CS5&OIm<%#e5m@~9>( z#O5?QI?W6VqI0VZ4CV#n64QctrGolFj7x?zn;5O^H++MPINK3*r&z#4IikjxJkq8` zV&C9)M00d{)qy#IHQOouM@F-e3)UAd@%o2h^~a`S&ARKhq1eFdPT9PRT)HrBj;SaX>1F zkKu$KXiH4*ake=)Z(ZYKxCa%slUf-EuA@+A@ks>}M*Tpfp=4XItMKx1=2%$B9pFpf zvLFlj^ijH4Ve8>2q;dtXPFv3skuG=P)neB^%KN&;#)l##qEGB-F#gFAE}nf0Q8qDqL`C zB*FVwU2K?=@PaT;Ct?06=EKjz+^?7Ep>d}J6)4w3{gmN_uHPoMiq{M7Q$q_d$>3Pl ztDqlnd!t7Icw}OPP&-y$@#<{(@gz~ z*01z)2l!mtbhrbkKfnQsbW1OeIuYNm3W`iPk#CrGKBU+A%&i>u8EY3|pY1B@ldTG- z*Uur7^e>m6+Dw1#-=<;T-? zjYGkWdU*JcfV=%4QA5Mk!awr)#4>=&A)o-zXrn-~BEKT&x0(~zm=+GiI{W&m4-CS+QE1x zs5|pTJV97DetSu(Cb)OA;I1L+M>&%kO9$^%#vou*aA<05IKM576UgZjPQRqa5%m!# z1b5>9d9BUi; zyrm7?hJtqNW~gf0qin;vj2f92r&+Hn3Ey-6*Qd|zhh&Emj*LC_##sLuZ(Pl9TcXtW zaYq_6;cZVUzwX0pAx_3JjWo@ze?ttM-cjkqQqFYS4hZF)5Xz4)ff6DKtt=jV$$+Q$ z(k|eS?EvkXjUIytRgzWI`T{rsS1UVP*uFds%T<}z!jl5JDAj19MDg}BHjfUjv$8;( zZ`CYgMIgEK%#f$A6{n8}aTnnKsgL1zF#PF#0+JT(5*CzF+#wKEubuY_BwgFV!#%3e zkf=A(>lJs4hk@4PTh-+X#im}TZqaz|074)_jwd>e!Q{HalhmWuY#%}&}%PwVq*HC9I-T-B(XKlNbHAja+z;#Cl zBcT1S+Kas2JoqJldcTH%5$9ZcUw`hYBZA^}rZI-ob4>Kdnt0OMwL(okE-SR}L}1R2 z1Yu^@iGV=RUSy{-?)c#D-(9SBKf7MwV=#(e=p6cdcSjJR9}~_d2`nAPBopxk12Pc z0l9v2%l#~-CeF4D2br+mVtAgSf0b0`H_OLr@>*A`#Lch}mBGvyW{Pii%1LdM6J z^A0z)cFX;09hO^Na><8X*a7z)(!qC_5a}u7y#HKIeMVMz4Htsq&E7F@_J#AHTo}|&QBY?5 ztM_t2nMUlRLM&3!F25A!e&RSSrGrW|{W3re=w=vEqJ z7k={u1-$hb%0_Bw?LrDSXC%Ao!!vTq$Py@*yR4n^)U{tOxn*BRI>gwM)Vcsf^t|)79IHGQvpp?!*pz2Ooy7bw*^o3a5WhrZ{UZ zCV7H&$s4w#6j}-Sejhq2vpwmb*sF8Jg5oSV?xapUIn(ShBOWtyPEwh)F_%kvJ`B6C z_t~VIZ9EITz!4ELnWkq6MWxcZtNMfUAHYmYHxavprYzMq4?B& zaA%fAq)IQ{8^*xK|6!pDtk0D6@(LqLv-UCGXOT|r8~rrrpD&}CCF9s9ZTS0eQR(pO zT)H)HBFy6WpRV9Z*tC5ZF2$dZUQk+%T$v015{+}Q63%tOB(gOHPYMcAsOUu%0;1W5 z5c~?v-cT$rr1^0zwDx)2Z`<1lvo8A%n8PWD?iWe>fB$o|R=wbDySxQ|OL^b1n>WzY zgg6H3vB_c})#IghHVMyCc_FXx4RBzmu17FLkF>FYH}=*I6VvhOJ&d7aOtMv3?KBs% z@2U58#&5Nuo@!)Pay}fHy6xLQDTR>q(n7f43*+ zGJ8z^>2SklVvaHp5epofs54^x2X#u;dzo6k!1z}HNlUkN%G0g&@<{ls?HD3qJEon)TzWxm^C?Isu1_%sgOwa6AFyPk6zWCL##rzdwf1^5Xh7v2?WxB;`V z8}L!Gkp>_aW|sx2r!HyZrJM$P(FNQ+K@tN^IIh#Jw@0U25AV%EPQSa;?k3WC+3wpyd4jNmD8YbV%K+3Z8D7Sy)eOO=MU> ztSu@pqXNka$M{Lhz~X34Tm}{-rXGKx-ij5i6^{61v{38;M=^=o9WfKAg|ayg<7H?O zsrC@m-MkTW-Qy!wv9NWNDi;1YN{EFc^H?k##@Ng4EEe2Sfn}tSQl}pVL0F9&?nNn( z277!Po#4u?@#!B#qcRG$6gmgZ=p}fGM;->-xt9AfQOm)_`9V(dfPKPX6_t`pu$w z_R=jZ-NF79a*frv{$U{t>If0WTpVD5A7PoME!fWJ#whJBmI%z&+ejO26O}OuFYz&q z3ofwUE?3QO1sRRM>qI!J)mrvzTPNQ;#i`vXFJ%c^!sq}Y=PPgFx zOyAAFQTHaTW+DTx*V6wbT-WT7PSMmu!~BEHBY%AeG@x_&p7X%vyUtU&JX5Fd;~_fg z^vRHXY0}yz>W8x^#lG98g<9{C*6t1yHymAR#INzmhoG;merRMT7FhOUou`en6eklv zEaABvMB`}_Y`oR8ZL=r6)-jMNKaQfGvuOI$Xu=SG>-MC-?HI^Mn!)jU>T@^dq2I|Z zZ@FV9Vl0l2ofa}gmmhsBoHZ#$ zQl#&fsuYO}mLh)(s!w(NIqAg)qrMI1bueMeqGIL7F4O}RoePUw2q^0G{a>n@BU2lX zW|t(6yqisFSs6IN^`&V#;~qp29JL-iA=fttdm$E_1)(a3x$Mt^I^t1mEI7>j=rSLR zlt(XU2W@YfqtZ6Xg=-&V6Ym4(Fav{gm{M+_Q$jZ(!eVQKSy!)`bq)kNOo`DCf+v%) zP?c0Pf)*O*wh|pJtB%(nRQc;ggyymK8s3l z?l0}ll^)kP3)Xxu-p*E{2!N1qxZ2!7rhub)3;4fvE3f%ZvYnJSSw!9G=&WvNdO=Dj z9)Jo(2+lv{2&Ohkt+esj18@v1J9#k`2~6;by{{1ibl|5AW46`G$+nXq_QS}yJ%vy@ zE+kuvJ>EjFMb66(IUk0}F=|hA5Rv4|h_9#Daw#0FbO1^~wZGA@>$RYok8Amm-1l0Y7??kAM6Y4@lJVKGeb1_6ROf!^2GVdUe>8c$e$K#;+|iy;PVIQ z+r%D6RaT425>@k$vlM!W?#v8Gp)nGq(0P(7h2qY!HJ*4M-E(p-P8bO{YAj64zYC)`U|CM8z99gTHrGTR;WGO4JCT|YmZ-HWYD zR9bY5zS<0%I@rgEu=UGpElun~q%9aejgw3o=UtTL=1+(m z0u@%Uy}7PskiGe)2t>qBUc$7{$+o6NxY=~i(Z@y!GipIIuL2Rb7w16hMOcs09}=6> zEnHWxmc@3hDz;l8wp}3Ha*ub7y$x$Wj%DVlnS`eOAYm7hJrFG)aZ+DRTtvwNN`dgNtH=A+Z|1OWy5E7k)nt^H#urNJgwgF~V;dCh znggn$7jHQR9UJuG?;1iWTHR);i*=o%iHv=Jf9)KKHiqZumb6aMpvi`;{VGK_%>Rxl z`nUH7>D8ygS58V>+Z6T^Zuq3{;lC;fRsxX!{77UjTcj+gIkaN zJ{l{z)Ec|ksJ5;_i@%~U*M{`;-SmI_mFQ=ZrHXvA9r8!k0Z-a=`A1t@%LvVTe);cOTWQ%L*46`D9yr^mPD8-j>Su|kMrV}57LK7Mt-C!)$Nuk0 zUB_01=-7!1_Ti2G=XQ=|9Y+|Y=04W3Grt^$yb$E^q?FyqqA$J@zptDdK6%B~O180# zwc2`Qn54Y_CM(r1?J@6B%gL>Ok{;iTb^3Z1Q6%jk1_wlF<>Ejn%UxynY#|A1Hmgyt zV#pC>^o}CA#uW)UD;UI6~LHKrZ?fm!;?}NpEnLYlc z``BX;JT7f)2}3}bSCV-f3$l)4O72Jx>f z68hqeH$?1-kJq9Cgsms#6(wI}BT;wgRDB$56uggS~YIG#|>@)0ijx~l;`125*Bq~XCI=8}suCEso zbAnB*nj=R<^`NYajJ#?Xzu*Y0fFPNXE}2OKHb6J*XWii9dTCSf z1(7-w{3q9p-rzgV+K`tAI$6kfK?@8L2b=F5!uhIh8svO!6h$Qiih;F( z5CM4;d+5-tsfD**31NDZ%Jg(SnCGE2G^YQhEtu&yb@~Se#0MGz`>mz*i-?^wHW{t= zUu9TQYPbv`zgZ^*+ZWxc#WfZ*D_5Kr4((K%k+)6}?-0wZA!Z@1T+b`WPSu5N*hX>>7B3gGm@9-NY0z+`w>$1(GCBulpVJ) z1mUmKIpC`A@=UPLEp4co9ZN4Q4(VcxlT#z^z^%BJ&jm5-Nz0qhn~AdSVHw*ayUC*^G0~&T*m~71fs!^R-DBiBy9=$H zx6ucA;ek6~yz;lvVp~CiQ>)~{4y;@MhLZ49CXkmpn_ir?DfX`wXkD+z6FA_ z&>mm#>u6F$h-~L@h$;RF?aInub9jqd8%ZZ4(Zt$}b%^mSK$sDWi7TVn*+8HEDeQ!hX3{M&M7z(4(~70SyVtU87-J4Nolh>% zolZS6`#oOgr}IO+&foJI?yCm%Lm8Q>*V(FD5MhmjaQCkT7=m(te*WJTVE4=q5ny&Q zR=GAFgqM(FB*A>Ao+8=xNCQc+k+*aY1l1Q7>*MO`_y^j8UhXFPAF?|BDzA>S;Zk@Y zzxgeFF?>c%VU~IIs%xjUr3?(*bR#&*cT>3Gxf`(N{c7l%_u)8R^Zp>P=DnHMtyc4+ z(u*Ft&P!P8>g#bhpJ46s1>N*|2c!*ca4zx^P;?|_;yh;D*Z;x>Sjx}-m+YR2S+V!r z#8wWL49N@|HIL1(@nghq;?+OLI?}o8vLA85&t|s0i0L|DoE&%ZGOG4fkaGJ;xOa(F zFSA9bEf2DlwH3CSEDS2T8BRON2oVlSFL#u(Q|cswDDI+Rc3`nejq#9;)0Rmhg6t<`*;cO2ZzpCcmcd0;alqBK0$<797=olcgO6Sp*xt^PP-+%5-;c7o}( zl&CV~kf@-Y6?4gr2$PcR__z*%P*rwF8*h!qbf-qEHEufl)fzXeH_bG!4qYf-Ehs?Q z*&nuu#K~r2uwx=Q(=^_BHz#EhtJ=7}Oa5G5-bEn(JF%d! zOT^IP-@ls!$w}ATqAn=BNhd^s^%E~eV=04Luigz#!h*t6&nC?T;5wV}mv=)l`9QExYF2nOv#yx8)+&ps)PTCH79jC{c2g9Id`)o+`;oi$G72l zu5F(@%UY&7w!6r&1^Vs%klWZ_L4V{5t1u zjf6{8-nUreAH7?3bZfInmGh8m=O5*nJ5h^;uOO+96bKQsXvq4GOUejGsO3qc$F%}0 zj31lxS@4a<3gK!9S|N6`R68uy*Zhnc4}nMWOHO^kFpkgBLn2q3iH+$=k82J|On7R2 zrgdt+rj%Q8W9|GS90%w9MmutYTwxCRWlO3njBiLmoA33w9?IHB(zjSC=-2Bci}mkQ z+WPnJBQcVcJLZUWvX}@r*1x-KZCEGUkybR*9LB2Y{5iZXHph`PdXA9`{y5?#YGGY* zhq^=##nhL{3*e`QsR5IN!_|NZ?;;>V>bo9k$t8wF9f<&9hUo@`50THH$zXMzgC&4Y2!M!ef-xh}b zDRI)LOr!V;Xv+4x*e0nX1$=`!c)&!YcYHf2Ci92B0FfRHB2w>AM4HJ&nyL}$R4&OL z7gUmcsV~W)6719f!P>3H8}DL*Mf&u`f?&xcTa19INb?C$?62;mJ7>&y2UT>BgX}F6 zbPGDp6x93jSWxe#v8w5?)Z@xy+hI?Dd`o+Szx$cA`nqs~GEA*gE8g=vY3==7ONhos zME0BO*c-XQO!{!+ABQ1*rXNoZyHjXA{&icLc_9UL4T4rl+_r9#K)aCg+<;g^if?1I zfp-AZ-vQ6y6T9&c&T#AGO|TKiA-Frv(no5D1Yok&uSO@rgmV!HT|+`0-72)PxE5K= zZj8sh#@?R~OO`Z{ca42u3z5T7(q3oewd4`xB@B4d!bnPm%}*I|Cs>u-fl3-q2k++c zPdOuPe24chzbR7fRNjxCcT$d?&l|0j=ixSQR@cd61^*jwd7anEUu1ZoY;X5~Q=p-peKh}L39%;-Bf%4BQ6(fEiv)H}xe zXY-nQp2K*0wlLYWFW{6(>%P)f%C9_6l^>U#C*;SrYXb7)t=XFVcu!p^-#JStwtH_B ziY?JSOI;~Xyr?i*ZGD4tq!dxp-neZR=LatD=KKBGswZ}?LVIkss?aj_1Qc2cm@h%C za+5!crG>80R?lK-F{DB}Gf1J?W@!qo#$xWh7n@vTaRJasu0ra9foA|Y5Bpbss$|J3avVcdyaUr1~oB<_dqiZq9Ee|dLs zejVpPs-r`N4Y&`!Ti5XOI>2A?xR{`CzdbnT1W3s1*1z&sJZ-?&n@g_1FS(Wxb-%g>-5*` zZTb9n3-v{gBlh4-vWWENwYC9y7V$n;{fR(0W0Iwk3}-|MU9+s6h+4Jfdfab2PGx&? zrXl{94Fc)R)As79+Wop#u$V#Lm0SVI@4Fup`Y;@;_!Dw4&qB0Mr_3P z5J9oMv!7$Ja3YeHWeCaq9?XLZi<7k;$(rt9r(^J_9!I$|&^<`ZAji0G-VagHv zak%ou2YuqOj#xsjdl`S&Cy(St8n36N%^zUoChs03G+q%4i7DQn^NjdK`9=b|^syND z;PmK%v+BZY%CkSm8sa4D33|~|(lWD2nL;+u(CBX_Z{+W@mGU}g92pSuR{BRe9Pf#w%+ro|0OcHk9Gj(2Gt*3^Vd`}K(E{}KK zs+!9|ma@+D4Ox(4s*ss?Yv>B%#35psC0IdhdzhGi>4`vos8~Oo&&m9G3rdvPC)9jh zv0PM(X?o1aoKJ+F*nbrh_!Vyn0{_b`G{Tp&TCqy>w_Dg2oowdV5Rp|OPB=(zZzJn^ zae%7(xGGAdMy9ImQ3cvdT=sml!AUdGrdnt3^5>|V`I?2Ub!ha=XCAmV+>i+uoY zb2FYcPvxi^7PG{P5j=1rnqyn(Y8DodUjw1Is~jYakUoJ38a6@NTIE+bFJm%0NW7`c zlQuDHA85LlXZWsLkblqLtVSKQjZy67hDWm;5CYtj7HonHbOhCr*Bz)q%0?puB3$2J za)%^@f6UbVCUc121T7Yz2$dKzW`<~-%XpbD(+uMw{f1gm^Y zt^ETI4pnf+~hO7G1^@wv5>%=~Dz)vcc!la4x1_)O12^8M#pOXz=W z6#7B(d$Ls)n-Qw)2lMeA@hYK3+}A?*CLvDTVj2 z)*1FeILz4?Um6?6)M`#slR*AzFFkv^x~Zk+K9L?-nzEtRv@tv%3c zDOch&w^DxwRh$l$Db|@`V!4DFFeYT-UEZwkAxQ>c616NfO^7m9^U^|bHll=1-bvyl zo2^o5*@}@Y!D9?z`5*UAX6JlS~15&<|Z6xxM z#W`1WSEY*ToHh0=gd@rLtIkD80!v3{urOJT@-6N7z75^C1=}i)Wg^9GXEw~Bb`eyot#|_jUT&Wbu^@GFf&-hAQy9iTnShqtN>Bf9fc_d}Bx; z|J$x1S0b;+O60Y_ApU$OkfT7>=(NayHTpsVM+43fg+23I4vr`Fr|_Pdl#~RKop35e zgvI;CZ{ql=Y=(-xHd6=Np>8fs#gTBx=(4Ax#Ya9l$X>y@k7I%}B(p@iTCjmSz*!)2 zuESqX$xfgQ*UVoOg1XSVzTU4o0bvH-VdGT9hs!c+s+HH2S zAyM+pfxLxTT!=A?tje4Z9ec^YjR<6^l{>04p=f-1OkFIbufch*-*J31c8v2*pv|KG zG?^8}nstc^--+QVLlJ4ZXAqGl^9LlLXDlEt4apc@#PcWJ1L{}Y530p+A!7LJMY@?^0 zZ)t&`B1~WdyvO@8sKxuX<1}&e3pBo2o@l(QqR5gVCj5o@#lPR^e8uJZFN5YS?F_D%?UBvI&`xw(uB>htWaS+`SL5G*eTbEpjCA_-Ng^_{ zgsr^N(6GW|&0>7ghNZ}`h&d@1-h)!fFIk2mQ zgASQ+C6q1vNh)e}ZV}sI2dS5g8AEYyp>q)DEwAE_3D3 zaj4l;YnSt(QX**%(_eEqGvx`kBl0+lxe94w_1Ng=*ukmOjhP~Mg>0Wp*s2PTt4=N3 zNz-k;mLnP-ED9i-LgwVS*S{W=9QSeLN!$I82wS93bqRgR(E_M&+q)!AO@}%8^kQ%SNU94B2KMP3UF| z*Lz90K^fjKFzEYI^X7gXhm?vnt*i0vw<2Wr7uom&!86TKAt@J2!;o@;?>23C%3$~> zKUR2%k00;n&j3YjMv}$Su;8yY@rRvOjmTKz0f2?~x_uYXi1c_YKHC&j6QK+PiTvKI zkEM~JH4#=z>$gRVnh0h5v7h2Kjr_46_3Jv1Myd%LNCNdwsg*X|AXeaGXFtZ@d#QZv zP8>D=lS?I3N(H|Z-=B42hdDhYt-Bjx*h>xnDqUbwq`)V7^Q{nlOKa~`p#4H%aJIsuKh~O|otT#6r`=2KlXS|9pIk_5*Bw@^>F?hModge(K;EB0# zJh^Lyy!GNex}Wc=v!2cf+YWUR``cWxhyP{}@WWA@DS|JxSK^!Cu%+deMf;e0?xj1i zs%%f1ixwC4L`6Y0Q{b*Bk@$hq1W!cCbqvLnPDusV#)<0r*hJ#wEEC?7o93`|Ad*%BFZ2-N zE-1I^M43i!z1RuOH$qik{A{EsoW@;;W%X)h`l(X_4u#C60M9ZAdV^Wxha04V-(4zd zi*ZFWC-+WJxoS@EXIQ3oVD?QK-8ti)F4qdi)XtuWx&i#wc79AcIC!!-@GW zdM(!kR1Ac1j|$9r6ZgoqS&h7cS@7y5qU5Dsk43M4(*sNR1OrYc#F91Ah}vfdc_&%B zK@>efDNEF@R7jqoK1`n}{?VVRAEK(Wl}H;-U5+xfM22-X^j;@>ZQsdWWQQ!;qgF6- z6CEEDu1M|jwm5E)X~nL-ljw7iC+KUMl~~a$Vk z<~Xr1>%s^0R-ZmnyahDKK4ko$Q+8b2t-ipR;^{6>4+qhbXoV{+m{~iLk{ER;@U&@ z*s&_QT!gMF4PEz$LM(}`%eZnx%4f?29Ao1$6^^lN8Gmt#T7TDD@9C}o)m!;!(R?~l zgB;&wYBhniZy(D>nDOpqoF7+BS5e`yL!Op}+&wPQSmWCwUSlkV;dJy*o#FlYx>|$qtu)$_Xw_+J%a|t{7(e zz4-30T9ubX9%)DZsJo?(*)ifFPWOArKHk5STKs8JujK$1CcusrBrASEdLf6%=g$q5 zUjB!K^h#Bwmr?*HdXue9PF^H?a?%_z!QM_A{C~^wueyJ&SlhaXNPvDv3(+6x1bVn z>^tY<%L7@*=w2-2_o#ZZRVw(v#O2mctIqRbEl4?frTIE(L-BmO5u6+Yv{=sS_sQEASo@?vFaH&{&{txIW-CDYyKk)wigQ_IX z$DF~g@F6&8T>KylTx#8=x9(VlN@1*<$)AWb2&Tk3Xu4%5OABE$?3W7CCy4DC*t8@Q z^)FK7=~fhcCm%EYljTjBh&Aq!Cs}HAmvfOzo{JJ_bGhaojp8DQ(fbR|?zzaGSj#Oo zz<6oWKg9=19*62H71rahzRFOvC8h8Iu@h~M_>E5kQgY_lW4`@egn{?Zq5N;c2{!(= z*?j!9rG*dR9kD4Bw~OtWSLvbr-n| zqgEf*VciG0*e(LS>Hg)7*zO0f9e2WnT=5G`Ds`;(Bud|&z$t_iVy%2VFQFG_T&j(U z0<|w)rdD;w1uly#YAxcAX21r(11&>=Z(Q=j;I}XN9`L8*{$GHf`!B#Je;@cM|4+bs za()>6$2s2v{x_HYN8rKHz7>%m+@#deqQtj9cuWj|>xZkQySV}`Z)n>i&&VnU_#Ua? z>?PuxI>kD{@fXZW@aLE)IZWVpLRYnkr7Z&AP|2S|&lldyrxqVc30W)oUzv$e6c<$` zH$(Uh`0|yHw3H}=3mKpq1yaESmxS=YT7wgfPLeyH+V;WFme##}32eDV?Zm?UBsojT zsl<0Sk@Nx=!>b@<)wigG;O-{{7ckGCTCADpxr>J|&m({GgXZ~CD73K;hbp+SIYPlL z)fC(xPKM;CcH|1(5c~IEN04*+k&QI`Z4P7Q1n35|c1_@YJhwSgc1#e}!@gBzI7xGy zkNu3!i)WQHbO{rb&Pko*#^VdEv=S;*Isa7|pm{%Z|V z-gwwVj~mAsv})D^L~QM>R;Lnym+%x_2c%w_EfUZqAe{(N&K70vvDo(dZzI@?6#)WX z!QxWegzvH0D!wns*6@AiJ`Kyq^wxg8Rid{(yN_Sq+NOS#W2bykR-^i90H^vHy(;yi z94+h)18OZey8;YcgW4x8{23{TkF6N}ZTAV0)P=x5ukMkygsvlUil=J?rVZD3vKY|Z zBYaSAFG{wxk?17I@&wyXU0`t?-W_CxVeP`!5`ZjJpAP!#Mc)tl^+i7h^cxrbhoGnb z0BGq)fsXo5L4R=X_k&({?~eh!YV3aq`YU_n_ks=^IUJyO;<_RTNwZ8qQ7AuBB^5MY z81#k6a;7ArFxFL#LdTG0-3r(qp~-Um%fCb11YgSI(9v9!`kQN0klp4&NUWBXM0z>C zl9rdSi(lAXj+$WSsEoWR+u4V#u*gzD+J$WYRwC5raoG`9w0ukdJ0RBBYp<5pwOsHY zDvZK~n!*Mbt0Or7SX}4m9Df+1M~NA9{dACDP9BDG zYv&I?|5?cMz0W3&9Ug8_vv%TJhlveq@4ZO6>aqp+0P7C&>W(Qt_iOdeQkG_MEP72U zKEw33J@&qPI1)PKYiYvS$JXil$4+-$|-YMR}~#JHC`A(dVYC$t)UY^6RB zBL{=kU}b0YSS|wq^&SO9`VV8c2t}!O8EMaf3z*XniHuLO|Au zOD+J%k3+b29DlO3PA#Z4LA4AC3)q>I40jFwS^AgDPge3LGPbCn$QXxDaBvU!v<-JX z&TNGEaTfH0LAYIUrD>cs^HJs?L|Qf$Lu<3`|PI}>aN<#E=l8S);CW`Mt! z;RNIon9P<_7*7d*4iR><56JT(@zLfK#%+4JZYSdlYCNzBu$3pkR-R=!C=%||M3oPo z6Q5KN7c17^yKoEJ%GE3&nG|6MVG1YU+iI3W9E}iP>e8mPoIhWg&Yuk^;e@he%S>|= z`l$)}_AZtRutJbcl53@zzsT0E3hZ|+r#QO(F3Ai;wcQqowsvX5;V~T9KBa!U36br? zBrQ%6uLx77PFm+XpGUu_SpEp#nxhx>ez?5Jz~KmzZ&=r_HZW_DtT{k(2Vtjb7Kyjc z*F@qC^M??LAE;}EzN=7w;8kUi{DQ#kR^}dOe*Xc{nF&$(@uE=C`SAiFIx{uVIYUwV zSz^8p#a*ZJmbNHfVe1<`%B();N$ejGxj($zc^%j+Go0<`9^RPl%If7X8}FYrjWY9= zH0owbKlx-M_4qI12ZvM}5IMNSEx3jz88;I`W*4^8O@)zWjWT>+&eNujJDgp3+P9Ak%`e5lvDyD0dv5|BReAP} z&tx4W@eGn^5YQ+=6Ojl-d`Xc?Ak;G&6iX~KGNoFo)#6uB6D0;g%z|Sapl`KmYg^me z#n)Q(ty{I)Op?jQmJmR~nh=&b1hNpaFY~{D_w$@HlSTCFd$n(`@A`XPhBN0p=Q+=E zKli@4I_U*pXuRx0Zg{SEi}%S2J{`P!Pa-~gy93!0C%=**^gZ`w=v+J7(J}-Y4{s>c z8FzuL;ND?j9v%Q>H8^<=ArxTAIJTJpI&u=Pv82LJ{|jye!BjyFaGr3 z?)oa9e#ZI_e!AnkU(Cm+_#?goAK#+G z`SUq3VHf{{y!_%jb;7mq&S8X0dCmq7G=HJwLwlBm-`j6CX?4f=cd2KVqnJyi$a+6| zF=UveVVc&y4_}t8P-2wGvOWEb ztNYACze2?3bzBo4?aU=2leBEF=#YM7g$dlt*;AFgB8z0AQ|GQIE?qe; zCsw_K8Ow32W`BdP;C+ZcD3O+Y4usuidbyzv`X6Ee_cqbVg*Y2gD;b&4&%fiH;()8PXI0Y@=3;&>x#^!9-1J#O zE`!P@Cv#`^t{`q2ej+XT$e<2$YNL{Oj(u^Lt{^PsV4Oqz^Xh{p=@|mvT5{9XBe?16 z+jOK%#f?vK@=aC4KEZ(%x?j9~# z9k6=u=`fFC_1>p~b){}5*@CRzBfI+sb*F0_I0eVJI7W>eVv?P7f~B79WTL^yOhocz zv*09_I&hd*?_lKEqe{-W{At)jQ^&)&H6C<-yuBMXuWD7sNi%NjRRwMgucwQxTv@k_ zuL!TOA+8{OKo$=+*}b11lqg zbPYu!_FD34+u&W!P9XFVFktpN)+S^p?GXL~K>TAP1#)Z;C;|m`q^l+`mh`v4>%_dV zvSF)tmLrOhV-NcU_7j!Z1=rvj{s`ko9Bh&wdz4KH$mR1FI;_%>uGF)VLqtz8hD1%t zJ|%Bj1T$@3g4_Mnuofkp4Fvf)a%$~HUWL6Q@Z+TtLckHYal>pluB#wBm1J4);mi;DH=jE2TzW2Fx8slEXF z(!}h`P3HvrLiBRn-6R%{6YR^iiv(hu-jOERm%Re2g7KpA+#(bk$iD@?=2u_Xzh(_k z`YVfvqWD+7DNy_x9mQX>AK0Aa^|CZxIoqn(zom(l6K=7*a<@WplGpn=ef4IIE7(=@ zLq@oSeYKB$LB$le=>o|PZ2~yV@j_VHW*Dfew1QKk-)}!T`u%&q;Qo#iqJW(?q<~$M z_I0{1)#C%&BgaJ}D8kFNw;JV)GZ*R_iXScvXef{zuT^>OUcgG81v9?8CFpgd0;u+4 z1ExGtSie1n;oGYX)Qh#KFoZK6_IB<5FM6=!s2q}cp}q-S3r1|hj~g(gtbH`3f`%{X zDeUMMJb3uX@G6|8z?ItG!@+Cw(IHy4H&>h_VF`8L_d-}Y3$G)B#Z@rMH{|S}?`>Rh zghR{^GDlF0^pervT_C-&WAEmX1ADQF1x}HLG03DCdq&3h5?W$KX1P#e0s(1XYZ9wj zBAwn?GkRJ(#C*dvCv&{;WT{E(^XVlboz$-r zWw#G%ljPTmgTL0KecBJRWQ3pwJ{yRBVh&{oVfP*`M}rCXm#ya&MD6G z%mV^xatTE)GV{rb!-UV;A({f8b)vN2KCCO8q;rnVAcS{<5aAhO8TT?Dh;=Px#@}dre2T{)p z>sA-dAhg6dsuK~W`)H|G93Qc^%Wu)w_O4q-uI;@9M%sNEhBC|9ZtSP9i?wx&<1_?Z zHSHC7yVNMnS$|eA1YYfgtb-eH&+_sK{1)PAf3Ab;`<;Hj?=P(#m?&^7Dw2zt9Mtx8 z2W!V4*oycQVm=XqVsmxey;OD8svFOI6av@mpum$qhH&hQJN(s~qc}>&s=A0HB65&c zc;i;p)$IGp%>({L`JL+@PIteaaIe{9S~L@S4A%jo8mg;B?Q$l>rRJ8KeN}T&f0JHz z)v3^?p7hx-M&!-x`)-Xex$4qg#}HEUItf>L0}!3_M9tAxGag=xZ>0=o{RVF2e+&t7 zBhR`--B^mz2f2{@{@BtH$ggsD`pQb1t2&+MkbAs7)t}XUx9U296hzVD zsw*QGo2zU|#f$TIE1OYwba6_J&FwHNTdIgu+RD@RTTGmSHQiO2?%HiD_xkC-^d!`- z4o!DYQqs*H#KYJ^(`qg1w6uMewcl4=X*CvF#oW{8tW)W(Dz)4rUfQkZ?_Phu8k+XG z1rOEyqP3UPEt@N?+M2nT-UxbC*Hm=-HhAgI)vbm$WZAm4nM+;TE>TkL&YJQxO{~=1Yx)+4qUYJpD zN&SR&!(?+UiC5h*ikh_3<~nb4-&}2TXH-~io--I!h<9Lhq_=xqNNM9!6Bby_^z+tu z`n@2YZ_J=|nMEI`mZ5kwACKnqqb2kxPCN?3qkHk_UVgNO9u1iIQ8+!?Bm%m}J@YiD z`g&@@Gh4CrN?x646M;6b$u_U)ZQc=W-WP2m(WXeYDbm|ii#9(NZ7gV0FWc1XZCcSL z^AUPJ2G31q@f`p1bE_H8@1o}y;d#7#9oC1_n3{5gTW`3EZc)qJqHs00IGiBzc2_#JzK9_Qr@&%!r-r5{RohZL>%OxbC;vOP zB#+HaKs>YaHh0Vp99EnA{?^p*Xs4Sxf-vB1g=zb&bgY!kiT!^6$9#B_iq-NWoJ^Z5 zW4}eaygx{vDm&+{=+K#DOKp0;%+u8Ugtpor(66Su>Qg@ng?INI$bq_5%|E!v6`#t- z?j!tBHs1;yKq$ohNQl~XfR0Ty`pqq()r=`pQ(9G5hR2fCti@3~LbctgpM;>lK@4jv z_o0RPbv>~dpQ|d}RVL@#d(%MBeEGxLl0n1&g99l=NNS>pi1mnZ6(pJ2&KUjITtwU5 zYWWzSEsrz{FT>c&zY)Q$m1l5X0`^u%v8&qsEi)cH*5-;t(;u8Ln{s`)RsHy7dYws! z$5kwEKGEj7OkLTj=65Qae+~$5=)1nit1a72SjAl0&~#lj324PM1}k1uHh(y*O-OK? zIBvuBf`Z$G2Dgb9{cO?O(5=LefH~EavUQVy+}!KR2{dCm05~%{wfD6S!5_7ki1DlC zw=w}JG4e?*3xDmn*?@-h9f4YqI25mAmy==hKM}Uo{X9K^1+_WrXKLuev55l}p z%{^mL3vaa$xMqIWR+y1MSGzOksVUW}t0R>Tv8xXoe=_qPU)GHSeokAt&W!w(#G@?* z4lQ5AgI04(Ei&OZE?rgPhqjB}lJmj+bk`~4(R=)8zR5R{F7k_PD?60Uz;}gnT~C=7 zuZ&7iSBBcmZFK4u=T|D5KV^&^(;<#P1rbTLYyTpmmhPD1JKU4T+svoM{OAa8vk;No zZb>&6sq<*wru9?Q={SdUu&anfYcz`^pxnHaO*`d#frmC`Hj0|w!}wAQZ%&{QrLP=o zTN#!RG@@@@U_^JiC&kc+@V+X?v+aW8*=fGOc*X^fC(We^CPsA~^=;@vRMz8 z+5-blM3;+`DsFS9NBC{#R-%&Y7u%95?r^7hO)5q;Vn`Jhd^Ph1el@7chQon}U#HP{ zB-|40Oe6e4oESj^sDz1@OMAdC`TvJgpm`ZevQf5-03s)$=#|?jzQpyCU+gb8q_3sa#JxmOluO>aoD_m zq>q#5ac}TEj-8}=+@U`g=hSYTyEIIy8JqU;%mKglO*+8h7UuZ}+!~LzTX8<==-s`P z4yo$e8+1gKypOPch2N&t=%a(G{9nqXfRLkQQec z+%6vhw^xjSTkI0e$~foSXNYqyX6mZ)eL^?XuI~(o*Pu>k3V7GDL7#kmH%QF$^$>}9 zY@=fyiQm5HyiWUS=aun?`eo|)iOez6~*diPg4hyQV* zbGRUI4(aL@UguHIA3LT19B;LIB98pvsXz11<_~r(>-&7cMUUBmx^z)eBPr4gqlI6Td zg`6i7F4$aqQ@^#8&TD*-pu4Doge@Fj(0K zo2xv)pV^3;vAG`)RW|<-Up9AxttM7mbuIpA{dKCVOHC@LV=>UpsO;trEAuC6(&y>s z7N644LG)$uN2+V5>JIBj<^xyXswR~pd*qdB?y364`F>?{1dprSJhM`;dQA6dOg821 z3_=Iy8r2n54h}Rur90~c@kI0roT=QCygWu%Tk6N)mgubB;lBCGbXTwHIZaaDf!t#x zF{?j;0zN@g7Wpcj^e+~!KZ(vmfX zE<Po-Nf?qe#uTcE5;@4I5D-6Hl z@M}EF9P}%m7GXVKCE8Lt6*mGlZLV`OixwxHU%IPi{f&!Vtq%m`4_fy-3)4$2HULLx#x~31&~!S45Xh9bYiJ45 zNvPScPD|_Rwm}7etQg&K8;{|Tl7P}dO`FXaRQ_5PBs#$~E1RF?jTPg%3{qQ75A88w zCG&1o1{NB!do`rtv?^>@TXF*S}Kkop}^}FySnJe-|oKgChboC&N=$2eHV{i zy|~PvOW!qzJN)=DPD+V^^RDJ@pyB3yXx2;rs4EGP`IwK$KfC@4nr4f|lxb~>(djh_ zCZ?HIdYzvhBS-AnM@p&v9r_M5cS zGyOsM>r1~I{7q}qFU5Kedyo)UIB_w?WGg3-MCay%guxT6rp)+M*QA6Xq6U`db}VT5 zH-#jK{kn{n`K$n$%mjiNdefIp3!K|zZu&dRCq}*>*EV(InMBTkQ5YrZ&+`d!$naCi zPyr3Am4yF7yurKL3H50gbhk5TyM2w1fd zkcitY<$2r+|M~uU9ec8dzq{9L;`~P5z7=T+iJTEB(YLJyFcf>^wNb>oMI<4);mQ(q zW!N(yY_x!u^>%20t3y}=yj9o#`W~b21r)knAV0qEcB8L(mKj3v3kvRg^Sobg$K)J| z^wQ_9OR!|UNBAot4yt1-8Z`Uj>5+DtPO-17u0xlXX>~t~0K12?wDFA9Vq#zI8LInL zp5iEpoh%li$UTL{S`!YO^QVL&>cn@X+3){2LL_>^U@o32qVK=CAc7#Lg+ByW<9J$p z-@DB?^fd04zv{10KUfIg;}HB@&3r$dXaw;zQ(E~J_9IT-KaKluwi};phU@XPB(YEN zAB#pUz6nXvKRM3Zlbn_i|KwbP56(U%?gB(`}*P%jC5DbslA-2r@P{}6Pw(=Mf;_GBmm#E_z#X5W=61&!AkQM#Ib?d zDuPgai>_kTQ~2Uq0A4_$zq8n(_(!K>9`-RqVEu%dVIBPrf%W;c3&Qi7Iu>5r67I3> z*aBKgfF(9cmAmXSo%M@_v`Rj3x}Y$F9bw@)(d*_w3&$LpeB~$0eIeIMu!v`{NPIFO>uT&0aoicG5}2;I%a1O?WKrRYHW5**Sc4frl8LUWp%$x)M7B0U!@jPo28iJ266Q1i zHA(Dr{=s(jO~QKUgC#b)eo$Voztp|Z4|-2Dl2}I|Uf+8(9&8Jv2SPz{gxCn4#OD4f zL77OVOKe9QVZN)$a?Vo>a)zcn`?3{hWbU2l1(eExfJN zQ!0^E`b_kF%R^0BTksN48V(PmS;AMo56*#O`bXDp?H-6FHzvq+^TquKFUh#XC}AG- zEsGxrtif&ZVhxIKjxZ4sj){hyGARF(GdynBS6UDAxuEqpf90_CXlxt09<%5y5`@H< zW#9!Z$dY?#K{jJsfkDLR#ftR$UZ>Z~!xG|{{YW$Edpii^@NA%K{`UT}_$|H**iSso zWN%zjgl^*O^t~tB;0M~IwTa*7c#bW;^BN8B`UG>GiK&C#YtpZ!Pe3p(N#g z-x!{%I03^9qZbV|jBeR2v35}X$&9=Cj5F;FlNk{O!UnvrF$+H-fxJ~&!OH?HTQuBe zY~f^uzMq|9Kywl{73cqyx6#R2@g3ne5sTr=J|(e-YA_2Cn#4JA`~Z~UldngZl!6zT zNX@%+N|Z^c0em@UM!a3or@t+T8sYEQz&CW|!2)`bxaovM)B1Y^%457~dF&qGB`fe! z9OrYigbmNfSfJi+`LTd|dZqbDA~am07u=^<1J^ZGODciV^P zx83uSt`_ZQo*uCd>*2@R^=blAcWUv_Zw5n(lDinD9+vRZb_sfA=$lZ&b-2zc)pZ^^ zClb^)o{8twnB(#pSbH+UXH}U^!!%LAf_wght!x#_rVx&Hdw&MkTTU!acfa-YAmsfn z-<;!qf8mRG@DWd`JfCQeUts3^X9vY)?&)wvt#(y+?O&9C+?9`a*V|+#D6{5=3$lBj zb8-}7g+oc?wWhnn7=h0$3X)gdQISBiQR7rs6iJ~)mh_aOEG^yrX>}h|1LSV`33Z*mX*)`5TBkA|h} zRJJ^Q;WptZZOZe`3%7|tn>nIQZgC_vOQ{*9q4InT+T3UrNu<@n_d3Mm_jnJz-A|;_ zIWi{|r>5*#H!00^N?lnwvoq;)C^3X7f88#tFMd1m6&pVV4EX&UOy&6iH2~>`hlq1N zHz~?QFsBNl2>R*mSytrDx&EypK61%?^d65?yOvv0yAG%3o(NS7zXSEtBtC;_E}xQr zvk*9NSVt(Kq#fJ(KKi2%{`%?&6CZ%nh&tV7pT4Gyg&F>yul58tat4j6#kT_fVfP2) zqajmQ+-4w{xFCN5-~?+@7%)LK`|f^N^w@RmV!@QUqzDni2Bx$4a0}ahT*_8^Yi>dLg!%W%r%hR zljl$d-#Zi(n|ijg7RS*4J%6;)3crlQ6^)>Sm5BV z`tE8B&^O6z{}P6koT2n^*l6C23uqgbg@0NiG)tC=&Ty*to831o6|1<0i7 zAB6`cFV7_OIV=DQ2IpLb@)PLY$hU~C8iT7(;|pEF;S*ysJS2vJfC?LO}( z&b{8{j=dbsu&{1*)e?LPq57wni28(m*4X$7T*0HtJI(HuJtywx+?_caKNDfWk^omqCC3VPrmt&3o4ZYKk z0)f~U;`rOh8#}-=Lp%z4#g{onE)s^UvX?6b4zmc|LAu)A7*&m)=m`18W514`5KFz> zvBQfv0Qz#z5-;MlOBz=BmT=_DEJROn2mw;l(l^*Kn&z~9Pnb!Rf>}zN?#USRW+xw2 z3U-({i7C>t4PZXKB10~14X-(pgIDm{(#N!?X>E^VddHvUi0HrA&v^ghJWL?87b%JW zCcR6%jgI}OLC_=y)MQ7VjDF5Gg0J@34|yvyTIv2-E;qXAw<1}H9!rg+N0r`odkI&c z>l+tIJ%e4n(^4YivBd&m#PeSI%xvN)kyfM5Ig;FBj@?G0qF!yfACBMxgg)2Tw1%~D z0s7yBlB=uiBKU$`<*h@WALQ)jMRIsMgfwFuH^?WGU#ks6HM4QkMK!b3%NVe$xr7el zpY*zqqBJSH#G!f=7bDXPliKTyx}-VQsA683Mn^3^ODn&+cn1Ay;KCY7HpC7!(W*7^ z%#H)xyq89xXhe7EN^SM$CUF+BSH=F0ZpUNRC=V0+&ZQA1k>PZq{QwrUkHhEa*J%WO zUiB#s*ED+{Lg|9S=6)Q?$qP6U&~77=VlSPVE_5=8hK^}BB1XvV~`D;lfOX@4xyus2*>kI zL69~FbWd>_0o_Q&?y(EF~S)5 zE<%EO5_*tH*$6e`NT z@u%@w=k}&ti9Z2Zv|j_p;tgtl4YEt%fO`}8YZ?_~V??zIBH zHjEn`zsj1rI(|j@+u`^XC>V(MLin|E;VAg^{&Az?*G1!k@#~Ut7sRig4@bwZu74E2 z`m7`H>tXBvge6oR7fnIB!gj#zT&2XlmCV^(SPUR@5 z6?uV1!K;t<2kC>_8MW?`pWd#m^UM4}|EBnrX$mIJlWx{RhT_+y-nwPSp&=jYm`Q@= z%pz27dxC4I-1HY@-B?!aZCeKX8QWYD#x=@Lery&stv9_cs+LVZzl8IDPEJ6Jo@C$S zcL0s5Yy_z!Z0cdGN*&X6rBaX&f%v2ItYQyK@OF<2RSW6cK`scJg%@-Daw!KiKD0Xa znr{F{G~Ty5dJNVV^7fcnl=l1 zihP0p9hjwWiWt<*30}{#@Sn;~v=tDfD?SLsH$v0S<-o8kcix1IfXQ`AF5=DLuKGul zs1{a?KOS$-`f}CN8}Hh;@g(h#Y0OR~?;z&KrNmsGjffUEd5%SGtTdUdru^Nht_mej zLmjkExu3aZX7lc>p1;Ph#+Dd`+XGwilBYLj<7xR$vHs39dM9Ul z({uW~XcSwXq}6qKy6SSf`;_PZ5Bl!F*o-BDwx}$4T!bwQW3wRdO#F*tiQDSL;{Z(IFQ_nben4 zZr-Ro4~a9k*Nm?!n_r|K(v6Pb4sNwgj_Q=+tPU-Qo^ZU_%uekFy5^5G{WiFOo+;o? z-4EZzUSZsV!YQ>dCSeqXp6U+&C@PAbIO5zf-zvQEBf1kocRa^J)94pm$gOZe-(cEc zePF9s>Ff>P~$*x6cemhKdmB)IcL< zv%l0iufM{*a8UmdaBfiDPsRCO`b&qOU5D6*>~+?p>7D}V@Z$4j)dcw>Jm~NDFUmiw zZ0>@Sock%b97HetvzhhVYs{kF9>FQAiHV9`S5B~20l!nj^lR}gtQhJiS6c}u0QQX& zwrHQZ1{JIQ(xD;iExat8b0UYm`-9KfA)$VZ5rEz7%ccHkeKS`qaJTtMH9`&gM% zzPsqj2u-Gv-)0`B!yMw@nCpq-y_DNnTd%&XeQhv6ub}qd{5l8pu1koc?p`+QL3ax4 zH4$f-dvmENDbz0jOep}bI}d{C5BEMaWRs{=48j8nEeL~jGgc>5-z+m$;A ze!m$Bm3ver{eNd#Vc4^&=ITX+@3w%{r@A^)bI*n-d1p+rx!x{{+SM$|uT-|w80|up zywc(AVyNBjMftmxEpHg@!h{R;kam-(UG1X$gUXhTM!WFLwWGG#aG!V{k!c_GTN_fv z^T^COqmFsQRk_U;YLYoYUAa?#92)a1TcGoIrzv;%=r9$@!^B&(h|tJO{d%4W0{JCx z20&h0K}-Bs4s3mr{lDIZzg6^(a4hWX-(M5~%f>GH=i?uMM0dPB%-_)F+KU*he%Cg* zJ8wMG9XiaM;0tB!le->{wI>Mn*QWvK9^NAkCOhWrk{-6c&>;{gO)cm$2m+=5u={Tb zOE}T&NniY)p?*G3?+~sI7E|UJRre=`Z`EszS7xt?5a-Pg7pw7QVjygE>kJhhMdzfq zT&GtC*2$yQrRQYuO){Ab-&wTWPA#=L;0pfx&#=5-Qvgyat z5$TZ#I3l^_ujTy9C4VjAU-|Oa4g71P{51i;3ZRq+pb8Gi0C4H6I4Y3aFCOqKAEYN( z8LffjU_$X)%z)?$j@nHh;0i%fO@G1_!n&J&gDa*zFXM_s!8iNHyxB2YJzzek71USZ zWkXKtM-l9;F8p2zh;%1&SGC7?C4&O(kGa})pr$+3RZato@pX0f3txX)e%FD8?yy_n zx9_X&0^+_BJclZrsaiVLH!Um~pRt@(MCj=##wie&Yr~!6jl_%~L zW2#?rKl3()L5?}HL#+9l<)5rv~UycQymt{_k?qtHWNdL2effD#z6ixJi- zGvku1n5J&1OX=Wq0TkQ_K93i+Dc1c9WLbu zs$0h>`M(GamRA`PtGUFi`yG>MP07YVb9`s0vgvV=s$%jlKV<77KsWkyIJC60-<%R< zf-Mln$G@*(O)cuRH=;x21w=L3=rVc`4vElHAESEeQ89Kq2eWt&I;Q>_Z#6k<=&c>z zc6$|Tt9sT~2{F6GIpFEFHLC*~qwmSraF6x@TX4ndQMaHnumwGq+y-pHyMZn6U<=Y$7V#ET ziY@5mEx37C{%(4`E_fr}{L#>j`0bD6M$me95ge^F^Cs+&8*^h>>92FF31tF|umxhM zr@Y%7U2K&`p)_m<@^zz6k-Pht+>SkRJGLv&a-J316jwqh0bz&%gaQDKUHVT5hWXE% z^ zkc4PO z>&*hXrZ>OKs37u+C|I~+Z~28tpnQXgutlw-2^`3@RqPNnI~4!c+I?uZ;i^#KL_#0; zK>=^zZbTj*i|2EQ%6ff{@WvkkwKxwkYUxQl!U}VNE=zy|!~yPemVE^ja?n|?qmW6! z33m>R#n^7#1td|%wO6=QmNoi2KV;-p!NqeAI$(H+zUzk)p7_L*eifY!pgW+ zAFBM>QS`iyTfz^8Q6%3x#J$6E04ERu5Eax;pmkO$dKpRl9kj=l!Enc}bB>bXYV25v z#sm18@VHP4(*}I-bF*pvc8S9`%FRlBhd1k^D6vMc%#@McUZG z;dnLtomUvIZZi|P@bFoNK0LXU@aRGNap2KL`$36EZ$%~U01hQYMmNGEFb4o6AE4wz z%5xcvf$rdV_w*ouE7hJG7=jPaQ#Uvb+!ZayCzC@>`YZTLt4=-FF*u`YG>$rL)~nP^ zq+Vq_d5BGGfF9sVa5@4X(xxPDSDq`wr1OggImc)H==cz0Yc}vV)+K(jK=s<^bldmj zFM{*Kr7mL(X9TqpRwEwU7coqIvY&;rjlEF2i$G~MS}2>hMSmt`51fKr%E6}3FI-GQXD_c6*wL@#+DtGhfk$2m5 zZ7^m3^?rG9R8RNy$_K(xjHzftSg!AO!GqDNk7x81ef2A%c@@Bn2AZIJxZB%)U4{FZ zbf!z!RjVtD>9fx)i2}a39@m#HLX=5;m}-W5*+rn)wJ!^2g&uEqBK!mT@uLn*&bxTx zc??xwkfa{~(&z-MSS$InA6lr(Daq8Ox!POeKry;C7Wn0@ewmH(z2bj+FSWH&_b~b& z@J`4$4ij#_vI#jeu>-Zj*^wHsiQ1c;bb!m~U^K*v?BN`<-t6RFr63D6T(gr-b9Pm9 z2VXzbhnfA@_n9SQ2hO7}VdSgqd+?`LWML)*iIE@`Eb*-}J34$Fdy)simNbPih)mwr z$i>1mFN*1SmO7d+6tDq|oT}*KpL@qU&w9smS&F@)iRX4_hZhw!CK9umo#e$kUYJ@% zJsrSIti1?D)l4Vqp!YUEN8y_jxNb&hyLE_i5gC_%@s20f~TqW0LpCw~^aAG5E&(jDfwtkS7e%%`D+!sQFdy$Q zHwkribKL+hJYQ1bsxZx{XE@7IRhl~1aZdWK(C*TQI%RtQ?8GvWP@Ib!&Enl0M5pHk zyitP+9vkOOo`Ojvu{UxXr~D^)#<0uqqs=?Zu>%DjXguQqgi{=cP_+##3aZXvJWS); zWQ7+xz49aMw7}jxfUbZ`09Q-lOy^v6oW{bQZM?|S_=vRe9%U!*R0`5V*!#JJ5dauq zTvV}393Ms+w`V0`1H4d|0j`fADH$~RDA;H8T&EPAH1kex6DLi2-%=aFIRTqMP$to1 z@(X-=&+!x+od+1qSTIdKg44O!EQ0!5S+g?r$WJ0T^S}~B0K8@vnxn0(>Yn##Qk0-O zXg@y;+N86<(eT=z&rC9|R8}1>EWGhg9JDhoGr{W0Ot{$>bFo>(j#>-pr|N=_Oqp*m z+H5M!z;Dh%pj<>h>2c{s;(=PAr8$fS>C}L;LyCaZhZOx@OoF`Cd5P?Yt#Z%{`$|ss z`}JG#h?Mrdds1p(=Zk@G(4&e~xHSs)G_To~I}nyRRV0C6qr(GRv7ZfGOM`IGG3_tC zdj36{>&*z}Ox()7&DZmp6$;`RtYs)u@}G!iHMB2cn9+~@OX?VyG*>U`FCgQ%$n*Xr z>M;;f?Gw8U7k%1kEp~{!OXy~sBqo3(cu>DR5bVD~(1c<;N3?~UUzPo_*-iUkAAY-P z;1uECFvg?g{V@urF6G(xqd1>w_|r>6O@FNd(F|i2QDvQoK-u9C)M-3Nzk3YjM4cac7RB_cU;C9iS0T>etc?i zj`oPj8{`UL-d%!{$ z(3|YUvve{~a_KVs*)FT#5-b7Vqv(vIo=3#1O91)fE%@3j#=3hk2atm{kONH&5na;| z@8fnv61-y_UFfwJb;EjOCBj+uU9x%)D1=^n3~SMeS%{&gVz~$eB~`;9Xr08&u&V^7 z+)ybvZ{g~qTv_IvQDcUPM&e01#fH(R$PSmmQ~WAZ``~%=|NYd4Pl<~lh{|bam=Vdb zM!z*a)WpyW;>)KpXf04j=S(D1u1Y-|WT&ig5ZKBFS%og?MasnR%uv))(`U&1T_Qu!Ep9%2os4FNO|U8A zU%8RLdp_cyvytZ;!!Nv%jp6^gjr_3ipR|z?gpvm}umHo!g35>?P3ad(hJCsvla)}+I_q>vq$gHN&>kIDIkI(ujyZQ!%e z@N;jd!!H>vhNM%XDX)MK;_SyHFV`lRu4#_l0T*wuDgrvDIF1-nXuESKxP(?&jd=>{ zGLJ{G-ieMzYIqbJ;#sjPBzF&pqBmT)UFElZy)Xb34IrQKd$#n-naH#@O`EGOWu#{ z8WIn%(_s79ufI|Y>lBiOIu599#cW@$*`(#3!%ZiY#o?dlvO2O=`w`vrWj{O2ABBY3 z6N{rbRG(zt-h@cg-Af_NZag!`GE5JeXc0cXc`OABIcS7{JU>iWiL7W>A7KiJ$q=hA zBqIw^6RsSPky{5%!P4-|7Ls5gEWDLa|H%CyHc}bmv%xJ5lKI^TS?m`nzv` zLBQYt?xoNptGQ?93^BkZ&Mac_lRf!88yjFf*w}-=N?rrRRT%o>3+exvX9Erw2}*v< z<@B(wnA_FlO<~?6pPslDLe51sKcwzKoM@AedrmEaz`=H zBGE3X2=~wLiZlt8DXKGjavViM+1cmxax+-ys98Qai#? zCNzw!HDo$A=!LFe7I4Et=OB?P)G3B;js<2Wx#R7p8S4u&zYpri0amp#&1R}b_Z&Tv zN->qCcVsBpL^~_ZKSw3j`kj#`os1#GuZ3uHy_b6$E2P=7oxFZJ&Lg2nET!#Q#`mKf~Sc6kTjpx8)|z| zmEM!lGjxvL?Bp(`;Nb~uSU3f%wvh;dW4KU46iY-)W%o&z2y8+s*cIkYatH>;JFZWV zDq_iEfbU`sZ4YY}u!n4*7U(AhYMwvU?zvXQ|yNs7fx{; zK**ygBkWmeKj>}CAnf357ei+@tJh)lM;U^;)Q_lM! z$83_K!sG>&A@HNi{fzyeS^(R(RI+V~IK&mruo$lXaTrH@Zm5bh3Cl(g+dJ_8Vd>Rb zVqnvr#4=t>QQscmHOpB+TLNbZ;55`1o#p@+L}+uaqllJlKij!0*v{=`5J0<9VG=_$ zDC#`X{sETinGEy*rLm+k(cYNrv#KjARCmk{!BWzzn1*$0m`P2l%I#iFkMv-R9eObiTXvnei5f%a8W9Pk_NbzD4XxOM5Jhxa0}@v2S)*TIXk%( z1nEi`93}r;qq@WYkOor$99tuWor9P>LI6F|)ViJPt%~_E)a2-CO2kBog)8F$10>p= zQC2pdBUA`9p@$7kMa+Q{@!6J5Tbq*M0Rp1&lq&_5<2myQ3fKDNC{#0uwIh@@l zJF!ckTaXqwql7xU3751=%1!6VAZ*=)<*KQ#R`J4EXREHDY&9rMkJn6Sn_fFcpZL~% z+Fh16kBGgdWx+K2FfZz;0v*wzO1gv<1{DB-Ht`CmUaAo5xH2?N8VjW_eRk4zp`|$J zXygOo1!_ib^w~#ec$u^&ZRa(HdCs#O_&(Ipi^)_AwqT0m5Z#9`&UQHZh&0fJiZlS* z#H94OBns^UpvnxuNZR9NQzC~0(~_do5@C|pr>PX&FwVs1{eV{%F|YFiK1JX@?G=_E zQ={<)rp6|}D)~8}R2n?nCa^?|;c~3^#7TTmj!naudnC!4<={rguz}^gZ9HAEnml5b zv1##)^@^7V5O9OJiQU=nWg(F@@7QlhTbOkn*skP$rQmB;ro@NfNg_YV>#&^DM{QR< z4KyLfTc8Scyfy-Rkr)mo0!=>&yl5$GN(YE1YZY154zEVm0b*WwmtXIJN&!N4Wd@u!=39lYm~%f*uaSw3&s&qBiE`|V z6q<}EjgDw_Hj#A;ikEbjcb%Ii!nLg4+mHc+XA?Cf4kzgh?kNSwE~YNVJBclF`j`?6 z;+`ZNjSsTH54kC(I!Xm|Cw>#EB@E0SY}v{6%5ymocJs4D$n$9sN&58k`?DZeeB0Y} zrBP3hpsFV$d=efsWK2#I4NBNK_10+No17Tr(6-vj4sCO!Uov~`Oy!{FY9%ka9iAw5 zxY!god4>O}HQZV%C6$7GQG)J$mdSMQ2$ifg-;meh>vZF_5|)p2nk4dWxx!4WsbYD9SVp0NOa+?L^E>QdH5So`KRm|i z&uRo(q$BIiL6%`bta0CiI`RcpteQ~Gu_Db0Mltr|XT#VngxSdZizC79#UzM>&lo4i zSuXW>IH0hA5=m?s;5yOvZGyMYu};1uOBCs@5$r7cc@WzfnkB4J+a>gtbBYb(K{e@0 z04`V%$8si&j1=JTlAW}Rak$trVxobgnKQ{jx?!Q36xkfQX(jy9gOo8xIkj1r5XY)K z;z`N{`!~^X3Z%Kn;QzR)J1CamQ3QWZ$3)k`YJza znIzgeG9&c6_V9IqCid`agP;7+cml~0J(A?eNlcVYS40WYE>Ilv4nVLFZU|(>eiCCW z*fHYOf+UJ5j)Q_thaZbBRWx!(;=OGkWK-zqW8bq$V1+Cs)RXKj5(zC!c_L>@Iw{0G2+c%{j%l(*BJC5tLzcbc9B4?VN*d&BL@H>)b9`|Ciq1V_Z zl=5ec$$k16_HEY~PE2yd%PE0TROZGb}O`NLGk> z1}|8oz4Xb4kpUg56Hs^}nNv6$$7>F>`?#Fbns(lbr1&Icm46inD>y13L zcCQ2x;Y6K0$n1?$@Tf&FV;=f&sgOzu841@jh+Uvjeb#mGfTd{oe=0)YO7Y=QF~btnpDGrS`-mg=NNh~6;Xr_aoq=@ zK(wdoLRzXWq^0UYTB;S>plsd|W-`r_Y3HNsKZ!JLfd6sykx!U}?ii*;^s=BWwTM6L z;+Vm{n;@&9%zGqA<+_K>Ce`dA0e&XN1c}L^5_s8`uw!5k@thF0#Pm{ii78c=m{N6# zDOE^JVA?=_z>Q@mdzFIg!#O9}QC?BzCBfVysV1=~fA}lQ;mtH2PNPI136FfintCLc zFJ-1iFN@PoFDC-yGm*-+1Tc|!u>{#iVKYH)Pbd;$>nnk-DBy6&(uK%j<(LD!01UQY z8vR%q2*z6|<=D8&)+YlOz)s5PFd+eW*~Z7_J&3y?T9T6|yub`^j`gnjN&%`WdRbKf z?!d^V$NCX1&XYt9Hcbyywb6r4w5Ta&5k_Jo7s;Oy6;N>Wj(_<8;3r{%G=Oww| zsjxvqPqUXLw^Ah0yxL_zA|oeK#@=)EvU@P0f;F@MaFBq}WA45a`C8AYZi zSblg2{1i;)kU8$U&>SIF8*`M~SsS#4fjROR{_p1~HziJ=V>K(%Mww&qJ~FVxD+M7T zQt>C|DEF}s`zVCN>QQB><&K6RS*m=5ECqw)`C+mYdrL!>0xA-+)Zu_E1!v{CNWTcC zO^QxsEIJ`r2l5|WWBcGk4%Q!fMjS^R%N}B?3Q#DKRq)`owt*&~BM}606#j>7L?vm$ z{$V8C&-<93@I7Kl;aDoLW2;h#qCDC|XM*i}gdgqUAyO{+CGKoGA;xV}%ucOYCbeEU;jCS}uSZ1l5+UyKIto2>Y#Q^fflIuT@V#K?Yd&cN@2HzabPv-nQvUaGZY?Xn+M zgh>0QIL=y6u>BSO*g?+;lC+NgAy<#X0ML2Jm$cjBJ3-DijRrvj7lL4c@1oQw9^5csKea_o%u zwKLN1RL)nY9onuFL*^qqLaPl8N27MQeF!|#dWbxr)9ark$qwv*cD~D)ZzJ4@DKWi%nt$`Ywtqsz05CbTTcalADCL&S~%yOFaT*=PRjoAJ_j90 zp8{cX(w?VP^xgSTaHx>TN0TAS4VT47`{Emo}jPNH`n%R*XlLAAs-zTQK(vhg-Z|q{g4g-HbVq$-JQD_eN3Eny){R50# zSlf2=bLxm07SWatjWz6uiUbL12^QbFBSQ6L5pT6{wx2TJqElFV;pcBW8BBK-r*o>4 zlSf6^0GuKMkC7XHKBuHW&);jLE|C08xHL2)2}<&Z{eJN^+@rlvQRy%4L*3~hojQw? zo(Gp_#RZ%NP*5*k_ZXO>`b*T@zHlWUC2vP>gzZ}!oC+p0+_&Zd)K@8ec4W21Apaah zehDW8T<+umx!g1MR2Qf~UFybqI2{b}O;BmSHg*eNge z<`-psJHJxNTZNXo)BOG?pUBDrcy~M=W|H+ssN*1Y;1zRO9cW)J>tdw3JgFj`Vd|Jl zC4V0EmS34Qb{;i;TFHBSXy>$)`9;~kV!wsABTY@e3Cwq6uNZigSzi0IEcu;E-osWI zORwbFEZlb_e)=;%W(qsMkp2&LwMbL)?_&jXGK7SZ$1SL$@ZEc%eoTg`r;6^hEsI`E zchZu|H~RhlEuqThW~Kny$sDiVlSOkcSWaJqQZ%o3P{wbk(Nd%hrRHf&zSFdQ2A$)u zY{fLDRmoe27lmwDqP-{mq>vz?rATqTE}{~`OPfMW+Dk$CL!0confB+(IMYrgzn?DU z8oa28A{Z?Fa@G0p@_VT?QkBhik4!BPCz_(-TBUrGni+EJz zn3(>+pICru^&VUSBa~07PjFqwpuip(s2f1cvhcQqdIBml1P{|g$s@x{pu{=ITppUk zudxIvazS3lJ6Zxx6W)oAQ}FW)IQz+zsW4B3uIN?@9=Vv|V!KlCt4Tc6QV}3*jsDeJ zk+8Ey|KS~r(EiTi7>MXCZw0i$g+bSwg06G*YhDz4bk1A4*7z|Fw)03C2~`e=p5nQCN1%SZskerLg6~ki~}R#9bVRBCg?^h5!`) z9=pZN{0>1sG<;x3*oAZ!8)3uO{z+&!Nx%YCWZ49o&pF?XkoW1wa-$LAl!Kqxj3?OP zfK&#%$g8tVGNg#@TdXl*6|E>y%kCW_ls*%NhbOUvtQ)tb^?05mBm99;9u%YGn!Pf#D_I45OI?EnyeG_0uOCKkM z&58DUp=;N5ap!gOYpEDXAF+XP#s|*J`C$vhbJ;<&T!)}3&!Q8|vy|?w9OlH_{#a+5 zKD%~dhoq%>+!>C9pB1T2WrPdX$1y=IGZx8sdS z)2NzNHlYy0f(wN{O({R%ln}Hl1xsc~AUCYDbTRq1H-vh8 z_PNq68ubuSXp+cQk%pnqb-+CbRW5~^v0jKK?5D+Zm*GaGdTbyot{umuWn?1T|BG;d zN)6i@^f1mMp@u>j^ISqTBzb7UV+Xe0Y0kZ{eS2#Oxw5;DXQ884#{BMJ`zj4zxVH(U z+|5!cdu_pD#IhR=iq&)Q2?9cgUd z2O;3j4$jQf#~ZVs8$-7YZ6XdlQI!(qxoa$7Qji3ZP0>M?(B*bv3Dw}F^T1ZHKI6OK zF5M;bdJ|Pr3Z^S2-EDGeQU|@!xPp2~Zd5j{SESP=Vbr6`=n3^1X=fv9owwoJhgrqh zmQew+sT34^}mlaX)lZKa~qX>DSDRO2+fh1tzyKE`g438e2;%L~H{8 zZ;y7bg0WQSJe(ZVFza{XSk_4`h)kz`ND`gw3s2a@AZ37uF*NDE;V!Y0X~ z4AKN7qS$9Sb{fjrT0=Rzjs1EMI>0{&(Y(GaLdOa+&Z8=zyJbZ!rehKAov;eWVbJ?t zXOB;@M!#Mb5%^IW{A6|TlmFJA7`nz|B3{J6*7(vKr9hcx3WWV0FbHiOuE3O}3;em? zh!v?3j+oM&agT9-o1owrb-YxGO67PnJD}u@V=~NZBLfGv$)Bt`IBsI)Tm?NkFP=1^=Mv8II{^+*^JaYvS1yRqjhQIY&vHKNh*(BKx<`bql zYb8C$PVpMagW(ekrE@iBl!DKa*uTu_8M;^;Fj1y|OL9`}!Z(yFfA2hyz>BbKw#L|e$?Ce;l;9BA&Qwz5@tig-` z{Llem4-i(3!XXobw#wzv`53Fv0%AMj(Fu!8Q3_c^V_LPx)m@B?HR?12og)*Zz~+>G!Wb~a1@$1X0m$9ezk z%}T+TYfMJEAwwm4ib+kM^wacmJNDZp#DGLc@Yy9Sf4qymq>vD)#JBAXaRHaK%6tk^&b}wokh8yY zF_(C7-GQ==@9XUVPe8E0gy1jq_FG!~{(Q~^^`lKh9P__NzqOKPN!O9NWK|FW{n`B> zps!zH(sNJFj{g-C(ET!rSw9m|$WzGOw9P)-!c!C1VL{iXpzHo$%4_t2cnbYD5zrZT z5&?x<2NpJGoRb*O?Bt^)>#R$NQwsW~@JPCaoeQpMCH8rXzaM52&hgUba{d=Q#(n%- z)=sGr@oL#3@81m3&v`im=0$)zezOG0f`}6VGYIbnxY=<;!Z>U^yhI7qI+?Q15QGtc zAOh(2u{Bf1s&%mwJAtIZ)o^41HT4H&sTqW+gM;^JXKsy4*Rxk;2 z{^dHaRwYR^On*4=NLnKT3t>gc7S7iVxGfozPGAd2#|}L#l(8&=Cw1wxLE#dMw+CV8DkOAs60+7ES(m^l19oyLZ&l3qzc}iDyusg zMkf{mC%-C1-rxn{DRGa$spAoADPvzw$ootac+xyyV;%kp6VF*3@jsgQmV{9!zHV{E zzxl+Aer-faLKsc>L)=selvT$DRmxS~T z<9d)mF8$RUuM)?lbBjs))Th(M74%cdzm0xtZ=TX`+MWinoQ<15Jq5AL5ZJ@lt3ts3y()$F zN6~N2I9NgZNSd(t&NR{uqHP%}M^JvBkvl!s*0!Q6L27@1F%|rFT!7TR|I!FjTfs7; zB%{B0DL_(R3A%nU==#Sm4JEa%mja~Ld+UWr?GuxRkXm*dpZBewSvYjV&qNa2NaQyE zr(Z^HJrhSKx3g^ji{$p2pAILte^LdxJ+6Kcx$S*1KyH7p2FUH{7cWe1PhIi<5V?(h z@yp1qAThGv!%{&$l=S?0@~EWejTipiX>Q~<|7SFJ^Q2KHZu#cFJI%f0C;te|&7C+Z z&8_**|DWc58O>!+PNH!s8SF@>YokGk363~OUr&mA5M@Mzg;eXPLaNBlTn`1dQtc=5fS00`y#(2lz0aC$p+$Kl5w~y=FFXig6Qo~pMrzD< zX#SNgbLmrXtRu+ZzJ+~+>8ffAt9m~dQL3DQ1I}$Q8L;^vxf|qerjNaZvpx!V31=q_ z(t0LX*pdrpMFa-ZoIFZ_`!bW^A$3Z&hc~hGB+k}jFHd3rrNet!z0gbxS zNGY&fCSosp4fiqKnYf;z1%Z~X8WA^M;usKPPuz*|%ypIzi6%HKw5tGDRw&W>ABX0q zM8?u_Wz{a${;-Cb{cLsB5ywvpJ7kXazWD~iVv`m-)|cptN*N$*lmb3%IL*!xmS@aR zm@hdCD(#1E+m*(s{X8P2pxuBT)_+TtpfqT4m|_hKbwTd6hm0ggXAFa%m?sdp@U0h! z+L+&I1~;J})aN&2=={z}oiignsoOtdn1W9m^Gg)-LzI%7pO+)u0~kR>tMdH3NIGQm&Altk#F-nBX20)xcC{E9|2{0_9Y(x9>uocH zgC+9fx7%+^)Gy-oi#YwlDs$%(B6U7$;V^X?QQmWUEX6a=u}E-~qaBgR8TMu*10$5T z4Jh)HbBrRt^%o=P9fV=lTr*H11d*gc&bCp>!Cu>0=EQn(KH#5P8DmP4N3c62V*Pt- z5&EriR)3Moi<7$DvxMWT4%)xBhD$@x#e@3Az50cnFJMo@h6R|mXe)aO>=cpZl2n%n z!%Gii=3R(!2H!#3B*!u`n(i=r{_6R|PRnRIbV(iPzUT|)uz8#%J-CvfFgWtTi4-0j zvjK|(^ENrwAI={onMb3{ry>1nIcBSy!`AuyfyfCr73r_gE|T?1ACN&AXT=n*T`3q) zIQ?>&oU@$0S4O=i_RE=n@vKM8SWYxiOcVpTzyxRf(np^yr&5aE;GF6C} z7e~emdpAsoJZJVPndqz^K0$t?RVf&Iv52XY6O;}aCj{9hw9jOodQ;662HxB+yPf8! z2C@?faxBMzo|TAkIpR5IId-zy0x{&^8X06cUi^dzhMOg;Wq`}|EO(+T{d@}^9T$fU zsp6N5>^U;9SY&TdtpaO0o0+!~yz5CBo4-dXm>A8D6Q#fek_kQ`-USnkY!|?yV5Hf* z!zozdgUlok1~Okvoq3R~>`LhE5-jv7qSGiW;-y8A*_;;Gi^1p$9 z!}4|f8DE#=pDY8iIfSGCLUm0{7|`9?nz*GS`zls1zs)xX9(s2FbGqVc$oA zeZQrGn{Eq)K^f@x|7-5sEGGik1dvt{{U+iVPN@p`jLgy`DCP9?`5;G{0|(X)h|*lU6jF zV*UNfag-o`Pn&X8A}X#~oLjM&;W#>~xkuAbduD*zNelLn^Ww&+AwmNGLyapxVU)dP z@*yLWE1fd=q{3rjS%~5k+W03-x_4pcL0=cdJ(QDi)p< zY*ES*BW5+;4!MrzMvwqNU+R3lAj^DSGRy7|Sr?IQ)pGCfuT1K1>W{S5U88dQK#VAb zMk$vyBr<%R2o@0H<*j!(CmQ`Lf01lECn_!H#O`H%J134m-Om+!X|GD<|Fe`*xn#Ub z*Zvd=n1kvt=#T;kCjydk2q(}rV>E^W z%MwksMBWzte+S0}MkL+_CDRN2{z(H&|L_Jl>PiFr{zn`GwCD#_@>+~ez!&UL#A{+M zSCBUF0^^ln2V~AM2%BVSG$?z5u;; z;Ix^)*T9=zmcdpK-sJ7J0Nj;m`Ok4ZXHb z_qt-O?S`re_1-&*a^GSDPzdqjXzaO742a4a3ZDefjLkjP)1w3nO9I26UW}^b%43L$ z28Nf&r`TJ^n7F!GY1NoiY6!cw#+rBWWZRgeiwCJ3Bj;jI)$wp! zGda+iph%b9`q=09$k!R+FuqR6b>)Gvo8FKA+EBagGp;s#&4&nM$v8=B)h?3x6stMS zhp^tH88X9ACV%YYDPHi9{cw0Ak=VJDeeb`Bv9VexgT$0+J&Q0jy#Cj>@h5xj+L4J9 zG-S5bQBo0mZL1u``T!FWdSj7>6*oDLdTEQfj9r@(F)!4r&53<+vz&;2WlAC^W-O2S zn)#r%o5w^)A@(O9)AN>FQ-l{NjkPs#`gL$Fps@Pkro_onTVN)~0X#5FP%WuXC|PrM{BYEVx4FC+$(!O_km}5v;i|g-!nYF%z)GyzQcrdO|sIa*l!Qu?YGYtGso1I`#)ticOVs+9eHY*=0In_2%2>t>!j(EBQXb2j-pdzi%*o>Bp*$q4f7W3iKoZ}qp+%v*i6 zm2Wj6O(v#q^{(?hnpQ!5M}A*Skgs&=Zd)6Z2)H};wT`~`FNjaS#<*~rcNWi#6pEH~ zsy@@x)Aa3Y(LbJTEhir*i}$jk%=W{ndeV?J)PF-D2h2gs=i{#<&v5)wwJG@%Ax?+r1yMW>Rjso7-uVx1@+>jO@ zYaOqgd)qDkZ=ugEtIy^9p-+0X;-xxtnAZg6N5^de;kV;E+5q9yLVG)yT3~IXhNeE8 zmj6l9aTv6N7Ly`aL+V3mk7nA<@tiC{7apRc=puRQl1bc zMM}rIk%3VF1r%42ngt28ig*Rv%7)xV?$)VDYsHTGV2$y(;Zs{!X^AR=opPdbiv+yX zSS%HcM(VBC;MTX6xvg8Tz^$*n$ZVvv^%-t`d}!IZ?#ayg(S1erWGM(lJ95xM6bf|k zmosNJE%`i)%~Nli>eagX`SRTE%v{7|rkQf!xJ*(41hfJ)ugt$@R4QKJkW`np((5cj z7&repUbA?8>?0Q){0jv=Uu>55c^9hoceEal6y~(J7}hz#;FaypgY zh&IH-ultS2_T>bs^3JCPul;<2QP>OE8(bz>+Fc=ppO`G*cH`H(vQ;XaKIZ-;|B(X0T83lE6gS zOj=gzL9b$@#0N6V^^0*EHCdg3r~5ba;Mg?qA0vmCf*Uq4n-2reU?SY7WyJ=n-AEO|!W1@0tg+p@{v- z^tinB{x#POz(g58AU;tS7PvjId_C1*jTk!X$6=uUgt)8NyEF zb7CEYtKqZPljJ%Ve`Wst@moHm{xzeJ=X3g1*8k3SD;1hDtaa!dROnr2=HZgSFw7Dv zfv!M-7iZ(dxXCeN2H%v)X|^Qb<+K4{hG!d*$da55YDtwn9@@h0sUX3$CLmvk-0hqB zUc*BDI9Sk^getB100~6CV)D;fuqvb+W%fKI`Se!KL%d3OEZRb;Ti?N}KSd6t~<_uRvJrt;|@S|j6PbD>j;^R6NlE{p1 z{HWVyI(bJlivUwv-v2{yyIlr2pfZC7ZF^sH84u$|?KKFp7K&7P3vXNpArel#8;=9x zb*6~dupp3*oQavbR^;aSfWw=cp82YZ+EG(35w%4Wwfqf!ZbU7vTHY;J6)`@!$6NqE z3^*>+)cLdS9`ie%f@h1Z>DIarE+efEncP9`kh?d{?TUR>zb`mH{)dJBZ{>Pa;Cw~P zKF?FHKjYD5wqx@H++ZjW zHH0zsIxpKgZZNa&92o;(Si*S+ZuRAZ`XMpL<6k~$05;tICZftUlW|S7 zrd68S6H02IHTe@>tuMndZ)f7o-Y*TzRoI+O@~`+sR&S)g=Pv)ydR9`j^G*bgZstNjCEf;J#($Ic`NXsF#B_KH>xD zG8JV?9d19TsLC|Iz^9Z@{_M#(n0p9*O-@G(V|Q9>j+H0R@~*$SU8=%Fo$#e+Xr~0t z?TB02CCDO%&zhsnDK?Db&{Lgx5sdSkU{TX?W<9Y2+V>KBEc8ZC&E5hAp!uBJ>73Qm z?_Av~8;@j8GJ<=_;DMQx-od7=_ZWhrbWF;?WUsO(E#lPd%*Jov*A+>&U=oFroQ_Kw zKtfmCl7O6TYVmrCwSd)j*dUw0NGPlUBVF2?H>me3vo2P&TXa@=?AkL{eO6CT>#hE8 zHR!rY%l$=?>Nt6!_dLbU(fiqVeUgPO!Bxn|6{R0%94m9kl*-muFCZW?4a2bUF!Vu{KpNzf!YThDB2*S=LIN6RlUDQ z_UJaGod-|xV)fxeZ1gQR;9vgx6tf!dA7obJy@PZ$et$F-;YEyOF|H#>SDs*{f91Ee z7f;$R^Z0IjQvfE=eFMv|KA83r_T#gF@)zyxVA}K6wmc}T(B=3HLVr9j3|F%_>P$PF zh!OF2e}M>|o&Ues`yeXs*O&2eu485Z9bu zxq{4pcmYt-=a&}j$8ikcgYN@$-^$5|{yU<+{k|8@(Wtw!~Z^xqMhW8rwl}&g^ zjem--vI?#;7z<{Vm07E-jI4)dT$NycO^_o$fZ^Jimw$SsV(E<|-7agb=?XLIYVfd3 zt}86FCyff3q_C*ziMzXd%u>QKN+*GiETi09J}4Z%uc*N+p?$@T28PHP?X~kAKi1Ck zezSIFa`jE(>cJ|qR#4L^!&?_fT{O|_iam8!KiifHd2IDwRmD9*8Sp8&%WZe50^KvQ zmjXq}#Z0{)+Hqa4ON;&sg;(Snp5!Ur6s~mu5bO zwa`3AS(1jFvg$EaRjYla*BF=CRQ$4$TgISrm`!(#FlN)XljL(0aP`0hc`iRS&qY>S zHV)Y^`wZS?>>QMMU28Q-89MV0kymc!W8UcC*~jtvHw`zhU!?fL352pu%Y80hPBhFT zvWwCX85t-#(OwgKA`gn04=8J3EK)p0e%&=eb?QD1{A8fLJv$j74nz1>5iXd7bB+yX zjhet>%}^II3{g^Y1C@5p5v;=o{RRe-z+*Zs6&FwGg^L9#m(%t_Wk^7d(P|IiYQyq; zn{q~@Oqp`yGkY{f4~a{|72@Zpmk(Iz6SWj8HA{7emnSbdN>wetw-HK{$^Va6BHymo=$7jtOXZsdR`7l8*jqC=CR zJo^Viryla!Q%z4U-bS|k-h=-+2?+BRSgP3)9Eod1oor3Fe%7ATGEtW2*t!^PCk>XR zD$dCwfL!oR9z0Q1K;UTBL*=p!59m9!xQrX@y z5vMDJAR$bx+I`4PlHXq~zmY}5$%~bvg!h~6U~QD0xlH}TX)UJ5>N0gq=h>&di{>GH z3krI!qkOe&M(#|<3Q<1;GaU$`Cdtq5gn*QF#XF+p31q!=4G?6g9q|>Iu+Lw^wMn01 z=)4vAR7BdyDC}=JWE%oDS2Qjhv@yG?tPbhBhN=D*}{QYW(OC;2dmE(|VeHikl_@)&_I$q0)3*%>85vl~lO9!=ZtxEe`Pq^ogoajV+2^y%AJ zxvJN72VRANeeOy zmmP7x3(Jv;6JFir5z&85-~4uWPb~cy^^+WvavtvW0ds>d zeX_f!aCOAsUEZmG`E&gZ!2C%+12A9eXV(4$y#IMvyE*>2>6e<7VER3(ejMLJnO>`( zS;3dEO&ld}6|`CM{fJDjMG*%zHjNa!zT`||Ok_7G5w)6DS~i5Fi0eYBnVF0U`Hp0$ zZiD;e00^W_t0K-A_6xa4YG^raSq6b*Bf#SC>-#C2zYkLHq#9U_+_;BTcb)-7*!hP+QWQ2p-ffwX;K_dPr zl~4C5uJ*q&h!_6yq>tt-8gAT~L5Y|)B}0KgMEkce(Gu$i=l#!YQLgH}{DWc3rI~A=l1nX^A zQ-JN#Yyyl{NuhCdwvVt;i7Ac&W`Undaf|8oSY|ija2AV@N(mhdi%P~S!FL?eEONoZ9Q~JA} zf+0b)u69K3t$o`OS>yY*BVvDSyHs&6_QVzU#1u}?i!v?8FZR*2{CT<;&Xt0?0d6{M zf0#~bm&L!Lyvv4g9(Bm+GBcHnJ?^UQvfZ@Aq4HG?9k9?wER)6}1{Zxj`z=&yCpx3O z%PsA_S?ziFjILu^aHbQ)epyuY+znA>+?s-*#<-29&RNwH;2$`7-*`C}b)u&b(6c+-uLH>`f{|h!Ll0qqO(rVBdsavk-4fbaHX($aJsE zBJhqIj)mu$svx?G&=RZGKXfCeZ{3L z1k&1fO9=x5m<=XP7nyEo2jeiavjH_tI~?6rWH!xx)$K~q(Xyh>eU#3K z1J>%`v5v*jkKN4@7RMu&R~QqoBj+YdF+X3Fupj~qNXmj3_E9bfIS!It*MsVBNO^}M z_OE>$Emr1tSiHUd6)VNqoUzuoAtTTAN-#j)DTZ{1P z@v{%ADiHPCI*xkffp7RQB~!C`cCIltyusRJzms!v9DH2%8s)NrHLGiMt7gz*x#6&N zGd#;m-EfG^co_#k2gCA((-d9y5b!|FqKMXJRnCF5C&ziUpLBgVZIQhlOnZJ1{Zwq( zdXVuwP5`u1D#>Z)DcPMC*uW56@!)W^l}Jo?@VIg~j=3LN^Ws=~lK1jfMCY9ys|cV1 z1+6&hfblRL;M_#l9bkBwf(ynOZ&V+k;PvRYo{_ZHBA+F?KMoY}iod`G*=E0O>#Zq-v}ogU+b#ju?~ zx${0UH6IWHY z^O}`SGk>l8OUR~qnb|a)&a3x7bM$9+^32q#)kT?$p15K1@q(V7TW)53eUjVt^i9Z- zc{wphX4A)*BlB83N9IMw^A_=^{uh2P-!rslvMd%Rfsg?i7IYBi?ewo&KnhwWv82u$ z$)}e)ev>6k3TbNAEtgBWPzmj3U-_;;zJH_! zySp60ZV1$U#yPTq0dKjTY6cn5f)MzyB&S-f^7_yr_WS6v#IL;aO(W=@hXZmSGkVxE zd@fqPJx(u5rIwjJE|^NA+ff8{w(1@*##fNzrpq{QwrLtKooJmv`ul(CPRPATa+4!( zr)H=;;xf7l{eDIe>T3@pHs56UJh+X*n9YAeZHU-YO2}hcKwm{Yy1W>dkW5;i|}ma1^G;z7Yw2of=1u5G`pL??D^ z3#2Xj33c2-WclvuK`n>uXXSEU)W2p-3Z~pJ{4Y3zEeHPXf=SR=wDwb(ixLww7U@ik z-G0HDkMX-CnxOf&_h^De{&0C@9XV4nWlf&eB8`A=(J-#m7_W^86!LaJ8>CISec8jU ze&y?Z8cix5rqQIMAK?fNF`Be^Y3?9gMzr_M!@Mptd(u8>ZwJ$^x3*1GDQ_4p{st4< zi88{Z1uPAkbY=2#G~F8x+N`&J4B1>*bRk++TyT7tvF%m1lEra{wlyfI8)}kuM8O># zszD|GW${DyZsVT2U{wA=L*o!(^Jn&)XLq(xL?cTO=W_X1hLS-zw9#@v!{dzUp-tnc zVtQ~D#D(NhefLKM2Zz}(VP6q?KZ3HMOToXwUuKkrJFF(b=MZ>{lzj$Lvsj-8;FHs@ z$L_66-OA>>JOcm-*X#O)zDU{E5ykz#na?mSd@w-%BIpy9>O~agk7Q173QRFhssL{E z-l2S_&oeQQ@lwL!PV!7c8`Tw=o9YTIH|M4S0Z)|(o9_%U@l7XKUbA@wX7TzFoHue& zk?~mdyCY@)W`z9J7o7eQlmD>WBwT%Ed6J!XxcZAG|3O6Nx*^OTJZ1!8M?C*w2yqG% z9A?UP;kr*{x|h{@&`~ic#=6E^AXMZ4DPB^tYKm@gko-~RXxV=ci3>Pt3SCtaPYWqdvpV37P za;f4LZAl!+ed33>Ddst%_{<0$Os(%~Pcz>u0lM(ubQ=CMY|Gv7uky!3Q#2!|+%)fO zQxJv#2>{TA0DT}kc><6eep)c4mA*O~<=$>9wMm1QFd)j6#3*+r*lG3K z5}KpvkZG^3!{e~J4vgb3!!!en08^{t%d4W(itnaP>J-cLX~S#JftTd%_Ai_2<6N%8 zyuPcGKx;~-;E}?4f=4#+?$X{Fq;5z4HRLrWfwGJIdAh$5fCSl)^|qZ5Q4dH-j!90@ z`RYMO0G21w6$$+U7Mdjw2i!RMLF$rVGQtS+rtfTgJFzc|jt*QRG`%_G6xn_Y^FyE$1gaXi)s{3Zs zVXu{+<*7aNk^@te3}jAut5a4yWs<|zrEs1j3pI6hiYABgujZgvu>q}KI6{!4m?Em= z+Hp(~wd7(Hm;YQ!BBq#SNY6E-8Dti4TM97+-`FkRjf=r6K?xeKI;snX!P$loub-g> zns&z-MTi;rYmi}^Lk7-R_qGvDCR_ax3rf#bfkMxSxe}+B`RM_CT93fd8ls!o zh`D{m4JKnHA(8zY)4fiOG~x_k!JC;V&f2X$gv?Jdw?>DBn5#{1OxJ{zPY>W6GFNL0 znVWMa$lw|Ly4@t9h-o>wr)lOQF)qK`uJ~E=OLF7+CG!K0{F1M=Tlpn2r$@D`02OsJ zyCL>YV*g9|zM~BV!w=3r$OjsWoOAX=6cg{o{wh2vBsJBT1#ojwi$MRzT)~#4nq!-H zG?37u-jv`ud8gdZX4%^Hy2fsfb5iFV`XSVV4}}DU@XnCSP=gyR_hm!xL!|FP!&KOh zNXIgHQQKa0yA1g|A{xltH41rne=gzEn!bQmvY2mBYVFYt#peviA1c!}L%G)Z*SzAv zJEr_|$jTO5Rt{}T&`(wVRU`d;yfiR=cUoub6Q|MOZ}?9i^zjMaoNUw*C$MHT zy2X5$_n1$R)$FL88w@nu8~g}= zQj*hX1r5WUY!<=0#v#B%(-BWFIY!K34>vMmM8T&`-k-#yMcoGqElP4OnCy@zGf9Nf zE^|a|8x~-M8=h8mtz73;Zr!So0d7c{!OB$z2HU;&s_7fJ z-w06-c&06{Eb%GAuc>RA(+Jz*>urQt0+l|sM|}>trgucXxeRF9~_N@Y}yBD$Ev?a@V_kQ1HO-Q-a%bJqC zM&Ms_kaA*=#~6;2E;SruCwh8bG;#u7tGp^qNfE&i5Je{_AfEaH1w^XPYZ6Q;AmEEM z;OB^kUv#Kw&~l)26s{s35cuHhl>;Ce;9!L(8M~NS!juDKTZ?7(TaWGA&U)3O&g5FV z^)M2Rvwna>NJN3(Ag}z4OOsDZat=VWcQ9UV6*XzLwX;wKLc;ngoup7&gu)ny0@faa zYeB$9TXfhMw?q2^gKsLz21mVN?tG7dxsV2}R!yzI;=BX?H9>aJx;L3}TNQGo&;V_NeZjbu-;mzsnALmYtUwcTj}-vh#uvZ%0z|c|nLbr5Lq8-*}Wo z-2bhG&j(7#_lqR8d<~W7V`^smy4+sN63;*9CPpeH3Y!*Y;No?+nh$wTLqieOsE_m*2TO%}Vo$~Vn|7}R(&#sDcp4BbY3DCZ3EoI#pyKUwWI zSCud3S+`))OG28s2Ha-x6awU_p9`}$_ajNXX1l^Bpd}^UvIWfXW<_u7npGcurTGJ( zw@Ir%We}XPWr^U@o06~Yjo_wR2<{!1L2xtsMsRD%yiSYPUb#;&@%Z2U=5?m`f#UL- zdpq`bJt|^pWOKX^n!NqeV+pt^+7`Fh%gl0z%;NZuak;+`VoE~RAiZrggvuY|vRt01 z9s}S9HRY0k?^KV+)#r+@3b$gltF6$$1pgFy|IqA6{74DsZ^ciig?)dp@p5GvSm(~0WxwlB6NtyW-KG@yS+3j@AZXe#$Heat59kW;TH)GZVCk{K- zpGS7m{}tm*sh4LyCaBN+KQ4NZrIfY5Nl^no3pV=&{%SY_@W6P8@?Sq`nw>ks80~hl zGr{G|iyoJi>{vsg3*gHHz|cjKgmh+;&7+y`sEb9QCTG(K^DetEl(*nW*<_WPW^7i3 znC9%=XoCTx9BM9jT&nA5A=WGxBEyrlC32#Rl+sNM0;0kYrGYFM7BSQAkdW5&07JGoe$3k1v z9T-dTRksE%2&t4wiM$(u2Yn@Zcc1B-Xag#lN)Fj(S5iQ%1)6^SiQWRu&hwbq z?NNayclsbRJ#5e0uuS%AOvv?kQ|$iOADH@Y>@}I$+rO4X)zdM9=h~>4IFL08=av`7 zzbe@eVrn|F1oiXY`2Y7s;IR>HLMGQSXS@L zCYGWik~<(SBbi#NUQ88sQOlD_ujK;sgeKWx02uK7$2l-u)?D6(_3SjNJ2CFHoP>~e zFYJaOh31E=`+sv>7mO5R*uP@%d3sOOqK_u3f{X^{?WL_f?@^Jh9Iu>d!DfXlU=C&y zfR;Y6w<1dDK);a@go;5Qh%U{2g0mcAGO@)g&0^ZeFnFt3geRa3#jcxCXc4u zzvfqNh~J;N9pYCE;Z|Gv4gg&U$R1Xd`d2J#Ws1>5J-K#@(R|Qbh$#M#dNq$}jm2tC z@^Pl#)alWTderr@KP?$_jF!-L0$Y_wkLl4Q-A8`q%aAU|YAR)Xv1_*-q9CR7?}&m~o?f<<7`K1d zNtHGFvQDZo9iGcNsba;)6XnijOrfxtLgk~J%gEbt*<~cxeD$2ix{JP-Q^F$J3Hh^P z^I5ZqCSAIS4%Jzj8l49XfL4~kWv-97lnqbj%A<9PPs(PjOa0PJ>TTcQvmR6+`L3>` zC#`})+mQ(de{|Y$9E41;!=j*11E-u?_gE519>i9kG54$q1YoykS-IO#KcHdI8GH+; zlFW@6b9W;2uT7aZp_g+YZSh%;odNa@dpnr6rpaYzfT6T@$|`Cd4S9f@gRhfEsS z(aWWO{oyH1|5Akl71AsJ>ozZ+dfvwPj4kbJ#;z8{&KcEo)ag@QE4!^3OC2`vOnk=n z(qTAPFD1sNK(c0D>*WquaY_V8Q+Tf6?w{3|S?*u;l5ECK8PRe}jUqmQF0(I?K8ce| zCQsJgK6MG^HdpKWg*13@Z}ZM-W@74re{j-MG{0VAjtXz)vcZo0FBqDGl05UFPI@J(8Sawf6I3 zI+u#-$xGZd_KRpK$O?n4V!3E|M z=PrtkIoW4k>^&lTWA`h`gYRv*Ug5F`1j_+tzICz41L;Qvui;+m>9?yVG6MVra;gt& z9;d7Zprp|3hD4NfSWr^S2S7<*77bEA#OdiOIPJN_)0Kdd>WU8b;o)+kB!{o-6uO75 zXg&tl*Qju)6R!`gM1Zxr5gU5`)2(u9Vv6qwk&ePq=wD3E}S`vByhWMF>OvlgO0ibuwjX)}DXGmjX(b^&V3FR+m3} z7-5`e&ucK}iGIp|B$wDB?;z%1HBBp>e6Qqz`8KcovHS3;U?DlQ%Ka;UgzuX}JHePE z=-j{j3$o*(7kOj2pve|=CS~ata>PsAh)pn;xY1m~zwBD)=edZwO?;oa2Hd)- z2QLnEG1pt!r+oQ15UqUVkirM$ke6qyMk@|qv^hL%u$mvc~be<=S}y(OOZX6v+|hQ%rCgNJy^ zdW8E+@($sY&&nxhl-2qSG1US$TA`;tj-Qr*MQkt{KFP`4A4_tvgM` z>N$JBV>f|&1NmJOlHtm!(57#}3Vhci`z%&ntDW*tVu(<6bZGcEk2U?m>(oPm=GmH{ zfJ5ZN`K4*w_qa^m7F-Wjx2|Tx=lh@68PAUY}tUwZ@=`;-- zLyvob&>6MFHeoGWFCoVTOoQ+SX&?)(qG`b>B@j4~zz}YlHyt7w0XzP%WjA?VWWrA^ zs!*m{_`OIm9;~5z3DHh6%8s7`2_=uZDtJu3J;<}0+OK6I9L^J4i?D*>$Kko;-XdB7#%q#yYzv>CWp`{ z$vH3La+gI)ARmHz;4e}K5sIWo$-LM}>POS*1rO*v>4!~S2P&@09!9w~YPRJjG?8CB zw`tA)dpIw?+9`+!X*9#Xy33`MNsKu^h<03Pan49$XI>Ryn}5}rPom2VD7{5=#9DU( z_3smLv!9?rQI>*USpH*u=Mo+1m)ILQG?0lCeOHxpTB~s##9m zEH6p0N!`biwOWd`mI(dJsCo<2Dg9k8q_<7iKz!Mq>wZZkMeVQkC4z>U-ubN2?02p{ ziqEOps@dngNMM6sG~dm9jM(hqfhyHq4_squvq6F~VsCah@*R}05=!`qK{M9+zIVcQ zXb55hY$+p2<*z#6?@-n5NWg#avr1CwwG!|P=M;Xig4dT{Hb)qL+JSqBe2m& zRGv(%3i{r}expoZc5E+qY(F!_SfRj^^`W!}^js0L_0Z@GmTBIT5>$Rx2`aO)KbEXU zQCA@M$*Ypo>_^oW-5jC=lA#se+JUE}IZYR{R0;h#i%O`Jzd!&>zT1g?5Ge4NkaL0_ z=V~x+Ah1*wM$>?-S8y1djm$vGc`tr|e7V&6Ql7}?dA{tujCPJMs^+!in0v9`Y~O5c zqox=RE>c#}F#O{EPH-?l zuc=LUKqZOQ!Uu9&`#Cb_!ZaUa+n&RAOQQX@ZqmkS;Ff0{5rimov6%gLW~xeWV=XTG zY(n=Kvh_XGJTh3?ax!4v6EeqhQ{;#KmB+`%+r3pqshEt4+N~<8%P8yvS{HnqbL24P zq8PQ&Z%U`1I7YP7RTc=gv~YGM>ZYg%Z$yP2(-mdQAQ?F8K{Gf{wkHhtcI=dQVc1N@ zs;^#|yG3Cnv=0@1kk{&8`Ps4b|Ln2S$9il!`YzJZBmFc!LbkiObcDFnVQp#nkG{te zJd@rpbFW4^0tJs;ovg_`&QX5uYP?i=m+@f|{OCB9ZVl>N?%v?8WB!%5j$t2#4pZLh zc$HQE>{q#Pd>^m!^W*>FSNUI~uk=glfI}fkrv)|DwhA}M2w6B{QW+w4A^DalNVuWlK$>g!*=6oKuF@<3Nn3!` zF~tWSb@;F$Jwup!i^+Q4FA$=N=NAlh=%dLncB`}u6Z^vDnhXex zs$8T+qN1;iARYi>SaNG3g4lGGB8Ug#2qMj-Vls+ z!6?7PK21E1@@;j>(!+#;K|r$Z@L{4xII^3=+D-^>To6h22B`KRLKM5zB(NLjf*o?Z zf8`tF9G!+RhqTfhp0S`Dal*gKoz3wKZ+VYzU^5E@1PA?iCdY@=#^E=PqYjo6F3bA3 zI%hiY46@}pEvt3osdxCFYq-W`a~WQgU#uu)xF7yL!Dj8_h|{>e*RdV3ws~yO_x80O zm+=vjQp>;mz8hRtfU%PFHH?tT2r;vO&cwFKYx1vr^OHPoeZ1YUnmh%+8J^@))`_xN zbB4`Br$C}`Ro_$Hc_ta=2pHQ;~ z!f7Iy*6o{}J>w0C{WK2;3Aq9;)AfEA`_ZfVW+{QZPSYd?1^vpP3;pr68`#CC)NY+p zX19sk&X8j=N5byG*~bmjke)SMu47>8o80*yMG_$-7w>{CHxR6!0iSu0FKaGF?fZfAtRrNrhu21{JB1#)g+ryHuc3%MVtuBFq$`#pj8b7*N&PY{ z9JShivqY*=dG7^ZBPk5dY=Ck_`W|)qiL#+Dbqo9OuyY4Ir|iH7r8LU$2wIIe>WXSK z`7W=^6nUZGOYES+PoUCP#4H@oOqXK>^?*PM^co=?3O4wc|7NnwVvAPOZ&P#tNkF#0 z)0{RYvLHcA37b_7vLKB*ENTkLTIsmaWWNs6X5@k+r?BeP|zVy`EsC!b-i~zRTlM z+9+TW*-_bh$KUK7NzYo<<0n)muG6{i|Ti5m>E%Ld-hhsOd4hYm`~)vjDY(+p8NpMb^eT$Bnw;JKc`Ly zhp?3vyrPc+a?9YFLsJ{b84XTs0W_!KO5ZRNBv8q+Npn1pv7Q?77d79bJr*Mc3|Lav2L*ld&v{K}S2Va=srZ8rK@m)OldYH1y_k|VF(zcM)& z4|P^p{h*2wwI2rJe%h;MJ;d2bj%)~$VlMNY0 zFss3_y}_~lC&%{B9oy?1+a=aE-V>Y?lZ!T)jyMpb+6fo<~t2N?v*mPSj43*8B7YNrX-Uory7&!jB-aTt_S8LlftZWk zMRBcab{;-!0hDgdsk=X9s&3%PfPavQfT)^)oU`-J)p2_paVF)z<>jy?KJo)BH!$!3 z$O6F{yz<2?mv&Rr?w0Y6u$|dxGE*by1ny;Iq6)zBFQ1U*vijgDTHPA0nsdVBFJ83W z&rp>hm$KZ?1RDh85!>Gag94?rhCq*frwv-gPnhyxqg73OFV|?f<)X%wxa( z21c5r+1&_OD_Y(C_t0wo(7zXsUIb{GH!%^aF72<*Ow(yfd?t5NyBi`TqFv zJV|EWc`xUj_uStzLy_;MjG-d<=mLI6IItk2zQ}q}#*rfHr5WE! z%i1H6fZ^uc6rMrgD%jTc`(qLG4~i=4_{f!ud3n2I^Ne7 z&+9AQ-axHm5p>Nmz|=oVfGJM_Tzdkw8J%!_kOuoRhuPnZ{2Xd2Y0}CAW&||pB8tWLsZuP8htRn&! zi-y)t;#_IpgIRoC5$ZpPWBM%Uyf-jB-C;@!3~iV@8CD9Ur27ND^x;76 zq7rV?%=yq#;W$;~yEUT+I%b;^VBoczB6{4J5twL%S`C4U%u_(bxvwI8e#a=FI*PbK zuL0x=T2wao77pBS_2&{wK#k6`wMn82%m~zdPu-X8w){Rh?6j_&Mme4Iso(hXE z%?vOG zf1ENVH>olZ3lk-$SKzi(bDK_FszXWxDis+6v^($@m+vFY=h2XL2@aE?$a+o2ULt?4 z`4EC1q&e}b8h2xm2osyJ9tPoDx#q*Tg@f=6cw~m76Q()@KW(^;OfYaL5X}a7;MQK6 zNh3yJM8+U2I_>N8Vu3d<$^_9`khz~k2*)uVxD>b|*NitA2k_Tnd`_KO zNbG2nkR~vKXaZ9Y_hMf>~j1CD_-O{0(_ee2wdaXi&~%^;09K}#Rrjg2!1o|t|4%#<1k|p!VxtF5U{Vv zIwLbAQ*1A7GfV}LR3dXB(f8o5-Hb<lpxmxfuKO29`RC z5oml;MO+RNhIB3EHmytq@v3!np~fll-IdXSzq*(nN-Bb%eS|iOB(e@piz)|oVs&~5 zL^Qx{8l6X4@;D52bdc(*&A;>ZR!hJ zt0NKVn?~7AHaXg0x?_^P6&rLm&-bElXhdB!LVA#3hTlY8+F z>;=YuBhJbM0#$tcRoBGmh*rZ13oAw^>ySoWobw;wqwWj6Ku%|~p0&P^GDGzu;$MR& zz$=4E$mP(I83+t##J_~(m#^1ot}~Qt>YEXN$Fx{>-;~kJxqdxIo_7!c1JlpY1xX!T z6y!FU=aJzYfWB?ys;o;`en(i(%+K&jG!dg@1Pvf_U{ZkNkZie0r66_9Dm$Wr1Ev}P zjkkxS88pfONJky&Ib_Ek#)`z@R%GOgj8nwez_%dp4nL}e5HqNxv2fbu?nm~aMXOsYz&B&Dx8<0o7GQFc?Jon8x zjMvglD{P+6Ox=29vk37{QXp)0m=*^=P6GbJZm>r-u@fFEOe?0EW(8jvRoIH=vWWx1 z2f+*Zg57l3#C{kNeEABUZs$2sCU)Scb;OM863`#XHGAR5S7e<+q=khM-D?qDj0Z6NS3D@mCzL~)`9I9Op*v%wCjUN+)g4*Y~~>GZw3(V1a(Lt(hNI_fE)p)fY$+C zU=(#sBCC$JGQu9zW&}y4f%SzB^FKWeki=$$kuB@-8Z{*{*C0FxJB$ohayrV4?`f`I z*IYX_*NdwfJaF*S&VZX@Hf)?Ny0JiYw)cc~0Rymp=zlx0RH4X*5bztJiaRHAY zfEImrdMo1H%58dRu1+^5<`~3ZBP5axZ3LKE>El|I*EtFqy2$tdb^Q>+p`tsCKIud# zR>>GK^kjr+ZbI@R$1y~t1>5!zUa;_C20h`2P7OnHhC^Zw>$(gd`D8f7ae#XMO#lnG z=@)aNs4=X_7yO^2c6{*vAJj4i5w+}#{*O@8|9^zqFT;r1hVT6!p!Q#(^quH{lm`hV zj3^$R1V#@0Y+26KIDnk-bs0sZBxX2*q@zIm$KvJrOFZDU8KYt5qnB#@bDC^j!Wwk+ zDJlt~%0*u|sg^}8=tYwRqcXh6(F~D86<`IH?*7c9Xzos;?S+w5q_fbqM_&~EVu~}( zUCaejUH5s+=wWa=Na0vUA9Kpl{Gpl}OgctR{IDY+t3-@KnVHKq45>Fox%8aXa)`FcbtZX0Sbi@z+>n_oGZ1q!Ka!4w9yO?FL?~;@eVHXbDOT6 zg^muiqNT;5Of#3DRn7YfU} zv&at(4Bi|6#vj2m4OEh!3sfqHnd-<*4rM@mi2&3}sk>#r7;%$9qrVXTN(UX@mUg4Ug7sTPf*llOH3;aX1wA){)(cjh_ou(T9RdQoA!zQ}4$ z-xrvDH%w%{XCLZ4^=J7e3{y% zlx0hnI(#$@fc7sW1*Uum+Ql$1{!yfoKV!L*s6=jjE(8LobEzXd%1}q4VVD6?CFN;A z@4_@|OtZL6>t^6yEOmhTPwZ;K)iBl5K>1ea<3MjTm%?GpvMfMxVLBdjRA3q;)wdg= z`SBUvVDmAeT>|E{e7q=Q>$dLF<%^9_(Bpy9Z#IW7G5C{su&G~zM> z?HWfZA{NGHjf}OU;Y3+NRGoIKCU$@&bio!N#N-8Gk``qNwG`S$%8*Sw2U}iyjV5v6&lp1aVd*Q(o#mSS?534kGa6xXN>>GsgUUj?3xP4h4Muon z9c6Ja8b&AMOw+!PTp2R$*PTGqo_qo=V`e})S&Zj5-<7v|+4MXG`dz^brjJcsWpxfm zc#n&oYqD2=ET&Z1fq>Li6KHi1PK|K!EueBhniL?LJU0)~7$mpo5J8DqIrRT3(63w6 zjn?SiV(PnaTN~Jvp$&77y+IIx3oFh179OD*1igMPPDLIfX7_SoxA1`<^-~5VhcFiv zUK^90K?ewfi|`Byk9U0cE-%C>{h7-PLu9IGz6;d(P&{xxJlw%KkvB+{<}PaBHeZFO zWo|S4RuULq>Cb>3UKL7jBBJOcp?3)Wru5oz@?GL@e?zB}b7?a#eS;mWHC=+fi~im) zZCuK|Mbht&GvDQp$H;fN;cN0;0^|iFka;2IyNIEQeV16r4`Jfl5|o_wG0Y^8P}1Lw z<$Q=?srW7@G4Z50>;s(ZE<^NCO$t=3MCW?>ryWsaSSKHYd^cEs>pkQfz1l&rEnn8be57jSoUM*B z^0@9bj!I?SMHEu)$K~>1Id;ZoM(SmQ`+^ROd{hLH1uDD2MWfuNRVdl94m!*UQ!X$; zIZe5C{!#US?S$rlZ9yiQl=)W?aCEqlQA6s^5)+{j>q>&Mk<$p?KS0rOdv9*QdysSXyoP`I?+K3=V^1 zU6v$n)6!||NNJDkWg~D_a$HbkaD`dS(9qEu*b5t-XV9r>h~#7j##neV0rPjr5jVL& zbS#1Ar8oK8#$4=asIVA`HKxQ%Y>BFkKqaL~)<~H?Ckq_Ne;*isF z#cSxaDD+{_F~?3uBR6Si+}Ya-^mD^tnjXeMMC4pN4Wk4lIB(#>w97s%rU}r}@Cw%2 zgRsT2=YkT0n@an~TtFE@zr3%S^%+Eo&L*>N;`xLiHe@^s7E{NJsQjg^3(SoWMqaJj(C~k~I zSi+c~eEyAz=cSoN#AWl;6FEjj-~Aaa(KAhX$LLTK9Ha66jFpbg(VtO9?32X+*#upd z=qV@Veqi>a%+~xQy@7de;KPvPLN3q!j%Mz~uZ)zj@RMOe|A2fNF#G6;OyJI3VbGq; z(ZLxw4}>czSM+Is8}M8XQ9;kFJWxxAZH_QIzh;i;0$2-EOh_bl=DZYBNwN!EE_-C) z-H=nmPC~$$VWWvTz%fvc=GZaa%0uH1=IUD6!JPEdqY*q_h_@dlpP_^uzpQh3S!4%{ zgv^w?$crZ6``?hoVP~}HEMR!C@W+Srit8YjMIztr@D#`n&wRsJhbQM4b9f5IIy@hJ zO{RM0?^`D`XEBsnN4XgAcVw3ad9$0_ys-&92G{e@U&@9{I(#0)bES0|Ug(J>7T~B! zs}JCWpzkSlDd+uIE>F6kF@kO-MYnRK$RfHC$<%PxM~mvu`sn&POi@rSuU?IzXpf{D zF?&HrQQ(syB6xHKf2FJUk(cA}vNYLr1bi?lEcMl3`~8j<^6aqZrfTLLk+b>YR|Lgg z^dvHmC{EU`D|@Jl10PU%LB?*yX&VHm?dMwep%UGPbGMReF5II>&tWi-e0L>!4rE2| zW7970ZGpenWbRfA9mr7Q5{L`cE95Tf;WqCbKp(DbAnL>Uq~MI?l`sevPEiKYQJte?yie<7lP~l&sSJ4ovNxW1BZzpOgWlrK zJqn5CG%h=mksja8c2ZUPMPwGF+=_|YpD&-d{lzl2?Xo^%F>!`Z+ER+^g6gEI1WGMp z@)Y)2dZGj$;RzJVAnxwX0VZoo^}}(w@&OdCG;#=@p~h#2@oP-vigrkEA7ZndW?KWE zXx)~0JdBG-3lHKWJaCnZeORFn-l)Ys(z)LfLVGBPU57`3Qu_hgzJQv9tqs(!3{ifx zBC`*+Z$C;Id35Of;#Ll46p|uD2OW##LX^br28z^BbwUWuA-M6VBU#P`qbf`eVoT1Bt(qTEVzMm57h;B3}9sb`2rGPF`lQ{#9KBWk&2kD2Y-#UU6 z@eZvd-F@RB!uyDdHv;}9ZaqxjjTr_?;8Sja(hSm@T`Zzw$<_*ZK*tAtQgRoG$9haM zqazF)^XHd=V?g&yU!BlC3o8dWhbhog@=+}PCaphCj6-R{QsSI>(k&rb!-3dIHHVqp zXB|}ac)doCvygIdQJCA@dl2P*$9CAM_JgFyJ15fP{`Rx$@ilE{)yQj)o%NCH=vg0a zX+5hRf8z*)Lp^F%^!Q6H6r=7_av=(j)khLmxpm%|QEzR_jf>o>3R5lB1*{pa1Hd9YzNV<+F()C%BEM16$ocfUd zc$&1q9;U?clMaM8UgT;W7=M-}1Qb!T63JSmoQ2?diuGRW zJrLkq@3y83;;Fmu;>B7%@A!@wo$g^iKW=^!bmK*r>F>~x?BzZ2wxX#z-UBL^7h(6n zbxF-%QoxIyL4U(=B+cEwVGTMx59xKfv}DvX;sNk*c(IEgaF}LUohAC<4KrcNd>AY? z@>urK7QB8cw0N%lb!(hXY_y3-pnK2-{-n|Y9i)A6I-08!AKr^=rHtmh%jYxD9_FuM zu;!e{=M^FJ_dj5DSRb&iv_9w$Hsqg-C^%cw@3yTfyDK&SLP4xb70=^WUCghVY|~fp zWcVwO@gmA_7=~Tm)P}w zWqv+3b-#gMkXmPW_F+Lxtu+AEoE`d{cAHqvmlWeb-h6;}*KGJ1bgehwL*DIu_IuC- z{i_nP?Jz>~B)5%^hk5nt^M$j6Q9(Nw^EY=6Y z)8j6L1ruy3ZBGVaA9&}HQC?rg>-Y01wb_Zh=MKG)pXxR6o*X@&QVlc-8rGi!O;rZC z?luS>Ypl)OAf))#3&GhEtW>blk&MFpPzat0m#p7IXx1I?4%t4 z1WUZM^&=bV{ia&G{vbm9AIk#r4H8GsfUS$U zG5LJ8r>hJsiw_;dBt3>Di+pVTO=dlvZca0PUk_|>vtcLhNXcZqjuq$q;@ddt&Al*7 zkGeuWKL!0PR(XD`$45`~h?BAFcBf9~3}RE&(-+F?4rltrLb>so9`QncRX_5;mbYM% zqL$$+y_m#BPAO^$T~P(=Cou0R)5mSuKCVxU(r1?1$MvUiePWe9^P=-?Rr)}4(higq zAnW=$JaD;ZeF-qi`KNH(ll!Ikmrk;}$UeWkUnMt_(EF8h<-vR7yI;_$`|OwZneE4b zN^jIXy3iZZ{ffo=m!kJ^*gr?zKc;w3qT;RNoyQG){>=tpyX*&r{B#ps)nqT{Qvj_~ zR&ft64&zq0W#1PJ)C@Oac1wQY>dT(j~RS$~if< z+r)PDQ5-#5p$k3=GrPUQs#Dw+3`X;piqGlntEQUxRk4D;2V})MAuZW!^PFFJn`h1pLEpjf1M#ac2(hWV4K}@(Uk-TdHeAXtl$BO_0`HUni$kcH ziIkyAd0h0NK*q!y`i$&V{xTClWLq^wSQTf|K=i}!farG5obv%99M8+}RD35qmHO|1 zXSx=iR8e9^iWd(D|1b#JJ^v<9Z)pb29;kf6rnH+&Z}HeBMFf2}XoU@S!CZQqCpCbk zqrz|oNTmi`HTxB>I ztO@ZP*b7ZFux|m%Cy3tNcY%=d;(m>Yf|ri;%fAPxF${vrxe7?ZREg!BYd>5D=j~NR z>D1Xp>A-&$CA8!DK%8-Wd;b}Hd+`~3i@O9^sd7GNFOzeIsaPJI0uB7Y1LOHsGifs8 zcPSSZEePIPDQlh^Vr0!DOssii{dP8aUGU$@E9npZKgsKN>JPJ4Ua8X;_{(N4vw7mq za5Lc_XgE{;$HM)2o&tAN&feV(LKQn!ugH4y=MeZvLA0R-WAx4K&>qUy$SXG9 zhx0t8%yTy{9>W-h+0p%Xfq*7yBA2vM@TO5-xetHDg!Tn6$hK8IAhRIRc6a|R`Kbd2 zZp$07q&qqHpWxya=lXtwj&r|@eZkwlMB^`mpt}b!MsTh#!am=_f#B!BU_L+HZ^$_a zfe-Y`i5J9@tO5bN7s2y%EVspqlj*~}hX?Ppk{9heHeA7r1H8Ee#9$;$s%zP)1oB6C zbG=R96?}Z-Nw6pO9lTh{d*V)AOaj*2&6|tBe=%{qv%TByj(|@^@RaD2%b06Nb`D?> zxDV4o{PoqmIJE>lOIu1f=NR}v+!pj`!QTc~wijG{@ZGJ>R$vz|IJq_tb{>j*`fj_s zDSI+`q@oc4wwn*w^$mfc4QV^4YUiLvPw279axgv9C7!+>gn+PA&|Lb`#lfFT(KOuq1} zydx+?5D1)tuAO=SD944~EOR=e{6g?t$csIE^&spCXbpW0ZVRjcp$m+}LD_;Jc9U@b z58#O#I0KY~PyxRHn0;*f-LpW_PZ`oc6Q{;56`ao{=s1^~Y}ZYOG?Z%YLlA2LWja5t zRE?!M_XorzKWn&OiKQR#V|eadUub}NOR_JJ=8nj62qH6t;xH8&1ZS5X;ubwzLYNlX zE3>8Kga)u9`|%{bhCl!XBA^1vdG2Jy3e%9qMqPA;T^s;Wyw$Vh z2h!)KapGRMm7c)I;t*c`3@(Ew)}4&t&GV-fzreW>z;bQZGglk@>{Xyhf@H_tCpKIR z$aF#An-Dr*v6m1S=yE2ZNauiPob*gR&+}xgb0`L_{HihxW4POTcs&@Z)gVuu8!r1! zA#M-;lR)a^Q%-T7Bx2bfuttJeqVdMZ2x?=`>7|1L1Fov-ypAT*brU! zJY09|f+|b?2q>H!(dd)^xUP21gwXF9J;yyT&C0*XjxY%&z;Zabz6ms`DM6P#&nnI_ zX^aZG9JeAtOMb*6G2E{Ufy^fur(~OeRbXUL00KKh`p_;VpT#y>tl;yGC&f`BYpQGx zUN+5whU7Bh3d~?7K#*;km6M|IBPNt)#c2{soI8Tec||yrCaI*zHy-yrPrKTW>8SzC zjV*@l4t^TI6TNIx5;k|0xTqKY3yNj*B2;`{HrUidyx0{OUYTl2qQkDF;H}-rLo;0; zPX*s;k~!71m|x}RSH-=61_lUd*pPu4wyGG)uoWozwct&#UNm7gfaV~0IE-^GZ>VI6 zHMF3?1*alPKQgCZLLb}G^(I5kXP}=XjlNTlluI!3Lc21&hWbiL$DT(+C zTH^4SlorC*&E^5|gP5%+xVyekhQK^Xh+zK!KI)`)8|Z%UDgM+=O}HPkAy8!ln{G;il5`D|7ykzZ7s6&PHUYMQrpDe#8}kSbuU$RmhSH0k&d@COn?;SYaQ z|I-kRwCM~Op-Bp^?nKZKVLAd1;v94(drGSbBz3{0kS93v896@@^>t38E*nCvly`h} zJbK#ao5qkmBVNwgKKsd3XaITfod4teB|D&{7`V%KBsLZ9(4|X2mvEzQV?tH|C^i&r zy5G>tFW2dw2laUw5ZS7)OT!@R;TZJBdUn3|&wpN#>Uk_O&?uJr1}_=t@D0V7%RO=1 z5N)yA?DMt6rkZ=Wm&){V_yw*(ZL|2Q$&0T48_r?yEM2BjxY5fHSH;M@0e?4K?73-F zxdCMg9)p1>_}r}Ey-$Nm1=*iRJoRT&LL5sL!-j$>K%H<5x%>c$LL`_}h^grl+!plP z(mc=UG3yokD<-^8P;yHb80_-mmUI>Q)?HD8rYF#sS&E1F?ETo_r^m<2%}uz8Ojamm z-5LB9tZ8*d^z41uoDXm?O&NS<+}L}ENiN^nttPxXgMB9=m_N^6ndaFLu~Hh(>TDmi zI!j_h7f1PtNxRhCAyKkLaqHqCmX81JY{vBh~Zqvb#iy5-&E*Vod&_@)@rq1 zEaxg3-|u|rSCa;g{?>n}{o**++vEGqfqu1V?j~+)p4u-y``HQmZ2Sp(J}En6!nHP9 z+4ITS*G~xZ#zbeQ0lH+*=2ulJk7Lh&33CuScTFmHTM&fFD+?2CQCf1p^t$2)ANT(F&dRz!OI$x9BMMrZ>V$?)Y&fxYF^sDLR5}0^M+a-018q&v7Q(g=xA|HOL1Ci&E9nB3LDD0dn?nfP zq8e^<9bGhWn|(SWT`8B;0#x$%aS02r-k{ULbt{suybpf>f!$nEb03${f{lBi@t9Nz zy93>qKLy?bv?j!Fz8~gHFM-)wQn~c_rP;I=T(+li_Y_%ikD#q;Ap-e#B1-9dC4v4PhFJ(SY5VcoNZ0XYczu%k*Hf|)pbh;ULHO_~q<>Z#*99w1V7Eaz>n}( zg1>`VK(9u)I08Q*XsqnzGWKHQzFr{v{w!ioZx-%5W7A1lK*~Ztv?SrLMNPeFoWqYJ zN^wLfuxA!=7cyuTa_E#SV)D&lnMIB87yHv7?9zk-{rIaK_*5NTnuV;Yj1I}XdVxF( z;sza#;v_{lwrK5S8oD+Wnoj^K$9g%(v9*)1)7r)GyC2%xpsh`An*+bWdrNAEwsvl_ ziE^MIl=lh|gNRx_QApf>UbUL791pt&;0~ZYl zS+)E)vmBfE0fq5qxAe&%014BU$um^}g2P!b&qZt=FE)m=xO?`(gT}QFG3@d&uZ=4- zNGP?~rvYZYhmLR3=W;NX<$Zy@WANrQJ^}FNo?H!gM_Ir4cD&g=$|k6iR?1U(L%${1 zN>?jvUdE6FPJj3vpy5ED{ak~nd)|d?N zlho*ID1*PV;OF{p%Nl)6>rJH%yRoHVccT~X8XEnFS{r?bd`-c|a$xPIAo6u#&SeL` zJ=k!t>0m?Xd+_(b!G^}NP(oCQSWBP3G0@Nkvjl04U_&$amhW(|aSu$C2s5so3hlwe zL2mQ!z=XKUICmnjO=D5RF?r1OuqtZsLoG0BH;yXQjuK-SbN@ikM&nl|8vPAN8+RWL zt~E4Pz;9b9=3o=_FKzTTv^17M%Ov>uA+$D(X<33T&`)h;91ef;7sFq~F?2rs#=leL zzj62*2(sA^>oW|w&A)|f#2v45So`&OZKw87!ohzsK!B`JtA^_?6G)zYglRTP@DO?v&AlU|S5t-V6Vn1o@1(X@J*G-uq?GWIm&8#}jl z*!2Y7sgW@QIoDF!2kav)KI@X#OYcogA?c~n?*h|4I&QTqN7dC5$2<$t$Y5hLa-0hv zbxIr0Lds}g;L;CR-@n73f))KG`s{N-RK0!NO89|bw+h-~vbn}=Q$v>1X8Ja!@nKWL zThJJneF2!N_{O`?@UD#i%NqO(1NOl)gJyt18IYi9OrS<*`#d(utMVi}Hpr7S^!dl; zJ9y{u>p63ri8I?w3EaONrYrd`BlHiw{&WaJS$IFyWXq?-N0m*i7sOiL7hKHyx)$5T zeOdD(8wFp;!Y3Zc%4>(~!~=rwxP=!hZ4hQcz{vYLm-D{Rash)!ZoAjYeIA0p18Lmn z$KjUS9^s9>g7JVkY)d%-jTO9S$sSZIw|M4^kd1b|M+eqAZp(deVFzd5of3m#O+9Zs z%(((FR7t?Oiy+wBh3+YDK4hC+6OCWEoky5tmbP&aEW7$2jI@#zk=IV%-052aG&?{Vxi4g zr@$+SeS)!;bA1&@*H&liWboX7ASe9#eUo@k+#T5|sSt%<>D)Wdn%As*2$szY>*gV~ z7M{ayR^W{RZZOPoU1vmZhn*Msf=kk{#;9BGY}QL3>SaHObAN(|0-k5}xRIFGj6h(v zauNpGRhW)8H`-=b0X3Vi;a>O~(oOX9#tP20&WP8Q$q~|61+-NIacrwxorqCh7$@Xh zd3f^i1xsofbjcCHSndpGb6av@HlPc)&7YQB!+qYw>krwc*T@@p8fU;5P?_a7#^_EC zMEFFYbT`%zRR?)vF~VBi!TXvmaFgtn2`H86RQ%O>sQ%$hXtv%OkNjrgwp;;Vd3Z0d zxlnuD8D5b+?F*d2j5}&G)}|#l@ow<%32M8sRk{QQW);Yc={}0dl!&}qP6`5M?B-ln z15&FVHo(_)wR1o(1@$ans`lkv(+%j6$oyc({cFc0x!9NNMQrR4K)UcOBi}|Wkk^77 zkT=K}z!6K=wEtnahUnF0h|{9VCswfcL_*y_+l=H?yb?EcB ziSiBT5Mz~)=(QV5-4Pq6FSEGEK}Wf7kD&K)RQf2yVkH?K2W$^DbXt5n=NCq9l zw)R;A+uE%iz(dwAn50$-;(*ocOBKt6+GZ5jF1Q3qwHw39WmqM!%_kU3QFuE@1=jH5 zp)|3@W-jJu7uv)VcClM}eOUdTgtF0p)@e4Hhn;q|>&NW@$PP#hsPTE6`!TrcPcg%BKvU8%rNxPj*MQjgD$}Dtkx!R1#;RN3f5|gN>*IcPg6&Pi)3gUfm}tb5yAt zsX;BH0-~~zR8A*AI@DkDk#RW}=KGd2j{O&Ks&j7=?>@nyFWllob{0lzJHe?L$0JauyqSXN^vJ_w<;c(*3|1_%`K;u@emZ?Cq#e)>yC>bL$?t)h1l=yHNgLT_X|;B|SZ@a&Hx3BKCOe*3EHiPg zn`1PJdd(z_a1WwEaxOE$<*rGnVM!alLuRT@P?X3eC@;LPZMiMc#~XWW_%<>KQA+PK zmw_j;+@2V=17oE0f{nLwulj5$J}dW|!nAqS0+(6}KPT`29b6WxD4_>qb++hbF*5cl z9*VRG=~{r!hpR-d!b?5~=e`sxyJS@`TcdvCQ1sFK4(ew|2I`$9u~OTxc7MiB^9#*1 z!?0dxyXO|LYF?o>=p0fl61W%5X#AL4kz9jbh0RzjeT1hR=00I|4Js@&d3$-0!rftTMbZ1zt zOZ#44g1sEz+@Hm0b~zRFIf0DI z78ERlx+hHfs|T#TAcpyB2{n5q5B?OIe2{!&rDE_K!qGa~25YEn{Ffw@HRcYW0xq>Wn>oQ527%etj{@TZfvM6-pI~i#0m<3q5n_B*)m$Q! z_@hE8of?YrJK8Jv&3a;dLVQ82261mZ>U0@vKzVdP#Y5KHe+Q00-P(jt;aXK6q#cl( zli71T4qZPKwMzh}J93KPHxT^2r&Rdc;WE@FuY+I#l%T#i_h0pFPmN7P$HOum-8aUQ zh8J6;*+Z!cCi}uB&bW~W=OFhNw$>o zXUsNn5cMTIwHd3S#U_>mhk5ywN~SL%9!TwB`m#sWml90V7K=I)Hh@7b#i(>3F?{JX zQ)^?x3g-}RVN_p@5zwQ(j8BN(|J366xQ5+<< z?ta!6Tux~&2{@RS?E6s=qOO~=n)_wgE5ZS*diie@tuDBGzoF8H)KO-h+-nAL17#cl zADI$i;2e3f?5k*^TAd>EtYdOS?z#uM!aaEa(g;A790|D;{#emJA%CE0A%LZ=r?3Nc zc7HlTGfDp8F$N*3T^aSNx@FvgAe3XGu=ONdid%qMmX$RomZQ35qaW^*X~($}pxZ7w zkt89P{V^cCbZ-@`rhSpD?|K2#rg# zo^yL}xNL@`X9m&I_yr8850ieXz@jX%lB`)Ku@Z|bLpoW82G9^hqImqFPr*%PpqFt+ z&TtQXK!UN@nFpqT>9&&I(}8E z8@!o7Tu0s=@~ptJ>FFv?#BL~0Vm9=mu-a7JP{m)VFR zOe7ZkoXK>h=iDQ4a)_7QZxbcSO@~05bzC+*tB-Z9ilZPQ3{q?1S4C`|n|r{STE=a? zIu45~_*ft`McmC_ET>$XkCJ6&Kv2w=m3XInu?kQP@yuby46lsJafyUGff~bD#<{+x zlG4&x&|Al@vhKn<0`3JYAaw54OMBq29Yt)T>=3#7vBsAB`k3H6X|b<5YWFxy0NpS^ zR}_oTt&2?+2l?7#GH8u{*=w)H^H)?zjLDx<-0R!GMu-RfhvD;?!f`AA>{Afld5fu}rV;pKa=5yT{=@{7` z+N&qM63s>=_wOV<{dpN3d?|6q-Z%i5o+S4RYU0@@dR4$}i4C@V2fjSA#1sXbU`^~p z2*s)>3iBz@POR00`@ZJIHe&;d`x#MxR&e5|KdXQsB2r2pVZOwc()7&zIq^bD&(rA; z17ne`ARbKa4?Q5)E2cDYFJk=1s|drQSQxGD1P~v3v56gmuWhQ$c#t1B1-=Y$7}~3WHX)_@$!R(9 zd`j_?lR#=i%L)Xs11n!W_eTW%fPH$oEoDFW)i!bT$;mkv+fzoLnQcp{;Wq8Z9J=TJ zQ9(R`A5zzk+Nba5&Bem({kD`7c25Cn8;}!n6}zz#Zr~IKT4FI+oO2br7AXgw;W#&5 z+ET*Yru*Q+t{>&6AGD=(!x#h;mJ0nLtHA2vVdMKS5z#6g(&XK^uSaDS!#hh>NUshv zf6?l>72?$v5L`6Yx1Lu0Q10s%S?UF6(F#d_n)MgHoG6P1`mh1EQLL60kFb6+jqKua z!8xSkwqQ|^wcj_HbH7Q)6D{EX3f#`tB~P8NOw<*DK^PRFK;;dgRo%GQCLV%~oIuiENb2WAZoo*`_P=+9=~Y%JM<)>gk$-tsh~=SEB^1gbjG; ze&?uub`7xQKuuO&VPqq{aof)i)M38nxzo}3gL8MtnApSvocjUX3Go1P_rQcL5uCkx ztMiDS&N;vzu!$9^W-py>&xT`uoe zjuDuj+w_Y3aGPJceFWoQ`4t(kqJ!BG>vLPS(e_p1n?>M+xX;(K-Q1gyTm#@scglPf z6?fV)Nib?89`_!E9%NiUEXQYd_tB`9+o9}=;5^N?g*FB6U{|Eon*15#E_9VApxMG` zm_3SRU0$KYhbwUIb$DXHZUm<trqt25W!**~+jG|0;$nU>$?pZ|912S|I%=38^t5@_4o?HeG0K*`8 zgx%wt9)wzE6kQ-R?J4I*wg%)4*aKw$vD0dw%Z>$XwNKGLZa zzL)^<3TFOmg8~LD=Tg9uis_P8yRk93AEXZC4Re7Mgcp;{O|z2FpxcbmH$a3?*2sqr zpCI%A#8(4EK?rZODeh-ZvsM?y8vN8p1;9Kf(0plSiyZhDxQ+hHYjubff_|X zILEo_*vpE-PQ|AuXWkd2Kq4*qsLfb)o9FyJERjX=1o$;+$^FR@bk}C7?hOkhcu=s3 zh4kVF1QHOugn6-+0tqT&hR`t@O}t8(yFL8QXb969D^NJm5(|-q&De39$EDYUbIluT z?J4ElZ&FQHfft)x3{1@l9$pU%baF4gM>W&A{4quKiNE^Xc^DKHn`>bxd-5i8KCJj%ZgBZ$4gCkn|GYWyiu=Ml|Q5B|seOR}>CGT%@o{ECmuQWo4ju!FI<`_)`p! z>E#$`b#xwhuGc;%;pU^yZDN%$&?1O+f>?xUih))t#sCkvf!eDDu>^JJK&xHfYvo=k zPHuuA86xt2?iD{KWb~(?71#%^4%qeea8n2ljb4H-HQXy8v`uz>wUs*8z>cGI>#-*0 z8gk>XAq z;XS{m+yZRz7IccO{e_dWmxB~68)qsCymY@A&!w0>30TJNQ1I}>bad5lp-H#bu>;AxUZ`f z)#fZ*ArWmA%dpWK-#0OnhS+>k@Kg3z;K!-k5k%?3DgBtT`{k{_ZYx(JIffUaHsuu5O`S z>=-xzD+&V#Xi-T*X%-s=xfF#bt#$zQ0($8987c7;Xh&&Ln4B;6bq`z(&6f(DV|46O z*R9YHYF3(TVvX|%hi{W}u4FcjdH5z8S3?t)jxxXfY*dy07VYeM3+Jzfd4V(4saMJe z0WdqAh2F*}iOlQ1QGLeFNw1DRbKy}#=txviX>$aPxN^*};;7>*70gjT0P*hxj`{(a z=aJzBV+}DpKLJ6hAc3qoi{ez;+ezV=*~MWpXX9tTA!ZV-p_51m`Cj? zAv?=P}?l5^4n5Mxt9|sV;yLP)pL`cj+ygd^_}dL zxyL5@WtFFDyk^jNsPMd2N{w{F{(E_`7mpw7^=h3W=e_|813bB7>M<8hmXj_%9$=YW z3|O^Y!@Y1bRTXxFC(OC}Fk3H{g7=k(_5Vbzu6RZ**CZ-b8I>Ous8>SA2SPk}Ko2)q=_W5TMvZuNBlj`8D2XMJC+X#DMeI zWa%Ew_rbs&6R?nX`Y4rhHPI0+>RV+2f6RnXZjGIUtN?=c3D#-e1`7rF+7r%E^#HGj zs$%@nI!$onj3KE$p5EWYJiYO7_8rJCuE_?KEOOyZAEolEY(|ha^EqmER~Lt`mO}J_ zj)PpkgCCNL>Ra@pWyn(|A=S$`cXu2rwg7M3&$*_OWS0+eNy%{ z6IOKo!Vs*AuAVNqh0 zyI(F0g@^clgW$2^yS;?YlVi_-eZg2P|HfKQ&<(yL(;zsbs!*FTpmfs)bkPKUVl`7Q ztSS_&+Lb2oi@=5I<&EX)(C4X2bbR?<*Lt-s^zmq2=)+VO3a0kw#GCtZ2Uwlk zvE@K>h3(uQDpjaKFced@2NT+&TdW9W$F#SPj;#+QINew}DAVveDlcoIm6u2UQ{`oq zrc9Jqzki44R%K(LN)=0yv83&kpVgE{>Z2a#Us;_f8Th|O3yj|S?mE%`CA8$7FRA?Q zI?*pi*-4gIrTTH4>mBmTyex_Ko6`zD(K@Nhcon5T8D%tbj4NE=7QY3oKmXPm1^rn@w{U8*!ohiRZP9x$=XZP!`k{Vu^udg-3Z$LASr{8)&wq|q|pom zq^~2K>qV+8C0+V%JS!IaLR(oXKvZl?EVCJXSc(Z^XiF)4<`R2iC5Fp3V>iAX;+~D~ zDWv$oec(1tqjw}q(Pv5%JJ5wv+#`}NW1;m662-nV^o6@>7=5~Atbe>5Hn(7`nd%Kk z%~UKNccc%>@idjR^qf)j)Fv3aW!D2F4?GWaJ08;1pMlJS3QLaI%zl1$6@iC`ehpGB zRY)=gdAV9IDu_i?FWOJ_qDM(bD)pkL;V+f$@wGuJ-D{re9lS{YpcJ zwY8!!TTq%OpC5qkv>8h{cY2Iw=REQBVOmnZEd)NGEuYh2-Qvx$@_Bz9!!Y>-^hVs6 z!e&XPHOMvvOf*=FfxZ&rQ|qM*klMuObvk(gP5HL_={TC4DrInT=~u&Ye0KBr`cS?k z5EWx-WK4Z1I1H5E6RUy2l=@H^(Z6dE1uTE3(({Zu(86Tm8$9*=-I)17x0DPJA_hWa z=YUrK6TE+erqChzyLj~=JOtHG$kh&zAmRTu6(?7fn&KHzYmy^`_M#z;{DEhNJW_l7 zOwWul2l<%D8?RD5s*36pv1hZ>OJig^JvlDQhG?i2Hf&MY@ITpVeJMYk4E4p)dd^W$ z0Et?fS7Ci&9pi|7ntIMMe7ORq1p@2CntD#MnNrT6!mlhg*&dc_LvUfL*CUY!?n5U4 zRAswfI!OgnvTCZ;21BE7^~8VcUWJ+C`q&W34`nh&jNkvAgd0f zZ_s`h_*llBhTma949HPcvFM}&cC+vyZ6v; z?4e||0^e-?m{&6xzKK3nHWB0Kn;PjSnLc+vO|_pjQUQ`d@8_pS$-tnl)X?CE_*JZb zVQS`tEC(;sTOE6N<0;NnPOAPC$f6*2qrdd{pu*Vd7Ju8vwgc-wf1_h>y#PhX;5QFM z3pJxop>$a^MyUOcJ6X zxgHoG2DJmvB{ZGu*Rfaje**%UsUS+lxed+P{HHe_<2*91A=^%;vLZ`z%P7F z{R+IDeH$^S7@WSGr?FfW+2{&vMMM}Ln!$w-iQ+@H3eAzTN4jIoM^tFl_R%v|y$O1; zRm;c3m&snn1)q%))65z7MHU@?kCpZlwsOw619(1vnF-$+UX<>`w>R!B+d8UmAC$DI3iKCvDNas*=7F-Pj%Fskoyn-%4_M+!r9wH@e zT_sG3i5g9GYz$LLWj6-M-4GJPSPeeO{pbfu>y_{AB0l&<7BND=6H@Xg!1z5l zs(n9?)idC^dC)?yJ%sU-(Qe>#ndO0D_F^)?TuO7>R(Zu@K!=?@07Bdr{5&lI4^WtW zntem2D*5lY$=9}+`@9BUIuG)cAlj=WBawSbwC}5zAdDaazy`)KJXJsd3St-!d73>h zA#JqKbir8ZmyxJH4gA-ijPEQ-_eNxUmPEXl#d8~c_{*#CFsB3Mv_!4|0yVL%?KN-c1~S}=P-qu_Q*#0pxt+5F=jaNOBv0|HwMNYu|K{un#4RZf`# zpQ`ZqnwJ5&@FwLp%wxztkTUL+3kMxR;?un}(nf^Rfc=m1NPrVoBd76-Zu=b95}icltg(qrREC89kd^)y7%kJZ~X zFf*N(>XjGhbKaIAaTlvFaIR-%FXvhYOwK|9qypA(Hpk#cnnSP4@w+lh_D*Hw4>9&k zsmiJ3Q%W|L!LRj+LQ2ImySP`qSpOgA^5%RB4Np#iyQgwp-s~LwUVB(UK)NA9UN$A^ zJIHe#3%1lbs(Bx`iF4rx@T3RExIk8Cxt=faLdQrdrY?bNzt|r2HjysC2UVj4Dd)!j zFi85bMxRW)|514Z7DqADuz(*80B96^X90a>e2D^C02DF46^g}%9gCTW$qewQ!T|XH zGsz6Ve8eaR#K|1+w88;3Q4VO3@pqHDh!T)EV4qIQ0Vtn2x1MePf3NKSYZ}Mel}ijz zle3V)l6^(!(kOj3`(CJyxS2NIo4s}{t4NPVH1%yYR2DNMGQqyiiuS|T1)JC>3PT@b zeJSiG{U1NdZifCnb~hD%NU7hL2fx-Y0uJL|r2nsgv7G_G?zf5{tavg3S??lXy$jWP zxG4X9HA>%0|2HuQ3|fRhyf^m$Z$s`_JdQiQ8K)iMO!(eS0{+)-OexY!ZHayC%TE&M zvpOuKqnFuwd9lvQ;wSWmNKarCbsaA@P+Gb|r<}zrnXS240G?9LJ{9gN#gg+#&M$x- zi|_Xrpii^T2DSp?s0JmDV!Tzsrpz&^M_mzC@CQA!|0UoHiA_57Tr{ew-G0t}jFqaf zw^nf*9{x<-23S^mek*GOw~cn1R{SLNvL-*9b1PdjX9_sF^leL^E6aGL)aE>9Pie?` zB-y*-`X0`8DPu*3s(U6@9z($A2ggVVB%^4TjL2$M} zjj_H|?ZVjk{zPxQ)pD*ku?ohE{Fr_>FOJ}sxV_lJJkT|?H>#yUMj9?#<7m#lTF2^*iF#udT8DqSDq%r4XOv@7u7j^J|# z>A}m?h9lPU&5?+C-8Yih#viCYw$4Jv>1L@!cQ@0e$|9u4-EEwizvEGA2HyTAszO@Pf4)x zTLNX7Nr6RuvWt$_9)Fu!c}yz3S_JnM@Z%4@%O1j71h!XM(VAEk#9DR*?ssTs@clx# zRo5>?zzFgCPLIRUh5y$`n(L^F$lQT9^)RNX53b{za%15-)XkaUVNM)=X->fry2Kxc z$DH|X1&<{rHV%SX&;e|>h_XkAl~vWg3aGu9W*5Ju&It_Ex7i~F;ZeUba?C@aIgB+Ex3d|gT>S>pd}Oi!MNe^ zJ0R%KwgU}A<97g6ma9p{WA4+xr41Oy4Y==F+JG=;hKI@qIFMnR;vb`DFe-ud4wWF! zCos_=y01~!f+3vyNyZkmHKjC7@RqSXe#m;*2oMy&8}@3&avqb_`K+;&$xd+60lJ;G zAw5nPG@da4r|GMdTURI`!Ze2}HPa*ncYVmFxeli(WY4Ok4ZyH2u;y3@18l00k#n=G z2JGS;>h3+)s5IfmzN6jPpAL?rx_ggK-l2EY9ZClslA?BmJI?htMY}M9UNk6|NsQ<< zqzuL>%~g82JLCJ~VYz)?jNDEv9^5Cly9!2Sp296${@m*jOT$JdNY66A91(V1G@^(; zGDqg?QR!U%G>RWQkbZtzp68*cARso6HZUoWnOyTcct==+Xig%LLhe=?yhi(wa}OzC zJ~4LssSQk%KQ#7X5YL*Tb6-rDKSUEB7#K70AKAp8DOz0CqB!?Q_0hSm$yq|MTk-|PN~}b7E(;TY{JU zx$D=Lwp;GgZT{V5SG8OA&ri9~cSF0S_O3S`{K=2nEf@L=awq?|-I9Ijl+~X;&~7PS z)w}R#kF;C-=Paq5lhbbb;FX=X9(cap(pjDRkKeuAZu#>24|Zg|(QetB{NVH-{JGt7 z?bmA(r+n0Ixlw#>ZrhjbmbVLDG?bLIThjmPJoZ6tyXC>_9^L-t;daX#cckQbLa^Sd zP}-(}c1v^T27@~`X!%w0$qJDRTCVQD^*66x6tsLUzVws7TpqN1xcI}Audab0)`<&h_6|4MuU+SmQ8sAzrA(t2I%4g4TKf8F*mLGRmuIxI`yYs;g%Yoj0 z>BO22OU*YIe0cfV4olPDz2~idvBNSYJ$2THuXb2&f97Q2=|95rWYYzAe%N8T#F#Ym z{jWMKT*2M`Y2_W3x6d`0p04k({OOK2Za8+d!*WmIPtLi&x5M(>ZH2GZM>;HXeln}| zzG)%LQcs}w==VaF-`#X&Sx!>Oa`YFAxmoNj{5g*3R%*(|MP-7?+jV`DtgT$ zD?^s<EFa%_*;C#>g)D}@K3cl% z3 zW%O|O&V@6MTiy$m?YklIxaIE3p8ngeI&S%GTBqq3%a2=T_uur>mv238S-ttWPyU^G z-15{e)9kjNAGdhl3H)~M)5k5Xw{>3Ua2>Y{UcPAH|FQSx@l-zVAMjO{q(r4fAzCCm zl`R=dMTMwHA(TB?D;1Tplr2J`$iDCUnk_parIKA`%W^me5qVB^#^+bx@Avij>-pz- zJ?C}ip7XxnGuM4xGjq>e_spDg!hJ_jIqSyuv9J-Oy-i|3E_DPE-37Nje=&kAgFRiL zVFdBa4|14&96_0FJrf@XN6=0Q#)XqJBWR<|x+5(#qv%PTd$T6ruRi^47r-2XDgJ(kXp2$ zsj$`5RqvO3_3XwN+S%~KtmDBL>Z_eh*cmv69&!+TuEdU^@WeWfhMX~^ zDx-Oxw`vSo=~yfKwvM4??&A~iWejn)CXt)k7+U}GzS$JjIPyMx;fVeEaYPK-GC;Ru z9OYeks`^}H98r7cx*m`lM~l;@UOj5#NK(Vk#7lo1&8+2Qm9rj4qNy}VKODzVZ6Yh{ zOP_IM@X5@|J8T?L1$HG}OdCg=4PshR={P#*OFOosd7RuYq|7n)j3ZT>Q;SrDaY`Re zKs-7cu$+#7?ygB#PRB$*JME}euG>sN9};9YaBvXNz1oUBBHRQ-|439(QHX%9m*(4C z5GNp-izgEuWe7-5Y#k{=k$}!8U@5)eNtV=+;afcoSN9r0`RXzmeE>({fkitgmtXJ5RxF9BtK$)sw3NM13m=NYdLaaJqqj*mWBDbz2E2X62=C^_>J1 zSafqvs-J)q%2-4*#t2Bs+Ax`ShJfCPJ6wogB%tv%x6bg=O&}jhw}U|DOAnA{qg+hlW&@rXJ`L{|FsCt&+ z(Jl1}^v1XECeQf^hR~JhGfX$x^3Oj$fZZJLmNxSKggKvFhoX4Q>-C zn*FMkpYH@}y3sju{@Da7c)`{z5H*3mMwqfvB~PGr7SnIqvnP=1-MMdh#S`eYS(4Y& z>Ivi+f7su#c>=Z9F0Q%MHi1|~*2B5J36zlW!c_U|1nQYPpmLZ*)+4JvRd#_K*CzVN z(N3b+r>sN;#z|yhr`x8sd6Hb7IfwN)CsB&8k)$opB-*k)Gv9qL8Q<)yjFFl|=64S0 zS0A24`_pJ2j;Kr`*I`eUjhd54oMChHA^k}t*fr&6XEup$a9Xpa+D;;Qwh!`O9VXG9 zgEv?5xlW=frC2L#?@2T|mu6oWIEi{VhWO|sCK1QQC|8}tNwmFH)FV5KoZoduYF+Up zN}`u~Zd*Nx&VJQNZ)=`J)Vp)8ANn|n9_NNmXMUPQY;xE5xkt%*R6W@iK0S$q==7S{ zfr#8Eg;4lPBJ#RwX3f2xh+Nq%OtM&sho6A)Nhs;1d=w<2HGwS4uSyV+;u@iy z%<@DuhE{FLQzD|)cIHk!4I-L)R@zrm5U7r$By?tb#dK3|rbl<$nz~p{k84;Q1 zsZCVY6H#0#pGrzAIi0O-*t2eOz7Ju;UPDBL0z?E|h(wfcGjDl!frxfpyqhdL z>LQ_ojSXQDgCwLt74FSKB%$WP1BH(lNT{E1fNK-o6uRmn`zB=F6jEm;RP14!Lc)@R z3kAEUP*z@(qngMRdd+)WbyR8!owr+V`A}gBopTTA-gj~eCB#%l^=MC_5=pMIN5)fV z`?#5yqRkXqy;_c*`qmU;ym(Hk^8OTZSh(2i;X8%i(XXvN6EcOo-mTxWCvFO*@pBRv zGp5jrhS5D8FQ(AOQIX~sHB;z9N%UaUn<=zSkowxAt|_DAJKgm&r#OwHthezg;2%nHYRU+N2Un0R_IFWA9DN*%+K3}i~ zCm(g8Fdt!b2QO2#TO!8?CSESZ&?KM5k;K`!94<&&r{d$ivIA ztb<3UA}oRHc4v~~!@vYcIJ!qQX9X`)3TqN}ouQ zd3}wi$F7IRB%?WzLn)bOurd?OL;d@_>$yeZ-Se5xHxykM#yZ}V}4@7}BUq(Q?u z-edVM_*{j(`O?0u<7G|?OLFvc;w2@?CpEw9=JjF!!7H@JI`JEuW1=2R^Xgfu^R7Na z&DUf0HjzJ^B^jI_#z~EfCHa&v@EX`{P4cN(o+#zHf={z6nD_KaUcR2?R*8!1-Xto{ zcqNwVuqMeg$n%zlTJUgFrSVEyd`Sw+a^_(cHB46hO0IuXy~I+x8s2N6kN7qd{1bhK zB$MC<3ojE*Fz<~>1^&Zc9Lbuja(tRzb%|GwYw{_@Z{~x%ySp9rV-h|)u1b1voQ(g+ ztK6?6#*OK?-vXt@7u-x5-Yxv-ULj>2^2XLCjnAf`Z|5m|)2j|g?VGX1g%mv5wF9la zQuF}x6}_8U#CwicXvKkmd8Q1GGW&!t?PW>e=Wm_@Z>)JwO! z4C}AY@cOM(@tx0@*FL&$Mz@Qq5a(yJ64KH6BI&U}!AuRPJK9GZ>EIB5hbvy_O3DV@49KvJ(O39(;=cZ&bW+JEIAO|6GkRbh!Mv_N>j(ciDEY-UHf<)`_EQDK$M>mxbwdzIq(Pli@nLnE#G`AC189x|R9Q!_Qy@H-yZ|f&3+oAsNsdD&lx2^qa2VRySlZD4s;|G# z=_(zS)73b9^3>52DjWw7a_FAYIC@C;cRl`{_J+`ZoDu$yGyidg-!&)6aq6gw!qPcQ zy0&Ct2KqJz0vCa7 z7Y~nxr3JsK#T7$i8-4S?FHC;bpCK)dsFN0z$RYSNX_1c{%ukXQ=haAyp5!p1N>zW&C&=f>!C8fjl}U?I`E&4bvW#P-MQw8EI7&`K z4#A4#a|+~h66iJa5Ne6zX`Ts)r|Lf!buaEyX>O)uelA(=-q4`oD@n47UZ81u>S7j9=fdhWk@j{D0^I3qqX)-F;c6?%HlzrNZ(@`B=Dy_&wQ9iPGX z9{Ve=&#v6R(#mxPKk)?=_xmN@$qL5)(Ub?1NyppD7t3URFcu$-iJjd|?VIBNN2w*`;qu^^8!OkfiXIvL%fDMg zk>A{%5T;SK-4Cai>MF6DRMQT?&j-7%Hk@BBpjYEv#w6V&o5e2JNxxkxtD#TV6_XoTwas~B@ih%Bxuw^SYxvD8%4g@?gOoN zqQ9l#=a0M-#y^PjB?H(##Vzb7O*C0Ear$lgBbUu;f|^MbtWu`nwxU+}#W)2k4foF9 zb!;ggpMU7fFjm!6;8GT(;0 zllYA7o7+*M9ik#QIYYsdeQ3z@Gk-aef<2xk>jZagQ>+KeZdL#O>bP>1DE@qp9cJn4vxP7IPWDE*M8DC(12Z&Rh-upbRa#$Yzm4bg*J&}-2z8gZWYTz9 zD8}!~=AL&pHB@4GVZ?AWu_`bJw_hXColUl{ydL8F6TXUsty4-Z7@%NXH=3SNss_(b z6dY;iTK<%IF{+z_+0USyNIm&Z+}^%Nq$XM1N{PgHOU4oF4fh4&u)QNJ!~Kh^w)kLs zcikUV@M#_Yi2GZCmXkzjO@@cqUWN6123PdU19AEbaub?10ax2GzHLFOS$);}F}C+$ zrC-INlWBHv*yDfw%0P2-ENwlCIj2cY$stQM&mz*^;@=g z^!l}3@~+t4+h?gfq;{W7#r6z?sFiKc>|NZyu5WjqFSk6n)E`O3zPtNw?qLj;x7jLp z((y+9cPwv*s&S*4M@#^=*G^);d0+PV8oZ(;mcrq4cD8XCw;w(4wL)Px8kWYVO^tci zr;p#w!Q=ewi;gE`j(`*FR_YlePd}9_@04~3K zG=pGXcp$&e9<%_ChbESkScd}9NGPx?jx%P@eP6|Go z?P#@_EgZr@!DZp|stS@B!z(Cwe!WEVI>Vj`MhdoQ6bTlqM~_a1J~4jG1)Q`z@(as8cYm7mdg9kVpPr8XleV%R-j%xelu)wb6e z_Tu)_^(0rRpjy}&-!JZ+Iz7t8mPCAi+}<~~khAq$5bh6Kl^7p>57PAcjQc0$-T4a> zk00Ut|9Ok&^!r^~A7lG!PoASSrg__f@82-#X0`1rTt~4#p)R1g=H(-eR@@)AK7aG5 z`RRKntS|cp`@Xmfm6qn4j)l z8&p+Epy1Ck7Ys-d0QY}!XN3)JB^WPad-A3|I<=~VhcG@-FkI$x z?}sn8Z`AffO8eA#U#y?qyJJ1HGsB;8|H~-0PpXB+qX6rdCdp^yJY5wvVxh^KiP)qq{i2P|EJpr=9M%;QO83?onslxOpGG-|xvaj6K|T zQ4&-!g}i3W~8m!5OgePJ;H;;2sL!8R)t%T~5pq*N2^+`5TF0-Fj^A{D9&HqfP5S zF7=N>%S%QM*p*^?t4d0niR?EYV|yDuE{jnc(W=DlLo2lCRLAjv2iU*+{=Bi+!JNAm z<1S9lVDZP%9@yTiA^Jthqr)E9-msa{!wt_R2C+Z8A}md-T;#*^F$ylabf)craDVDB z<$A=~X3Ma*$9x9x_qg^f%(Ksq^kDmz@A{n4cKLD`ZjT<<+*a0|IrR+lU(JulUt!xa zz2v`}c64vzvX0005-gP$_Eq(itzBPs`}3_9${fmeS^h^=Xsu84b6p7{~gs zm<@5nePa5kc~i%B3Z~&8y;3`p-*?(Z9d6kFP<^KJaeMO~k8Kp}eZoJ@Zqq5xT}%E!sr1k98e^1n zqv`d`CY$utxIGMPjo~v@_B}59*ZPy=U+YbaOWfc!MKL)aH`1aBB`8ut7$tx^X>pz$ zeRTtoX=`{WXp`T6+||D|HI`n}m|tr6VcTYsO(-tux|A#Sfp z=Y}PFn>S2gi@wF~;X32E?h~Hh5syA_e57$p2QEM1r043j1;?MzQ*ie|+SnVTYX?_S za9sJ3?LyW5&vE+tY<U%A1YX~Np%aG7 zlgps`@P;p1ju;0NTF~?w6}jX7Mv6H$>egkxr?~wvOq=l@OCHU}`p6$UWc=z@Spt@S zc>P2zquHbzmgll*op!d={xHnzt=PB6Va*-aN=o@y9bNg<*|p6Pmq)^G&*mtett6~} z78`Z*Dt?n(od4}74};L-+Kvp^ANLQ4@3d%)#W?lkMgCMn?`VAe8hX*>BcG3btDs!Z zW}}JKCJ{$(Y~R?WGwo^*Z2R!_zjCcHDiPx^z}H{BaLr4MXJ!oB%Tsb!ef7%Iix^MT zXYvYVK_X7SHLAi2Ec4T`JhM9qEpHgKvvB=H8c#+T8m=A1{xpZcsFsOw;}n+X>`4n|*Z-yBr>u_a?cZW7p|wF{?8!%OoPL~UPKPljq-AC4Z~TdAkXGza0tw&WpEIO= z?yVC`#?L3k(^OHe$iEKvKaw*U_J+%XYc^2utE_q(@7LSLFrVeO+HR|efBJe{|98Vl z=R8ya`SwNA z+cocSe^wo3_TrUIkvGQ9ZFCLgkJg3Z@%zz1YO3&qF4MR_?l|x|!T0Th4($JNcr=Ep zIIj%Gc=Fp9Azxr<#`uA99953qsvJB%HiZ6O-^SyK>9McJU0LtE!}qhC`^%zymJ;M$ zKEW z00a*?Ll&16$llh4caJ3Cl#>JmlO(`H*BQ8HU%LHS@IC1c-!Bcrwsc*f)A0f!Dh;ro zKLUirOTbao1fry;@F|`R&g(w{x~=`-5@ZNr%(~zuV*-vJ7GbxoGSJcrL!HJ3sExA) z`#wFmJ80%BO7z@gMmU^(*|qNQnoX2l}xy^Ww;WRUEa zc0u7S5#T!b64)<|L+H2juz#B*+?lL{iTiBe;KK=KI~}0aVh)7(?O?+JdB|q2f|o2I zkX%s?e9E%08g#(*))Dw*%@5D2p2FS>_9l4&z2Uz-Pm5FW64 zp9mKnzQN73Gq7pH0F)lpfCKN^Al6wNcJ8Q$ckXs@?(`0TZTT=kzZF;-yCGC~5scW) zAn1%fBz;$a+jl;|cEel{8FYjG5de~H|3PiS8*xaK90_*pI)4B`bq__;G9%?~y+8tmYngqpT^1x*L z1`;|yK#Hy$nCUkHJ$Dqm3CaT6m`TvKy91HsPM|OK0Nib_L#pRFuzddl_+u^tsiYpf z?v4XjnK7u>9frC#QQ(eifpUE>SXXNY)LhK4?#MH!I9mZVm4`q%;}O6nBD|GPhCN5W zz(Ok%xs#a(cK-&jY8-?0(o--p;Ru-nFQNJyH~7)`Lz%TS2&~M6Rfmc2U|ldIa@d1F zb|@(LmV>>BAgoru3^uVoaA{y02-iP>8yk;-?2SGkb-Tf!e*pCLJ429g06ZAI1iHGS zP`I!L6rW~+ag;e&+sJ{JjtGQq$b+IUE5S>67tCCd03jMyU|78jj?2FU zf#vYx-ABiBXBQF9ls437fqm3S{Gz=sKCYT z4yd2p17ZfHaQOohh$xDHmeN&Fv3?7OPg}sMm1V#)WeUtjt+0DV2VZE%-}(r8}Qkv0(Dd|*sbsfqL3B&0cST1TgQP> z`B5iS5HrG11T&@iKH-n*6BLJw76Radm1FwuHTow)j ziL4c{nqvcec&PmBjq9Io774*l8LZYufbjq0k%f&9Z<~a@~9w%YGT?|sf z6QO&9FnOQ|ht=Odf`PITjMC)79z!8Gqfr71i;`eAn-5ouiNNjG4T+9IVB|Rs)b$%+ zZaXcseP)A$nNe_Nt2coso1(p_lF#Z+b*)dJ1_?Qa`Mg?%KsR>>$XM^+!e(($`gO|y6;Hvl$W^}@! z%8>*~1VQK=c?w9o2%5VtgHQD~;Azi+$X$|ThvX?FpYns8Gt{t$KMRgK-iD7WV&PiC z8n8bb4jb3;Ku0b=%zaq^xAq_4R=fb8ubBgF{5(iIT7iqj23WYi2;9;uK;L*T@N9Mk z1F<*cvhyWV%&v33Y z3^*+n;KI5V$k%oTEB&KzNuvjXPA&sgbunOX&4s-a6|mky7j%R^gNr~suw}f2a1l|U z%Z-BJbaEdx!wKG|pJDf+9jvBuB=_t5aN<=Ma6|_|X2cs1)S-v0Svgqyu^w&}H^Z~` zGDzI?0_q~}0-c#Q2&iv@-JlM4mR z10{M>plrAnmaVu1o@q&tQQ8b@>WaYreGNRec?prU2cT4DKhSpAL(ky`P}wsF@9Jt` zkSGfd23_#X-~+T33qw@EOR&>?3#Okcf$(tvWk8z0Jrqbv!I8~JK>eyNw7i%C3*Rb8 z63~G)hem-_S`PFp?!%siAsBc^gzXM>VEJf2(DhWp;(IT!FzbV~g(~o)D+33eD{v_} z172B#fV7Q0RIN3GnWlKyW7`ecwFQt1YS5R#09Oij!k1fmaOHzLFl^w1yPH?TZ6kkJ zwr3-R-n<423&o&ucpTcuWA{kgdhjU7hl+rC5RTgo6BaMQzfu%F#A!fQTsAZ{tbuiI z{9t)zAMk0oK~Uo-c*l_sm(C}EG*2+B)op-k+iKwMJUx6rW(I<+AK+A$GpGc4!s+b|z@y#)rB&}>70VOYVwDG` zj}3t9oF1T)V{m6JBapJ!!hHP{>?`6YhcOt`X@Ji2dSLwU8TjrUhuTefps)E1de0Pr zno|{gkY<8TYenE^?S$0L;lRmv1kMuQL)*>U zb%6R{0^H*ghq{4hpvDjdL3`67{{0#-rBMXK34x)fb-~^^3JQ{Lg8Fm>@IKf9vIXjJ)`AW=d0at4!3o?x z^~0CvZ{g^78CcX90#?R4s66Wq{&T$WrmPYeE1RJGTnZ>ux`K=R1>kf&0DL$6fl2>9 z@F>}XBi|N~FIfiw!1(fE+p)g|@R_#`R*q4c*SFjKEb)E!C zjc?$7`zweR3PbK=O^BaSfP|O+u*>%iNZ(-xm4FX$BEArorF?)a{eF0OPy!NmM8iYc zy^y_kBRohy03niW&`f?H`LeYE1}=O9@5uvDk}U!I%U8keE8C$|Ap*AXx5Arb7U=f( zf#$V-u!}bfGAF|dq%lbfKa01j6i$RcI2h<;{K)FR5sJ|b89_ov*MxYeJ zWac4rwh&@>S;Ke!?eKwR8dyD@pr6GE)EP2BOs$aYBj13dk5Zw_mI0y}R)OZ7M%c%a z1ja{fVEvYxP{j2d2GkEjwzeiPvsuFofkI-pUSdvKYYSxhq@>cmmsMd7zxj9SBxJu#TA; zqC@9FoM#5En*@``{66SyQiUtN>L9M-2Q$9(K-jAeSqEdlI!FT4bNj%-Jsw!R0a{Kc zK~|Um^bn`uXpJ72wk$&9$rR|+y$Q69Loi7H9U50hgLKF+bQ+1l)V@6M31ffx+ znlM?A2^G=d&=lbS2lL~>&E6iw4=VnTZPiPAukh^Kov3g18#&8&Bz<3+B_qgyWBbqN z;!r54QsG{(NK1(ER(2@v5H>|NrOtKQZCY=YN3BKj$9>0hoWr@(y46ztoos zzQ<4gjA^GIWkuE3ex%@|-fJrERA2M%qhQ(Axr)MDlYT>gU4Q(q>ref4eZ0OWF}B0? z%5IVOUnutPrxnTJVH?jI`AZ&NuW@_u`}OTFd3Zg^^~+Yb@Z`Rj#`pxh{$L)ob!Kw?)igZcn3%Gn!{(mYD?GpC%__)}vM3Rb=cA|v zcF=iSpLECbMQImqgdd@2cER&;3=c$z)Z$&ic)i*yW`}NCBi|yP-%ZL~Z9RD{VuoG&Fw(a%nK3x3TQf=7-v2 znBHD>!t=)%8;7qdYxa?Hui?@ z4WoGe{K|-1_9wPA0oeZNiI&81^*C3&UgWbnST#N0G9AyaX7akduOIhm#W-u+Jyu2D zz6k4|+Hf!E;-fYn~}4>F-r4p=YzNbph82!_s2)w?=A*8tD4s*B%Zci!e64OuXNqFM)JZ@jMyoiX) z#QG$^%KEOcJgyI4e`emhQpJ#_7vG-`g=(oE2DUb1oTYQ=;_<$ka-7~;$VAzCQ7sS4 ztG2$$qrqPjjmw8Kn8f9An!6M0$8|b&oBcJdOuT-V5$?;}zg(;j*VnU#2vusDn@jrv z84}*Knst{yz`WQ&9y$-vM`L)r**jOYf3=U;(*C1^P8-%8d&%gG$CuZ7FN3S=r5o^i z=I|bB<-OdTFR*-BNr$sk?*3nJ`#4gVP!#U*pl+!>PTf2&cIW+boSwd@E7Oy%Zv?kD z^^8@70|vVyaCw`gOrL$NQW}o0A5HfoW&iD$PT1b3*XZuXtex(~`PsR=Scp9yrP!XF zFWj`l2b+hmJv-mon%?6JYQXYXLi*O>StjB!(7-zvg7KXn zo|6i_4X^R_-p-rd$tbjYgZ1@j<7GRW_1+DSH@!ERQxtk{`Y$Z?e80w%ZMc85*)v_B z(VbOj`Zsp`Yd`Wo>veyu>@EB28(ho&vkTVyxowu>9grOrrk`3+WHgIWO7Si3KQw*k zH;6qASo%c;28xial$eJSOH$(Flvs-rn^EHH@MnG;uc5?@l$hx+yyma;IakAD`ug%* zaD8ujyid23O|lxV-@ea2yoZ`zZW^yo`)0kgj0kb~g!$&03Xi^*{dX}hA=r36CV6NW z^Il~i&#StueTMyu3@PPop)&4q%#Q@FJNWEu+B00gt%ZKFb{P&+n1685Xa=@nE%Qaqqf#Er3v!^e&?Oe*$^IJd*ZIXd+$T%H;L1~${s%5v!Gpvaehcy z%8b+Q0et-`SHZNW?@r#u`A21<9PdV9R)X?vng0c;kVz_*HQIqd5`T8aalvzb(#`wIO@-WtKnMg7mqXehkA-_XtWIHn{#eqCL3KfAJRI&cMrPing0ZqWPsKK2hYCBCXZ z$x)l2qwr6z5Rb`3SNG!a^V@R2m-_MS_4E`zyEr9ONKS@?_nRy`JM{fbaY8?~m*I4O z)`k|N9^9VnW9`GP=7%+7dw1rCNg4`lEyDG6DPQn9YskqsZ11b$tt1i0uaB{PE#t?= z^^z{Q;PPK&-p!GEP!s9WozWiDPGu0uCeav2}#a@$H+V2|9dws`CXYM*Yp2w@aPCk9C z;2rkgeJ-+%mMy#FkIREi{M6fbZW&AdTquw7z{LueJX}6W6*u!Ww}&l_*E@9u4)TcT zEHa3;$W-MV62z7H!u(TUjH@Wkc& z@S7#^bGocMz9056c9la9hm^*yeLvqVHH0zE z1}&2fG68~LV(fy2ERFN}In8y6i}+ON@eY@6wGMG^$zO?IVYuCFn|uw%%bc%0<<_M7hVf^j$!Ftt zN0#I}vg0VO$Lvl+(d1 zPg~QaO7}4p^D(+-7)8#t)Rj=mXUzW9Z8f*Bj~Q z>lYU>uM{hiq?jBQi}jnX4L!VU3pnEO!T6fX2Mr-=%h}|He~~@@WCmFi&%NUIPqFpJM&4h`U)W z{`_+RJpNtQydL8qPbkCtH>}QaW#1$`fBdy1w?;Mia|J@i&>|gxk@qE|puk80RAAW>YI(|SQxSWz-o%Xj|hxv1U*X@4s zl>9NjFYk?cvw{F4-LcKjODH_$OQb%S4`kyq{Kez_!oTweV17*dv~G!Zh6}zv4J8}q z6>n4cKl__7%%9?3%fz7*K3VoZcy7#>{K3azUe7aeAjhsF?*;nrye{Vd%%6t&NdNMZ z%k|c-`RKp%5t#ooe;(!=8cWjy!x##)(7*71<}by(VR2$Wy`%ALD*6}x&-^u*k3F)G zF=+HWG!gv^|7ZSY%(K3-Ir&NON<|F%7yi%uA23hDa?{?Ggb%+uPYN#DB=6zqroh5s}EH_UJ9OWr0G z5EK3o{R{tRen;xRcsKMf{Ga)qF`wXNHW=eu8tnW}{<8m@@Y%7#2+h;qlCl59>gtkS za!Mf#-|rQLPdBajJqSo{aAuKB<4()al!=6=Wt^#9M_AYP%(yq7EHk<{GX9n{etO1FJ(M^MuPWf()%aWRc>kx& z(i+zvb5~51n1d1vQDPZNtV)UXD6thKcBI5UlsHV5WAl5*ZSK=(+r?R)L7i#zMS_hZ zU1S=S6SuZm(M_X>fiK6|yQh$ck^ZN&oGBz1J7UM-J%v7%*(w^EOrbn;29llJ6bf@% zcSVhD3hfV!-uU$!32FC+-H>i2p^bIDE{8Kn=*Qt?cu^o#`wsh_@Hbw-(l zBG^`aoZ=&)`rhhB%;ptk;RMKiKr)TB1&cj5iuB?y6rtOiE34fZIxRl(a5)F z?sj>T$nr((XZp}d^hi3enA&v`iP&~nT(~@mPJc5q;8dSPMb;6!(7{Qh^-Ada;^UlT~0I(@uq zfq+c5ltsQ6CZIAk@k-)*0vb>HJZ)S_KrR{3zd4hDPISLIN)t{%+BJJW@p=5h=X4Z0#qf-BZ^JmA#(5*L_oB6ZH z(3zcU&q~}HLzN+SxNVP&p%}HKP0dVWNczl>=#h?5GxO_kA8-)Os+2^w^@enrMxnf#~~bM+8Su zTJP((1ga6#X2o?|uk9-eVvg?hPW_6?6P{Y#aQ%wZ!;D%to&Sn>`yUYuMZcnnH|yV> zXZ(tEBFgF(28R*<%`dXjFNaa@@wty%pAVzyE;n7@8^cKQ1y5Os`Y;-L^=y-*$S^wo z{QL8ZjKk>t9hRJpqeCd9va91n{Sc~gYs^@cFoeE(Je@k?HiULo*5CPIGKAh3+3w5c&Hp7=BC}M78IH6yp2_kzCvU z>W*uJXjV_d_v*Pp6tXYS*h+d3We6;8s^30{x=LGJoK_4XrqUmg0V4y*;NFR=G%W*& z@%_ZA`rH9zWAy4lf5-rGVg9y7!+8MlQSmQsx-@`9-yglhb8-Nk9(z6EAu)hH3E1UJ zat@$s-nc{iR}P>xYC9NiPV}Q|A0Gy+_}GsOR5sXll=q__inJ0liIjd(rWEZw6!gH9 zlYlm)2jxb@q@l2tS6VlWSD~=sld0^?2}r-MF!7OkF7p0B+oHxBi*8A0YCX<=A_cpp z!(@+BynPu0a_A^DvU_s-_h?XBiZmqqW?gp>(EjBMdY(e*X!)hr%%Ll*Q7?Px?sq>D zP@wLscFW*gl=RVA<`{DvIf6x-MId-u1-GeCS9*;=ycR z?}_9gd#mF2K2!1NT}%X(NkC$emEwV(w8nqr%Ew!AO3+`Y=v$7S1YA{8;31a-i=8iT zO9r|emdMp~z8Z&CC!<#D*>msj=AqSNTbxdgC7|)GTa(YAa48|bo|@Sc4%P$(T`-Jmi~Lk z&IeZ`oAGp(nbK7BMLwR#Y)?KK2=N$~ok&6(?@Q6$m2oO!(y$1rIQeo(u2A8F9rHa_ z6n$SJwRImZMhg?rHk(yq8*XNyFT(dDLW-)`^fF@O6HEwblIprpmj}0XEmap zNWS6QorVs#X&%w+%tx2Pl9*W-Qqd2Ki`@*pQANPFYe%@_7G`T=(uX=d*<_Q1q=t?u-`sk>q}Pde7>I1Kc@iSy!X4!Hyc_tYiP3@Fg9M z(Y>%f_`CpR&E3&m2v0);)70aRvpz+oUN>JUpRHVyd*efy!WQeZ6n!hvI_=$q)=~tt zgGWh|yC4T0Kj^tPN1+CN(1|`vZJvS5_&KIZsR~h)kwNhG{prZojf>~0RG<_GPyZ&a z_J8EkS#7H3f-;TjK9Zn+?-FlNuoTf6^}n`C$B zDhsz91y`f5p69ra9VYi1zFW&hZ1d3aeeu3bg*C`^>Wy?LeHNGUAN?c#WYJ#cZsgUBi=&4n=mbKHdKUg()rER#(eHI&N|M zqs=9x2o_4CC5AOia--JLdz)`Irs!LP6#H7WYgGt{>QKH`#=Zh18LQo-BVLP&7q$?T zUu2{BSbb%e^cSc};RSqL$U+7lw{2L~h7@t!ULm$;@E^JLJ{5`izLzPu7BTU>xXf~r zfWqtixgRtXpp94MaxNRxqW1=IkyNL0&|9L^8h7DhbUo(Pb@9|})U6iskt`)%qpqDh1b}EB*0rCN&92MErix`Ncvs#QMpF zm3+O)&>pUxuDMA20YOSrx&%pF2y9W|%tii3&Pspz6d=`{t&&b{RktMf(l0^RDf-r- zdUo5(4%!5i8FeD^^3x)8s=RHia=aFOonzK0*pY|4O&fFd>PwK|9%7JnUoHx^@}jMh z3oK%iHP-()`H$Sbx}Sm^D7YTk#_zOe(IcS1*f8zqqA!p^J3%R#qYeq9EnC?t^3c(q z{q~Lmr6|DtyT+mTJmiom_9nO_smRKYCaK|S{ckyr1a#d?qusgx4&{EUN6SpiIqNPG z&_b=qv2Sl)pxOh@svl0)A$NnFFE1MBqoC_DpObHtqK@c`8<$_pMI)yg9ioJggve@$WaYziKK3YCX_|=;DJx0#s1zxck)2W5+MhC# zP4?b<``DxKlkY9R*Z=>!FR#~m-TQLi&;6YHobx>AIp;nnj-{PPpv(z}W)AV?c~$=7 zYIp{*wY~jo-zp&{H85S*o(QE!;-kwC<^h}Jv174<v=D(Iun7&?tVS|P9FR^7-VAxLT)3?p6t#V9#3x ztc3#GLtKe)n|lB7?w@%O*sk{AYeYE|%zs0oZePKXl6pM&W&xxm>Whq4e1kZF2s)~P zmpHBa%J%v6KmT!0#ZMX6ebC09_b0IB*&nNR->@U@AGPIq@_~>Q{_;jsIq=1<`?^Vf zgEMP%qc^GxpsvH@i$z&33@IfBcKHJ=b7Uw8r+6G?@yR(`sSA9LvXqzPF=SG4vMC-nSRKH)H3bN3!&fP z$Z+a5mZ>~Y_V4_yIF*L;IL@8AbaIOuJFhd8#A5Q_xp6ftk#B!P{g4R5lgCf*;VyvA zH>(HlKB<7u;-@b~%H=`g{;sQ`zrTYH&PVt0?R>c4{iQ(f`b)w`Q_?Elpe-)%)HW9V zT~_~{$5ey=N{d~@VaiDm2lGSG^yF*2KfB}-T3dkyBca5vKtki5kYyk*-iG!0vIn=fBBNF63m4o znNw)<0q@^g$JtN_S5;aU{GtoM^I)JCNlF^7B*363gQ?~pch4rs39H{42%X-ylPrP= zU>$X-{J?kkAlSP-+@KON$ez`X+vh`=^UBU7$Ny;Yq_ ze~Wu`6Xc53Zw+J!H=b&YCc=P$*vC_D-(fnwivlH70^`$xGdH^OLHNT{^42du;DtSF zk8|^PNa8*#6Yw?}mn?96F5tx$*EjtS$Q`TS8ZZiPDb7nEg8V1zpv1=Skn-_b#*6Vv z$aFZYpmwSNiflOon~oQOF<&m}!kt1W=Cf59nuy17J5R7Pwqe{nBJjsv;gWG#N@T!8D?J7KY zk?-J?^W*u)W5r;9+9ZOf=?9c3J$Ll7PQiT)%~duw-r}}1diHIz{lrm;=Nbj;j5rdMem1V;7T3$)_hn5m!EvN`^O*;N<04iG%lX#%KNFNd~vLM;|>H`dD@WtKVA4|MUv?`rC#bd29u5<9;7?9XD=s+ zUlPaaw+`5M-z9JsZs@h#Q;|EQML_RFS8}KDC%k0b&iG>Y4|sPbIgY`!6zF+9UYu(x zfoHy~xk5Dw1g*Sw<^}65E~mNP()4Yt-!ZNO@%*}-Z%T>aMNuN4W>N$l^lxvC&{abw z1yA)#=ntTGly`c#TnhIK4>s2&mx8u*grL9Ub6j(xOU$nHEiS#4R}z>0WlVqTz>+=L z>GV$`R9?sx+EY*j^#*QQFQlqL`soJ?qdi3sZFk{2&9gGNq_lXb-?I!j&m5Se5R1Vf z4abKHGh5u`+T&UiQMOqBPzUsaUdQMfHu|Fqb)y;HVi4WsOs##T8su2))ViXJfHr)R zB1f_u*a$Axou=iWKNm;F_cIOGeJlnSC|>`ME4T^5{4?%)I8x&5*V9UbZ|dGGZGIbE z*2~j-o>W8nbJMz~Ld6gubuO3CSq_5-A3ffCvH~vcR-d&yx}j%#>UWOc+T!YNf^K8= zTMtWuk{^C{6TvE;s<36W7+4a&K3>kRhC_vZ7bD&mLv&zenErzbkWiyuT#~H>f8M8h z4l*HxVYFg-nSgOgrs2!BrV>>V%#VtxhmRo)+nWYA{PQj^)0Tds?F4#pbMtI^`PZTQnolw zgrxCLkz(&lK=v*7AvWF`FdlAbqHimK^xaG^nHDPHI-&X4e%YTe`KUic!YUF+T`i#) zuF&w08EX|^$7YFud*SUCxvvz2V>(V>Ia340D*id|ZkEC_8LiY3P8|{L4^&Jhd6tZ4E@s0Uf1NSq%$vjibK=tv$%^aR;aM_+JZK_ZM zeh<7nuDYZWL^4%|`FA${<9g;jxcGL@z_H4P?kx{Bjs87L_^$wkf9 zz+V60>qA=Q@Z4SX`u4zT;J(Cf5!_k>sk~>y$S$VgVovlIi|KB0&GuawRs3}x)89sD zVd>@IrJn}f?Q-v(i_73lwdcg(!CH9xLs`Ua!*A}7&icK!R1KOay!54WEes#z{?3^m zN4VAZk?i90E$*AFBZbn+n4LFngacMPQhJ%D!TPX~Dvx+MR5VWS_P$&TXBw87EfOl= zuC(ESY|9#0j8qBx$zBJ71tIr<-ku;Rv!C*1+ZNYy6J(F|4~@_;_`2*X`!w)I{CsjC zp&aV182nsc*1~rGXNKi^m0(lv7;L>$hC6V`$gcA1>+zMCIKd$U1 z2y1WMjSzJ%wK-@1G~5fc>hRm}%N|P!UTA5q-SCTYe%8=b!F!GKKj-ypLFlAONU=jb zjA)DKiv9{92&QJT*_&ZpG!2a=Njd@=SR9eN3Dn>49xf4_2L1TNSZ%)w=z9~k{%Us} z6!bs(7XQ5p4BWVPHPqF@lFb^~p~DR@`|#8n#cVu*m=846DO+5g_j>JhlFpd^Hi6hq zdG4j78_!Gc_w3 z5GUvHX=008R6+dOwGA5w#5BQ)$Qz7GlGEURBRo~XcEca3T;a%mQU{blu04l%tASuI zl{M5_2Lp^B(k(L^Axx=wJKf1JoX5`*qW`hxf81Ar#T;#pn7`iL1d6weOw;A2;a1o_ z7PtOND3cxJp>C*yv0~u|W&YJrvS;Ck^Obt&w7(zo+r0_g^;~T`+hTD``pZAwX5> zv&|rAufG4D?Hj^5ilirQge|U%1N*U(j&qp)Hbdd7j#nM0ra@Y=vL(8q3K%Jh<$W*J zL$Y_Nn%Vgp*gmniBkEoQgdNu-tVpzg@Qjcv{d_u3>*uHJSEMcfxZVC5Uo^g0WBS_+ zH$C5)#hsZ36}z&wNUfi6J@$-9VO%{F8*A5w6x9G#SkOWgZzJ>y|K2Cd-3rmOoECey zQ*mqpK`GTU+I^=4K-gK02aeeJ1O`4gNz+?@P6S`YBlU9v`^7CzX# z@;?5(5wxz^d{<&>gD;Z1od)o?2-L#|h&q8=+)mOzAUCXkXn}C`i-+!A+0c{ZyyWVQ z{`GzTf%&_~8{q52m3f)hwIDC}ur&N?6LjPVW(F~|gJq(Q;+Wxm!mSs)6fHFv*JGpK zGJls)?}Wvxja#7PK_mTJn`t<4^2d&@4Li(u|Az>(M*~b%lz$;^_$?l@Y_$x`%^-hhv)>zU&7D!foD>CIc4S7kfbahjtM^r>du-?7z$GT!un)ZG@icZGiTutpa|&~-Sp zs6Qkuy`Z5v8o$LQuK`sOg1vzu2E9e-ki+78?@0b z(hD`!uh+n;V^&I0ej|MH`)DS>)c}gIH(&OXw?Ts&_t4L#Zpf-}e#BYznsDnHEL=I- z_K!PHGth3aiuqA7t-v??#$DybG_)Dk*zC-y0eTvn-FmD|AU~B&;fcJhw#7|Kz7}|$4f9K4+Ca$ofMOY8 zL$5#C?t4^I3*1p%=ZN0T;ImH6%evSEAuQt@_={a|*F9~@Sg#*E3seg3C%+{K)-%vu z4Bp}{ykBeYOjX15w+#}zmHd>7rXleB%G~R{b?~*4^r(Tou;%cN(1H_5Jp;G-jjeQ7N~MJsddV_yq+TfS8A7VUva6$M4Hx%sL^&c3RR{zRaxh1f%7;EhilA;kXYZlU+>h_?tZo(lrCD)XlLtVs|@mrp64V zPE13ysloo))AbG2v>@ z7oXL+Ev{v+juD#<)}L{AK+glku93xQP?BZH;o0!tb*6)jXlGi1UpUM4vg7UZd z4)j97y{d-@)^lpS`$A2!DHw*$1D^yM|lW4qHn)Lh7O7*aUk5y{FfcIZ?}yJC-fcB? zW6zXr4p91dASbk?)t}-*aSIa`r8Rhip8l8 zJTq|i{H@hXlNGLiqSp zi2H>B#ziw=M*T%f=YbnmznwrEmiff<$PDbH52;u9!F|2&Nx?KO)_zd8#`~VdF}3B`_>6PR?!xprDkA0d3Om* zR3ntuU;EiuwoyNw2Uk~abc4vV$@I)$gWy$u+p5%*2p7-PiF=6O#RY_(x1gBX;$C;v z^D<#E!1T8hG>qiOxfEw0$Kt2G+)^Wae#~-5QmYeo>{+_qG}sNdf@cJ76%IlB`a34Z z-P1rCKV}qLd<}QN)QxI=Z}&fL`yn@)O!vR>$u1DPl0K4kdIl(xzm@;eZ359Dk2%ej zPACetVR&cM10waUIzK~)fhlc8P^WqtF3hS8JJGx%sLG_(grF_1fq9u>-Ic%nLl>+R zKRn`aaRwZZlk#22Yy$tw52s|!yI@_TD=xRa2L}2JhWPA8;7$KQ4u;SfV3IwU(O!~( zYmQze%3j&xqD>GMmy79w83ok`W)>UzKsGIPg`pWTx%UL}FLptHy{a~!VK1zGH{qVv z9fbjsCl}i;&%*Nu8m11;2?VLWvV4;J7}sM4w000aI7DFc0o@y13DoXmKLbIRoP~sL zG=r0Wk|>LEH(a5c3}xx>1rzOV!BqShs4eYVKPfv0ds4o9=6L!F$HBo9-2WwQRmeuk zGY{f3I>|NpB@gHBL8=3|^+s_5gfc~tE<_@VA zNK!6Z59#R!8^_}|R%?Cmm=Ml1g`0r9U8GAN85ba+$l^FIo)jrPojISAo4Z|H_GZ1Ba?3Y?p3$RPO_~#t!0lvPYbTUu+p}OaFTBgP% ze05gf;$~O`O7j4Y8zE#UtV-lY=81R$L;C7%63(7~{9?vGK&-#F>joM2@>`3qW}xPW zr-waND}R#=HHz?10T*T=!V&~!uYY^RDlis<9)O=pi?;j zzrS9kl~N%B_btk!;>VZacieERKokYKqLi?5*xL_h>^0%~;_4P3uP(ft)qwc}8QlOV|cH0bWJBB~=@Jky^A96`dn&<_Q-a>V^njxSpAAC)+(NErZL{>WA`5Ug8 z(&aRZQX`)^`xjFXipvuz>{Mvk;>RBN1H{@ZLk~p68cU{)%)nT0-wX)1gH&Ztx`AdN z@NchbOuIh}MN}Gx6+363mMMUVN@fih^;dZ(?$aQ>9qAwTj6WtYPpeAOtoQu=>ILpz zF^n$J#^Tc=J#c8-#k;+WGjJ-BB^u(}L4T|#h$^cOKJ5#|RUbn?)e_Y1L z#NlD}E&h%c=^Q&1%s;d1fy%qozN^f$5Ue{lWBarNC|kcNBzpBj6TKNNfA1)SHpVw9 z@y|nd5Dj&-87Ue{J@gXCy923u8)*hUjl!Li>p4PkV~fwe33T}HJh%reaIfDF^3H;w z>b;UehEBNWedB!FR6p=IJ)|xDGzN@^5gWJu&=o|<9zPBi?IEq~kN zSX_l`-Zt6i7$41oY}ofRYI`uhDx(Ls_kQ}gLu?ivDDPs=3EHrKXlTaWcmSB&9$#Dz z8;93Mbn`Op3s9WDLU)jt9Eq%I-plS_KrAiZk~^J}2*mk_nI~Vj`0k@JfscBz_Ep^j zHfu*ZoaAT0nrCcWdsi1!@y4=$s2_l(D_k)=-V@+Gz~SOkya~1Ka6MXW>10^SfI+y5ZN^{`DIrgWxwCr^3i)f1OlFvLq`!fe(%dq&tT^{c2a>QBq;s0kv(YJC5+69KRdg^ci&(bd1C;ox63B z|J)Xzf$y;(w~sZZ|GiM0@-QvOYZgAeIqV}G-VJyY@mAG}A^5mjPx!Nb^w{C|_jXSI zf=`91Z0}sD(ewh#51WT9D85lr*!sj1!rK9D`MvI2{M#oqZ5&=HVfx<-C&TyG-Fz|& zl8VyxhP@kpS4IEZ*LoZN#-t|=wca!w(|sLa&bbOfH8QQV`7~&MTK{?&krjQrf6mpq zA&tQCxZFTAaf_d#@dt>-BZGT^P}IEOk}wO$ZtvN3^l%R}s4d%v^$f#4)!UPq!_y!b z@a>Jm#Wf&!%eLKN-;PL33T>oq_Mpgx=C^?^Nw{HgRXNK_jGs3Pj}@c^X#B8ww~Stp z8hVgd{%#gNyuWlP)wu^UcZ?8}?MHyZef;Ws?+w3d;$wqY$~uIvSC+foqeEwM)pwXu z?nMgR{hSM20l2^zE9dWXTYSG@(c!ySvA9NcFBo>89&icrbqFIMGpF`4i zBK0W7k+{d4XwiF|?uLFa?x`rVZjZtizp(8O5VP+LeXv_a&M0JT7HY06i~Ka}g{-5e z)jO2O;Pgm=#>KmHFt)s;_lblIMH`5SvE?uzi)mXg7bR|#MzHOUk$g_Tz1lCFX#IDW zk~yFl`4OF-D{Jnxjru9(e;E0p7nW`bHNKu0gPNkiazlxE&`W>X99cz% zX#BdmUVO5SMpKQBZF> z4xM;26!m3`@3aZT=Ed#$K;fe5i1dLu5bIVhMVI^F?u825!>1LgML3kkwl~6^5}}#g0AfBf;!z4GHQC08n96^z zN);q*^bcb+B6I`)_&uNeztGuW_A#Rm#IH|sW^2sBzEdQ$wygc2w-QEfRx}AzH9v`E zHcRk)N6GM4cPiv^q_RbFW;as0ysc!vBR@)CyqBS0oQ8W!ukDrs!kp&@AD>E%!UUuZi$mB@rIo|;L$8I9B4<(#?dcGls(4Mfm>}QAe-a>c+)Gr7=1wm8C#t*#rR*aLofQq*LE6ILv7&U zOT~`F_?cg=I2}U2_1CA9S`OkAZ^o62rf=~{_TNjLP{!tCMK+%IX?ZbS^c--$4yj*? z7yz%b+T-inra?QZ>wA>?Z_xCgSHg2{N2>gvI&VMSi;gvrx42jyL5A){6r#rxa0xWK ztS>Zg@!2F^B^AtdB^c`E!SxXTEmr^8LvX$^;vypdphKx zYis#aZXep0ev4Jq_bBpd9TUyfy^S+=>XlC;#nyx8&4DM^u!fZiRzG$ddaF;B!(2WG zr(3PON^J(=)I*_o=Gke;;n<_o9j$tQzw?;~4N3Xm zM^v!*Wkx^X8~lUHm*$|5+sTPuV+g#7{EwT7Gw{@(XrJv$f>ru{&7V=z;rS3_f=i-zVCk1>6AG>y~5MFp%dTRH%JA2k&>2M5sI_Ln98>yN8Z2p%P(8|wGo(bW{d^nUnAa0 zCi{8F8sepV{&obO*mFr}mCXYm^<0K49|htw7E~5c+l_KUnQu)`37~1|U9?fhaj12- z@dNY2288bJrmsah7~f+ajQj#$G__#M?*e$G2OD<1 z&B}9!b>$*Rmb6Z+wNRlCeKcf~Bzw@^NY%4(2aX`-9iHx^Wq5SaV)?+186QG$;>|g; z`Yk?h7B|hcTiw%q+47XUGqa+#r$8Tx-1H6mr{{WD$II0S)%)@1y z<&$gI#(~M(^_0BEGK45)#3qeWBmb8d4o6JvMOTlO?$u5cL1tf#t_F4~qFa~OM3T3? zCE!Fvu5}#3_#_KJH^(a2X?hmZ|3PT{%{0@^vH(7l!!DmMOrG81Gj9U1^=~4B(5(63 zpycrd*d4YY!@D{@6owYMfFKYSc-RUDf6tZq>ffI9=EFbJ;lY;vBc+QZ1Gcj{{XS^ zk=-DCKYjF0rQHG;|Mcb~%ua$2i?BLr&Tsg&^r>CFh921~uxQeR>_>zf`9YQ}5~#=3 zI^i?(DRg15>x<~yH-x}$MQ^VTjPJ1k&bN(Yw_UNt{GUPa#l2Qy3tj-WuR+sgaZ|8^ zna+eSc@=s>1BjY3I}v&9VS)Yx9yA$KXnZ4A673Ur85c@Bjc9-I$bFf&#+@r^(eS1n z`NtRA1Y-SX#vo`4w@~iRSb%2kui>qSh`?0wBVsyf4ZdWhKdmreKID$$ z_~m7Cj|k)B_3fNF>%dF0k8x6H7s@)1&mN%VLxrQ4+D-+?pp4_$F*F@IXjx;rd0*}` z!U3Bn?21>m_>%|!0RQ&?gYeT&G7~qmAvfRMm3x#3Yz@_WKbw;vrP8R~%Vdn`zTY|v zr71sR_K@~Z&5%XA{2NrnqV4wtSLp|FVWIf|cn^@Jl~z{Kzl_(b-op%k4$Zk zILGdNLvR=l4yMoF;@6S=0b=nDks%nDb>4YPauF1=0vN~NO~WhjJ>eNjiUt$}Y=~V< z=)k8On%!nXi0kF6J%-wNO7<2>5FTVkO@;wvw#cdIpS<}oM;hbMP(AKt}%VWsJ_&e zoQhN#MaK+e4_g`|uaA#3zeXexNcKBD9e2g}d5dsK(W8Ls8Wvy87y^lb9AT!4MQ}5y zebDJT3(pt#y=u~@KytGu7|vZ~L&6-4`3lY<)TDyoOjZ|w>?NI zm+4w>x+qE}Tfb7asD`?C`m{1HTt<5A25&~bCK0&n#=Q5n{oTcG2~4jLO4equ_&jk4 z4sZ(VFYaA}wgb+oK*XV2sn%K2l6yH-&pNZ}+}rMcWl z&R~w726+80vGc*T`)4&C-aht^KfwD3_&5GJ4Ex^LMO;@}0*6FWn-A-AVDY|5{zfeo zI)geW)!uQSh_c{*-m}M1#JL|Ttd*KbBEv>j`Px+^jGGxhMd5>tPO#Dk)3_6GM|v0@ z$zXEO65#CL7TA2lz8?}9hL^6N%9gJ$f&AVi3bP0EVEZeNJL=mu^xRZFV*UarnnXC# zb1mX1uzxpCN|hE0H_!WM&1{XdE-~4nRkJQ+W`7Tn?``3fnco@Lr>mEa!-D?LqDj`2^yCKqS+$) zh(Mb(LSepPXjT;_CvORc?!G&k-h+J~6+8@cWIyU07nYzuD>r^Zdl3l!(w+J(w1_s9 zHamuv2QicIu)I-{L6P!4<3cq0NZQ4L-tyH=#5uQ3kKuGMG7aPZJ$A{05XfY&a)ab= z_TXjEVqI}O$9x%UC&SRiw`^7WpHs`vJi_~f*3<{=3qH`q;eL2VfVQMC~ueJzMg78zeL7K--lg5u|sz| zZmK(@1FT0c=`n{QN*#6QY+p|tU26Sank!p!@^1eDV}1v57~Y9c&8r72!@~>NPlL`Z z!@fiDHOh~6pth^yv|RCg=zP-tRbNRwO8jjzuY1w}8SRW*QrdeP%?2JW&EEb38OFR{ z8-C_TsQBpRKJ*-uDL*ueJQ8eJfyw&%tQ{X2&{+~$@OdPN@-CCr)+0qE zpw`1L-(iAiWTy??JUr01r%`Lyyra>Pm#YIlI8Oq_bOki6{ndjFKg@S0t9&Eok7$j+ za;e=Et-uPjnDW=S#r=ZwG77^K-n&ps^QpZf#}A^D;;+wfQ7EH}0rdLp5v;v=~B!U>`F~8hy1l$=%FY_6#09%1E zbF#~Cxb&P^Ht!-MGH+AkxlVEzRZh`P=r5_DYC&#c_n9jwG<4uv=yqS!`@E2iw><%s z>3w!e>w19Gqb%}vu-KBLy9vhP1HmJ(R%H^r^kN0f=VHrrFRsF{2!D!;0uwrG--j2N zKY}QEJDa+A)zQu$yY{SIxr$`M3M0N6|kGk?ZBz7!FeBiVW12%Vi_J9Y}hV>c5qLUu|GPA$nTST z|2|@kTKfE3nAsknl`4S%&apSB`}e`#aIa)swe-pGmKsb>-U|4Y{{dtEMD+;J_nY6} z&-e>y^N(1H;Mc)}-PG)k(#H6X{oq8ngebB*K|**4r%_{=uyW5?Tf}-6eiXDlLc0Ao zXl11`P>Ns2x9Id>9Q7g{dEU0ayZ8QrZ*+ganBPkrfdPTAM@ibhAX}2U125Z1d&z$ZPbpK9FJe{!0-_08}(7cN6rU=+_#V-sZUvNMmWl~X6$A5 z`-XZC6disN{*b`^(4E@6|L^CXgMBjGDA`Z$fUklS8$Tn~L5gwCN0x@gUa{UY@C+|1(D{y@- z%CW)h&nTRUwr=2E{|z$X%zkoh`Qx*Ilnl=tv{N%dV(ye3X&e3x8?6aXi%K%eiMx$c zzEOq7nagymZ-f$5<5$L3OEEcU6)ZNvf5$DOaG^bFoH1b)s9WCi_+6z$IoXu&yPxhy zbox?H^ephm(j@b^tHxy%nZ8$sdcY6O|9bh$(cvv3{gN{$r&5c4+Y(1a4<+Nsz@*?7 z8J349Zxw1@@tQDAVDWQ?F=*>P(RKOPD*Tj6rIwbbLiSf!UblVVL2~r_rE=Egk-p;P zU#2gvpyP5ulQ~NF(e-QLb?3ikpkWKuLzQ%mDBJf7hdWIofn-=xT$TH8zMnOicyfo? z+fE0wKVxvyXy*q>{WT!deo`iUa2sL^Iit`y&x_(Cdva_`6;XW0O-57Mt7zhNZjm_t z5mL*FreQ74MsBBt8f-qdqWvperI`Tnz;-7{pJ4qrt~&<&WAEKBv95!7fkop*;INudgv8x-xSuM{F{VU|GG!!7nj8hupp{`jO^gQOyevxX z<9q|%YSnhfCp<^L7Mrc(qWGtx|cQ*Uq_%9 z7t*?>gbPtCX=o3--6V2stSg=?jKrm>jX!Dmyp{KfUR0Cc>m0V8p?VBtj*1*7KeBN> z{ervBS2{#{=`x*~+F^8z^~?L32`x02^7xr-niDEIs%lcK5QDnkb1q5Rl_0}`)59Vw zGiYC75YIIC3&Pd3`qh?Lbis_ z@DWB%jWum)bvkJNTR``%brBx8IRsAJM1~~y%O#6T|`hTSsxPnicq$C z_e#(&OpYG@d02oDkTzK2b(n)D2c zZgR@;m~cZzva^!8wTT<;2NFbawdnO1);49%HKd=~j5i%iBG7i8(2V53vcboYptCt6 z>%|gSoL^)dirV+?yD&(Csw&9E!y*{afpHJVi~XX=sfV1c%=avEOFHM%cFGfdxUlP5 z3;qrA86Y$f-5Qaylj{7uFgae2@$xJ}k%Z(^&)y2iVRE`jkR7Z2b%(3iI!CQ>$RPw# zc^xE0M&ZNmF0Q-Kb1C;aCwnmzry|p(X?FpsDefBc-s^+7MUOpnG|E6727~v)ygVD7+H)+I%C!f{?@-&de`F`#q})kY zP%)ms+;^R~-V2lCL5fl=wR@1!-}%9DXfDZlyyqJ!8vJbe?V<}4B71PXQd?9Kt-D$^ zn++SI#*0SU6`>DMY>r(u9ot9baVo3yF#RA(KP>%vp^X`T=A_Sjbwn~jVrHd{JQ0(V zM~Z&?-puYd*TmY-IAkuIWtH7Qh7i@gw2??=WPF;nvHqqs3hD9+bU~Mq<(W5c2Q`Ax zg(1`Iu=`(8yTcQyrXAx*_nBc?*ZsYCH91c8;&KlHzrks{pQV3y1t3FlrW5JHx3T;N z)#LCwRLol7G8wX9{v~GKu^Zh{m~CgE!lB!RO{G=a%+aNGk@#Q6Pmso*c&QvzfLxLj zKTA@~pvdV)3MvyG{9(R<-SZW1aO_vb*I^QqV@!rdPNqhlm%-NU5XV8wTismmD;bIj z)_%G!$BGW`5+@EY*(B-GPLGB@TT(88O;7nz@<@iP-h=Ga(kMilU>AyY?(<7 z(nRryW9TyJFFhM{u|{s{{#pbgu|5$m7+HZ5d-R!kU#+3GVE^Ac7ew&*vNzXHGrYxJ zz0)irEse?HCP&L0sY|K0m>iJ_;4RY4EA%Euhu7PzJa4lj&A2_i7Y{3-=8tnCKFl|e zocwvhd8$}6a9dZF=5Q?%Y59;4r$>SRKC7Lt?J0@Z4vTW;pNS(xf+k;!5hllj96ewc zjUwYW#M;jU1R5>GSxu9pMy8pi(fH^dzs&(9bvm4M>Q6ui_H%Se z={KRLwrAqFb+_Zcy}9aE>5uTAZYSFZHoPTJxso!R^8dS=5Cu{jMoga%V(Vh;CV(M1 z#g)f`0*R{>mvi}YBHu9o*=ORah{Ro}a_qG;(uy`0E$K@^X79^CaO-uV7!vIduF;J6 zT!9+x{8$xyP;ra$U9-2iG*dN^gmg@fF$F5c$0SbPyN21H2@p>XyFD{NfsXKI>>hCD zM&<#^llgWU=sP|}L0#+)GRv>kt&zw;-zF*;G8g-h@j$_XasD3s&f5Jp9irNJ^KCzb zz5V?06`D*n&(5R}1T*H6r4@|2;NMt$eyiYj9{*{NLFXrn z5WMt(QhD4$8o_D8x>=rl7W;jaNR`Xk_AM_qKT^Krn1toF8ocwlZOCW8?|kw(0c0_kcV*J#9CBi8 zsm=2aLOW!}74DQ3p%NbN8$3y*c&cWx(4qt!-aGW($Opz-c)tgezK$Pr@HLZZHNQH; z2(~H=@6O))Tc6v|^4{Q&OFY>4Ut|)_-u>P)$U%)5!rJR*>xIx2Et)=u>PzT=*Y_W0 zLr;(>R~jzuM-`GXGRxDtO@lX_NoqD{Q^vEz#fj+;D?p z2H#6RV)D4DQMVd>|8&VYEZ#5)Uy!~a)gm>jxpPRyy7Vv-WIFz%>x2nP5gcK87#xOh z_w(-fNjD%Rxen1EU5t2t$=Keor`q_`1B%NE%fa|>YL%6QqH6p;JG{-g15pIQuK{^2 zBY)o?4I;UJS2ukY`>x+^61rJAYlp=ht%JPq}>A{eJBdexPC9wnr`sA9<>reds_p9(F@ZiBKegVc2{B2M%l( zv~C(Cl^6e`Oa$|1gD2to9<%twHCi+lw`cq8xns!jEjQn*ua;73};RSKc2EgDYt*(D&8roxA-$-DJKmri1@BPCi;9UG5N$Noih&mB5=Z4 zM!O@l|LwkpEOuCaD-Bh`?Aat-$*a+zmZn3i(ck$4=*3agP@Sc zzA*%D>7=0Y08B2TLtQp&AFDgD`IPEONLhZ(D4jr$XtZZcmEEKeoL~a!?+$2Lg4G)nhq=8J3YM3I)mLiUR|)X2v6ThhiA z(Yp9Co#D?zoG%wobE#9}FYsr$sWWKeHFlK@NaLR2+x!pC>y!52zuk@!cIr4NZ^Be! z`^L{vK5;U%FIfKxF7C>CVZZgizjr6HGqkGnvcB^-t1QV)oYKzbkPz5Y&r>4b{|v%X z=P2%SL_>d`e40&LBDgV1h>3}1!?NC={Hi~|eDnD0UrWiGmFe7Z=6(bbhdFV>xsO4w zu^g2TKZ9eBR}*h+a4c)b-v8mS9TnT;NPSzV2q7UtyJ$MupZu)hVSkQksI2&N5JBAV zvl`vTc##1&BN1Mudjcyz3tb8-m=`2Mz-5DWWpX00eyAbo-1xswtu<_yN$P>U)Y3wY zq!}pe9si^)hmQR5Kk3K+%^Up9r~01&B1FtIvHy{uU?)r46i)=5kDR_^+C(VK6t;~g zB|`7HKN5(*^T_eWUV0*I?qmLEc?$a%WUq6baG=Pv0u#nP77HcR-*s%@s8wTC1Ck^ zbN}Cbz5kUodH-FH#jgL|eIx?}(_;yKGp}A72{7(f0^k>*!N7l3g4Oz&zub8jjS|rz3=v3 z>tHT{XnV0kA5Ny{jyGErWU1!m7QJ~htoAGoLijz_o_Kx0^eGdPboM1hEoZ=K)9;hf zR6K-~TD5TM_9@`2%DTGf;f&iSm-Mo;B_lW2KOt5*R})7aD_3J#RG%BDlQTxpv&ZE- zJh>$qn*jwsX1?#o*~$QE94`k?U>2|D%6TUhX|Iy_u})bhuwxx3F#3 zU-?;Z{s?uh%~B?KP91Y@4@CseLpMpYo2GzFc>n!C6GOsEq~_$0+RWVU@i#*Drt&yt z_c2NBclEi9xy_`;+4i_QR&7>EL79*mc2ByQKtQ*!`L>lm zq4ycLZ);gru7A_iE@NtCoV1mSutt1+uJ+`vu^GLaIKE!>A53?$fbROB`ZE!2T=jYS zsj_>;5coRWhKepLmodfK$5${n*Kq22kGbtlMHVbZf68gk> z|H^*{zd~+Wtj^{@)N?b_I_m$S>8hi$Y@RkE7J>mH7Al~Cfq|5=GJpsM0!m3pcS?%V zAt4y3bVy2f!wt(rr*t<+mw|{P^6~rL$8$K`e?8|q*Us+j%O^kaL-BByZ!QRKik^5I!q%W3s+R45Hw_eh9aj|wFj(-6Lg2EMMoE79w~sp>TwcH!#8 z->i?NH@I`5|HrAjC_@!(YZ-q@KTr+fy={EDUOBh{bXS-ROR)CxF!ig{Y+x-{6z(d_ zCgbM=?cLb{fiHRB5OwkXo-bDj-q;Pj=H-B z7Q?cZ;EVJuYsBwY$TfJxFy6BO?`Lq9v1U<5_STWt*-v%g+GocuPXwD2cII9;n!EBL z=W)yREXmFFms>s=f2bM^crH`W4dvm(x|j3Xo)%+fm2{2zm|XCtoMh9o$Ry(z!PkLi z8R3~iaI7?7x^P7a+3r`3iTH8X*Xx#OxfJc>R{i~!qwz~tb z?OWQpw5W;NyzA(VvI?Lmdlv8iz=iC8)xKM5s{)r>te3Wi<>OlEm6qG}MYyq%^AozB z2j8gI*rY#ZknxM5fThO##bgom7w$8V+#-R_Elb9X#4SN#r~I6ojvMim(My1&UxW|5 zi=?N$CQgLCdnHrxtsUQ*lv%vJpifvTcEpSL6hdYEF|iw09}vZ3-!iCts$hUM{1~HL z0oGL#5TrX;gbQ1~I+``-0Yf&UE_2F16$%0>c9@k$j2DBaV&s|Ec53LYU-3JR4@;0- z(rUk(%@zp}2bp!jwn zq`R)aeMP7WUYlNQ;M`S+El<9Asr#r9AG}@_EU1(Z8mi*2X{gf3_$9zqk5ueO2#7zV zC^E?}jF>xCesKpa!PRIMU++t1D9%8VY5z?EPote}dnHaITkl&`dg-iEhV233hWDCDz2<`wyssNOL9_Lc&@-Fd~JI98(PPP0*%_Y!36I`3z>E{7uh zoYcjSm135RN6Jrh6_A=474z@s?YLmsQ?z1>6S~jolz*?4fWM8=mrN2A(4|~gPha^; z;7rY@RNh{U<>Z)4wjRyLLnKlmYf}M)e#9>+Clmgu)PU*5l#rrM42(239yaX~#K~2c z6RR#u@Za|}ag;A3S`Da?;M60=%l)zshL!+Rm51}u zZ4Z%$@2&UVRFzP>#Xa#+Trt*mq?`EsAP=X>ToAo+wGgb$I6P$7Vtz=Mkzr%(0k2EV(9u5s<#S#_r!(^XX) zDI76Gzdl;4L~E47^Vcff!RKxhC*gN*W<~|n=yPJT@%D^?@Hl zA6*n7;>s>MZ#mzN^>;?^6o2J_{s#Kz4xPdHMwH{(I@z7R(xCF*rE3F&VUMPT`M1QV~g!dkq+c3zvPwYLa zAR*AuhP5&?F4{<$qGbB=AKO#QKsRDG`J1vP$|`=RCM#VIwOrJ-G{&X)IPFV4W5FzZ zH*Iw;dZ-8l=$#&P`-GACSHMQpT2{$GIdC(`Z}a^25WP2@x}Yt!1Ue73N@9*J%Eh0l}{SJYF&syC4*dj|=4#!u&Sep5wUUcI3*%OvPX zQaIT>U5cYBjvjZ>&BPC1hgtU=DTbsRhTX!y$SO9@6%ZRdw=k_(0o7DulHF>C1i$Op zpNnEk(CWXfcguhqGWosm^JwH|9-ty{XKlX`LHXW4hsm=I$2c}$q~yCp`2Owgd96-@ zV;x^t)l)Q3y?2PkL;wjcOVyOds9~%ZXneQBHv=<#IyJdXsu*Y}vj)xe{r{=LfU#!v z^kP>99Oamy5jdiYka-4AC0c^_kr9*eEiUMbL2Lfto(dco8l3k2iV;HRx?r1j8~$Zt zS$1{Y5{)}fO#A1PV5LTcdf<`ePZUgG@1>gjPDXo7ggO$*vgQ z@=2c@?ein^uY`!RyQ)9QRDw@@T(-=L2AWO@7Gb`!8GoI#x+Wp)NwBi|4At9L;NdiB zJKJ~KsAZWxR7j`|mpvcIKf&&Z^o1zvN@>a={`!*FiMP_|G2Mx0JA2B2SC;d8GE*52 z`!Y#sl9Y;dyTep9KNJI%L_qT27+*5~DqxiAOZ051goj^Kzp{SUKo73Wy%ImO1lm!- zo*BnIk;)XW>F`ViHq+&klw*)ZEj|>U?MK_N+E1zS0}<*3)iw`aD)n*@@+FSfuRbK& zXO|00Y|5Z>@bLnjbQ#WkKYHcGQZhb~$ZGYmxESdAf(H#Fo|E}k0ky*ZqC@wpz*5NT zo2#n^a=16=$#-H2Ch7YYzSy`Ud;4G~M)^wI_lZ?o8H*7$lC~|Rl~z2Gu)URT-imm6 zMenwHW;vV=yP{FHO9pA4S&qMVpbX~I`Yp|!%5ZGr!daFpNjUpKrU6Y$F)(x3O1zPB z_@^2RhUJ3CUFxdf`ra+)lVzoeIgU?ZUk@ySY12;j)Al~Zj+c5OW~55YNFh%ul2b!6 zq(-T|t*w}exACZ#{{!UvA<(L6a~=6jlXk~384)`vr`FzUU@&7lcDE|I3_qN<63DVn z!28WUzx_B+3`=)r!Wnmy@Bf^u!73?x1K+HMob&d2MlwKjNhS%}P%nW-&Gy|7e7%sj zsMq?~xhnj^LZwu3UJp@A?wQ6(tvKQh&CDJybE4iw+(S&V0v7o-=(7KaAgM^nLUnKj zm@Tadu^DTic=O!l_@)vFIMV^Q*2?gq`?dawzhd$7qo?7`L&b3Tr*gs8ljQn&=Nh1F zi=QsJUIUMG@0jdOl_TEBeOeh=UW6qI1G$y!ZiLtS#)Z9qtFX#=VcU?cG~!LBVOCOU z#b;$yf4uvxhlE4cRd0`10Npi(+Fd`5iKT0AjH$Pj00+Io$tTB2c+mP#2o;LKpUNUK z{5pz3=a~#oU@N%}jG`7Ol|S9JE3AQfm(`pMaT!GU>gH940SLDObfDr0vmwg|J5xy8tZQh7rR#2!}yO~?DI z5^uE#H>)*Teyw6S`EXGrSDA$WyuZ&M>iGfB2(>6|ODcxQWAUlFa{pAe>flV6=a^|m zElBxZy3}+?gShWh6|vT~2u0gl%c|Dh2zJ_>hxfQ@uom<7KSE>r2uByJ`i!;UtIAc{ zFJ9Uam-Loj7iL#NpVsprv9C%5ZPXJwiMK^?uM?lEvnF97)(6J74uoN&i&9j-y^BGl zW@}Hx9avCqbBH-t2ioErEko^_`K00QtG8cb<{Mv5{-}gE7L*C8271KfTt>mGWrYxX#f!GjcN4#z zT}&@72>)CXQT?h}4DF@kj?|-X$^7eq&BJ&m;bR@V;?9}cvLb=Hx#|+Mix+`%Jn896 znUm&!csXZnO)vfcNLt}rJ;7MmLZ;S z%7?Ko6u`Ro;Q9GT5_TP~``aPlk5|65_tNnc!;ePpo5`d8Wd8N=(Pf{yBXd1ieW(7o zI;2i;#oHN6rf<%_jT18#zr9g~$o9bIN42m3;i2jY65 z>om!{3eJCh^CqTO5skF`ptyLr0Nk$TzNE?`VaJ^A5`!K;yfsmd-fJ`8>OFhMLZSJe zN?Zdx%*ptr`3^^9Rt;lm__*V)o1-i_Y1T>_I&IkuEnn<+`@FGj0v`N z{tMsvTd?z4=B0TNL)5AB==9H&Dlpf(Ra*2xgJ6(6wc#k54+clO7dbZL7X9YMlrKMh z@zH~e8TM60Ao!zpi8C>j%)bF>Z0{)q9Bcr~j|_hblpYdFec!&k3Rnc%z2*j^8)ihV zsQZCuC+o1^Z^}bQbajdP0O@Kq+7>K2b<+F7Sts<8qx3W5WEDugD-FK2=?|XOc8u_v z<-v3qW0hJ12^$yh-xnt7fo){tZya|o0>xT2cV*KEGXF-1R)71T`%MERPmHwfvtvdU zUmJ5Ly%)i7On^aQt1IflPo2b^>#*Fet{;oRJBVd2TAhOOW*m{T<=&8@5n=uLbQcR# zHEh#BW3WY^p!hBu@iaIWo}W|U&1fg#K%+J4I%6kHr?QnJ3>CqPTbJEvUq_PpH-etK z&AkcgMi^jI`_V6OuZB0e0`@;=A0YRlxymyO*&t&W(p}O| z!h7!TT37xpho$e;_2Tm->D z=13jt=jiiM!)k-zdd&MphEH3A3q7HdGs?;Rg!gJJ#Wd7w6aM96l?A!g;FOXT#F3?o zoQt;#_8-iKsB@QteK+yVmZx)QVlpJuvnBwNRtqF zVM_J>Zxg2Ivu#_nRVVTrB=-E-R|DoJ;+Vo}9};INyGH^IGhy|ikJD@$2_FhSo!+^} z8EVd~FOIqt04dTi?R>~TmCI(hHy`lofZ-?5`FZAKmaaZx?Fbb)acvR&=mKutVe}w+ zUyRcHN@&23GWX=pjBBFpwr{n5M>XN*B1>lmyM^N7_5xWuff_g#=3%vVRvmQ-1gn33 zp8*O{+iPFdldx@@Y=Rbx2RyKfpe1ekB?Eq|o!67&$^4svHi+rw=-4OlD-!d49Ir^| z$`8kIpI-zWj>N;af4w4hy}5H!W=kWkXWie2E##0$lfl;_(I!lNVcXYl874%lA;rXJ ztr`eme-hl%Au&eZe-GXEAB zbUy#fTDciY(tje;WPSACeZ?aD_ccWxw`p77KWxN?ULPyRDAbT+n+)a9WFz+eq=vM+ zbqGqIo}JfT)WBzj60WW)DI|JM)9_noDvVTi&;QOO;oG^jCj|ezf#w$$r{e|k;l#G0 zMVa_SvR*?AeC`+e)7st)vsF>w#msM@LtZR`1A7k&<&(ERM@;7h@Fc(`umnmj1ZFRXt>8cT{PEGX*-{tkCsGkucMM zb)3$?J6PEf#lc*i2Wk~aYIIU+PQ01l`ovIj}z!N@>!V1*f3rM0XD{4}peE^4&EmKzNH z>OXH18fRBO_Iz7_blsiu#S6y7`Lf#iY=tI#Ot$bj9fLM1+ZD|-Q`dl7;||>J!8&M% z506yKml|k{6NkqG>I7*^x-{Q-0vuiGE5G=RgumR*Q_wOC2971EuVT%)P|l(>uOgK4 zPo)zywR!@p!dpP6faa?B1sgP}hgn(*#hZwzTobdmA8 z)!`X~1`HM)^TDI~gfLrE_~f2ia4pWc`L~e|mEOqI?iPxNOO{4=u_g&`Z9Dl)oH-0m z=XFKuOXfnVi>Y1H)>N|nTOm7T*Mwtl3(UoI+FiD{Ld_;pau+%mVE6W>L62%{!Z!EV z(uF@wSlU6a^<K*aeT#%m>iHP^$|Jx(cDFNseGZ5?)A8&nBI7%^LjC1ayhj*X;e*|dx|ai1#KEs$ z_Z+KU09}$W=ZEpvL|vQ9!6J!Ge}_VNbM|thG3MUO?-S~A?8{2+h#y91R)QnsmuM{% z{0-9_5s)XIYkrHrwlx-JEjTYMo!^{)4EN;v5+gy1@z=~(ksPoWi+FlmD~)XbRuG>E zyA~+j3LG(EPDKGvh@|B5hS9tQu$K&}cqZUVY+vQ2VhQ_%8@4|5nvc^aw7exkq{Qp7 zR^B_k@5l6zz^Uy4e^hE=;bs$4R+}19(`j5a)Q^VuyTxi#_K)i^@aw3LRVx>)i&`k|C^9qKav2enf8BgqB7x7N@UqBa z8RqzKNqO>Q4BQ}8toNMHhJL2mNA)ksD#t=?;NHW@%u~|}7cMr~ru6C&ZCd*Re+Di< zK3jI}?r1%vNdKkIjjtJ}-v8JV;ByBl=)Djsa;wAJr9>uwZJ40cBVNKgJZs_1Iu*;W zA}xY;v@1E{NdyQdUuZ6ED8o;_D;~To6$|fQ+=-hC%Ytsprv;=P8D#snL4f^dJvquY z*mGu?gVjxgIBPstf6HqDq61tbX{TJ!TXy3_JGW+RaKo$mQ?4P=e~jnRQ|8ThB-~t| z;;{zWQBSHp7+ecSS2GS>y<$i(Yoyb($cDn(80A}B@n!gUg>?B7t2ju=c_SXMI}2)^|fyh4obMn{Qz>DJKK}H!BLi~G>gq7_AIBHvjq&U1FqV?+^NqlO?gByjf zhpuR&Pr~Y_mP>1~x?lE*lhwKe&*|+YT#2<{oKUe=bIOzm-`AqO`)Uvbo%!IB;#`Ic zHrzdf-+Y8n)haVt+e~nw4pcj2L&m3Q2eBoElYF*q;PS_$z3ItgqNsB?{h9s(Tz?rp zs(-#~@7${%LKKl)#PScd1X-#hm-CLaFMo{3Q&&j3%B(Zg9WWPG7^7*h*f|C!YWH#*8m z&8(+Tbp5E8%EJXX6v4XX+l%wWPipVvYnNK^(${Hnov6@w#pA3Z|$ zLkGB{D{A2rep?heq=c?Nf84kK&|CPD#M=CWvkb4QiEdv{Nr2e7OQg>d8NhRS=nPfE zKl``CU*!5MXrT@2=^|g9_A^4R-FuCX+**KHtBvQegRbb%ag~dcGA+1(ulm)uFg-#* zaIu9kpay@uebREoPm*{kzM{9$R0~=WJANqUsSqA3uU;Kve+4c(-$zeuDZ^>?e82Xj zCW6!H<9$+w=};=-ka24MpZ(k6fp@OdA&z#q_~BjR7yoC(rP1SyIeZJid7{`%*xCxw z4zi5=v1!5A9&pPkdYB+1rjyq`ZRVqz*Iv}!kCP_~&Ro;8@2Z8#CI5}^G+E++{wJ%& z3tq6CARsM}fUz~?sfWcRfz>ysF9rN*aPKb#%lRFdWcznOGWo|q7=r+dbLsB~e-XufaHnA}CZK<$+Xe$TLF*3eT2iP;% z%;ki&1HCx2Qs1%#ar$5di|fG!5I#E5xu5g`g(S@EFe+}reN0JCGHW)-VuxD(lu^(8?A-Xi215YR|A3uafYEOTk!m@`1rw8DSmh{=-?O26xfj?M*7^6 z46 zSLLnk&BuuH`D1Ivoz>X5bnye>rA8c6S*w`-TnpQt<#!zzH9-os)&1GkhVZUCc?h|d z;`j$^+oSKLg0I2sIlIs#xY^A$SH?}oFYACS4#ues`#OLwmp;vh#*R46cBrLxc^-oJ z_AT$!dWHC9kL+__Z^7Jx7aW?@M9>PAL3?>@70$E!ChNxY2+?F%*&Um#g*^RZVXN9XUx}mO`4hra+ zQCW)b#OD6vGN>I=^oThAWxV;PnkGJWH!a*Yy#yZ=lzg=|o(2nhtIHEFCP1$o&uAs@ zKl^vW(ef5|CHD^aSgmFKV$2++HV;L;WBS6;Weq*J~#5p5digVb45 z&)!;awl%zCIiya^i$uJ6u;7jpv^3+I)d;*bh=JD5F#~pg8_eSLi-qUUeWh3T|FeG= z+-bTWoO-DfT!p-xwdFMl&zBp1cO&NEaSZLz4b~^bPQ{BiUIw+|J_++x)$I<*eq<~6 z?d%GivBt>Gq+o>jXIcW!wAI4t?JqL^mwyh0{Vmt#et|{5XJTJdqXmL0bR7cOeo8XLw>%E??A4mTA|1OZ+tI9YM-3bbxU0**FFh^-_yHAZg zn}>y<_I>ioUPQ*deqV>SR_r92!Kv1}9|_Be?5A8P$1z3cjZU@hC+?{X`1+RCLWZd5 z)BUGq2?klEwsm-mMTc97$+aS^@}-2WQ7scDWeVaiZbX7w%*>8mq<{Xu3trlku2uAR zLf=oDqw|rb=u@HX%MJZ`sEEv!5KeX@OjVDK1T41V!5*8n^KUKD6W*-i6EDi~w=EtV zXBAD+)>9m+%2~DWdza(mhYm}{mj{*dMo91R(Tj2EYA!{%@vOO)SyU#ZwkP=K#(e;3 zaTkj%;s5sk?#*%EwblJV7f_rqXHc+sM$Gl5vu{Ch`e*-cs3!5OoVeEorR!x=TVtJw)rMS;InjCGlvgIU z2pbZq%xluLr`zz6fzTLT3TuL+`@-;_N)n#2(4#2!G(`D@EPe|9wO}okaZ~c23L;vjG z4JO?Ub+aX1z%gwiD6gVKP&qswH9omH{`|E+KHP979tVXs@hG<8?UwUjgVGHV<-K3L zeH0|T;cn7fZ(&N@zwzY4!_D~n%N~z{XlY|K|K+&VHQ5MUzUQ7Dzh?p7Dts`Z=xG-4 zqh;qM>u&niRN10Y`za=*on(J&86RfK*D|9DXO(Vj1`%BA5lgOwSSxq?nUBXY~PtA zwiRIYzH>VrW3wQ()9>+BvG?Hn*I$17sgZ;OslJCMCh%@4myk2W_ zz&u+Xa+BSYXr_D;PVdu(SMc=R!o#-6=6+1ZwDDRu*c> zOOMbcPNRiD!ze86O*eAGH6JUyPMqzj&jRJJYys+nZy~0hia&9joc}oY0Hw9dgB`lv zKw;D9$Jlz0_&eH5^L2U-&h9%N?G^Bhn9*p>V2^3TLc%!*5~I}#ftTRiTZnO>kjmMo z3aUt}f>=0pr4~flMI(t5I;i5wftgU3X#6EPPfPG`9u7&c9O$3Vf}jW1N%;e>;rc~; z)^~dU^1mKvJ>=(I9lkja)R!XZtL*RoCgbR+F+f9)3Uy5G%nXPqKy|WuaPMuTn3bR2kpUqF%Rm=f9`<`=R zbY{fw?vm!P);8=~MWMQXw*v~jwCcgmzZuua8~>iseuRdmO&qUM*23*+nR1J(jYJs5q?Z-jHTsl8gN>o=Nk(nhi}6Be$3yxj}u1nNe;F z`TWDV7rOn23s^*ZAWt~-Or(ti>e4PcoDx0aNpnr%AzS?r*wPNggdZKsV^nJo+zRN=_y#^FB>Cq6c79s6?mu)a0 z9xoZ4h)`0?!6dV+cOnn70be7os&?Bz7QZRQ#RT&C6Gb1KK6>Zsy{sNccx@H4+r$n9 z4TLdyJeh-pZe{NCW17T|0)_Af_ICWW5?SAnp(kWBH9QHyVm$czpznOC5|Z^@dCKKi z1AVHkJ%ulH2-I!yki#nhOHbL!H+5%Y^FODk%QUhfFDOau*VxT~ z9|zCO^uXHhbEENPR*3H|C6}!B9LR(=8vOKpN(fOOIk+s)j{C(n+?ZLPp+nq$Z0W8= z_^)EzK1~UPp6W{1E}PdtMPrTDLXs@8F~#?m(J~R!eVtgRmd?hC+~$+wQo*L{f4>G^gfQo{{jXl_@1q|H3Q3spxA_!j zZ5GbCqf?=0kPUNrg3&DB_e18>i5IqwTlLKh_(=mv$-2F)Z9apt@mypyHo=?&p#}8 zRj8s&*1`UMo@9K`La0_sC=36(djB-u9 z{4wc{7rN0s#rv7tVt5FyNY{IqUWH5h2Iif2=^B1Z1r z9k-HFapO1l%8!W|SWqD+Z0=q*Fq$nf)r;EU0=F*94{T)ovVPbtqbkUHu@8)P2L9|k z@DM#Mvb_?rGz-FGHll`64k)?wo3w3WJD$C)l->CJgPx zV>&-n1HXE3*2NPFi1T3cM>?}KEXUT+QoxddFZziDr3hxj%c;Y+y}O;U$QYlq_mhA3 z9|N$?+E}ru-3J@_(nsg-SrDpk-aAeA&%%G-v*_2I+}WPOb}YPWUDlz{8bvrMY45Vn z#rt=1?OJ)NN_^wrbx7uEHLy*kO??y7M0AmRHhehKG0o{3T^Igz{C-8PPV{^>+}`Lu z{pGtGZXLZ<&{|Et{}CF1=Aekqw;_GN*kirH`B?-d4*93C)y{&#{B^B)Ng3jh^6!+a zx^~R|@}4n`<1@5UHvhT5HV0d&P^6gq+=1@ zzd8x$)3CncmR(H;vw`i|4ATDTfscwz4^Uakf=eve=8dR(RXPl zwYT+y95=7n)yq$b6IvrpR*|#NF$o7ka@>*feml+1sdilEedY>f+!F-%y>mr%vvI(@ z>b|;?Yp8UDZqS6H8h9G?9=T9T5pG5NBFRx1n9bkIa{N#VKEgA(zJELmz)ilqEz1{w z;T8N@pGv-eq!wABh3|J*8F^B2qd%u3!p*y?!2H?E`vw78DDq6>VZ-GNEFJifB)&fx z8=1PE-%^zY9+{*Df5X>!f6z3i$**X#{RiQXqveGFvwko?9;D43r$P*H?kn`NorTVB zF_h)^gvebIJutns1Ak<>E>$J2PBfCJ3x{`R;T{HN&P-b&6s=*eoRnMzA+2ra43`Aa zkv-274v1#r8(SY%Ywb?L!_79gZf?e(XLfSR+fn&px3lu4?V@CS=Rt@&<-une+YcLe zOmm_RTceoXTda=Sv+!X;-miSco$!+|`pmh%1Lu$I-Oog_B`i9}_gzxS#JkJbMU``8 zP?|?&`3dJL@L8ZKS1rCx=qwFNWW345EyU-uDmxN!VZgh*pU#{4M;PO$Rk64DT&U?M zctgH_E*pfmE)R}#^!9_UQTkQcOe@+&l zcUd_La&*RKs_frk%IJgFzx0#u-zkRROPyq04($MNOT2shiDXX%9rDr_L9-B8QZeE5 z<~1_e!T*x)YzOA-I_xOxW<->H%)+`f_i9YG#p5xH<-N35vf!Xde%MUhdwe3|Tre{S8DD4!@{fN#aad#k76tF# z7-qC1BFdiKpyQYYW?zk8`dej*?Xk)Z>pUI!tR=Oo@@76pMH)FaMWo?CuDK3M6H#LK zigz2|uS)Rw%{!IvrHpc3{*2Sn&cgi`i5hh~K4Py7`iSVASs=q(vE8iPA7}Duavz%| z*FQK9!7uYvYB`$$_hR@w6#N#rjz%Ke(aM>x^d%x0y7+Z7=xGCI$bGBT~G-I$r zmO~HERhgz@ud6!4YzyZRSJobjx%x`jwfg<7n1}{)NjmScH7*OspB!NEpozob6OXcY z4`c$r@4y|Mwg5~cDazCTJe+L*Avmh_-9kTU0B)ISx#&rsLH#b{qpvq+;MnoU6q6ff zM2fxD;y#HEoVums6N}R`f^8^h)t5B|Uu=)>^UFMrMD`ry+7ea?h_YoX)7j@(!^rj@hWqsAZ^#S{K8{7X&fIU>B>`PYL@>sGoWA>w9Amwq=;*&8iF`+kY5R zzvb&P&<(;RV=o@tNjtP~!s+&S*9^#3@`T8jy&}96PgnA&cVK%FQFFU~2h?;YXJ*4c z5$iOc$(0XBs83~p?J=qZ*QUw!NmCOPlCAe%Pc9o5MM?ZPeKs0%KH@CpxswT2k}*6b z`N7!R{e7jMelXeo!*I@HzAo+NAaMQ?JjncBAJsf)PMVpwp79_bZ zZ3epC@*gbRd`X<}e*fLdq65==j;o#71mU8^_o-}}!F{Qu8O3sh0u*nEXvPaICCDC}0bb&b&AlDl*^ zu>xEz#on)MH$#W0d-jOUXX75Pd-so)N8l?7XMWvI$N-vxVK1MHVR#q5>3Z9cT>o`) z1gs1wi=Ph<0vjDQO|gJB3S?K#KJt79QvW6#I?&{eIL}hWb-Q-pgZEexs0dm_Ib>L+ z{UH|5I`)Y_IDQj3{H^-Q@}vS(?w)Te)wxeR@?Bn`Ih=#JNG%VWzlC9|!C~49W*NXM zGbv^=8-@kaS+##Ly(iDV5y%kTVPr=)1j!viT0t2P2&KmB``(RDrhLb_-Lpu;iaGrA@O7njXP<{LS< zZkW-c>r5!tO<3KC=gt78cc#~JgTwJ*#}9Wjy2$l+>LYOEhw=7XH;3R`&?ma2m>Wpu zuNC`tl^LKr@LXV>)&<=-?sq}YuLC!kiS631<3x}$hX1zkM&m@ShNqA9fjB0g=h3;p z0z&@W@OM2dkK*H~^Isa~;6KMxe#q+u<7{{P^zg6gP!RBm;q~85c_@p)sVU-++t@oOET0BXIfIpW% zb96=Ed4`+S`toncdUzvH$ zz(Qw)PgZTlU&C)DU;NGefRDuO(t22oh%-URo0I*7;V- zet*RuV@Ga|wclxQ(X?zNOX~yf4!4Wgb^R52{fz*RJ9Oj?48dpjomXt?)QE}8h@0p5 z3HhMIM}CZY~IXiUX)VCk%fvs*142>DjI&_1njY}}aBX@L(A_J&)!*q)R_PNnJ% zmLf@1o&7*XxHSitd>FjA`__A$w|vb+%RUX1FKbAuO@6>`7BQbvCeQMc3_Vi9vsC{dW8Nw69xaFP&~M{ z_w}B|E5x>a7jjob%7N5&f^W`7mf#$gq&Hj4!HuQ#MmX{<4tu^=r)w=0mOU6aE?g%#17b!vEDS_kG! zX?aQ~V2(hIxBEnU5Uyg9(GwgsdKgTj>Sqy_vzT@6MYFZFRmwP6YeB(X){E0XWevfATdeKhp3O`BC3Xf+QE)rk4SR z$aMFJuoZJI9%?`P`1hw*cwpp(z59<8NRWzs5gizbcXD@Kc>mp(eZbFKki*ki1=hckwE$H>-XiphA2$M zKUYj87jMmN+iUdZIqn;CP6urU-Z)m#P)W%QAbt$IYTt)s#v+gxlC6_LZQ>4e!5Kfib< znFLo>o?PG%kHUi9#|qlNkoAd1MqyIq#^uxZMnJDdL|d!Yg>Xz&=cv}2hS!|W=(7e~ zh-+on!(UZ);6f(5!|87wi1~6)ER-v+gfV3 zl^uu!+ilA!q^9Aw=k<+@DJSA|wPx=5|Gl?&e-&Sm^#tV;vDyCGjyNvk+qn1K0aQur z`?FlD4Cn{0T7OA3B5veF+_d${#W|B6^lrzj@b;fl@4NUDflnw^H`pW!8(RL^awOD{ zy#B|4KU9*d!eInbq(w*S9^0Y6MkPyEuT2Bn&=2P49Gm%o@rI3lO$Xk3kQge9mPg&q zjlJiEY%s|qP_pdmQQ}!HMd2Xl=J-c@%^vK%iG-3LQvdPG#dXhOxH2S7@T&D+^DC(d zAeZo@(&oN+#U&X-({gOcoV0w^Sl2Dd{1Pc&SEwv?vW<;Tb!PTUAucy{`_(v zHbNhtzERtO-Iw1mu0%XT+)K1CtW1n?w}{JGh2z@@BL-EQ&Ls>HVPjuzsS6Suk`^IP z19I`(QTpcRQJNS?SG2D(C%~f_k#~x2QFw=N;A?Ipa{nFmF);SHdT>wL2q=jTeM`1} zj2@|JdMECi22G3Ry|Z^;5uw#ORHd8vVXHs8moJE+PP)l^dzcmROK+JXMc(CN17o+p zgKii?ZvSAHZ{Q{R7I@A71m)s<*g_$pC5_7!CZu-y$HRbdT7j5X6u#PKH2z7A+^5EQ z4Ek;;D<7!dj01&o>3>@(B9(Ua+>x~@@Z71Cru)U6Xc#S5=-b4XcoH+RXUGzv57ipN z+5BL>^`zZcR=2>y^!@fBMhsy}G&=mBl#vAMlRa;ObMfN)AHhr8FG1r+>mzt)Jan4J zUe@!D!pz&SqGRJJavzy7a4<{i-ZnG>$!DrE-Fa;Z_k#NGj8juk6MI5{`KTkhyW34G zcoTo)FQjpq+7VKX+y5wdYJ%>GFYc)#&_7{?=38U zf@)p?^i3}$+Sz}EjTVt@{T@+x$S!8T_?RTQpV}DskLmf0{n*@x-_$u~?jILWOurc= z)iwnJn*GVG)o#S4{!pVooAd8(L2-N9MSG;1eWvF0=wm>^ho7za(V-sNX5A$y1tA;N zrhE=rf*G;LF#6}>h9lm*&8a%TSjIf6^d$~-Qt$GYJ4fMo%H!={yU054BV$1O?9!7Y z+ELhMC(&^w%mZCDzjD~CWD1s^Oi|owb0V}gN3*Fm@y9z%J5F{x5&b$4R)-Qp51`CvvHwB5j+ZSbwy>qcs^U~}Xmlb^B z?;l<2iG`(b6?;R&P5(b(W+xI)?yq%n989+zU0Xw=z`syowr9T^GF}XA{_}1MjF0yA zwAF0pKNCOcs5kweiT)$nea9WpZ;o)cX&*NbI!OQEnFu}V{JWbs?+*bV6wP9CkSd`S z`wS>ta&g%?v;5=Pw%}|u_@wV%EF_{TW+SC2+!4`h9Dj-Y{!C~b47K?Jp39Cx#djZB z`yzKjwbrZjs?!wIO6!F}kRdTq+LgX*)Bj(au~c1Rc0lpQa(`-0d4izcgvhr~tc1f# zTFGrc0tWt2L741u!Z7%A&5TVh?q4)6`g6bm?hFjb+^>j%C>iQ&s+<1*Fxx)OgTmxK z&+6ka%6H%Fx6$VKmk5uVsXs+JFPnO74X5D5&#!~Qcb+4m()yrm+<}Aqe?{CI(;&3< zU-4hhcmedSLKVW>m{FzVw;Fmj0xqX3QlF)gMWkzPx4Ad>KaQpq7O50xkRkPH8()n9 zuHn7|T9>0R`(hgN$xq~d*3RQVZ(r)ARZRXcM_3HNixTZi^0i`B8shFl{mcegMRK& zEe2Z;mkx_$R_{Qhv$veH}R?r z#{LRTLD>J%bl!nneeVM|OG+t8LPkkiNGiE{%#bq6&MqOcDdJ5T*<1F?R`$LeduNl1 z?3EEID)RpE`}+KK|2p?|@B5zToaedc-1ket?GACf|2-2fzPEon{~<2nw%!AZc<#;U z*q5Dwz|)%cIMSLH7Z8@@GF7O6;jK!NtEQK+?@wMDG0GRA*#T#jsoGaC`!a*#8&?wW zj5}?z{7XPAXf;)BPCMMXFat@ehSOJly)d5E z&XyLd%R*Wx%sMVFfixP9389|##XhDb?==nhbNwt2AN0)uMCy7ZoOHA z^86*821`6Z_0ZL5`-DWO{APON@JIsk91_cM>)!Pkj81_3nyB?w^BA0arX7p>SYemF zx7>pmW}qv#Vz!b#0IP~Hyv{^oP@%y zuUY%I^N@f?&(DsWRmUw{_iK%k&A|VT_L!XpyTkdMJ~T*oBkK~g8s3#LIaksZ22HGg z=FcVEz{MizWzh+! zeDL*8`v3fTY?I(krz$|PJ_b_5AJ^0y?Xa7nY%=^y(;%9XtasB&9~WC*G+)f@LwzSz zW}fqFV&spXJq|LDfRHcU5>E*SaZZoN?0?eB;2z~do;&G1Ob@>krA1kUD8~0^h1~Ro z#K(diGPDU$&UdOk!!7|ie_3GY%3Z^U5ECJn?_Y15w_era}MB zbUm#r0gp{9G|^A(L+9IT;yD+Uu(LzcVxK4@VXuAk#4}$G{AXi?_EC{CAPctt%~7g^ z-{ZAv_xN6j4xe?myZFZsV2LkD=R`c%%dHN+kWWBYOe_eQL$15=KMCg;S?-ja9*25e z@87~^e%OM9PwaI4G}Ov<$!W!^;Z)~1QhgHpP~{7cUdEP3ctU!SYigM`16s7Rb4Ev58sV+qCAjb4_VjxV3yIaK5 z$3jPRu$lW>JbHBEYFD-Q%iZ{&1kx#nVFsmfh%sXFO*e7J9<)e~y^Ed(GYU!-)ytlE z`s@ZGhWDYT+J#LGDOa(1m9UF`Z(|`g(en80GGJmraf_X5`~Ew1rxy<1$J)}lRJ~FQ z5&oU-;F@s|49f%+$uq>jumnY3e@s03#4<-7CjV+T{wE>T%vdDj@i??w-${_Bdw>NC zd@E%1oQ79D{!|{F&iD(3u>*I5`p_+I;@$7GhIolHiWy*!hw+b@-#BnV%z{^bm?N zt&f~>8He~`MZHy_SC}#H2W=m#X&|18S9TON!e$R)cFI0|NGpO%_r!A}++=v2N8?Tc z%#!KL_!C5MC)g~=zEJ|iqj?@}YOcKIYzz~|4a?jJS|p4E-H)^Qd%W_g{HTzeV}f~v)W>2z^hNi&|K?tKVy z9!rWE2;eOLJVGKU5`jmO`jm<7ZJbck2=#r%aBU2}l;vw+U7c^8&M6lnUY7YlmdFrL z*I`gN+pr7_HmwHeX zyJ46kEhbQilDd*tJGqgE_mNmLRS#mH29OWwZBMm!-^AqIjSxC5WR%gD;eF(x&lcu4v66Ptrohx97$Z_Wq!hf4Gd%gJKv*k4ymziJN%)3=_ZPYn zq#F+BB2O#HiN_-IJmRf{&0RiW3R>ItywYD92fxnccKxG( zt7NPHYirzx63$Y(hZ;L$ONDQ`{x&3o&0~{HQA_|+)^zGWEM5eox4Nw^btzz@477X8 z`wLJS71K%?XE;2?HOEyQ!hrS7E9<)hF{r;ZS@@&1*KYhz!TxWl48$6|d zua6dj;Gat(l5(QBL%sj)BZUQMZ@Jm`(b8}*$7%$1Lqg%pKgYh?Mlndhc<~zP*e<_% z3aV_pD3nf2!0GHX&#VKlFb{gNMcs)hm@GM0Ao11%tM`bvKc&%!NI4x$hstd61ED!* zNRFn!xM9bigBJ3b*nGMNwR0i7vb}co&s_~%%*@9nIH&;O-pW_`7LAUPT%k6Qc)c6{Q=sBiB6yy60?wy94qh5|$G*wFXrk`i?w46&G+D1a@WVG% zO<9!s5Le8BvNBRTJoCL9rAcuLymN2ywWU9c312gg@@6gsqkwOmdq?>3<2Q_^#Lc() ztCaJ}?GZ4S6=DCcHyG~KTE?!tj7ECb`L{&lcKIaJP;sq;d0BD-$PPDMJ51(^1^tz3 z#LK5(^_vPIn*SBnm6E^ zXMgigzpLK6@jnd|4Qn*QmJ?v6%QyOZ{T?oV96xy@cnXG9)T?IW-LRIJOKmCF`_TNv zlNW-=op6U#mkke}G|(n<>$+L=U5HYBI9Yl#AKW}j_89f+VAw00m!F9F$nxkfRYT!O zXm|o4dlUj;M9nVi$mu9lcw7IyhwUz3cN$ppgfBLDOhCf)eA}3V4^HmpyFlqY1w+9u z+U_a-*vacY7mIlM&`C+6)^v^mEt4e& zQaA-NKINlk`oKjzI}&%O_0335Gsq!I%lSg$DV= zdEIb^!mY;7##5j$$+>3=BVdHN%3|L$eMrxpbJi}v9G6kG@GvM!2UiY;>7)Ll*kjKV z3@wlkoP(T~U$Lv;|0rHF4dmw|uMUe=`(shyDiE&kYT^eK%5|5IT!}>0asnTpf8OOM zOoOb-_|%)c3CLF3%gXV`3a9;~Jym*t3i2;KeTdVm;H{>Hgo`ZO^S{C>>p-_H&ZR0h zv>=%Q9IwNV`(y0b+xT{&cjI{w)F4hB^ZGo-FKHj}*e4&gn{?mGc^(CgS|VSmzW9Kw z*C*?-@;B(5&5R={sn2fwPeX%WQ_y7N1f=c%7pid7A2&`KeUTtK1u+If$E*TN6?BhK5txU8rYiwDXH~63*OS$bQSzk^~i(aZVJ-O>3i6;_UYQk2Kne1 zQ`zK;Pf^emoM&@Z*&FzL9{3*>eS_RO-gPXn?(#>s`=9&qbId~%U^(~G!l1(qTZ~9- z2)Z~0Y^9k@!LkJWw+97p=f3UnPn7V!RLBf3{TyX;PdgKOJNX*>bJ?(a7lNtV&*cGw z1n#uwgc3&iej5LJBOgU`J&@kI91Y>7MW1GSyx^y(1ILHP2$W#j>F#=MmrpVSKf~in zVPyiACCk9%unp9e0Mnd%J4|OL~)nDU1y4ZdpdfXX%dv|xRj{}46qCBrWJ`Rlc4s? z)yddT3p1p9OD{Ixi%j^O^kTfNuu_Qwr;-=5;Pc!k1^U0DSe;Ar>>uV_xH4j!7`RUq z!@{HW6sz(Ov)JdEqU}66*Td0(i|`6oo{DeYR|!Y)?jNSV-rMEt&cMJKS^vwtlMr8K zL95Q^ivQxCt*jWH1bVyf;vYKJ_z6qVKe?m5h|7v>?%tIbSnaQ+i`-_}P%MjN0oQ;2Fsp`!O$rT}an2nGeZB@aLk_zDF@|+iHCz^5jdaK?0vp=geR?&O-u)b~gNac(MK6(BkPoV!K2$e^N`%}AOcfW6D#}@V?Y5LTXH}WPpY4^v+Gz#y5 z{eTC>O)XwL=G&VK`5&_(VaTNKys+EkK&SyO;nNPxd>LC2_JBb1*6Ru0wK!JfZHMC28Tlk z%B3kw4_w$C|Ji0ipP?y_BzqD_%G^%Pu=!w0N|Up~Mw1W|AZbL^qly)boqpmQ+l%PU zu!sg;2VBavQP({RG0S*+|%a3KfWH3eL9&5pGrB;`?d&T zH7O5Ov-EP2%mA0Ad|NEsIzvKN9%2Kj-4V&hJ%dq^^eq`Y;lKHR7G{rLAxrO@gj}yo zme)7TF>{9`(-R_-z_400LFXomS5q>s^t<<>?u$Q@<`S*&r%KP4)hKd-VNfUg;h&>; z(u>wd&Z3#XU#O69;-oAlf9bgH=#^Z=^ft#=elZrVEx%<|xNQaWbAkWT4h5sm=W)L- z+Wa^F&jQ6lvF6v=NqF+Cph`IT6;|_aFgEJKBb@4Y>XoI zIBCUQs~gvI;rdj_ypfz1HuBKiP%a?@>`iaKZcAgwo-y0&PwmY`68GO;)7l>g!Mu_8 znhse2=N;v1`yzwTIcvrD&f@>g|FhuS{X&TJ-y{^BcDf0QFR&FkuD@p(x9j2stGm2| z-k3LO*qp0bFS@&L;Aw-iGiF=nsPe@m7v!&gT&_8ygq<$V*gHm&0q*UlHJX}o_<2el z3qny2x-|C0Fn}`-M6Wj{Q#G4{s4#_*+^HbMo_|<=`rt0VdKO$48{W|#o`RdHmmhx+ zw!#ACJyH?nc7N!<@Th^&2A^DCInS!siyVZc9}b6_<8w^orywR5{M=hx4Zd(-ED-bQ znn5~jno$qAiIZa?1o^Xz8aYUOBfOUkivtC{GOAubBe>CiG1KdPAe!+%@+^Abzx;m| zHs)5U4scF^g%?M1iQs))@(5|O;g1Q}Z`CfbBKipTwio*pajzE*eEAryL2Zl0Szk9a zZr|oV(-G(Y^h=1xiu?S%rZjN;aYJ+K>P*FHEQ*quBnRcX9jEP*ivwe^A+Prq22e~; zI^TRF5WUM!@#~HHFaMtd);+Hse_fw~14^H>Y${ywql6N-Vgzyg65f5-Vo$Q5~laBrA zYny->BPQ|GuU@zTZp_Fk)QbiKgmuhU%&|2gVGCC7Jh0j$m+NM(g8w*UN*D`G1(BJK z9LBS}SoqS=v3Z&INT=Z6#*lFw(7M-K&@!q*^BdAR&UgN(?Nn1@G~+H`WDc$zXyW$U zuEV_uUzcM-USoA0{$Pyt#J#N)aD5m3pn*mlOPBaWny~Z^N#wr_m$Qn4@6YID`sn0AcHL>eO}iiB z+@nJb=-aJ7b?2a*|GWTZGX<&6%~xm={BddRrV-(5ao4k~!8SqDA0^Zks5!Imjo{Ecr9vv%+Vd~V!g z6@TT6aWwuou|(I4nx6w6eUKWfd%4!6o|OkAlGR5TadkY-yOVw z|ILbl6zf_T|BalWX#$WQzFr zyM#S@l5c@R&7&^fO%A*2Mek-Zl#LcHG3~W;h=X}qrxkb2YsgYCfhSDR2MLLv5L^7U z`~IVP4j94$8wTD_!PU^)mOOl(*e^!(P2tG|v}#E!4Ru>!XE;{!dH(buJ>ds8%SrBG zOmFL)EH?8%lgQ{bqb7?P2Vb&WFG_~2!DkL8;&M2nWCJsz4ZZ3R1 zDueoE(>fIlyiwe{>rYRo?ea(GKu_#+j9~2)2$)XI^)bD~hkiskYpYLy$-$P`i{D+b z*Tr#V$@4vkl#9pY`w>Sx+O*zT?o>WJdLZg|U{xJELxVC^&L+dRkNjZCc?9ps5N^-s z%tr4H7^J^4i-YGD@eKuKhF%Me#Q*8K}mAQl^bk>SG&6qVW@ zRC8B`Let?f&YaG<^dKl7e4Gm&OIqB-dP)@Uo%T+IewLnR+!uxLN1fX<;?XQr7FPOJ zLplx~?zcbMm!gjjWxbgHamEwT^to1tsqgZ2zk$x^Em^8V(-5K<8tGBthewWTF0ve) z0Lk}o&B6Q$Ms`CpQme2By-VttaV&Gfz8=^xnlH$Q{rzk*T-+k~BuPA5B6%WcaAhy3 zZd}E=A8pX)lx3pZWh94NuExQWgZgT`&JU44J?YtdIv!|mj&sigvRyvm8~8guI84Ja z4K=d|1>8&YacN!aHx?V?@V9>bu40-ec8^zguS{wWayo7JYhKg|3vOslFze5Ukr%dd z*ZKIdDJ+F`!Z`u#ZX7;)pi&gKRGMc$tCNZ3T}G%HIN~5c$&t2I_%RAuhqhy9-n$td$0rlqZ}+UngC^UjaW64$eBV%M=O{%cvW{WhZ+IXM z1|_doQcRhk_r6?=4?n#^LdVx*)D?F5)!!g+|9I(FscGm`yg^3Ms*UsKk{gK(j00IT z`Soe)?eQR6@X6ro9<-Epo$UIuC9V_p*;1Rn07hQ1_K{`k;F&Rvbq2rUpi)@GmYani zlRsi}cr-Hu?JrooS+N=m54jAOC2h>m4Ef);XPI6hn#fxoJ->F>A4b0cxnp&4mc}%2 zbFJQp4l%-K{VdBX>&D?cb!7c!j~jmcvD%!IV-IQ-r1H|Halj_#MvnIJ7r^^FGq|y# zGFJNXS(E)*EMzM46k1)rh8?_$#a~d&K&Kshtwsi8;TOXs*~g*7SivD*Ei5|V5byqt7`WWhecg5VATCcLyV|~m z`q~*wls|PVQ7+vL`CI;=)V{gPXPXDLv(9n{3Dd9~c$3NGn;L#0s6T5WZX71gI^}&R z(8K51e_VN~-GkgIdH=qwx4|dY!tS-16~LA?BcEoGIwsg{_~rz83|NklRIdIzi@84} zlWmGiN5YFK_eNu4xAU^LbUIlplwo|2v})BAy{1li^nPr2{YhjVOg2;~-v&=Zdy>CK zS*RaI9xiF?>pKoqo08l@%s$v-o7HF2@;xZ@d(A<`YjU_y1K*tT>jLoFGkDC8RtPUr zVA4)H7!5|W{|u^aNH7wI%{2B~>ByXuc6f5T{?Wdm-coI7jrM*#-fJo5ib@%J4BcMs z@^$CIj#BmsSIRWRrQV8pXc~aeJxG}ne?AT}4{8_9Up>OuOY5u!M0*gGT9(Q=wrBXO z3umk6k_#Z~K@WMWst9)1eLgvkB?|I*ZZ0p{Uc<#{S-Qs-(~zFAHsc=kSWqFOduVNK zgA4~;*3Ci*sMe}>@zB9dH|71jk>Kq2=dqXHIqcfhTV#*vTSooY+&Zui|i=11N@=bbOkSkk4)2Wu-^~Z#Hc*CdVzTPqoG-oThzwUFw zDp|#;NA8cq1DmMjM{oQv)(vTu$WuM&=KhgF5_VB6((Ciz+XDq~OFZUb(4a7u*j39u zDftGR+#*)<8qZ?wHIlC~Zl;?MejK=9`cKM_8@clL$t;^ChSn2Oc06Rd$zg`OVz^1f6` zpj33}&8Px99s}pZGZ%v;9MGzQ^#01fj_3kUCi9-0-SuaZ1-Np{p&^ZA2G+i2a^9_T zz#TT&T}xQU;eSVc?6q{9O!`_kk|C2byE3PXGqio3qGu|EX;Fc!pP`CakxjBlOLQ2} z9;~`&J|u`oVKgH5gi_IED@)bcz!;FT_-pFG`V0-H3LE0+IpSM9{`QFCE}v}y-Y9av zsyZ?Qu3j(r13$Q9nyl|0Hq(rQG)>XRbF^Og&mP;qJ~Q2@=XAKKQz_^}5b5XZhB0uSCHQW_@-rmYFCcf{ z=NbCvDE~oj^}qH11#o;XuUU6`2BKvOE*40uV-F^_PqQ%w$y_H@x=CHJpB9x&x`W-Q zyZ-Xuh&ztBz4uS)Fo{BVJ>pWh*m(iJkW-V|Jrx4ciA8m4IY)7wXQ2w4fhnkV{(AAL zt1)oUEL9##pQDIz&ytr99MHErOfwx}yL{aRAYNq9D84!a-NEU5{@L1N_NSg^GJG3@ zy$cd;>0vK%y9Fx+&X#WUwO?Va;IKJ<{;g}zA+ zh{O%d+%7IJ0ZT#sETLv)dtxB}tmr;(J4YnuL~%~+sy)&P{wR`qeV0#IfJ6S}0TI$O zkoZdNSZcl$=Dp!^R%LJuVxNz1v3ftmMU)r?hswGUYGk>8>y|F|C|&+vkx3zlS8dg% z>FZz@KFeLF6Ap$e@&8zyqJ*$Jmx);a>|6A%E0>dcAR4B-4Mq#kJE8u&MMJOY?U1|U zUcHWz-Tfa43otn7w%pTst?E=@^LBzEzf&{-Ty9Ocj>(BqRoPU<4>yCTGa_$&Uh&!Hta1ro|v7^`8FC@ z{}vNhKRO`|!AlKF8#YMqRyW@*;;z54dI72%8;4FmnE~PEcZ!^0u9)wSRd&*%F(@`- z(c!U_#KoWgj%JVUM$#wu=2I&f;^J{B(!qX(;3G>arsA)IwPoK~(oGBmqf9f$^PkRR zudj3v{)xRsl5t@VnJlB>hEeSuN5>b)-}`BL$c#0*s2eoWC$-BTU4SNzZ%4XcZ1ZVq z0(38XVo7;UC1%NEFsG?+PE#v}V|nYh^L)CI#?3vrsl;Qv;zHO&M{FUS3hGqT^;g3r z{xZu{afte@RcHbWnCqW((ttD+DRRBb4`ECjHTL$)uP<9z`m-q}hc;l{oxG~ufEG;x;xf3uSZ2 z$3m#9-N?X;v~ZqLvCTheui@>iqx-^1HoRcIL*jf+5)wS7NL8dC1z%5nZGLy0fKDhF zwj?#1p@^$N^M4w5J>P^y2uX-Pd$xZDGH&pkbklXmDirB0ZSRc1g+mdR{>=nDOd)e} zaOeNG-j@{e4L`yT*Y$`_28{h(`k2i5&>PBIo577`lTjM?_l7#MlFN9l%-$p6aGvK#~v2`=e9`HV6 zKfz*{1yhkNyTW@U32FS{N_SX}goun*Mq@7mI%8J|^xJ>Lke{Q(%Kv@RRtxiR={@j7v!Neh2#y2WC3vKuiAKa6ECvcQBYHv3io7Q!A} zL8qC65sPQIG51p69W?0Dv=?egae33~<)ZpTL?ProDOwx}?9^w+hRX?PxM6}RPW>^O zZnnBnQ0=fA|BE1NEFxG{!g|gpd=x=+I4OgPTvjg;8C~1 zN}8q0DAq@zKrvPN;}daAQ{mbXmhWAtyUc?r`jj!oE|=}1&QJtb4|bsTbTNGRrjC$| zvMYQdYw}tdtbft3ooBB{6*UM3X-G`flU*V=adup&#q zvGk##N@y198i^E^vHY&mr(5+bav@1<-z%^=X>4Uy2s{Y3N z(xpZZQE#WKz`e`YU4r>_WxJR=vk-8Tdh77j>v)l+%ehqNe=$>3Eg2mXpUpaMG@WWg&FOpZDgWtZD z6HU(Fgjl=9i(SYP(8m&$rtmv&;C(Xoq&V3X-3peZv#@!9-hQ$;`SjcF{^Nutn0o%( zfzx~zu54*t%i|zm6hVB4n+isOk&~V?w9Xszb}GG*p3{Y1(G_r=k+;GeMk(e7uN1+l zm!ZGEqWk#9#fr2AI|opx^7KAt$%q$*>9{Of$D>D=nOD*dzJb@L$PW}FSCmM(>SOP( zfy^#7-Fzaq%dcL7a~eb6x}0YL|Ec;(BgX)=qvba|2O19HpJILVU&&y9{#OL|Bq!cFO&_~fJcCD@m z*t{DX`+3k6-Dc|Om8?=lQY6Jr<%QO}@xKI&d}Q16?=0x1W^uAyRK^?6bccBck3#CT z_J!U|cg)B-&af+>3vnf~FFu*G#AsWb!-k;k#r42pny-sMWc@2;rLhiTk{{65Ne$&Aov+2xabhu^{=+uP$9EjO@LmOYe0oe)=k@qeKz-aebyS;Zwk* z1ZnSY%2P-@B^G52d*}8kMZlhJk)l~LH#9d9>pt~B39-ljyZyv# zcmF%vcOVLP);!If1+y*y zzUVUL^isMAj?2n(`^(7S?N#Pt`s-#;E#dKliiZrBkX6x=z8Q-;pMM+4qKg2n0v5YX zIyWS9Xn>X>N*+ZYv{3u{%W^mVzeDU#t)ri+XMtaQ$WG*&4;DoyInSy$3ano;AHI=s z#*QT`Gyc%&LWdlS6FDMnu}3Vv)qiA*-~c~ck8+46Mp5i5Wo}^%8ht!Ty~Y13uCvf+ z1s2AjA4ypivVGw&_QEvgHHRB2CV%r*Jn=S)o3se7dbrEi{SIyQzxQ13o&}$%^m1QP zNBn0V^;(m{D1@taHje)`z^eTsx7Ovm5Tjwk3(V6VV;8M;8kH-8hF4nt419bTslgtF zu`NSL)UzUebCm*HDQviK|3VBhUR7VmL&L#DEab`COKwQ<$pgB?E=d$nb8-6cpv7+d ze+TXAn2hIRv!KUAk>yt7jFXOj-*6Eb1yPdU8(XX**gmqZ`3>koM?^`=FrqRZWR|0G zL$L_Hm?>7%B;CWVi)1&tBRBOhpwNQp)^W#>t#?uUcVp6(vq>uv~t zsQ<{BOB8*3WcqOE&MrUUI~c7<94J_sg@62lWv$(2nB1k(Eh*mZ=Rakoq_Sj;Nya3| zZ1HrV3M2h|b!rQo=i;8teab~JdYv&(y8HoF^>B5PsaOq8^hTw*7yTAuc-Kdz&K8YC zBCl;-p$~_HT#5QU;D#2cZ-DY`K{Vbfn;_=3`~64tcko7m5WbHzvff1cVIx+mq5t0qXdqohRa$|juiXcv6X}cM(pa5O>rnWve z%?ov%zVae6CJHf-W%tYWhk*M?;@-(YPPo z`i>ts&Ap48Cvp4yetn%w%T2J-XRWb9%mWd&rSm$!^MKE+NNmUREAlP2xTGf!wJdN5 zDi!r1iWBFRLIUzYZ&_F6T~!k#-B!x~N6d$WK!%xP>-q3Dyij?^&ue3yb$hTiALa85 ztL^xBkGFSpQ9I?sM{%wPJ+GS}d)1n9i&y{&Yh(+cI~@tLt&~i{YW#0u-_( zG{57~U6fyMRew|fxvZqj#!5{v@JjskcVZz_Q;Z*2TrC7rjc@5YKHL`7dyev@h3L-@ zQX7I(AKGWNR%j?!2=@E$-Fb1m3C=zg8Tm~t0=7YG?EH@+pgXjdx8t!DN^@z;e^-R= z7o9v`Wz>fZ>K7vgw&zcEg@98`Lye$9Bky~Nqy!RpG-PC#iy@+e=E{zL_TAWp-0|n=QA0KA^T&pf_!WvbgGI}93m-&gx(8PTuUWzD|kV0#~W+i^oh?t ztOQxT7%KJ?>O&(^VFTX3i@~>pf9;G`Ber#>6K-l|`GHs#)tht_R?08Y% zR%-|cs8*o(!$#|EgT2U$X`)G3uN)pqs{i^Y(g5Xhtxw2EDuLk5UE@58!|f-%vpYW1 zt%g=jI!PR@TvhVf@t0aKMqZM-vVGoyccq_y)fx(FK>1%H0)o_*aZx{l7efZpJKoPd zo{HUHC=rTD^}JR8xEFnXe4U9Zx)L_uN!A5X)I<8acJse3)j(n>NZs|g8ca7gS9W}z zBg-rv2bK^z@I+0c@%Hw08pIwC(5r&JXR3_lxphFtCC*PyQUeLy(`)eZv~K=6V0c zjvq5RoPR&Va5d^y$mV}>pcfs2$>_{U1Z{$x#+~GK;3wLO5sBM8{|KQSzhwq{pX83$ zGTl2nn_RvICEHHx?|3ZF6sGd{DpZ4!A+^KT%v#`h-SlbQr4~e{gP0!a)WQYEOTTt} zl%c1-PMxZ*L6y`?rowGK=!Di@?TzeexFNYUqNPv^nI|?A*NNNhoH$<=4b{R%F=Nw? zNAjhJqMjRXE$X*&bn(jQL1Z>wPHB5fd6rq+SQd7Vd=Z z_#ZPoH3!)eYLRil?Muv_J?PWJ6Lo&NHQRaae!8Xb8aTlu9#27154y?&rmF*W;9VR! zT!(FsgCxTRV+ZSy;Th@Q^h=qfdaWDH2|0X!kXH-Qr|3OYj#h&!FrFt88-QfgTAt9- z0Ne);zu)l^_7uDcG_R>gqHdG{J08M_bosH;3R!$51|=E zt{%h>3p4|_a(~bBuS-xaF@4Rmy%DL}s_VYr-;JuCj?;--)Wc7oyr;JfD!|T9v6q6R z1xRXaysUGZLC9#}(vIh@uH5{b;^ij9bLzCQ_jnhAYTUZ0pdMTltbDbD%R!6gM-S1Z z1=!Sc6n8vz@e-GXcl>lZoK$r?Ub=uDtNtAy-IlZs|A}Aqz}DE-DO+6zy2}JaNzw|s zuj9<$r?$Wh$&ZseUb&j7aPy77O-O3MWTDu<3#INC{$+cm0S?ykOI%$ng~{}Vuj?+Y zFzVnQYRBFRK7Rr(%jYZsbM#TQmIuu!E0O=tQNu12pi!?|V%Y#xb!t_jjHRI5|NRA# z*a`&G@;Hu|R-n~Rr`_?m>3xfJ`G0?#oRr3nx2=b>mUlV30eD>XyMiQ2Amwu8qb-*< z7#&&b3_aEcp1tgh0pUxa@yT}7fvpAAhZrg8(sUuEbFZvvryD?ng}*`OX)&y-OBMbh zwn0LYwL*7b8_>N}SDAUe1j1}(ouY&mbdBj#6<*tkHf!b07+D&@S^03NZ)6cHtUkWK zm(UKQU-)h>P`5+6#gF4VzO&1D9KQ~Zv>>tCXY75(o#?|;!>e>k+x;-mc*v=)5aOSm z(EUwphlEF8WJ+JP!$F6o1S*RqxFRTWqXKJ1m#YH%cxXG(HPIL3-(EF>hWo-NY_R|$ zjv~iDE+1gjm*k|*Ry#D&-&)@Bi(UAdN&hgi6}c5l>@O?oK&pNV!8t{Z@Sbl_cj;IG zutl?pP?2A*E`NvXac7F*D<#@1D{c1(A(rls6G&<0Qd3j0w$wu(i2<^!i z$pxmywb-hV}txywC@0Utm z56y+ToKoq(E}ft&`EcyZcn4g|`XMfGVF?EIx~a>PwxcM*)=4Ds0i9IwHXbr)f@Fuz zGz*s;crVXCPe#%Oqnugxj+&joRg>bta&ieQ`|mfrQENvYoqI|?O}8WQwNq3A-c2xj zJZL}Tz&qIT$VuOXE+9E@qo}R76MVAU{_Xgxh_^03DS6+HdZWe$EWFxLkbixT_4_8s z{YOiA=2AA4yn5Zc>Cy!WeV0|&IlG|Xd5w$(=@Oh(*ovwp|A6?9Ux>2gZbzLg6vioC zO`zNu@w3-66F$D{IY~raz-Hs}VNtIO6iUKB@A#okdf7MStA0S_MZq55TH4UepDeMK z?L4>ed?AJQL^^!dQcNc&>4t=3He@Za+wCG>UtySBgvrI1&pa|epyE9dkrT#k=*yXv z+_8hrkQKeeuqBcP4KX>Zq$1nxvc`%DpSr;HjOgga{zdS~H+amq`2lJ8X*O8yYeU&5 ztWy`yHN*0tP}4#}3hd)NQcO3D zbN8}5e_J&}RGdG3epdo$EZRjQ#S}-T)qE0ViB5E``8KBI+0}Q!{w@% zEoksS+6K|18QQf<-_P5}LCe$k`?p-S+tqMIDU`! zv9}<4$umC>MK;63OJ&o{_oLx!T0|0Qbq`c?m1V06_dsz#*rc_?BFJ#4ipzC$qE%gi z_?4<=qFbX|AtS0ydO!SPbwusy999HuM9D2axVIZC3<3%`h;&aZQ{oD26 zyNH@ATFoeJIr5}>$u_T!^WopqVZbItFTDl5P(8$BvXtE9Me7?3{k2auH=MX7_BkSiC*l1UN#<2M(IW1qrJmAtK5a2 z{bSWX65fP1V`IPk`OpkJ?u~>(E`JaWTD?hL-3ug5k8d%Z?S&IG>c@BdHM*SNleg@; z(DSqWye-@Fi`u_XU9hOl90BjV%#P;-2^8TOhVTJM&2gJ9adHsm7P?L?>#mB#df>GQWjuE!QZ>b1k* zlZx&6Bs@%Q+_Vv$TqtOn8fylRtV2DIXB~j#2cdb#_o7=!{JP_Nd7?Vhy5o7NRq9RL z@w?b?z7STUYDCpOY~&M@&2V|?su-(@w3R7*j?N4 zvS2k?8aqA~*=(BTW7Ex08+I!<^STJcD@TO7el21KKBfyr~K8T_c2!_pt$2J{0yJdVV_| zl*o#?-W~tRUi#yQZtQqZdVIS0F&pHO>_1CJ=!fb7+h5C-eXvi3oNUKqa&j+K>Fw?O zqf;j||KRg_BxOjsDKOFuA0(-B53{+T!2X{W|4=`SKEHeR!FnGQzxn!O$3G&*Qel%KG^Q9k7sGCZX7%xC( z*FbI9Qa4)npv^nwU5hj>jt{HkH^W=^Sm~&mP&E1S-0}u-yWNXZCWNB{V9n5cheCA$ zTDb#dPf+(D=8a#k?YU~v;kkX$Z{BW?FQPPb3)dph4R+rnTkvtaPL&Zmd3OMKX=08n zNGyQ5mBY&eoIPlBQnQ~}UxUa8@~p-*kptWDrQIO2auX zeT3^HU+;Ks%)=^0XxCAn9`r+RV`faadOM#l$PSU&j@xOLXgiZc^eiv1m7FjLY)KS} z)Q>*G+W6HU-)HAx8;Xlmw1&*hi^LIujpl|p6(%49y;NFp4_OAfM@y4*eIR8m#(bRb^w6PTx z>oiP%SSdlZ3@*Rp*`Gl_`Z!lvSTdRl9{$Bf=mLV~wu&TDhLZsL}kvlR3N3(7|VW?2mma%90s)%I40Ruc<$gCf*60@*OdJdXpg7YMC5- zz7=IEP4&I~T!hpY`2B@&l6pC%Wd(cnwtkQSMmRpMl&5oRYBzFY)63FYLj~2;~T12R{Az8|mP; zttkDPqY)du06qLJ6lqdj1IRiyWM5h)n%?BPb`^C4p_>m$?C*kC)(zVuW+$L>$RWTf zwH1ABp5=B@C_qO8NmtvVYha`MaLaG&EaYXe_9yn&-Q7HQsO~?5_KYNbT+{ zYDGj6f5n<7RFwXO9(?{$4eaJIeP=6|jh3&f`w~e#5F>JQ`>S_d(Bd+!guV0&*SXf^ z*R~?HM|%@~e4(J7YQe7u^=eqxz5FwJBpabh6RUr2JwUq3b9G%)7p(1QHn~EXfT=Yl z8JwN1s7FIgV@ZgDR)feRVS8)fotgGrwRR5Tj>|j5R?Zry`r`L3&TcqWdrS=ba>5%9w;}eG7LJ}4N{RRExykupgzyU zOZ;~$N;>tqX09L)o!Wa(1N-3*8a%XaEaV`wb?$r|q+W2pmHjN-rW;xs-rj%ua01F7 z_|0MmTvjZltZi)`()|m264R?eLC+LO76ph?eRxb*^QKuXd+p&Q)4Uwe)nZ#fQ# z!G3q7iu-Ftqg)jAtW!(Oy&BHzht0+Z=c37le{u}e3o*Mzqjz<7L!EEMHj4`rFrdR@ zh~4eP+2(-ZoE+4&M%uRHQZ*!PPRKmmm5VA$4*9P#d!amTsVa}J2l9EB zA?#(B*qU_zU6X_8fj@n*kG=BW1=kvhJXF5ftYsDYfV6kd)h!x5P~ZFV7xu1s`lq*I z=Q`Uj@!9;xEM)rMpL5u?_VAAVZD^K<>~}3GGu`^2{8*aBWk=S0z75~8Q~lDF{XX`o zHLLci)>>yG;+z@hL|qk_ebZXEoREhE%0*&VQ6G>G5Biv=^+1@UQCu){9M0RD`D0hw zQ|#&faLEkhv$Dd29cjid0fCgkJaq5DMnxvG41yA?;>W1%W3;lkG(Fk+qNZOCqTsBuYM|2?_SX<`W-l2fvTA)~QQ4Om0Jd z;=wCRuT#-k+I6_6R>gWl`!^Wr=c7F*H+^Gw?*~$tdS|X?FHH8^NV`;wgXX6t?vOie z=>CR_)2WwIkobe$vaP&TFkhY6Xy>1gIlI|5c5}pVw%wl>Fac+--VBZJ^3r5 zIk%y+&Pe)6Mt%SAje=ey`<)bfK^^%z4G}ifVNfx`sBQigxuvc9D%HRcd zih0@2%HNJoKwVd2rLjwF=DsM*E=)mJIC&$9B-Xe%*}pD=eW36BX>F+OIIOxlzsA0B z$^4mJj(6fw?j32v^plm)E%$(Z>j?_#CTdnNjcHK+@pZy!%|3W^edl@X0~aou?!Yc^ zbm1fI*28hA?1KWeZ9^qEZVJ`$#{RFgo-f0V2INd*nQ^B+n8?{^WPf@b>e3Z$u;+XC z$*aC=T(L-m*52{HuL8(*Tk7;)P>^(n>w2~r8n_>jT6-t0541gx{AxQm4i6SI?Xbfu zwaI|cL5)VxWvUjmx9_x937a5HQ!?N61ArfLMQ`4*wMY@t)+$iTpOd? zWy7ZL(ZQd&RoKft`qes0rI~`{XEtwP^t0wG8HniSXWhrr(9Rd!;j5`o67vJh?KkFb1xthJ-d`wV|Ef zhZ{Ls-=eIw77i}_6%cqU|A!bi72SILe3ckJ$|*5BR_ruNT3OY003$n|<&sI%!- zUr2a4SmZxm+v7<^iZ%)du|G<)S}Df;kCB>I_dSc0=7S2(@506piGYV=r_@hvtHv(EXeO?n~f^dT;*P(<4_7FB|pZ z7hh7*KlYnD7%&I~9+l|1*E9g*vNI0SW8egjM6mB!7;0!@YHfv7wQoM}o<)!x$uM^a zqoNz%6>npwvpglt3_G3iXDOQ4=X54r=fo~&!cVWPWC=rb(~`%x#|yz|P^azhx2(@o zM{W%JnuJTn+?#7?@Ig6L47-|^HfsO(G;drHsQz4_0(AvdwcT3~(7L{B`iD~yucfL4 zGkOptcKaw`7c=mZgwNK|Q82yp+#EZYIsSEJQ@$opT5TCIoL&arVb=_fvgQkYzipgY z&Kl?Ju{5+ugEu!4Om$mE;a-)OG4?BY+#_#<57+`NWry-O_9|0clm%Z?(HX6k8fO0> zkjO*lutOMN%4URDt0GjP4)@DHGK#M@v;SiZKc4^#&0YdOhwbW^+%Y@LDuh! zEjRWfBb=`vu1Fb$gNxFB*o(APxcQL1-VO49P4i#AT?#VNk*6*EsHpycJb@uT1n$bK z9)Hyaz#^9^P2lcL0(=X1p9-hcC^ME_XvRf>T4wp;Mzl%pb-h^|jeCTpF~&p(R)hf$J0Q^a`_{+epy?hWIc@OjTO2FAYG9 zqb1v+89E4R>xE&bk8^J^mzVV$*de%W7bB$zVr2D24LPaE@zj>TOc)08a<%~W_Dq_S zqOh~4`Z(k+_VseQ&n|axh67dSOz&n=5uBV=f9N$!K?!b}d`#nE)^lVLT_80GdWzgf zN2}AjYt+?~v}$){BF%o8dH{ z5kZGyOCLAv(5>6NCp;?QJ?ye9P#0TU2-R!SANnLw5P=irVo%O}UqC7LOglbI(!(~ zun#+HC-MiLWfjE&B5E?NYzm;S@cTbdq994B?tUU^1j^Ys(sx!2!ioWXltYOQsW3A0 z#fi25?6A7??rt2+CLOiRnbEBI8fWFOE4C$mlNwqYfxdIjJFz3C z+>vt6$2tMNESUVKMx%hEp_|WoNz>63Mc1Uitr6k=SR9A=Mj5-2*$OW! z%_o8E2YO?|^?XqMtEzTGIv;&?r98#nmAk&(9qe7*;a~Z3BxD4v#Y+>hZ`HUl!p$!r z8D2bDysz~y59-pau5>W-klT?{$=InP`Gvj5PSsU4E-&m;c@d5=DEr&cq*#>p+>R9R zoVh5R`aTa*%&$tNbmk##?xA7qOA(GRsMwbh+t_;;yHd0lPWQ1VC2%0;odq=oI1dib ze}O!3P&%`#JueSEbs8EZ#?V1xSNraFxkK>nRtNQi{s^?LBhT$)oyQEv9%(OXrh;5f z%&D}&T(};;mTD1@hgM1!_!x)|w1W9lLp4KCmVLD#_V@@W#|El|Z)`)w75O7iTT|iB z8^tYT-(1kt>Ly~RX~K#$!R%+Pvn^i)J4`_gXvO~0IP>FS>@H<>T~GycA)4Hyw0L4kT}J%z?}0 zDRXDXa?!m$$&EzTdqiT?>y@_1Fc6D(ug6Z&i|21jj$@z5x}-SRBbp6r4ldxtuGh`KAC<8w)$4o_q|$j*)$Wq&hiwx5Yu>s-`XwzFo9%k^Ev4$pP5WqCSkML)xyIb7||gok~brQdmELeuK5VC?L0 z2CBUw(ni7k^~z6PuVDzvF+cPoXc)G|T-uJ^oN4v-(i<;iLH0uM#q1v$ph}oEz&=h$ z`RpAglXZP6+fQKs=Iok*c1vmE;Rw~TTwgJLnh=vHU#s>`HT3a!}r-9XYA2{u1+cT zX2>5!Bd|BKwDuoDUI}fP9%>( zjL*(h?8Mkf6+RLs4a45O>PFawnSZhG@pX*3%X?K!2Dh3E@BokY?&kZN>wg2*FaKdX5tx^M{I z{V4e$FW-vnnux;`{an~?BYjklkq9Qg1^i-XGSL>RRSqJVHJ_SAJ9a(>YbLp|?-9wK zcn`ZCclVg+ig@J0`-U>R;5&(MT!UDYtt1sW99b&_I#SKqB{j3Yg4sAak@`!~R5T;lU2?^a;W@QjwdIs8@Noqlr=Wemv zwC6$6Xn{8N6WI5MKb0{~Lt5{>da;WTQ!7ZpE&?&CeXwb45PBOeE@KCQnkml2{(+i% zas2nCX!sDAeQJm!4N1)NIbqL0g0RHEo`D;aXD47bMbH<8XzZy~nx_@@f0D_446e*&EHB zE0M61upzv0DFsR0IrD%aJ_)3ihTD9s{lTUb%b?+?L6}U=9>bmg7k~bh+I#s>XMQ8| z0DB|^h;=h+qf$^|U!gIPGzo-i#J1PO@=1u%)K$~$p+kVkm1<3ldO_y(u=65B>D7vbZ;| zW;2hpc!JEa z(UC+XY|z?^duxKi-ygWQM!6~TqbmdOyZ1((aYr)}$Qx?GUA2P9SGVsYp&-!IWWo$i zLjY#!t3o4| zPXS5KgD!0~3d@NB zpMsdP&dyCPqrhe%e%?BM0G9WKH{tG=FFfHI?tO2CJuvOfc>x0J_Uo+tj7QT)&P*_w ztaU!K&Bguhe!+u{xZBMjaO}jr?(wkAJh;#d(S+tG)emrI*>U94&{(o3$eR5PZI_Kjx6jFG;cn91x84YMll}TZA-I>^ z!NohXeYOeRUwIsg`^fIqT3N$O9w4<N*2JN4{dYWm>n(xzr&A3w>opKAneWDoS`g-fe zCUlfm{paRxDkyJA+cNLu0s}8^%T#N}plA;P72Fq+%fH^oeIYeb^abt;1#B}-a8D@v z5yWvv=#nWlQ#t1hwYwS^o@_DbaeYS;?gGh2`I~STXrgnVxF(+l-g5P$$=OXvoNIh- z=OHT8j*Oh+aC!*swIBEw9HJ4qc;hwP^U+Lmg_~W+;D>XGJnr}g{>3Zee(y$hryuV2 zcsZ7q!nqt_CI4sZmEkC~wRia{v!8W+bspxp!^EsBaeaqV|UEPcN638{>2JPtQE!|(UN2>_K_u}U5`dKJzIQ*jRvONk+Gf%LPh#~ea zU)3V{jG#D;uF4yKdXdY`lm>4~J2Fw-TrrQTh#6CvlLwAvAtUh$zE3Z008>D$ztF`t zSJl|Wr-W2|w$k!*{5k%qSMSGqk(t^mJ8h|Ul>FvX+S0x%f~M^@zS<}Yoh2D)*Jqod zHW3lGlR{64kF=|)473sCbFQAhnV}D*W;Tj#6KY3_y7y9+wp9_cK9AW9jk6H7RL(og zzyQ5F^zhH~m}uh5!$hT}HvG9)LFdNT_8~HL;Hlv3)SyUf&%j8m>EE;CgT^DRmy$MENh zx*y%_VHHAVpW+2xeSAWYNF+uQDNc<9KdzLOzfv0i{Z);*LJCsuQt(>wC?fr@A7<>= z&L$=dq&OA2+2Hlpsf;8Vn3L`Xk`FWKCzyx+{?y|pETncYA2!3_8)tS>A6S5H8z$0f z(l}TU+iW2HFqh9PSO}Yul%C2?BB|0Xip?C%CdEx*28&^5oH$j-M_LV*z-FiBf7(pp z0!v}D`K%%Fl6b+g*niaXJJt*FgB7uP&CWj(^br6nV?UV^5)%;;1XHl{Qk_lsNkU*v z>|af#ksEo0!P?l{B!q3YQbfVJ*x`lVA4S4;f(@``X|1WdNxQ+u^!quAl%>MN!DiUY zkuR<&Q1*f?u_ONYz1tQf1-8LfBgy0Y-Ve6NWCafvJWD1zOvS>4KSA?*WTckHtITLuS(l))a@vGbHidTgq6Gy7nVEG?&` zE~5gv{jpEYsh)W`qXG`XR;sy~@T83l4#A#s&NdCpQ38iy^TiH(1$rxhBe2)&h_3fg zkON0y-#lcx@nYM4a13_Q<=g%a*QCI4*fsiRUcFxu2Pa^6T*+s7GQ1Oo?*{ikk(%>Db)$n(AxkIKY|M+6@l|O**>s>CVOG4Bb39z{&vkn}?lhSa3&4 zln+e9mf@kTqA)`LGnZi7%%qgt^FseJmt(i0XS~7c65vXD{O;7dYOW&0!E_e_kt(s?PtcFZ+mtZcoy4NX1$i) z)otJf>}a#LlS!|+!6XJ8j|J4%sU`vR@yN!E&2fg>Bq7cN*T;q(H!tMgs0HoA#)++d zXzJnCNHH)Ew$lBfj{UbFp4s@YH~O9lG5red!6txRLL1ic6j1^TV&^^d+?EimLN})n zwr5e_u*?G7Kc^_R-ORxjb~lJGPBH8&#ZO+f|CR+yVDD@Bqmv~A@xv*Fy=_v(XYCBc z3#Tl$?g5RBF5fnR6|paLy525)zetY1h=z7PHb>~3bt7lt<{+w?vGOw`;vRU zaMh+gU~TOEf6mN2-2vm1Qx`j0%x_1v9`rA#0rq6qtLLnNFur(a}}J=6`R|xgr$LdJJ=1I-&Tlf6$kOkfw6%La-kzH~dkvgzM!C!)B2o znd<-A0*=5Q+r^rExM7^$-h5Hm492=f`(DF%g4*QE=&hv{L(7t>L z^!`-PnJ5c~e8!iIUFJ60zeNJkEs#c!pA&{x?uf(q5J<=FsPx*s?=oDUKqj`%pqNFH z$!>5i_TsA}({(xaorT+SFj3Oi}`NOR#(W6g0bcOHG%j{NQ%%nB4NM2_Z2533k!ri)(m{LskUbOOK}q(uUXfL%tCl#CF?}@_`VEaTKkx z&}1eZ&!V@75Ht2p_T8Ls$`f7Yu3trZM(SDcNh51HI5&Q7Z zr!4saB4B0g%#4nPe}@L>@hL{Zp0@cRT%-*5E2fFW51jTOiGs!1)E_rT^A{q%j%(@Pr?#=#^pvV z*KruH5;oWY>uAZJL?Hep?6KQ;T~E2D!Tm`&VfXKU@BQl&#JiLW_7TyfIYC}&uq$>~ zblMgl2N-`+ZrH`_^S}PxV1m!PV-E<)+Np;@zLxT!U$4J|&tEBsXIUTY<%DOMM)lBt zvi{gtzn(vH_Z!ULvO(B(&o;?=o`Ly9HUwMoXV5NYVwQeCvSHYM3UTU%=5Rl<5!iQ* z>hWhz!TrcaVHdvl-f~wT#*1PMHXFZy`ZI0Fhl+97Aw}ct{?8$wC?;T=8VPD`S6~Mx z)7#r7*>>#E7WjM`_K$t(zHR@Ye-zW{{d;Zzsi~P_Ik8I#PAjzUpW{1hP?LA zZ^m$Z)jjwY)b3i^-reTka^_?F%5B;xPf*m`$dFNRQ#G7(Cwv8ak+}0fCYf2^d z{+}(c6Fp%*rc`0CJNB>K=nl+3lv-?tS2Dqsh7aiDiPC`W8o;8O_6h0)_cKGPh;-Yh=cAhZYaspcs5 zy}PL+(Zw)6H7Duu7is+@Jp|fAdlvgl#H(`oXc&*$3-oxr^xa&`(K@x5HH$n*blF=-PLi1@vh5>9US$j{=N&0H(eg=PkBF0${nHp(B;Fv z@hR-uhhwZ@0c=~wmqn8;P*3X$VrQkd>+EfSde%S)d#}2BM)X^_e*;nMZte{sHaj4` z4aBgo5trHTN%4Xuu>XBGw?1$H`pZBHo1h%}W>XLIo3SkREdf1yGaHzHjTN!8O+#(D zZo~16m9e?=|2<*82FEj|VE?fG`eJJi9M4!2`%ic*Tc9~a8DOghJ(a#V%LX>aX1YRLNi>G_f|(h1Y0#0;>|0PTSXyGgk{a>-!wcvHe)@ubo%(Rbi)3a!&Ll}7uFM&F4&JRWVyHQhx}mUO1~bR zk4!1+pnq-Luy^)6+;$>D80?PSCcoj7jtZ=gY&@{nn8_*Cxx@Ih_rac@`gkVc9*lo` zf9!JQLm`{|p}p*buvuF}jLsNCeQh6t?eHwro7D^Qvwax0_+JP4s9A^)rwHtPx5%O& z`7r*RqOcn?&GenhAs;%$VE=NA*q_D^^`%oBw&wTN<~81MJuV5@VkTbikIX>-xg=wc zpT79)g%z~7OB%KiThy`&ny0sqOFH(Q$F=KjazMT2l8Nondm!P`4`?6PTx?qYs(ZD^ zA)mSCVe9>M++dRl^N%Zy9>3)QHw`vI{&FqB9%8RjbBTohax16bze&c_*P~Dmxm9A9 zg!@#Gbm4y7s_5-|GpvJr6vm@lEw*T*$Ih2l5RdK+^z-kO`xU4S^M!jeJ>Kj8%$nvy zJ>cF>k2ikf`bUkh-gWQ7HrwQ7$iGr=dh}u^iknC?t3i8s3}TaCTRxH53-hVRD0Z`} z(jje0SYLZgVlO;eTUIs*`M_ruTh_9MNka+x*JlCy^DVd32eB|-eMros==;SyYU=U7 z^w0Y+V;8Qw>YI}ZpZ90OPD^*ySC@v*`*ULNt4bAj<$}-q^I(rNgifB4oS=W+pAS3A zV!*%G1M+i_05-?=As&X^aQ#7o*vClTg5NwL-h+g&SM5r@O>1O<_lshGkb7TsLJRV5 zh!{3cBI^+^A!xr43GCoo=RJ}JA>W2bVb>);7`(s@>-`W}>|4&94%}RjU&9o!m1MmZ zayLN#g(+iamrox4cLM6`FbcMBwRCg96X^diP3(dqWp&nHuwIGK#wJSF>`3Q=_=(WP z4xg3Sx=94qPZ0*#wGSm~f4_$Ki!jEvV7=|65eM@{lo|F@gG(i+SRj6*EV0`!WnIcX zI!$k{C>v}`e%leNHt6pddu->WAG^qrkRM{4u$LmgWj>#Q`X$B%d)>Bc=e<8|h4;H+ zv(>9EtvdtP8|Q}29pHEVawXKCaqieTj=SYPghD=!^T2*P`%Y&4m?ZuE2|m~@{j2+i zIiY_O{IMSggx8ld?*Rv4HyArwrrJP!Cxl@CP~9$Epbq0BISl)FymVQLAIyiz5!jm9 z*RIL7^MIqUAFL*;ifO@mBrOK}`A$`ivP*Ejv^Z??!!~J!Q5X+t3D~XccJ=BVUJvh2 z#y*nvPWq4}2{O!2nI+h?LASe^VlaQ^mScaBHeiS*e34g6zkb$>3*{V;kMkO^o7fs(b_A{gH)C7#51H+8+ed#t ztsT4S+rKN5U*P&^UD!2$EiR0EL;j}q((f-huYOH7%qO%#?0Sm$496;nuaZ&h&dy+= zT2Bf3`%5P2*VD4kK3odguVfZGQAs#Q@ifFo`2sy2hZruseFODHIf-QyO|Woony#Ou z$74A&_Q6{m@(<16ek$3p;1mnGm4|~$@ zq)>VjjJGNQ7W(!5-B+~;>zyh=Y_&`7>e0U-{%VEj@86LhF&G8+Un`2u^sL-SeKU;D zS}|->p0Kahn_+*gK>}N$A^Xq2GRP+lQrJB@#4OqX`M5!r{{G+3WPH3~eriy}wv?#1 z-|-aIkIl;1=JF5rwvR*pXr^F?f9)|`W`gxrvnKY`66b5Td(gh^+SuKTGlIfz#pv&E z*QLMzW+p>RGUSVP1MCjgwN?|{@cu4i>_1P^2AFjqp1aJj`NWP0Y&s9`@3O=WCavmu zAq?;DwZV3_JzaFW7>?g-kIj}oaX!Zg;<48W`{D$5mQN|Xf6xW{?CSRNlr2!d4Z31S zMNGG3nL~UGx?xKz8_9&t!u^iAV?R##w$s@Z+Go@QTVyUqWxWrqzbAd@{pZfHf1f6_ z=cGUV`0?FL<*v~FlR?-hUdpkt4C;^B5NtxChbw;+^3!Y>wo!5+cRAJ!7|;1ssR{jXCjSY17JnXCk&NtB;rZ6Bys56#DD3 zPyW6YABFwmH`rXNGRy^USN7L3u=mA`DJngJdWAWQ-v5Oe1IE8s_V+&0uczv}T^}!u zXSRIocY+Vy<`^Kqu@z#E2k2I4O+){4mSPWowWa3FLVIvl(A#sjxB31{uwLf;hOKqk z;+^($*dO4j#yZtQYzI zU^8=R94fpF^$_1*Z0!!U!blqsQw~Q#-{J<`pQT?`88tcW6)nxyRrQ$ z7P!PaA%3MKvAq-WJ4~*^d?G82J*R^e?upU*`!%iMa zwd3l5{-hkkc5S-7Fxw9E1H}Y;F`BK9qXE_vn&#N~O#4bF_dI`cgnZJZqn!U+?_O4(}`5VEuFsyNNHo>Bbc}p6*3#Dw=0h z`2*`2-7ECt?e_Z8!MC!$x{e(YJd@eAW@SC)iOphFd?&L2@{zGGw&k5k4I2^YKjQ%G zw&)Uzm+7#cF}{OsE{%hS6~>#{J?x+RS?^UxLj7s>0Q~noFs%k6y5%zDe1$O7%+wZ#$UeCZ@r`xvw&ojt(PFdLR+jmQI8AAL!eZ;nPo;b5r z2in6WAG1>2}cW=Zlq7pu>LD2s0E!Z13wDK{0 zfqdif2b*@kFJ$90XfKby*gZ)suTF0ohI+ma``B#VVA*{*pU)7s-gl+mIZnt&K4aL< z2_c-t|KNQ7Q`ikmrZ;63ARhhauz6pEb!F*6z7JZ&4vz~@;yMfKvmgf6QIx8ZGkPV8 z6JBS*)=be6m3aZ}8L}Fi&!w9PU|b9J_8RQ`W_^|iLl6&PYq3SmvqzkhVLl4u#~$On zE68yJ@_)oe?D`CEr8m1E-$iV}p8v?pr*RMFx2Wyd>B|ifY-G6qs2$i8Qp5T9XvjxV zyRq4K?261CgZVE;5_|RLuP0r-;d)}EvG1^ko{n7EkBpPUw$P6M-j)dQ6sLsE#B^>s zY-N8rK?QqRR;In11^OdF4f`C+^Lc|YXrE*)>`9h89kkh%dRB+tKCFBkZja&lVVWK* zef_8T-Sai%hqPnZ?w-D1>l`}h{gq~d-IOk3=i{%<(b;#cZX2kb@1T>1Gt=+E3U*e_16(lgVB@s@iI+xh2G2y?+8jc#A$jec4rt&9*+N_3?U`pSmirU1Q^xhSoxU z=>10T-{@MiOP?Vh^;To6t28N@jY2#R)?sUeIX#tBg!Ue6q{n}>88gFCm=8u<=>2bK z7+B#1<8Sm2cG{M!%GDO|JbLmkwyvb#oR&G{pUFP#x$WwqTQ@;}%?@E7u=^crOUAza4N&hdOktC`uFSSwhu0V8=-2Bx_)sot<$3rLww0xT=3)xGUTz-UjbD|bjXp+9l2kVjY6M5Z;z4_&nG+xMGRn*Vj$Rzyv z_nqcYPx}kkbfckryCru@K>nV*-`b7#-E-S|zXz6+Zs^&r`|Z(A2PEz{#`@H%G?622I0vLprTS578@9z^C8lMMI@@iF>9qz4(_ zyead29QJc#cJAvzm&9pWU!KDLr9k0<9`t2Q$snl}o)_EL9_&GiEZ+mes#ZfjW;N_V zzpcLixXuOr@ASc{2YI~Ec|W?Po_;+N4rhAMjF#-58DY4eD#0r~==&A@+s3s}Kj=33 z^q{;>jkfRRQ12x_3+X}o*F~Rs@DTFJpkq`IatUda{Kf(GCXakV4~l)9#(!l3#-|WR zdJmdj=-)S03GpS^P3=La-@GxJtcB0Beg52o93SO-e;$VVug9Fzthtac*aDb(QEy)+1b3MAq5<*S$?-?vd7z@PeJ^??kjlWk1lQww z$F&!|jMR*9iGq5hq{O2aE&tn=6YLD%_fTAQrx%sp(9L824$uE9^&a)22coo3S{EQ5 z{GYz)MLRwUH@-Xy>l3GuH@)bcoq+vs^BH>ox$AuDMa)4%>qYBM^LOaV zL;MKw)byg65%EBefz5D!kG5WvDAO;<*)mDL-nfy0UUbOw`mr_zcz>qTY%dbK$unA# z0qw`u%iM?Zoi?|>sAq@y>D<~r)Y$00ZNqkmC-=E6edxzugQHDX;Q35c@SZ+o7W>Fe zoCo&Xm_-%(keti*p9Wtbe)5Vm`jEd_ditUTHh(uX2k?0&QOZh(B_mfeSh87@uTu!j967o*}n^!7yB z%jIC`Z(YTzKGg7=JQvOe@tPpgg6}u*h@22J>?gSK_xGWkRbPW@u0s3gt(oaVHiK2M zO6#FLeK?u>(W<{K9et~yzAaz7wjW)~Ja=D53%;)rv1MyNTJ3Ogc0(TYNAEuIex!5Y zQqyl%xZVnEuH1dhGyNA4k2H(Nf#{qm*d^`mI+jQE!qp+8I3eCbEJ zbB@s`To%fI7DD;omqV)huCvKc75{35ROLrMS z+8k-!gIl4$n$O%AKzY&LycYxE`IOI|paJyZvPZcX=T~}vv5h~%=Q|y5hZ`+^ z0M(@kOKQn)hUA7#LEBn*RCf^3okHd-HyI#P0#0LEy zKmi|i_cfsmzquy__MaofW(Ls7f4J;jxJNpjsF z3Qs<`w03M|f9b&XLDWRt$#|i%GQaBY8$_geC9W5p@Vcn8${;HJH!7u>4$mL$Lyioh z4QDkUOB6!=k(p&ahz!(FWaLiRzY*v@J&2C@=}7I=Td8liTpdK7y0fXz4$Q zltcnb^s4{R+h_L0!$I_?G00@A7PMdUaNHm=og|zh$q;|N>hA`T+sqq1*KC--gktjt z5yL`;w>Ce#KZsO0h(=E=xbHHNkHt#t@%i#Em8(oG_ zaiiw8@|VyalRs|^p>};&waIRn-#8=g455zE*&UZ3Lc9f8Mh&6XsN2$;n4w;9k$5$P z%zo&E`y3}hJhCTezR*w$q=#^Jh)NR7V4px@|q!3E_$3&zZc?7IlE&B zG4O9V<$VC!%lP%!5HjF9-zm-rP zh7l>g@y)k+h>yxs&co>M9maQ`KSTdiKD|DSYKJ}`zwNM}=h7TBi~^!MnVHu?Jf?|8 z4I}9-x4I2$R-RwDy&6UX3-@d#nIJz4Rb~$(FD>d^{Bek98}YJX^xn$fp#2)uAG#0g zhLM?K$)OoO$k(H!zr)D!fbYe~AvnLmwaH;5o0@sF;2SfnkEfVM(A3d^z?W_-&x>!a z8$mzcYrJ{X0{N(yO=JY;@AYZvZ=k&lV)u`ro0e{7GHLL#)+rrLk{Q&~ z%xpZkzP})Z3>N@p^h^(p-!KtUuCxD5FRrl)Xh!6RvOarS>T5$bR>@=s48t z1{DUQ=+6$7hiw6{-lt8NjiLwX@z&w&uwK&?w#DlSBRi`uPnZwdjn9mt95c@4jT_+l zqJl4uB8TjmXFUGU|1M?MN0IO)Uh>Bn*pISd@x$w({Pw89UGRM=H|@KlXj_SkYjz>@ zXL9JnQ8c0{wR%n;)@RJWqesy#m%QT{%&@=ZzbAea`F|8kS5<`ZE9Lci6fwT+vEOR3 zvR_;OVH9oM?OxVh2>WZy`}6SqE%WXZV21r6#fK&M{WbL(8|q;_6*XNsivE>L@Q=%^ ze1GO-9loD#$G+;n(4MnjTX1`S`EpZ~fO=p-xqB21{SMhXZM^b*llQ};=q&$!PCI+p zKT8vz8AX+s9%o-XF2Azhv^2Xh9){REX@Vs{FPs}kD*|XRWoiikWXr@_Kcw|OHF!}%Fv!-Q~Sq|_tycl^_DB^ z9`C(%pwC_T#?ikX@Pc4sL2lafIr^y&HA-k;)Zh`*u z*ke7040OZf7=A%}=KXdYL$|)POR0N9J~exAVGM~}+}t!i2FEiv;*K5rdCmA2SpOxg z_8mjRZs9i9n;|~TD({S;oMOs>8Httsu<(at$Zk^fgp4B0Cxg~c#}Gwx@7*^kkl(BJ zCX695ffC!ikVSfY2r|7HLu=afPINm!``7-?8bew4{GL-6J7B)cEf_=Gu1|A%^&!89 zM1LMby}$mfk*kFMj_|1(Lvcc}%dwYW{^2>>IEFZ0?R630hWI9(=omwCC)B?)?uGf@ zNpD~b@k;KGKHduZ^4lF2|pP^<2X-fpMgL`9XR04D1(b+H4<3XNF>aSYCkRD_`C-j`mt!3-F4B z^?B}HnQ>IR^ODZGmG5JeBq@)hUHdOf@$7>ADx1$*W?FI%3&?ayV@K<*qx&JA5;Sec(QQ3#{kjm?&xp9@JdS!dYNaSFc0&GpcX=G`4sjpe zw+{B-GzUD!5$&&fZ%zw5k7JVv97o}i9)ITJ;dR%Gq2nm7@xxo9ALbJeYScKAVI>D- ze}?fX!Txd_Wd&t@_K|?`8D#Z(9PuiJx*Fs_J`2gp97j?Q7VBI$LB3b!Ef`0apa0-g z=!1L_clq-;a+#5+<@~R`8>_~Vt;$s!;}&Q?cg?18L{6>m5h#Ipn*Go@j*@deUMORM z{WS@(p>Z_T(kxnQ2iGg~Vj91`X)t-K8q_ycTS*h>f^qM*7Yh)dlozWfkaf@718dsg zdR)cUO`uik63X?7Fn*mf1t(DY^@>c@8<79Sw02IQ@H!V)PkuOGdegoMbg(Spp6SHO z_t&o|;o~n|scT)y2cmo$6R4f7O0#p074{Eubtlj@)#E4TBA|Y0wmCk5HjZ2oEz*Pj zap$tZ=Px@DFH#TpH%L1(fo!BLXo1|Yeo}V7Jb^ZKvj1LcfqY^w>p6j3vsRg=oPz6h zoeG>lTQ9qw?%DzCZA)s{1bV>p_|%v?SRycb0&#xTs`A(d`x{**2@~k0VDRx{Kjc>O z>)Q!rwk_K`z!&0&lR0++y_0!ybn+VP-v)IQPN1dB9O=$;P=Ak>ew{%3zGrT=-?Z|4 z;BDOmQaXO6X1yHj|HnOTn?PKJy&8&*upc#euWtgW2U%)~48!@P0wyNV&}2oV-}{yJ z_g$Po9F3*z}NJ;E-V4gqp=VZ{@Npz?ofOX?GsF#!@Hcz686yxskw@^<6 zCG40)p9;I?irZj(w13<;iLP*}m?xXS@ic3dCQ-FRu!#PaE_(cDPH0S`uLZhV>$_pR zDGKOMqWwmK;mS8x>Q6N@eEeqqs|VR&Kh(qZ)FjfMecW~PF4RAi1eZzV{!U@WfMex( zSIgB&R5O3LbK_aaH$t0zCz0Xrt^Tk0As&>igD26})(=%t;i`8y&2a2>F?3zF-nP3Q->8NQ3+* zW>taj_fXC(l?MBft|c{-i0T$`RKE!7lR>H0Nwn=j(`uxik*V<84M{;p|Q@x98JHV zUUR*FXbM#w{CG0=9b9j_tl<=L;Yzn)V_==M`RwieirRxZ6gg<{Yd#mIzk zLVa6q`fLh)>ATXJz`gQ)-QCGkC~)jCkAMnza{2ufnidhPV{V1{RjfH5zh10($EzFe zuPVQM3SDt%JCu7F_M3VWYNn9ywU1jE+aUhjAGA)P=E1{hq)(8qJ#O_)A!qyN;qMey z>c<bq^$!z2tD*A<=@N1i{tmpbro**gLsXh%1@)o5XqZO9+1CijcU_q%Z)JA;O&sV z-4=DHQCHj4&0%AxFK9c>rqN=lqaAl7#BYp=-8Awl)Cdk$fd1vXdwv?pIY=e6AA$Q5 zE4e<6&Z|t{E6j%R)xZ=mjeaP->=u3j<4Zy(Y#K?OoHq{~hxLMJ#M5cys?8io14 z`dIP5e^(};&V9lJ|CFL;X1d$alApN4A^sU8b^3F->BL?YlH$K5^}XHy)zhO#|NHCx zJWb#&7p}7v+g3rnZ9XwuwC#K%!^-QTw0lEYaWiG3s)O(T|9bp?{rEKNNF2SU)`&T`JV#`Dn1=A*mm$7?N(;`FuAr&K=bI+P)h zlJ6U)un_s)f#UVFICtUs14_Lu&$;tS4=G$8hYu=6U8Qh0JWNizglJlu*wuyE^=N$h zA9WAU$kE(<65hVoVxk@Cpv_F<FaAI4S7+d(-uDWLj9uaL4sK#Je)oG+zb_Jf7tom~`(CEUEkdz7bS zAz$ZiPgz~|yTG(RlNM)uW1GN(Ka@)%?T(r2N?&XBed~=r;SqP8&*%%A=3zrW+`_>6fbM$JOAsp8t?xOlb_M+#RZtslq)e zC^Ycu6pfZ~v@ta~o+9S_`In3GM~dBoUe}S)G|C5kzft2>`|9m}u*;BSHT6g?5 zcc8Sqm5hu!szsTK;j>+!u~XF9?r{y{<0ol!62i9H6u+;n&P?C-t4iPlGCi2wegb5GR`ey!>FFaE30 zMkNEz>Wl)_zOqf(iQQrd!go0oeMj||d+KBgQtJG_8 zP%F2|JT|`njz3D=Dz7*vb+QX>tNQw+zUw_Y`}Dn#Ua35K{Ldw$S2qMLboM=CcvgmL zU+a@iNhYdqEPq~pwe&-^`~y0p(p8$j$T;pTY5zdAu*`jmI=BvP`dsnAmG>?hX{;v; z7%Ztsa@;txmcNxk-4Oa-qIQPjO)Y&K$k9PLx=SyzIUtSF;{fkv zOn)-tlMp4vU!dv6Su0B8@0WEAZ09I-5_5dvh9@aYg>H#DNBAfm_q{hHXGl}*Q!aWd zc!*JGZ$syD#u+KM)?6)6$H#3Rth<|kL5?!1X);~g=b?zD~%L{uiyr&(J_xQnl`t&-B676wcQ{O3-qB<;18{i6{ zOmDV4`O)z#?PQ(6p_(-R}meP=4+#)7&|B`@eaw z0Xapk|5R2wT3{=2DC+qd)Bnb0I?>4S<>0?mXVoZwBr{8VP_>`__VM^hF=XUr$IJ07 z95r}-{PAPYYZZxQ&x)WlIo1EhA8|i7DU|8;tSa}EruJWxlc-u^_tnoeDd=vVGM}SB z1!0h!TDN4WxJ$N9=f`^WJ#nWuE^#fkOIN9`XJkQyeFk#hh1ur5sm&ZJbwr zzvJKg`1c0>t;N6n`1ik$(N_K_(*z_njpw(orYy{!xMv&Of>6P6yM|LU$nal?x|{1i zRlUDFLxbZI$O>Ip8*$eN^^SyQAEkJqSEo!ikyJBKdAeuk>5>mf!7L%{egG?Co%f6i zG7v7H>c4}mH#u+({+6@wI4%%H?wIoh%yLBuU&~I*v3u zT|3(s+|jxmxwhnrIP_9+xLkau6;0L@^{Ot)p~3dcF+53Xh`)k=Z;jt6e8}%ySj?dw#Ro9 zzI-;wTm4#`2tFN*L{~FRzt#VS4E*~wuj-7T3;7$XEf3A0Wh+wfR!SGL{ZVB~J>iUk zJdEm1-hM*w3=F#FpY@_C0r7+#tPGSG+x((miA?|f`~7x8t8YWgAVES(<4%{ecUmLc zC*fX#+E3BU_}_vUY7sJjzV2vfV=Z!L>yQuj|B5KS9};IiwW?aAsC{Yj)InEj_qz3O z2uHix<|~I7%20E2O}N0O9_04AHp$a;J@?n{r8uR(xnm0@htZQQC-)h`|0!% zq}Ib7^3_KJWh?%Odd_edS?*0=?^5W9$n^5hBnzGKtO)D;(FDgkAl#%t|66jbT#o+t zn04+R`rloOiW}JQUv~V<3;z&t<;Uvyiv$02ztKSW=d?ooX-6XM=8d26BQ@lC`)|L9Lym-eOtQ(2oYl%?C!460U5>~SEf7Txu zvSx<-QrWTj*eeIZUSG3VrEHPP_@`Dy`L+X5d}fWp+Rcp0t?B29ou?g$h6X+UM5qy4a%?5D^3aXp-T7tqM1I2KYa!huWCfN$m*gaSLgnqhSiS43l>KK8{s<4W zC#oA;-V4+$QBSOuHuQG1Cyt!bICyH?DrIF}%_--D_Qck)+u?DJtCZ6}dgmVBX-`Cz zo?rW3gQTqdx$~*|DtkipeCtoWhIy*fzYEXzcH0pSAu1YA`TD3-UeV%BWp)Jh)nB%I zxzp5wAIqy)lkA9&ihq?il%G@ojWV8{2(Tl%rppQ}DZ}JBImwYW2RlNSgY#YZ?oskV zYp?K1Ej!}EMf=pp1#@JV-P5KYci0hc?RsD84J=aUjz=gbvDgt3;^*wVmARGOlg!k@ z|DGbezc^;JB{L|y|5A7KDLqBV*1a?u<7QO8onrXswcVEXNZHH3?vCB7l`@%f+ovkfdUh5PQCQ|G8V(1t7nG6eq=#Epwo93l! z`U-8-3-;f-*Rq@<`mL%A=d1sab3c3>T<)?ZR`oP2FBCBKKH7D2-4>I`I6$`A&+gWQ&eDSv>(wmgO*3B~HZQS@n>!ZCbal&Q?ZRRLL-uVMA zgReAgiEnIQZ!a@1Q}buUKSYY!68@Xtb!XlgCdcw{MF%k364%+17lgG1|^G?0!JGWNUh9K!j_uLU@ zR*ns-Ghtx1A($rDt-U|jORnWErgnTjNmPg{hCg*(pnl8W#94g%Bq3;(cy&$6IMpdS zBPRaPN#d+u&sF~1Kja?K+vogQPZH;@*ohyM?4gD=M|(MZwkAq9P%k@f8XzZA27es9 zZA};@{>_@&G)BHwb;DNdkTr3%+H>lS#5`Gxa{e>hQu>oBDx^29a?p}^5FXe0MRArq z{A8eF`zlM~Vr!0V?4D-oeZ`^{mNE@Y*(=}# z!G-RK%Ci=cgQ~Tk*lC?0zRCV#&b&KCojVzQUWerbQJf@VdU@wKRf0>%e_yFN@uycY zvB`IVe9NM-kw3tk7(n;;C~W#iJ^i`#!h)tbF=u{E@%x`yvT}8oRwuJL@#^zweuYB| z)bq1)mS0ND2+p?^BEI~SWQV-m_Zj|XMD`CyaS6^D^1T=rohO=RgzDB8f7Qc&Q;h|V z3HdUc5tQ^i+h;%KsJq`eD4Z!VC7!A|cMMogQ$5;K?jQ3vC4wmIIa5VrR6=~q&I6jJ z#H%B&yF+j0Q5|@QMPX)Bg8Wrk!1^RP|#yENvRciCGKTXG(q@WWGqQ)^euf1W_%pdb>+2^~KnO>G#DZM0uB|g1cu8 z*`bqi^w}*FqPk*+>M1@&Zt36Ddt1YVh*pU??OZTQy?c9G;Uy*$;(o)oY@yf|>Y$>2 zlU1=X5hp3Nx+kNP8t9cIqjSrckbG#tmi)Ds{QK9gZ?YQ3gvM*p(Tedz>cx`kBq1ha zLgh!`^n~;P^+$0$jkDN@nBM=UcIoI0)yw4Bra3<&B2@nCVUxc<$*gnvnSa%dh*e^~ ztm?9V$kUQ6p+6aoh~qsOuDd6v$iFUMN+F62iDeY05zjtOJ#d(X`Hi0;@#fb+u&Le< z^{rHXY_z%|kx+W^#O_DS)Uu=}*Mk@hiCAtP;}b0NWL}Brh^s}%h|ICRm+ohlse32| zBldpB2$5R?c^|ipl3$!+2{uwcMjRNw`N*SuhPrm$1xIzpV}y@WLHS3CX7bwVf4 z6Wy=-sFe?TJKAp@B~B5(o6S?Z$lvd1JuPH9O0Z8Ix+}oaO+6XaUi0#nJ`w3PX5FxV zh+LeP8{*HTPw4%N9+kQ|Ks_{FS?YL8k0|;cIJK~=j;f$3=&i$~M+7=K9UjdqB6lVx z=1SbsB?|TmUJ4JbAjfWUy2QhzO9C0((kA_m5VlzgkE@3MP@f-&aBO5e zLcEBW72$YPNsaEBk1OyyO!!rt4PvujfrwTZhM(o;kv zKTs`qytpOicZfK!+R(RHx0k$2{xn+4c!;K30iYB=?t2#qYp8vn$FflS!TmlQL%zNW4_)3x4^;Q(=2zWIc2`#bW$PxA;x1|?#r zN_MeO71h}&P&LjHT|3)>&k zUg8>+`M})C461G14%QNq1fjZ*r850)Ir&OQE=vk&5Aoyc#MGuwU#Wg#KFnbxF{0{b zej=&jJ9*^dHKyyNoy0%mn@{7sa>z0T(Tw&aQ9|He_kmGrA+?&bo8cHqnE3WXOT4i; zgM8e|gn>d5BBqT{U{K39a*lNc!zq#=5xuCFIun#n=3xYo* z_LKMsxwXq;N4nmVO^%!3x|xUY9;>Sq70#xA~i3wA}+==Yr=H3$*+@BNwj5dBvHP^Q%H@c9!O3ieP3RO*qn@gPjT8O9Yu|h&A7kIas=O?Y3L8Gv*FP(#iax7g+qNu;s_wSF zUA;4doUsSr@bW&?+*zVWqsEc9nL7ktSe8P@H|2b4)>Tpco;+r?UY17R1~zEBa($<6 ztRD(Gvb-M^zxFGQ75_zb<8o$KT$Vvgg%%$de1DUL)VV@LmSxe~Xyd26Ltn@*T$|T$ zEz2Pm$0g*bFojtmkuDdr*_TluC3I=iw_0em&j;mq4GtZ zp%SXxY{7GjC1sTF%T;Noa+`XvPgF#8Nd*m9wVbkl0AWC$zd$2b{wPb@wxo(It9j*` zikir4UnlJ$Eg>XnS9wZ2_6b=+#qQUL7X^vhEZYTF3{cN+jo8?>L_vynsqIA(8PtK< z?%&_M)X>GLbkohEU1a4-%dL4!YUrVy)g4cVX7cpo>Gl*ab>vaVC1`b`lbmLeCGvPl z9ohREspkBsCl9TU?!M)vf!sw$JZ2(?$%iTuce^fWAm`45gnL~rRsB-qpoNzv(rlSQ zjsq1`hqdxjhn6(a;&`~%FH#p-E-7z9+Di+0GhC^8+0jmwmO8H>xTJ-qdrsUP5Ur#B zdV6G^#p@vID+$n_XYL@!Z$FMk77rrBb3wAdR<}_(g6=alcpgIWk$?HP!g8qrf2I!6 z77w8s#-FB^{|2bOlJ_{1J+%?vs*w7((;Z~jvnIzv7qt}es8laddsd)ZP`+FA+5wU5&GH|ArdU5cE+h!Fb%+v8_&j5zedp7@T;WNo-2)o! z{(>>;J;FR$C^12%oXB}~UD*V&g^7-*N%T*=^`+q^+z21N!>=Sg!(Ss3X6m&pbTf11{OS-d=O=OZjTAH#52A zKESzX-Rzw0!%OA?ljS>Lt-sUoaV<-zPQNSKe5^q-5OzU$8f~ zVB7VHMJj`HNXfR`7aUrAEXZn{qzcLCxTr1o0_)}%lvfHbsps6e%LS-@Aiz{)mpk@- z%DqpxeK^q%T(Sa%%^McWb3;}-HNWr!%bt9^zpHAT+KH5JFPrxRW*sLJ!=)$6Ps|7V zUbXiJ<`qlb`Uihf=VYn8M-%-)!cn!)6t_j{8Oc>Uw!ZKO^}d-r>*c4*i?^N0TRZO$ z4j+HC{K(PC@(0(J9JRC$07i;hn!6Hyme1LhnJOd(fTy1P!C%@Y%Dam5Fa0SC0I~0M zPDx(-Szea_>pFi2fW?E3rb=`D<-D4*PhQz=0-cr+Slvgv`aBSzH~-$y-Ts%#vV0lCoC^fS+gD}S zFlWkJ#((&S*am^V4x!&uO%vsZxOT#h`-4ENnkqNMb*8-fM^l2v^B{2H%1-}*ZJ)~f z#EWn9%msmx?hOUq`hTf1X`Sv9O2NR{^k$LX!QS%7M@zLkslgyU`(9;i(=wVM!~a`D zKro1}(R#Ug^Pke4y%Y(tL z7yic6VzcGHnXSoZz666Od;^IQZ->i+Kh)+XEd+x#QhVi0zW=3G^L)+NrW69Uta_87 z+QP?v;V&5zKn(#Z>XNHOvGwhcjnP^a5CWQQ9oHnS`%8Tv--p^B2muDJbb&aYzf^@6 zM{IO2h5)~fdOW48+NlBRt{F1rA>cqjweoURZn^%T!CT%hA>cHekvucX%a-@D=$)7k z0T)A(4g}p7p~3v1A3qdB!9%lWrCYszl|K}FSoYpN6l`b;5`S3opgj4T)}C_zP_Wv0 z!y7kQ?8eu8C>Wrc_?_KCrtw@ln3i)P6sWkkIY}ChmA458_oTcC1?+v-N}dHQ zP@CJL)M7t}f*uXu#LjenHp}I_ec*g3Ae%{U=$#xdk4qo2TCErcz6SxZ$EV3`i{B9v zw)SDbc0u@bD@BNgee-;;Rn zrL>@_zuET{!oevQgM@@CGJCasY1{?7aB!b{z&yO3ht~i3tjRIIaIi_ntZ7(Sko`K}18e=i;nBk*7zCu_6;qRN2EHJD(;U2 zue;Y*MSbOACv;OR_;Mow!$#z>h<$(g%DeU=yrv&v9#^gRRONQIX^`I!w6zr$K7YGH z!YiJ(&{(%&_CPBPJ2@wFIz5=yR%9!9U!xT!M4u=foQHU zGoF30NB8gxwey-St zdgy36%?Q?YWYg1H9wLw4!?JC^SE>~FvkwGDOxlRQhlR0PTKWQ!?AT@FH48i6!Ryz2 zj867O(eAZTZI3s+g`Z@v&v-W@Y@|NGr_JmwTyy(asl8Pst-JjMZ6xarFIJPA)Si#?kolKtn>hJ#=B8dxvuN*zur~cXwJ*cRI^u)ZUxBR`?RYjf= zm6~;s)i2U-q={`Gcju$0(`q5PQse?PYoPV z3Y{LeL}(?5R}3A#g8j2g-5>v=&`v)o=;_sc1^)!t9nMkIrG-4PNI^1QLaPbWmBFp+ zXz%p$uDdK$!;KAIMSaJ&(`3_S9xg^y!+XwU*Ckqf*!HYrq9Kh{FzC1cWKo_Mji+j* zK`c@QqgD7rSly8{gIUc(hIcCAp|O(oi5>2=fBUcUzx}t4CTM@1HSq)*#v zk*#0sG6o>b$_k=PzxJo8O9-df)mA{TbbrQg!&S6G*CS!NH&Liyx;u8B?8Vkx%_jS% zvZ2713*K*S{n^R^_fFSsEr(aHD~}xFr_*fNkLd9pFQA{JgZi5%-n6upewza=%HXqi zd_K4Kd(phd!s(j#gXHVXd9&QS| z1dpM|ZkTq^Xz)#)p7zRIxMf~Jz*qsHRf^_n-!?x7GZ`ei2k&iZZoXN*8`aaHTEFa( zGY8GtcM4OBR%oTde4%71+129g*zc)(WyG1VpfG*X&vb<)?5f5|Sm&wA!mSdJR| z|NeUbN90kV@c2%!q4`Fu;$a?I+7|H`gN|eXRb#uKIoFr(6J`aueLW5+KbnunZA z@Gd^Q#W@QK9CKb}n#!~HUUzl6R-Xlw?G4lY--@%99<>T8m7NFT*SqiXJhfuyW<1d4 zT)haQ>MmK+7~xDMhBJq$PXy0aI*n$P&|xe0PI58R@iX3&PZ>%>wv-3F5)>zQKy zYiTf6A@-YNG05YSy0o{d%*3FkNK-^3hhRy1jkhP0eJr+V3T>!3R-MW zu2t^dhv2yj&Eopf6|~O8qEYLJN8qzj)j-i@8@8OZu*uAZ67a`;G0aa=ncdi^l=F#E z3d)BMXk7IRV2``rsQ9}4F?gNhm$mlW8f z&bXv*V7tfko@g3>3Np)%WV8$TvENG`*dG7+88BnCzyC2B$fjI0`{+{r9NgBjEIxlj zi+#^R-PN(U44mEfZkxIjgF^7+VeUbwH>OWjUzUAM50 zspq!aX1xL*KApIuv3VoACF|xcQ|>FUW9Q<$SWN)i^In|e`>i#ga5>>&`azbsPGxIeIPl;(jZXt`oo(Y8U58E3O4g1hyK-bg!lj`8XADWa>aT zzrEm!3NNGH-Z-Sq)Uyh`39WIOMEC{vy!G@lDas2@(mcWJC$K`Dv&(| znI5mF-hiVD;Zq-SH?XfgIeW!3;4R4SRQQ@)7(@Gb%6QMQs<*&<*>UIoMK4;V{3-7! z{dXW{p~!X=*}~SiaG`eg>^mSycbZF^31@$OCFEf>^A2P`^-jvS3#Db0uZ^K>dJpJp z4*5CtMADLmi}Tr)@4@2JT!mMbQU4u3_5U3|uIym{JL`E))q{(5(9XWYm2K_!_3gd! zda$%=X|~O=aGK45)fFYV#2ES}@mjbK&NNN(uUeKfHf z#l@SpGy*xB)MAG|Bic^Q7UQM4jliw3=V4=W0&O8Lx-z$}5jZPz4QhH#*;9opu5jlX zf#7P<3qP(NWJe}^SYYTkfd_gy4+D4ZW82675D)fi0#^bBeYVZ6V;3F!F6E!r1jP72 zrPjTDH0{gJ?M=&?K#RfAKTmS@v&~dGUvv#Lf!}Cg+574J?4t~?*Rk@=AfZ&q{hgu} z+dC=u!Z){OFsC5o>;5gA9nc0tb@nxb{v?Su{f(>HKV71|-ETC5gTGxABBHjj#b+z8 zuWfAxr(YM;M3^69_uM>o%#^PMY_C5YyujYYmLA|U7&C7Hys!OZ&GO>dRe{P?Cqr6* z%7@|i-yM@_jY4#$Kza-Kx^IF}&5dRk?BACiRM7$u7GFTAUnqMkPq6v<;T911bzl2& zgFS5HIpgE^6k9>J_tnb8Oeb1c)4l4#6|LaQY12a=6r$MM{9WYs#kT^{$dr*yjl^7F+TCj?Tr{OpSQ_&#h5i&%CyEfcVgW(9gJIpm-@(({C~(G!C3s^DFmZ)R1sm@)4u1WWn?+jMHn>I-g+Fdx^fkjxlu4!57&W>45<^ zkK*rH{^#~$jQWI7VU`x4{yGRlj`7!`k4-MWU+PWI^ea~Q`Ww;Vfy z@ypNXy?ZcTE;tn)jMD}b7?~t84s=qwf$VGLSZc`i#3&wt}+3f`~9 z;BNeGjOCvjw}fH*^i0lg1KwwdleEeSW9=_qng!lx#`})3CdTHDU20NzpP3vV30{o9 z_6G7!35lwj1eo18De`}O&<$1?Cfba^*=SQxbz z9=69~WG8*855ag_UFW4I-e<5oy^Mj8T%+{B4DZ8NTXT(q(O@9sf&@lo-K2CfM#_=Y zV-t8E%)g}vJMsRcIo!BLj9*sAL|0;rRGAHWgpndrw6Or=J?WimGBDn<3vg!P{aO>Y zP-8J}YsoSX!MJB-hrTDq=r(r>1LFv@UEU1iWyfRU6pV^08f1b(WoYf8I)ys&>53@0xo%oA7?YMRepX-gh``(BLKBzu4%e zEsFO+zLF666z`|(8~peI-j{jaU*k63-&s5QVIkfpdf$n_OL)KO^a`UKyl=GxzfwBh z|2lWG{t3K~c1^9%5xgI_z0-|Dcwg^xAEXoT{@}Z}7463RjPF-izXR`A?)XtX8t;1^ zTevJ7@1K4>Ni_)X!=AKdjX&Pc{X)&u7yhm`=v$#Ub&L$oTv^56S7o zJUvVjotW=OoFq=n8}z^N)g4?lQU`YokhsYt4#xaNHF7@wevV6KVhkQv;|<10?oH;S zW2CgI38-V_;cx{>7`v~j33vP*1N7vg>I4_2V=(#W#fE|9`cK3OpGv5$tD-sPrMwmD z7&~8f)RHhd1^#X9m>&b9Z2@077_}^a_vK^M-uZEYiP0==YB3mN8f)DW2FC3^BT^KM zs={y7$QZxn_8E5m9s`3sPPUa8kGlPEF2FbzQSQmYxOMZVzz~d<#unQc7}Hzo6DSxf z*55f!#`yQftL)CXF_6)qeytMYv-ZC| zm|T2*t8SqS%erQ<|F51>tHQ{?`m|{wMl?T?aTsHIb@KX9jIg9F%n{?s?Xi0`Fj`Kn zJkEo0!7((iYX&HG7-_lxWq$1 zjTd8Qv$93^FYNbKcDq$$T%s?usR-kzneV$&Fg6^WJ{pG6ymjS8Cyex-?+-OGQcFr} zcrk`L)P3!q#@6S!@>DfOkjWiqyhbU9j#D zAI1ZGVL3fhW8jYJllw0*W{kPkUc(p{FW+$llh`5@*W(;Xz=vbn+S}rO=f#tFq-%rCF@|kY`8&1 z0HfF4V7tDFF_6=C&$|X=(F6Oq8yG801~y5soyPF@tm zDELE2d0=b|+z<4m)nT+vYTI-RW1rpCq*RRaS=X;bVSI982(G~BuM*p-hf!~}HLnoH zFe$3`;OH1wy*JtIHAanHyjyQ$G~lg0m4@-U@tX(H7+Xd~n^$6-b2&SskI~EAQ&AYB ze(8FLpCe=7d2Lqc8;s67rH|jiD0aK0_yk7ZJuMAeF@`rt&8)(>o1Lj-h_TkjlOck! zkg;~l(C`>=X+L%PEyk%oLXV3vj@+;Ld=g{)P!)L_#`==KdhQr)_!8F{Vf^*oa=$1> zH%F8F;h`}QYaCto4&&piUE_B#uFt)wa2n%j*>jHDG2T>o7qbRqSH4rWF~;QL`HH0& zt86C*Mt+WgpKiKR^%!Ywmyr7yX9ql^&R`5qaLw9*@mXqOg$G6;J36==qaCF{W*NqT zTUm^;!7*^=?yKz|Fm5-rx$ppEjn+WTS&ZM#w@vND_}}&Vzi|b-{=H9+{C|zdBc;b} zXrvX)0J$iZY!qt-{MPW?Ivg?s!YLwtb&fND9!lOfuQ>w*WPO8K{4=0mrr~)&|1aPp zo@JQ&`WN8%lVkYr{sJSuEYqelzkq$rI@(C=FF-tI?)?i4Et_5;WcLfm%ys<~RKd88 zjJB{S+u+`vmmZPXQ=yxT;%o3Zyrhk`LxM?cBxe+@y$+vJ4vtp}V)qYcT;^&AM*(M; zTq^i(6bzAHBr@-hf-TR+i_J1dLC?DL*A@4Sf<3+D*Y-Z6V7KDegbe#ppi2B;>>y*W zQE=keT=&P`5%5MO|10^;2>8M(ix0j(0!}2WYEEX30869iUQhRpfRebq%)6ULfJzGk zdyN3afW;ys-4U>dv*YX&(GgGsoj2{690np6dDAww4TJu-01fddYy5r19|frb~A(!cKx0Zp#Fp=$OJIBD@2*_Jc}_(vclwKA()eeu8!j@$56hgTOc{M(*mTLBLbcy)=83bI;nWZL2 z2SMC((Yc;ogW&$YZjtg$gP>#ZSh=7+2wKz0l53X^f_eE% zXDfdX0AMqbxV~=yG|QWwCN~cNdu}MR9u9yzQ!&fR?hb%UY2+DB-T+wjuz0-p*Z?TY z3*QH*56aRs~=4BCozH=`oTf+^32kTeo#H!u|(ruKR9XkH0I95eo%L9Kg<0@KUi9G zL1IZlKX`Q8vghlTez1Knx$4cve&8y%c~7HDKRErD@oL<%AF#i>ChKYS1EGVLw(pnf z2fJ7zn>u*7{C9mV{qH(g0{>la9{vC0>;9d8_y0Q&?*2DU=r;U! zT;3t#>TM-x|MInha$;QD2Wax&c%nbN5k$SANB~jiVjQ3BUoM1qeZOeG!s^R-GP!i$ zx@SQ7Mxn&rYi01c>d_(3=U4t){<{ChyRWPM-+ODr35lt{eu!AFj?96#UjQli>N+Xs zW}v4mn?$IB3^RR(-oFW?w7G%DUBL3?caTOBH~w$Fwer z%;keO>UfFxf6qnd>m}>Q}#|V+KqeWi|?H- zkmrP125*E7Dmma}`MeqT>fA4lF7Vq|@A{sNHi$sY4^Bxn?(<#RD_vmz*_~%Uv`Qky z_me#Dl@jr1K0b1RMqiI!EKXmJvhr2>ZWiI5)7D(z0=@43qNWB?5y1=aP+=DC>DrAM zF7VN}W1{wVC6V&HFr~{WL_F~v_fesg_^J>KRQZY!`}}U)2fut9>jJq$p$#&27Ra6J zkAgG9aNi;OI>ZH@&3$<(f2k_kb3Z`n^af(RVro2H;EBor&6m+MWW{sAr^lU$?NC+C zaDkfpcF*R$8)I+eJc&GPLBuOonz_Jo_9bT53xJ+_6`_=*Nvzl23W^I18(phVcl`}* zYmHpXJ}IKk#&QW4$Ug9{Q@hy#*-`m6J&u=HFXFj#N1NiPT%Kj9+!L1P_97j=V zdp#)LT#b8X#r;ZW_^MrQ&-Pj>s-e97pl>Pe)phSaa)yhIcVzzvNuvoZMxGmraL>uO zUEmD=NV9WQ_n9KQ4vy-3WZ|Cv_eO>@G>?0`Da((F9+fN+SeZi9NjxWC^;^;Jf0djn3b*w*U9>^f-&Y)#?Z$nF(aBCHxO9I?sB?fB zx{`YSq(n3BnU7K%onS@UUb1Sb9(v?xY_4cE?$vFNRXV{P`sHU`4JhdPJ8NzWmg1hn zNqOW1o60xw@mk8G=C=$hc#3czyqZzuwIn?xagY`T3QXO?)d}22iO4OgW zFT@F6`FplmDN7gqrG7c|=X#=k)xDlh@T|I4uY8UvdPnBi*7pKFVsDI5aGbdOrxg(HNkDyl3n}2=LAo2`sr#Qj-TZ6*a>g*7qSF4wQk|gpR zjgfGI1t#wsd5ukx-k;Q%CLSUWF>a#q$BUvQrVO&O-T3bNNk`)Rjht|VeEiA3H1;T> zrDrG;bzQh8Z3*vmgv$GkO!mCCK#PRr>|ZwFo+A?4=mUtti!dg#9_+p^SRqy5) z?TE5q@&!jCkI5Q_Ba};Yo`2C`gZ^1qI-YG#0^vMfuT(`e<02`u9_k#P$htmB8w>G8LT~vqn6ci~>@5h&;r&6y1v(cXt&jpd|06H1aD`Wbc+)oL#_pATU#3tM`Bauc1 zw7L9keS5t<^62dLeeqR99%E`H0}h=ro)wW+MyH2aOX5m!-|@@#5d(InWM}mXTO&qO z=Pz$BB=T^q3mEX=HZ7HQk`daT|G+vr6ZiDfmKhAVuqj(a?6E$QFkROiewfHZjH6ju zb;AXQ+o7k2yY~dg;XdEUG?oD+t*xgz_Vu$fkCPNPh2lP#YaGIWIfuXNE%|7T2)$IT z_F0d6Qj4J{1ExNEv^x5}IU1Yquxo=OvA%co84P&py_j4Sv* zIvVGE5)C510w0AAO?6}!qa&9idpqkK`6P+_ zvOE%WIQM$3_MMle$iKhm6Zwg8Rheo|J)>S`$VW!T;kj;rZy%$@P5>87jW6={nj$gD zGN;F@anCWEs|0Y@$Ds|4L(38NvrAV8iimjXbOC@Jva3315(dbdew`N`DMb8=aTb7< z4lnao(KL|^(Z^rg!iaeP;Sc~T#hVVye3M2bG@S(-orw6I0}KG`JXc>)F?z*bsrSk5 zwI>)ocz`42?BJtY+YVJk%x>JOErd(@*16(?K^I4ORH8RlJdA~3P z_av7_mIK`X?$Z4CwK|BqUUQ2 zmg*RxN(VlTp424bdtXr;AhK^wdWA9#P1$@T`Uo#kCoyi#%PXYe(SRkAC2l!RX)e`WslpUho7Iiwoa2+uH!8V0u^JUMC^IY5#e`hgI4kq%O%FyJ>8q^c;~+QnEu@s@#&a!*I`ekQqXQ0aSX*E3-xR z{Gwu%suK~feU?FkQ`~~oFGmpc>9=uzIZa}@S5H!Cka{CGl)Fg|5e$9pEzV0UmlzkA z*7N+w>w7ln&tunog}SMDo-0Q>sWAMKfXlMann=*f!(lwtRO0iRRY`>%V^!{}eXP)k z8=>(Fg}7(lODdqkG?9_j2Sl}z`3o)?(}!_Sq9(GakbmQH^UVp?sEU^1c@P($6a)QZDI9@`+6J+uq?E4yhk5jHj+a{jLw$SUhcBP^R#(%+QCn&H&}$OFhwOY zpRYe(Wk>9n)s=SeBI$u#!pbE`9GBCZUWj{A)QSQ-_&R)baKR}n#G~ac^Tc5ykCh9{ z4)Qr$EEhp-(Q8ZFHIIZ6c?2Cp>|m6#(wOgRHFWo_f%+szBF{Gmh8-Lh?+|3=sv~6u z^Q?UuxaT~jQtTkhYY;0IIJ^z7!aXOzywVnKSbYKPxIaRRTJXCPScrS3i%EekJQHrn7;`f~rmpTw z@I8!sx`h$T7EZP`1O{c>BBSZ&H?0pP@@VOY*up(oSwh|@4fTIp=H~85Y@Aj@5L>_5PiY**UbzQHqQ4>uR=eMTw5OoscTE8MDLq{0XY$KWFcJ^I1 zcz!9BP8;~VaRWv6qyn#3+z;->x zYO_5SNagXTae9YwPcoBc*}#E8_zHH|A_}_(vNb}9{EiYKHgM2L#NRRlLE6%kE0rCI zJicNK8%Q@|KH8PwfG#wypO)1i^2CWyY~btAURe_dDw^VQ(nNxX$U}_7egFA*x&Yf2 z-P!pnPNd74_&&nlX$>h#hV3&G)+oD>r-Hu<_w-LZmDW)6{bVusyA>L9j3GfP#65{j zDzJt}*`Y7h4_l!LX@|GXvvAK@{)dUhe+vBW_t^^VzxC?FbO@0@cs|$~HX0c|z0+rn zmUIeJ#~4KZoLRax)E|pkB6Y(S{cO7a{vd_O-!QFi4L8SXXJ*P#(V(o0`aNVKKQV5Y zUym)WZ|{IQ2=w3m-f4yVwPPJtaH)?-h5i(R#2>S?ZLh>VGkch01$n$hl_O*AkR=jF z-ZmHDp8jJn-wGPfSFSq6utX*bTO;dPxF;F+Gp*o`OJ`*5UK=51cKX7vLx}u`dV;N> zSLddLO*_<(+J-|`L7?bMZ-vgCHE@{zu^RsAZ> z;ujIrEY?violJOQT=vW3CFvq%mWY+-J&lu{7Wi^cz3Q-lRm+s#cs*7?Qp6OOAFH$= z&X;PA1)Q!t8`i&|jw;?rWv~ix&$-CSw}9#9oDMNTTlBZ|?@b3;gx9ZNTEJhuPdloc zY!G$d80NkZ+%wC|gDv2><9=3Bj>^dCZ9j_R7{qct%jgy``jtfG`8+L@zSjH4b_%iF zp{ME=uuE@r)YzGZ+WdK^7)>U88a|GEyBYivXlRDS?RE_e?=;7kYf#c*4m+r|Ffbfa;^37q$os*~XN34*C(Wvi67VhbK z#Y}S;_%{JOSUygh=t9_@A-E@fz7=c^Z>=(Y^!b1#8YjciUBe)J`VG1{^y`jkSsQ1C znErLTxPn5|v+|m{IeeWCoxBvL*v1!L%Q};ZgRPQYl1Qu<%;1mXNp5tmI(jN4yv(|Q@O~Hb&ESD&Pof;II3V%$ z<6h=0+>>ST_bi)pF#Ngb96I! zTFE{!<(?^W^59h;Z3^<>3M;-A ziGDW{M=ml>dy2Dg&(Th0nnFt2O&D>@4&C0TYb6>&c)4T2rVzEMkLv*HNSyRb^(744 zGnXEro5J~Oui%;s*68iJ5NSRN;RO$?n?iei>lGvGw2*(#(-3tMeFY9$m8SY;TcK-r zI_b_;n&9zbiyRZ!*fN}%>!*c$Z9DET&cZ!OagJ#Mh2=7zD5hJZHP#;@1{j22K20}) zysqmv^hT>AA}I=&JIF+ymE$B6NY|)}7D=%~i=RdIv{f$0{q|wba`-~&_`+RH3FKP+ zQ)(j%_oTc5=5jc5LT0&sqysu#DOB{DLHPGQ^ySbaRo^gmdXAlUGDxwCOn4!@4?>MV z{*Kew_wFq1=LIh+jq&{M-#Etb_|pbIkMkO6N1BvfDU0yA?M!2M?_k;|1x<4#xg@ru zn1OrJa4X#y?r_icG3hZ!cjPslzeXnfiYAgV6boV0{z_6sifyffE>{}id5Y^fM$rFK zdj5}f4yetEOV&9o!pps78o{&5r%x+1N}^(^{HkXegg;qJH-dY#*Lbarw?s^hVr5dv zxF->P8=|iK^e}BOM=$OAq0Fi@#QjMQ#}EoJZtbz?l|k06U1yodBD@^RG=xzwh^KM` zf~>Bp4%p4WJ@ZZ(-4Na~xf63USqD8;ZI`u;OnBF)BtxkB9h9pi>mm|sN;)$mlR|&s>s4*Mnc4 z?*8WLVva5;WG+=F6Q1acarE)u?N#*0?9dl7GK!VDMEq%vF1-9mGq-|mhD?awGm>WE zo+N#OsSD404BcMQNJAfIxq68)2(NdXt_$z%Ui;>5qAq%8Mc2tCWWqZiA?d=|GXgpr z`=pR2ZDuo1r4Dhw%Hrt26T{Wc2fVBh18sG~KTO;+vkozJ;OhFN64#6E(MR;E%vn0& zYY)(M;6?@V-5e1ebW2>M@Fa=wL?4eGhvzqIC`%x#9*brUbF^{q7SGX!!nuWQAE_3I zKk12nKU16d-nW~n4MW;0V}o@Z(Cl?Vjh%GD_wS->!_nS-9`>jSI)6nZ?JJ4!PCH22 zu)Q$-z$E&Yoz`2n?h{7~_cvoWTF{6)>0271i_lfK>NPP5FBQ$iyzTuxr~ld_s!qz{ z@9A2^buyB!1+_x;9##w5qnaKKf^{Uq6MaX9Ib*IC6$a=UyJO3$IhsU#2uBlontk8p zyk(qy=`W&N!6dw75K|L|y#K)OC!m8Y%boQoqZ9tdCb}kMSA6+YS7D7@qm~pConj{8GrgG_(D?4W!dQqJ zYV=|3^bI=UT{qA*;H~GfZx7w#N1QE6_zOvd=fV4=_>`1snoQ{+FUfY$U4lnN@Rld3^hMF6NX{9m=FX7BohqlgV z1p5&wWNEjl=n*>M`5o!%@PNUbOjC#f^6z;_!V`U6L?z0p-kw&7;)?>gIi?z3zsNzR z8oVgHep`hZf&}Zix{Z?vud$z`24_;Xul{00MVk+e8-XR1Q;~_?%kJl!p$lTjgae^ijHWFmF1E@I>Dny&@gaR33Ho zim9R038owo@4}RWJO88|`durE%CP1fkB|sYaU{vXujh{NvzGMGuK%vhJj9eG>H$ny zSeCo-z3hESWX+j8o&*x%Su~O?loQ+k>ZB9}5wX~wxtl42``30%8Q4Wu_Ym5zhy3{B z=(vMKc!~{41{R)hrW`qDg47*Ul#FId6Ze^xOlf!~Da_=Mx&`u5Xqp^OB0L%I^P|7I zN3zVz8flLIAQ8lrBH~S$QgF)6`^{vq9WwpwF2kQhc#1Je3L*l>!wp?&h)(6n3~#0+ zQI7#r5(-NE91GW(BqBA!ALgi{GTxAGpSp>INNFli(KBEKq00RBzV``Z0N2|f5E zUEPMnPt>DC;)e&H?ml3mDv#QclSt+yJ|e#Yi4V^0Es8kUDvffDV$_XEyhOY#i5FI? z&K`L4RRVpl9)K;MhsZBY;(>0?n;b2I#n7Uc?%4hy6ZJ@v$Z!*P+3w~XA@tw#)gYh4G*>a?E|1kU$+pYY$JT#_h+jsU zso12p%Bl9n5L=h7hOOr`kzbTFU9t6B)VHYC9=2kgEdBs;K#jk9M7%I*vSLwOu0SF9 zJNv)q!ioHNpDJUGQ11xuR<_hG8LYlxV!m}z(s0GA_)xj1?00No=2EPV0U}Sd z|9TFR#3Ydxxsd1^{g(?J@c0ehE;KyL9QOm^7r7rC@cf?MduiMtUeYZ06EUCS0{4@{ zyCdZBd2R-6kt;|V=l&q#=eR!{j$`$&@xD%5_#nuf;&v1BL;U7;J8ZD=&sg31m^PEV zlr+liC*o(h{SGEl0v*4&m9&waGR%JN(7*Y@xI+#l@u69c+3#roJ%>-k<9)#7uu&uHzT)t=YqbaH@X@_1fa`b}p}EB7}M|C9UM;r;NLnloK9 zw5`ya^ntrT^Ph2wYu{y|L#Bo!_yC5-yY#7tg z#O1;Lu0bvjXjJ*se&VYHQup^Dsh-PAj4$iw@`BPmMJ~%*rI8~g=^b@kJ|ez{%Li&7 zZ#deZB9B-H-e6X9`HB3UTz*h-Krb=&g%a{jp`ruj3J~>t=L!IxeOvVmcRb=QA>!M(OF(Jb%NyFhTF8-0lB{B`5Rt!?D+G3yly}8- z=^&HGEjq7pg^7BaxWXV>N0$Qg^^tW88_8F=B1HZVToK?Ct?MD2ZG>DDOX|$wiW2c} zxuQT!NX6T$(gbO0zs@?#T}tGyPM)Hve9M1Haq?h_i4rNDN-&1OqO z?NHjx6!{XD@MOG?9V@6ObHdviwcDaNnUgF{#J^3J20Ga>>YpeUDCMPNRR)*vopoGk zU{LAYbRf+Hosr)jcPd$isHY}b2HdBc{$71R4}Bb)$8(%Zcvdx61{iJJ->ND{K{tJ_ zjbkOt;=YWNEDIhZ`<4wpkwk|B=c*2H3EzowWkFT^37Ka19(I_B;ndz_Io$t#kt_$4 zJXb8=^h6Zl3(EDtKctGn68`iTDihUzdb z;X5C3OL*+KQvg9?)EWD_IfHW8&>ZWdNG7tp4RnF5$bbaTS5x^EDF!hwM;=VyRz_$x66S zEJ#)Y$h-EpypJr&k4zgN}-vLbJ)8f;lGtZb)XhrGTgUb46&1YcVs7*@Ys2y z4n$@a`}YUyBQ+AdNDQFh{_+z*0bJpuH|0NDA=Y=Oy^+a;$Id4TaDIFsaAE~OPW0_f z3Wc~QIXr?C5dG4SWyfQKa^5}S59AV_2k*nUMiFW@h#H`6p<_vYKm+#`cYy}bwBE71 zSy}*XxWBy5EBXJU>$>A=`v3n8Ee-9xXzx9B?(4S54n5jIb*+@7Aw)`6LMepM z>D+cnNs$m`B(!cjG`{DY`|k62{QmgW{p;A9t4f6WfHTX(y~@?Fx>(RU_XdlFhS$RHz#I6>^7C_kBc#ENOHJv4ro&S^uG?8 z@ULp~Xv`}cd}}b)?i4}eed!UJ5PhoY$4z}5Jpaat2}gp)!_x>&=-jKVVHMWx`0f5H zLAwbWr}IV@CAH1bykLO+OjBl9f);)KMbLtU?Mg$A{q|Tz@YbKk5fskoKOdn5=4w_a zRAlV&2(zagJ%Yy9BoSI5oHOIYV4^NA{$+Z!<^+wGBur?5S(4^IMdvZcz0v+oYM@Qw z>T#eA^Id$V?v63Va!m7nDMZltp3@Q9&@yhXxImPN5${EgN)r^$CZY*#_{#UtUT>u( zem!>Mbnyuqr}JDciB9UF_mw3J3GQ@d|+RME{t^e35#brVp+#z_d1Qh4RSfb9j6*y5KQQ&^>jOa#f?`)oN+?@k%1x`g8^S4^ zF}O8C556o3I(Ex*HvalpO?gcrjeprh=t08eSxzrYHSk48oZ>3RX}oOxgdWI)fwe4*E z!rh0fn;Cle>sv+DreFw=+R(AIDoAGV4xf;GioUksd)#15ufzFJpE-{!-l^kv+IM<*GL0!*%K(f){p3gd%_$3Peul)Kh2a#=4%LY;h9jS_ z_|p*<_(i=(32ucnUOI~~hUv$bwajRmiJjZ)tHd0q`3O^aT9*#J?+!GdjbrfwXKk1! z6z--BCa~S{<9?-tKF7Et5C55j)A#}T2osP_@H!DWieb@<*L&&~QaJmjG+_emA0JL< zHc8=zW3s90<1}71W5NV_FCJREM9Lo9bGG`eJkylo^Fsto;p(EHk*CXM;sNr<$7h7o z_+P;YQ&_#H)T%??2J1Nk@R6YU8}`NokzUE34b;7v(K$jUC8e zBRZ;PM$2`$x*2$kj%?xg(Z+N8i^$UyjgK7yGZ;__X*nllgFVU9?&|laa8Cb$HD>V9 z>sr%u@0oba_^H=D;WXYB5@80~KUhz$%G+Z`Z+f#k(kPtqX5SSv@CgjQoP9(Jzi7AW zXnP@z7w#dwQx=$0cyCibFkxAhk=5{cLI#rhCo>k`f`N2bG z_5L(2vvrL*@XHlVF;%j{3VOTV)Pz$wqkU6^Ih6f;@}NIi9?wiz8(ft};jBj+u9(AH zlSb<&s{mis)W}~}NaGRf2y>{Z2!Am#q=wa3E=uHlru*X-&|(hfr+Q_+OEJU6HkHd2 zjMF%sw>L=rTgj1&wwTC6*4Za&7F2)AR;yb;lHsp4jECsOEM1wXW=Y|?^VBUt*sbf{7v^lNboR%X zSSE$DispbN@au@0SRR>$S&3}UkMgH*_Da_^mcahn_&j2+2JUxvp!rxhg>!y6MOeb< zsoGx#U3NIAAO91cM&luH#S&7k$l80i*q}!c>5td*jw}qv>Top4olc}`t zGu>{KLyINUO3jQ|6QYKj$6@M0<8-@pUSwslk%X9DYrJdM8|Ce4Rump(t!@RTqa|b6 zs~j;u%Rq@uObX{rA-O|u^eLU&aV8kMS#T`C--?!Nvo%)GU1bmtPXsWpoj1O$4ySNd zhjD}z_}G`anRU;^n>(BfSESMWeGIQy!O!JSej3iS!lk{xB`z(b`IqPsR`79yM(Xkm zCjRHqi8Tv9)40A)ixvEP+rdgFOUi4k!7C$bLCTL= zc#7()ALii{&gfEzu!h`wm~0=v86LIa@G+w_n*VIME7p)VYngFYr!}tjz*s@Ikmi3v zny?0$>I{=Go!R(m;no{7KhylHC0eY3b)B_p-2=cOFiBr!oW|+A(_IG+iC+zJ#41|n zXUM79Q0*=hQMZBh^_5kzF80{Krm4!3ObTa33V{uX)*L;zzQP78n^JgE#Gk_11^jDl z;7_lX>8vp;%=XE_PX2HT=X6hruz{rCFP2xeSz_}~+RtO8(fm~zS8Sl}h#ANGs3kVO z?{Df~oaR4wtk4F$Z`?PlYp}$YM&iE*KGFOG|9-ZCqJa5pO+Q*;PS1~;_KeZ|={(u_ z?dQezU$ntq$MOVyU*e{Vp|7R*jJaIep>$41hmuYSWQoK@M&w1o>L&1LyaN339Z zOU)-g3g>+8_P2$x_jUOTngCa{&+dD7nC8>l5pE0V2@0>bTFu61EIT}-K9%M(@iWa9 zR-eGCuD-FxQ?D-3dWlmwTlhzzEeLEWd)2Nll{qgHWNR< z{cFt`qxnlwdA(zbzlAm)(%U{&f~I_8+Ej_TaN{ zdpOrvkZyC#8f$HQn7S*K=2QA4%^rgG?fFpFXot_!y=$=*r}>=8E3}8hJEm+r9;b-g ze7Qla`$Y5cy#LuAl=5zyR6W(lZVFy?^&O-6$WwXKUmcW|+b0e9`P3^#UaAfhpSO3^ z93VYs&*$dNTDV|Fy3G=d!r5`Rm<~|B^4KBnhz>TadE>gfAB8jK-0*jRCoSoIPJB#! zgVG%#=fgCgk@Ro}&==!(+L^0_FFyTXJOvyxMGVeCcF4Pf`va-!_F%#3-Cqf0{WPTD+<@3zO@W&rs@=@}qFhmT3Rk zaPa=GRfpPj@gF)?lA?!cKL1XH&xX$j&d>B#vA`l*JxushDV!aBG;KCW&&>F{t;ZO@ zU>4*uUO@AajwqZB0?W-b6Hlc2oAMIl^jf!Na#5v~j~&LHDnY6wZ9laLVJn@n6tG*P@$no&U;P(xc9EaKe3dZXlwJwFx*Yhn3$6&P+-`vqaYkbD) z<3)*=DV(!pUK$4OzYV+-OKh>Q+qElV3g~t(xfNpIU(~$0<)l33Ql$L-STlWntJ7x; z)X$q*Cu{29>u+w~8a7H_Pv`x2u>JJ;soZS*gLmPNy(&zq-L(#COjz)1yQRq+YwXr% zY2QFc3TIrlVKU*`)aybygc??5zoTlSFMWNzg+CM4tv_KUFkKGE0xL}X!|3bzO~aX> z)Ur@ksn{H!7N&iA#bx?>OT#oKM5rg3e-^`V<*kul78g)B$4|GA31a0ti_KH)up_p= zP3AUJIP19PXC{mk9(!xB*95cr?Xed|>Fen_1xv3RXPJXCW_kSCeOncvt}jzo12EfL zZfxoGy&z0Tx82l{!Z|JSOn`fPB_}L{Rqz=H&&%lf($^13`vWv5x6XI8)5m{(6mrlA zqpuf|2nU!gvS5qqOmke=Jbb0XW%_z~(KLV!dt-GL+_A!Uh7IkID4?&ODO3m$Wm#8v z%f=R$D+)d+)J$KmH|;Y(Td7FAWtkn$%jZI0PuEq@-Ix5Q+tVJGy_(M)6=RWjy3DvZ z3udo1S^eQVso#nZ+K;GGc&p^78Vi*7x5*6cvBgz3G0g^yDO^MBuL%p%gRD#t&*vaHC|I_^X{dm~74b z!}pCTJm7wli4&*}&sX}mn28;jqHmUsQ8?#RBhv{kzAg2BEoO-Cd@IzFxro9U>)tFT zuNTNO-PNpy?V0;K`i38cvux}Aoxslert(i=CMK||#wuel)>N8FthtK*e7-EM@ZD5O?O?9Hr*Hvjw zq+fk)VzitOdoQ@{#+huopDq>moZzQPKY#2LCU$qZm+dK>9k@`>hik@MLJYBL5B&3e>vADfv?VO{ii{R+FC zK=#;=`2$QlY>~P2>d-No4_y~zn{KAPTACtW`BC7*9x-QXyq}(mJ3~m|m2ZTkBR0== z)N_}rGi?{1s5t|xG_z#4*xQ07ZvEBUj43=|#Um4E2uf%Z*qS^W_Yv%5Zo+6jGafRX zVJZLF$OWghupi++vez!6`BdaCc81|A8y-sUGRF63e^v1Fqi|N(J%49Vbv>VVa+f`J zGO0DfJCNpMnzhpzOqI^_)qUm1lC4|6ElS`th1iNAHm z8BX0QmxXFO?AhJ#m*=O_e6X8o&R}qJM9>wJ!zz#c>UYbg`TV+ekL-Uyr+NXuKK@3T zJI4v9$Ca2~=nQA7+u{~)!*JhyBj+4zXg>C7wa)NZk0CYj-U4e$nDWK;6V0b3<+C$n zG(AYtHhWf6{TTB;Nt5RjU4uj6a*HUOZ4|TE1s2|(b3w%AeZjA! zv$rMvD7>{O%HIWC*Y?bf&6LGcUS-#b22wc7D{`j`{9Cd%iEqy=9Ga{81rJkrI$bBm zJStvp{taE+tDs$KYAoIV{YTEYK$g#E>6x1haNl4-lkv-R|EETzxd6js{r;1W4etAZk&a@z&}lVdTQ|Io|kn0uY}aP zz}&g-R)PTcPTyJk(viYh%A1(3u;qN%vYDmY z_{|reJt`JbczWXc#jcPQ1pIRy`LVk_GLFT*bh|=p{axYt8gsR``^+)fv4xuW4hm-< z^502bZyB@AXg?EQKM*O9A4a!J*WqDY%-%d=V}MJ)D{gymnr_$E=Zq^XcfX)^PFW7S znZYQ^zD&1UwIa#g; zuHtSGsJrOSyhXFHgF4nC$5kj?qsvLn4gRcrB>CpJ9lj*?cyYK9g|pqk#0^U0E%FYZ zP{Brf-tIf#Na2iYj!ZXjjP)@tYO}>BmgsBmT}a^pf9w~#LG+>TaJEJZYq}R+x6_xx zTNm53*I4`m{^DLF{tUFGj*F+1t&ht#@B{uR~hHQp*~}bmOVK&hJnUB#p99MWD%3957-L00RIVDUPi@!Nvm8q?8i>||V~ zulHu8&4I7jnA7xaWos;fk;|(G!MJDMuKC!QcU|%j)NS7Va$Y}4 zH_NTrsMtuHad!;J7Bc106NfboONaEgN72@aj)AZ@eL7ATpiDKXeE-hMeY#h}!{!Mb#g8 zOQCgDRFNYl3r!Dha^Rf6V@Wc!ka zeu-}ht6ev54W`)e?hhCOxp-5lo8?Sk)bZ+F^sxN8yRy}J{qr4y3-K>HXDuZCevhpl z7dO5o_EuyYj+M#q=$=Ec?xoj)EJ5;I*?LIXWyxD&nQ#KfGg^s9UpNHf!XGS_?XV>n zL2)?)c5jK=xnAF=bn5cxu0vpl|5~)`pe4ab=hfHnsn~ENsL+H*cN~J4Ajib#8%ziW zM^bf{=v%@l>}dFQaR*-it%l$Ye81JLr%m4ftiyKb4e?aVyxO}6cyyy77*5?1>3Lj^ zyuT?>sPzpIHTV0~#749av?lYMH5M|=c=bGPG)-5I)-d7GRffQ9X|Oj#S{4{=oe<8$ zH^db~{v&f%%kk(kL$G*Xy|qA~4lpr`_gFBhL`0L_2hAl#{cq4_@Bgrp}uQg3P? zZrG+8gc+gzTR8~pcJrG*rM~+!@FCB!D%n6Bm408VkoVk8FtAUtb zIHjOR1j%Q?AoTxU!A`NXBG)&?y7qhnfo)p9;_@+m9zAam-bSeQ7a5V`^H`xLf24sh z3`#%yJ=lOp&zj6*_m;_!;MHTP4C&3S*(u3u|HdG!^1rz{R)<_)vnFN2tAY5*-4LB} z+mLtvfwBft{^NP|W(KBt%>R4YfOr3nLGZjizWg@z+<xo-< z9wSN-&7bFFzCcnxw({!RXzMJKP=Ac(&tnkOuPHwKvA~gBzs2(;JnM2Z24hUEIIT`XhP6SLZ`xqttN^c!msWLebzAd|uF`FBLWp7_8%7cf%>=?}X> z*p)TTic2yh<&RfS=eph#y=ggU|62`0{_wOht5zV#|Ehh)#A~96Jf*KrMf=}~9KYw? zh;!4;Nco7`{N>kc!vAq)!#xwUK3b%F$g-C4X+2^xIOp4+zIjaqwmFAwGML4?Uu6*L zmL4&^7f!Yx#H-(5SXcsOpEzf_OZF9B{{{wv7-J=^v#dtW!tz6=Zi*Z+N%yRHhk z{x&_Eon8}zcNQHL6h-sXIRG2?-qJ#+|8rO#QnDgkZ1K`{kF_OU`^?#l9^sFhbiO9y57F-?K-=+Z=`z9swq(_3( zuTKK%y6T8Q>*L0c6dAnx>jt3hW1eqsp)G0OnMeLL)e+Wzm!GWsiR|;s0l2Rqd^0wL z)E@!7dPu*1JIciHNZ)IzADW-s$^4ho$o6^l zm*fo-7F+CR^2V1r0J5A%Z~w+wkp98@))?P9!n-=GqPGso=Zyhi`*mE=rdvp3r7yPa*kBw9c`tBYf>Q-5$9z!h0V!X#lS66fmBhM)jXp z@9Ex&&wra;9FTq*0E=G_a*FhA$o>6ko67V$LLn_?OKc5VpD40@cfMKtQE!+G#&646 z9j}O(vy9IQR;I|m8Gz_T7T6U@>bvE2g$l*5i1ZhS(Sfy&^Q3o8`_Ok>JsHko$9;zAt$@Q}MRFXdJitCM9 z!p30FdbwZL$p0CDev`bB_+T4qfBIiPR7=dWIiT6?kLDnN-d!! z^E8`bsEzd30E7x>Gzw*jk^67xL)!ZqqGLtH)^Zawp}X(+ zHns(izuo|B*tkE_IEH#J<01Ttsv(vVR#WuW*z)ez7=S}s2G!L!Ncm>PM_di4A?(G9 zceOTJBmZdtmJJ>*`uUc6?z4N#Cc7GI2rTzenM?`S_XU15(2H&O3}@amDdq-HeOeL?a$&=2*| z-7Cdk=#lcl&k%KgN$g+z{cX}U z=JPC3irk;l*MfbjiI#*r$HX6@{#W(`Yj5GRxvR+Y1BX{{t$Mw|ip2*Uk^bukhop4x zeQz|#{WY#jK|dI|pR-65BlnNS=3Otoz92jXJ@38Ev_<-_AC^Yu zy^uOg$)8+_*Yg)d)56{tt1^&%%$>~FOX{CiUVXQ%Ggo-H>_+}cRzDC8aYi|F3`qU9 z;7$CF7eslkE%(WKBp)~WK|<$f)=3vqKc@dU%5r-_1P7~EhD=B2tMq>8#uBeSw=yF2 zOD}6w^#yUnb_rvK8ruKK{jl3|=wwkb=^v%@>dCo4&4Tx~mOOe=KbX8#{*peQdatUs z=EAEg;+ssVglQ!5-%t0$z{jWn8)K^dj@XdQDk8pQocT8h>9?qUSR4W#L=4&gbV=6w zBUQv#xA?SAzY(21nV*>YuANuEZr4P*w_cwh(vSVHJV;)7*FSRpSXBMBD&oUj+`(7U zl1Ja$4;sz>Nh&yLzd55%14XNd7w;582CWs5e@E`mm-r$^>P&L|vO1#LDhZaP@m=4; z$Ubf92hRh0Td@`@FNQr`FYmR{uRETYAoB0};Yw-4`+e;)4f4xviq!o(V*=|Ss z+qWOoj^_0JX(Q#c)x&mXa3!%X=Z|xT9_pWWKlBC9`^Gi?S;z>uvTytRNCtet*jQ!oy%(G7l z{jiYTb)ecopBl{~vjxXY1o~-69@_tKO2lH|w@b}CmgNtO4e(i_& zsXDBzqvZOh=Q7Mi$_bf~sHzn*NWYKv!Mf=#*IYJCA^9(qv1}_Ne#bxP7pX<l6VJW_wMc=Z)|@eL_-e(eKCuh#kB7{=uMt4?@dEF<_|Y`ws*iq@~Q4_s3lwK;~Q ze6abd!uFIALnreyZaqW#?Ry_=$0WWzilXuctu4O0sElZ;t85#egZ#VJ$vod=|2VvQ zj;c-zVnu!+|G2piW_p+z&ALqbKLMuthEvLj)z@q$_)j7EebWcVeAC}brBmmJL(zwt zONkj1U#34kAd2*FA1rp?RG?o-+9!?i@y5rc#IgfB2RmoUBK=F!|5Zsf<&o!m4zGS> zsn!uM7bda~rG21we_D`*l^T_|c1F(jQbOr?ykN~dG(Vg^Fy)@{RoYDY51gu0!#SnI zx?IUy-tK7q^ZOv{z5841Cd&VE(tW5=N*otjRe5xsBsw2Y<~6TpGBkMgDt+2saHKCF z|1P%=u1?u=CUge5KAi1R-`z>eK5_W5KGD?^#^-O8Z)MZ_#^M@$rVTYBfSs0lp71zcFiW`pI0AKdF#`h^aiBg zllvfJ8dpb2z>wTOP8Z5pB}8Py`{Cy6=>DWW2;8uJA}Wv6Z!CvJ7nMs0389Khl3;^XhS4%{x-PBXuf|e!LIr zH)?paoYp4Se~qwLRxy!TSzfov3i%gdeK6AaUF8&&4=!D@VEM^n;>VP;){EyM`xn{= zM+9Fqzdfu)%4eXO-@0PrD3-=ur$5M(-@Sbh=dbv&=O@XZ!>j-4+tLuHDJH?YKd2AJ z=RTgO93uPAX1|Y9C?@zSJR;N_CjHw!*!)_Hb7>dZ|A0R2r~O5QrHxR^;$fs8H}rvw zIQ|=dP0BCpgm71F5%I@B(O$(D$zMPpRCd=54L4EmC1}z0MmIhD_Q`JY{OR2XLuy(E z_iM@d=M)~^d!mS#mx8;wZbtr*XCJ%^mAC6cJb&<92;9ir;zkf#~g5 zjk^RX|G9);$FYbI-niub*q{;8-;??BEztR|2%Z0CqWEART>QCot>G5xJGR5YeEl4v zEb^XHo-jHevB>c+{2P5Hl8XPltO>8>5OX~z?iz1I@kzTrxWbj(-sEjZ#qSaX?r;eG znN!~>dLj9?>VtV4+Z>%V@_fPK)l)T!7Y_Q=ri=7@ALy?aG@0{=wBM{n*4Aq|#4m9x zy*XyczcA{9?lqsr-*%Df)4Ftevm=M_9o^b{Sqa$>EpmQz5*UfA$@vR-WfH5vA;wcD zR5t!W`%7c8J^<;Tad`Dxj~+B_O4^9_r%E4KpLcVZ6-VkH_M=plbb>Iu<^FeRKk|=d z`amkc|HQOpO1|R{7px?R#krYjJGRNA_&^`n9;^usdqn!5?DsW6GYCS>NOy<&H{{=o z_JM5Acfmbs)OP{Ada)9pL^G?^k^Bqw!7W4kd7Yme$?;!Lkc%iJ{vN7GDJw$p0S4K= z1|Rt&*NzC1r2oz0)u*+TzopKaj30A*A=T-z9OO`W4-+?ft-*<{o(eDRzoPhPXD@s`Av_#+ z(u5q}%%}_UIMG$u^T=`o@;`p|Ldn>>r0-tTcaz;j*Q)|zg;cw#W+tM4?}b;-L#Hhi zrR+bi9&SU{s`A%!ba?dUUYI9(yt-PPY@fBtxsg>sd@@s1mAa4oRo$dt+} zw7NT_`57@yu|)X69%Mf_ubw#@79nDEN#ZmS$J|xQw1pdZj zEix|QJSDb79!ujqLHa+7Y+r0QzSCTjY=7Yt!GlkU+OryaiV8+}{m-1NcOi-V+o#CC zMdz~{z0jUtboHE*1=+uQmQ|hk#GT>Ih4!ZC{E^-Z-ReKa*LIWg$4NLiHzS{DX-vuC z=%MvV?giD|hBnbu{DkeH`+iM6p(1)gQ6V4APf{-^^4-$YY^A>IccSYVJ2C15zRy7M zzxZC*HR{e(d_&rAcJWD@h9`u;<{;+jO0<7Y_ri8h=dto(Qva|qohh+Th$mMbC#_5o zK=z{-%={JjZkRI3_GdA^%y~l8&s5v_S_kP@_GEnz(te`)$rfFyw`0{hdH!KoFSr<) zOuXooChu2pYLrt@{BHP#N+`O-KlxFM7dG`iQUe5h{MgtAFiOeLpki2I6nl3mm`M&nKeD{mW@8 zvDx^5xV}0}IBS6jvOlDL36agmg30-3h58=Sct8*p5~HV6k$wS{`9_{!SiE}M56%8~zTPx>{^*6w_MxhTYAXK!{Nj^k z_X&NWse<~?g;9K`7nUX;j@dX)y_Z@2&`tb4vC(S2-qu%>@ts~6_6yMeI7pp;vSfc$ zr2C2|2#|H>DghG)OvCe><00{;t=TBZ;2R2=xM6 zg0JwO;A>L9-j&??H;0H*vP(YAK>A}EdH?g@yP~(!-&ro5y*r0!kXZ34cPBcZF(&Ke zkp459S5G{lNx-HFL;7Qs3wxVuk~y;|{Uwefv=SV1Ns3rBxPpTd2IY zTbfUO$R0^jQf}_E}&<*RpJ)@wvW%UnPn!baJ8WUqV9|^?Z!Y zt6x4oD7>>|E(9gd{dLob%0n|OpyrxI$cmkqr@jQO&vz~;#=EeESG;F37+Xg> z3hojHVdkeJ2{eDLTsXfkvV75YWwQU?DW9zG5@)<#HSS%3;upJ*PZ{dnA-+}iuzljt^U*h4XjrF`arqhbUh&>XC$HWn z#NL-KHYrB)^O6gaEUS==OBgx6F{YsMZQ}fk{ZRG}#V0CBde-%te=_9!uzB^_*Y5un zbLlD?e<>H%nyA~)$)obNz1Iv9&m`Oky3>!v$RUZL`Wx@dTA8W$De0Q*IIMzGIRtQ7FEY&xN}??ACpd{zL8`UOjlx7hy*= zve5kGaiQ*=IX)3aeV2T|tbOPvv2dOgdzCwiALnwRdFj?!&m^hu2B$6b4Zca}?JsSK zjY8+IEH2cinjA7eLwz?i-*TYi2C=7o_OM3+itlA|q36P2xK9riKQy81&+Coh`}W8o z|M&(MilpCo1RIh5IXhkD^q1?z8QY!E<&N~jWiCwTvl-d;jLJ)V^>2*tb;7#ikN;t7 z`@7*;bFeBB?ULW~iNnEgpa}x2?`wa|Uz57FtXSQBq>Y?)! z7oOV7Mmon(dFKk&t*X6BT>KLoTX7lLm(yIB$tuX&xnG;)&-ngr-c@33i_@i3PZ9qp zF08__86Q2UJV9w!zw@U;Civv&SdvO)<#(Dfvz(u`XgcGAB zg31pODwlHb3PD;i-S-B_zY62RzvQ`P3D(qi@-lkF?lfZVqL6t@-=Xyl<-*wFxTRNL zQQsXWYwK=LCG7HFdmNgWe7->LFAG7wC-nE7vYqwoFB2y-%vvwIApanU3);EA8`Z6- z@7A7p7yG6VKZ%@t$sg$X^bRhx&a2yLmqC4(RPH|Lb&05&YJ4TA6|L_UF8D@V>>&oJ z^}Tj+`;v>q;P8$={;J5nZs0<+Q$SnYEJ}W=^t9(C6IPzf*3Og!OfAO5Qo zP37Tf^5UBoKtu<pD-^>s)-|Ep8^ilpb>o-(oqI?C3nZYr2O|Mfs&cA&zkzAx1H4^JE34DOMQ z(HR)h53N0ub?T`5uTAIff^Cl?)29_6{od3AGWeF3AFWhgC2qi}{yi|yw(9JPS;&6X z^?*w9B^SLmD&JF6hh%pM2s+dkH_Suv^GcF#fBwWaFKYd!1zm1G1k0!V&yd%#Lf7gs8# z@~Y|h>9-#PnXCE}MZ(Cx%_Ql!lDr;tQF-P%rw)HP0m>gv3<|%PjKB539hIx<=`Se% z{pgyx%_m{-s^4m@`)GeA_rUh*pI%nYRNlh!Y^BC%Sm}Jo;{1Jde|!%-=zS)=#gLM} zy+*;WVj%beexX%c1?m4DSS#fGQY@d!%PFO}pfVQBRy(M9PDgb1WIaGCZ|Z1nCMOOq zXEY3jskQL@=g=PbdqAQqtdxo`<|?=~$HS=fR6ElG^!`Io55z7@{=54JWxuX;48Kc& zjEd1?4vHxLv!w^>8~(kh(4q9#qn;fNiBKXSZ}psu_D?_$WZeBEu<-=-{9~@mjoPyy za--3r^cvDX-aRllSh~ZC&O0AJEv+gEZVn9km3N}}pGOaz+CAm9dMagqpDtZhdJdXS z2F`pu8_hpSf1|qXYxiv`{#ft+zVJMZxJ;KT6+!VA_a0#F>&zBwp#0}XLFK0x;Ct4T z$6im-{$=$*x$6F~WuK|@!<{Vkhsm&E-p<>hqlj)t?w>2knhn*|cbTeQ?O7K=qO>CX z{XX>k->e5@W3H^fnL>T{`%`Uq#wAD^SmoRC2H6+A9!Obvr~UIH>bvq>UCxyhFi89{ zo$nITKN>wSHs^GVK^c{IfiL!T@@1IO63s6=WXPi{^gv#s`1tdORNfHJ9T^F!aOvOa zjlFA;e<;xdXWV1P?O#!Oa>TwdPo)9Fz76|(8|fFJ$$F1eUZ_yx^FHZZ4+I-{VhDrd;}KZ z26a3CQQsZ<2;Ww`0k_V)+1%`l;=i13=)H35-BblCKDekPE9nNzt>1MsR0W+s^1I=} zOkehF1=4?E&lpOaaTC5xBuxLe1I=%4H?Ws}S>riE#s8{uR-d{F_Sr$__86k|%_Qfq zMB;1w3@Y!>#c=`t46tcUI>LH}_HTMOJjk{@{b_iJ^q-TsNf8w zJ>$YNY3lqpG3MHM8)nbFv^?Gs#Rs-@gY503GL0{ke}7}**OEJ+thmp z9E%hxXe9T)+o)l|UC24?lo0tE#dqDiA@-=>1l+ZkWMw zI9nG+?qBw|n7QfMz&}28zhc>}|L8}S#hJ|wq0T3|qJoO|ATn*;hB?2{`#*Z!uxXd# zju;P0KglZINw^35x4l$NKPry&%VfP)6Y_pZj@k4aNH}A2EX@b$FNJRS=xhDyY&DhV ziP8@_NIxL|Pof(bU--gCX4I1VFGcd#-yHBPTjy*$RTDkG>;^5{3hhUpr2S*9+a7D5 z3yd0KbkTiueql`3iKWgr7p;@`<-*B}kG{V;gY@4>7d%UHs+6su?1xx)(*0a`*|l}a z?@cIv%k2WYCY_#`TcrQZ@=7_@l?!=y-2(^sCf^U~g64C=y#)Qe^;Fjl`uAbaEv0?W zm!tFL&n~FUuAbfMPRZx>ZkvtwLHK&ye*Z9JzgoNCi|^OST1!&DvWctz((glaqhiVE zb@Y6@sS7m6AL{&4`AzE2kLw>a--jd7Y5q%G(frhPfrR{%={D}9|H|1nd$qy?n5Nl3 z5^avwzp@Kvcyu$`#3}!Ky6MpJ2f%l0>%S2>q505gL&zWAz!|$aalCR7z&^SM$etu*I!C>j_H$MCje0w8O z?gSwDOz#3*Z;N1%Kj|NF?kDfde+bgovyx=B(EF9iU9jiv=C*)1O25lY%k6&%Wwk9? zd$rK}i}77>ZP94ILIM@P&M0g)$%C3pVZXaM%Ge~m`TPt`)^&a^7reI${}6q`H7HZYaX<%GHQ9% zhUPDn9KUk^!0T;PK0^TzRDJ~8ww%%33dlbUBFEPo*!SQEwSPsv_jo-5%`=gwFXW;4 z%9buTk6k--#fS2bxMMHkAHkiwvsNzAL-Ff?E(o}#{bt89Qhr%oiOJQEz_e^hhHIhx zfArp6+dM~8Nc+OFz3naV7)DBeeZF6U_#JD7@(jn5HrdJHnLxMLik=hq%x z;9OKL_5K;Dzc@R0=N@_tQa(Lf7wksQC)~;Tz3FM;`;a={}3v^-J5SdhTP8p0i1LLmoPR*>!B)Z^iO)#FgpR_-mCH30T`5=)0&z1kJ`G54S{-e>y zmy`3)Hg9w*$%jn_d0B%RXnzTHfw-3ah7}@IeEIYp@3DMXy}MdDz7xqWqYF4AulP<= z`5{?8UjDXEVM7UfPst}VzL8D{jSci%yI-B0-?-)#!B64P)3HlM>L|X+?S%Jc`w4$8XtX^Ak2>Q=S!jd|_;vcMQ z{3QSR4uOf!;Icuz$j0@^KdQ2eye-8fhM-+_uW?++awtG-itGiH5sh3AkX{JClQYvez2I$>L))3+A*zY{(bX$<{~E+h5p*0an9&mrcckF`P!vhTT_pfu4Yb~ckd z|FC5gGCQ8bO7)hch7t$~Eb~CyD zoYirj{skaVxW;>>C^}!Hcf$8XUBT8lRD9|{?1c*ja9rW=1&LPFesU+2=sr~bJ?$6S zztcobT>-ef6MMAi3p#(tcS5JbmXMC+WdB$T4Tptsuv~1-;7rCZqdGxcVp;P$3rfCr zG)lYRAiYxhfQuVCUy*df^ESHi*`)pATrSrP!y)*j#i#G#h|cbW;yk(jYu$Pz{Uo36 zBOKHf?yU&bMfNAO6KwXy@n6jSP5Lj5r&YUgh@ME>ogRzkH)yh6I;EctcM9qjf+K@# zU}S~XcS|Rj88|mSe?aLk-Min{6vCqMCBwh|TK`86|Bid|(Rpk(&wG?y2p7c5qW5k_ z_A7v#zX;h!Wk!_!Jhu42>q0m_Ep@NUYxI4ScPFs&&2G=UBn3SGgFyZVvd$?P#%hB4zm>T_pDIn?Wi+0lQ@Uz##(ox-R@YDa?obGqU{;@-M?u zsprcRjUssjte*YoNv8;k@3JQA!&CWPo6QqC2@u?L@3og38lPP!jK(S7wVO-DuXav9 zA;p0tg5O;+62*7SI^kW}LwEHy>iaOl`MC)P{KQ**|7ObmNB8#$j|?fH-jBQD+A*I4 zz6~!o#{Zo>|8>GSY+N=lON*qxkdocZ0c?8n<&|^M{A+Z=y_)>xODO%V@i)ir7zcEj zN3$H4Bm1Dx2}8Me;bIv%KN{_7E3R-L^YzML{(huCNcs-tnhOIl)cbvN*9AW3z{6=Z zj!Whs`IaEZH`4p9BF>bYzq+vScN{o6@YST|0n#5ronU=MadkjtS0RIA6&&5qf%3+) zKYgyF^ty$o<38c0Mzs2n5&LyV%V}`*WlN?&z)44&kSsKP>G#ZCC`O=^W|# zr_lZ&=~pw)R>!nb&$l)oKQXrmJSuc0+}5M_XSf|OAAYEQER`bZQvX8M7Xfp>6QQJr zo`3!9fF)^H_Sfl<>ytj}y&<9qnk&!N{dJj)FLgjdQ{pn0F6#Td+VuG;MG#{-^So9R z>OV=p?N+(w;dT1`vbP3Lis1ZpNrfA1bbf9k@1LgmL?>K@q?e3LYbXL|3AYy4K;*yH zbwKr6Ww(v}8l?Ohi@)zKg18MAg4W9-|GknNf1UBWeqC~ZXhb0@Us|dzZ@?%5QYEf?rj2gx5RD9 z{r6qr-P97`uV&UhVmI>qhxiWQSoJ&#aaE$)XKqz5fq&<(x9My~@)6YmN%?%_kBX0l z>>G3_ft$O>uf0q|`VBsD@s6J>EiNw4~zfknHlR%B&qypY&DJ1 z;1Vb}Wt$xvi7^FMlfW1P^}pVa$y= zB>+YF>kMw8{Tt8$jK_RU0s+-bhQ_&@+W$&mIL>-|;kn88!#codh}E=h8})tTZsMq1 zDWo1(7n;jJ@g0(W5g$3+y@-0hjGym=c_}1J-FeK`9qA8`4rr5K5PttV=^wMJcNi`z z1;M_bb3|!=vf^N?E z-@X(iA0$2NWoo9&Txx#xYl=n6V9EdJ`Vw%izTj^pN|Z<{M5$;|vX`4dMM=n#MA^z- zvZhp)%1)$gS)*(z*_X?)gs+{iT`5}ZTTzMRz29F~|M&kq@2gwqsZaOLoik_V%*>f{ zZs1#C-QF#ve>ny{?l$sL0t<3P{P5|^t}2kx{4HG+O!|+T#$at(j5?*1@Xy?D9$ukX z1#1oOPgn$!`6B|q(=>OCejDLG2ne=sxljee%Fp{A^^x%f`xwm3L=}eR(&|rFXYX^V z0>xuD&X^{V^Vg~|xG%ToAzwBzegz_WWJ0Sz<$_MWMbY$M|CVkH@_#%TXwIh9_a0V( zmsL=h!ZE#bl*}&?cxgYAo?1o8ajYobe4@NGmS3Tu)e$Wra{tXLO;`lStP6Bm8nO1*+p{wt$!5iEvD{G)X?(NyL=|q ztD*CKj1yZDAL)ON0^77_(r?;#c;oFA8?CD0eoZwhNg(@=z+Vo1YTW*i=6_A;J-=TK z8^qXcQooVoyJZv-wW*T~GerCu|Fh*rd^LRE5O{2E+5S;RVTzAg%v^_-Umi|XF0O_! zu~EU(KQ{lv+jqMW7oq?Cn}^nQR)e`Rr|y?((teeV0xl>rJg{!Il+K72A5}xIgLtiU zIGKMa7zLU8BH{1X(e@uCgg;nQ15^5`KQ4_*{KGl9?9Aca_ z{6~y}Waf2MwsBhhIy-}JdJUXY(XtPIOXeSgN5MMwdx+g>n*V3MpTD{W`iFV4MGlGm z!?!AynV$8`(bo6p^S?H!@L5&H1~-9!~5=e#m>K`)tB1L5Cu&keFH_)CqFQ~XKj|M6_)Pdd zx7u&C`f7p8@op6O&A=fqu#KD_EJi`#3N!ZXI^iGox4&SCqJaJR2fYi+{-e<-?47%F zt9MY8cz;1p+Z+nic8Rcm>*4r^A2TT1ZyrL(zh7mjsfhx)PZZPQ^-29aHws!Md6OI; zxC#0AycZs!K!^R2*V-QB_}3VPL6(|`E9SKC!fmp;y`mO+DCN4NY=ZxAcjczAr6Ah+ zg+xFDUo9vty)UuC$@u2PDCGa1va6?^(;m;Iyita@|IlHpBh{q-%a6jABn9Fk<}ah! z=<}Mj@PI4sHfOllKYT4Fi;BmI`6HewIMSvT_8l*d?(iY~SD8^rk!+MzYu!fJACK*A zUbVzHX+M2d_SawgB{~XaV&`O8&eP(vh_lQIwGh#=Z^v^L(tZ+nz~Yv!@^sqz`knn! z#kKHzT~k8JvVIE__GKgEEw(`-e&{!OVc1a%mHM*3EtN?BL0}Y)PJJ`feJMofpELFD z6hXh~S9ZRr&_8^?nAs7@Mwt`ahnYxQPB2@cBLNUkA;F+nVnm zB*!;_^NB8nev+l_KS`Y%dsYVzwmgMSuOT z;SpdgnJ@gcmbQLmawMCr9+-$=dc!2?zxI#7M~%7BHroDed8Ns4p?XNAyAtd-OwuRt zcMpb((-dguBb+k5u22tgOlD{4FOc@Rdj!&6&+goLcojkaLF^g*dN{~WKfXPm9G@*C zu;B&&&xND3{K)>NyPWDFSleYkVk7mBz{Qp>Z=Nxv#h;4TegxG+zYn*VxD)9gP)2~V z**%(`k}5}M^qHkRr5^6bOvZi`Th5=3zyRy2o!9+n`!7Wty(;Q~mm_9I>&2me_%~DK zs-r_h1*x0mN%ixBb)(6QLv0P=pH-a9Ok`PGyWa43^6 zAOFBl+^;>vd9(pKyXqWEZ;EB)(0T1=H;q-C5wEUp;HiJgsv8XE!DI)dLVgw3|LKp{%Y4tsZwGW&cAq;a<(9N<(%MHyQyZU*;wUVM71Bx=bSew0sjp3Ptr#dLR6U&pG(%efK2B zmwQS_kX{ocL~Lz7#Yxsj%Zz|e@0-v<(r==9Xy2m z4-9?T-VFSoxi_dEC+8>j5vXpx%QjF*+rM}^bY8X@WP@Ep_r#I@F@aw{cVouZo3=i4 z>MV;+GyGwA82?F-eE(G=Fz(G)(kQ_~*cUD_uB*-9IR55lcodnxr5l0BRnBX_)9TBN z9t-n$6Zc=$v|4n6fB2)vr7ex`chdH+$nwTFgICwUyd6K8znU9{&Cw6ae{G`WZ!TWh zRM-sOSY-MhUABL?s-Cll#V{>Da2>6qHp8_))%N;TWc}~-Fwi}q$C#!ma&&Zq;tXTW zP&3>icJ&~+{y97h_q5h$oYtq+ADr;%~oW^D_s z;ON&3tS0wY_76kC7VBptd9?YR^U(V(EwGL2U4y7Exj&1*yURbwe`=(~UpD2Zg<7CO zaxQxK201@>6Yu}y_QCMGKT7H3lRp%Rx4=@#{SCM%D>;7*18YRJyCo}OKU#7g?UZi; zH<8)c0x2^7BJd%%0CA@NeZ=$c4FsyTfY;c*Gev`B{*p2brX>qor;qIdy6F`)Gv`_$ zLyC%<4U7K6Z*IGhCPMg7bl0{k>0WLDt3a=u4+rVV`DGXmFPXSEp*g~TZ8R*fYk~D! z`V;-@m(Q;lhBx-RO6bLD@Aq{B_nj8#I3=TA{afxI9_{$&i6ia178N!#`)4#NU%9`Y+hwA-Iy=^FNfrZ8k4f|%q z{^5(y-l{QRMEsFybb^mU(C6lpZ`NO~ZyJUlWs#eV))C_`GfLOGy#)pbc`wBw;FB{TL5aTE1ys*Q1}_J~Pe-XA^; zG6`nFk7EwfbI`((qtzIe+Ui3@Mr8 z@1;Vw5d9NUd1_B9=!q#CYa~nl!vkfk7B*K9{$pk+gSS*G2-W5sI|hQ@ZT4nhm-wF;JmHAp=5O@e8!` z&wB2E_HTuBMk!mjjbwg~z~{Y>EM*SS@+0jcY!R&x#Vd95uq#;~a$*<+D*{6Tx6<-2 zgI?lEt?+_H%~T_Wtgj{Tlex};zi9i%-KRrzGh0FAV$~I;zUBC37&xke-;ICUPUugo z`VG7lN|Rk3S(~wcc;Uv?R(p=o_P<(|M^IW}X;1YR_6?-}AVbK1llxtInG`v?_^_ee z_ExAU3UAflvs`~M3R-L_;=qr;_DNtEI6di;#(D_;*uC_2uBXBqjon2q%jX{v_$;#i{dJi_Gb~5v-n^i&n+m3@$G$sTlJa98hU%GVbs;xGe!=(`RY?MW&cHO` za^xS*_sEOoSQ`;vvM>7UC{Q8ex3JjKIx@ewY8XU1*6_6KkRbHOYD)h!75dWSe!F*- z;LG@MoZFvYLkEcQ^?}_;k4lTrx8ptMO$j7$(h|`Q-c$?oK~z zNJsmwfIEa3+fgCs64#Hfv&-uXLr{~a5k9QKPRx&Qzh1meh1uFV7e_%d|488Uiz{cj zTWIS??>W!=Qem1?m3nizzG8X^E}p2W{koS8(M|KuX+EaHsyBArqJiY|hljxE?d}%0 zhqUw4oa0U=P~lzL%o+5SwEqNdc_t}SMPnCXzw%k+GN=$I8E|5MI61!ihoEoRh3dD5 zcK$`dVbMY=Jj+C#9B)bghrox#ig#RhBINI`E-Fw(g+m7<0yI~V_P2Wo#?R*@MNJ9P z_ScQGwNgRr?y8^0tWy8*@&HG%SAm3o)$+jh*E=dS)rto_%^~B1mLZs3d0WA-g_(AK zS<%N~Ds=D7kKF1?(x(i8kSO2LpFy%du>4dPhfe!cagmb&e`WgaPRT$>)tETOL(yq1J z)CN7xO^?#m$^3f35M;Ggc+6g=)vxQW*4WVoF<*M0@CY6GhcjPN%8Ra~`S<5G?h|bT z|Ng{^+uKO~GlyUYM;1p0(DG-(UsqynaC^&I8Ky#VejxA*Un1uUrfBth5m9~0ZSc^& zs{ORyPBQ))g1Ei2kSDc?xZjyGTdNJ8T&Wm*b&&HPJ{#w-W^ss!k3>TaybRkwz3Huh5T@us=@v656 zJy(+c4}o9)Tze>LknsOBW;c69wZV67htM;VWdHgM0WQC*YRx6u`l_Xl>hm^ek?g{G zlcoRR6RWKbyqBis_X^F}v)W+o+4T_<$<(lugnui*v-V+a8#u4ANE7BI&#!P90);lC7n?l<2>Vd}OueHGK0QwC;g!Sw z;VmNj9bXC)_KW@6#x(+}**_d3=P`aNazX1op7iIxj_F_8N| z3Ea_+b;pGcT7G7=m+M>`_(q)5?)tF2emw-o-GtJ=1b!vr3okEG#&&4?c~W#Xhg_$9BFRQ(Y`KI~1rk9gXl7Cv(ZE0OwtZU~Mp z-ddexPFw#H%25<*2d7;H3_{+A{^4?xsly+%i1=}uanF=kJ7jQihwgq&`tKS;pz@AW zeNcn2pX~eGBIVkFamyQddm!t#3H*1?>tUo$JAckJM?s|>IDXuk5uPOdgA>H~^EiGd z&ze?WW?wg?(+(3+CQ{YiTmIpWt;e}9I1=-x5pRXRaXU2JQ$2B@n;hTrL%=wGMXqwVC_k};1Ew1esXa3$v3x$1@DLoPp5Nuj!9P)?fJVGyq%|%7GWEc%qa7?PTHJR1BJDGQyRR=PpmSs<{0oXT z>p(jgPfKkCVRHX9JMn(U`#;%K((03q#KOl3`L;5?x_O$spTMj7BrPN6iSZ@x{F#5Q z9RjD-kN)_*e7@iitZJ5akUvH9zw14pujqgaPi((ZEcX1v56erYguBwdySa7k-gO<& zU7#EwznYxi=m`0EtTE_kpw&22UN{p z84KrJjvoghG@p*R#A)YaRz5w^0Y7#Rt-c|FYo&Du{1#NfU3ZZ7 zv40R=+uRb*aXvtdkK^3eojaheYscdZHL|{kz`e(3Ctl1E_D}Q_+mJ^G@I4TDJ#dhW z|GEdkW9H@6ZzZ()nX7Z!fgQl5d4pvpg!JDC{5#r_S9pXre_QmFMRY*Ym7Z%S4axD> zG6aPGo4F^c11yVvio7y?k1yi`MOs-$wTbwmzrpR{s}8tXv-JJI3bH<# zG6?OD6w_au67!otn$lcR2Pn)t%ne70|HD5#AN9V4Nf6`jIFmtj2V9POii zaNCq`v?(XzSN3zLq_qQNDr#y=I%WRhbaIuCAOE1OzeL*e^>qMu6PJ(iD-tgl1P2lK zAqm%=gnw8e;5ys^^D@^TvVzytJh-lg^B)eK;u&i=i1~ebhxWm3onYzpT;;bX*+21va^m9u~OU#P<7KvslTv61#CRBHZcu$%6KZ^SY$$eDQ zOJwWzKVLWh@9(l?Tl}|GDN7DYiLB6_IjsIwakoE{@3X5 zd4AcTM9k`~$MezO`aT2fZ;O-X{g~i?+Y0nI|8I#${V(}D;Z5}i{imI>VJG%_yF2k5 z*(i=L)x`ZPoZ-Lw7Q_G7ctrot4wlb^BbH3OR}N=_@YkVs20umo<-?sL{2!*kg#Ki1 z8S=r-DBO9Fu{9H|q+VJx{8$Tr(thM<9JL*Z?@CgMdF_Prg-JFk^uB^H=L?F4R%+PC zTppXg4HSrT5Z{}x`U;JAn^$C=C_~lh>BA?(Uc$p&?tel(^U3~t4au5($+5pOLEWTs zGLC6Go=QC#wd&mz>}<-i`00KfmrfCCIf}R=1-7&73h@+W{+g z40VxC$b^cjZKjATHQ?de&}gEOiSC;3s`|XS4EZu>f6Hol1%8cfKbY4q z)6W7ukyYr*+-vZd61)EHu{`dv*PcGRYYG_lZ}STU!(r<^xY07ikOny znDm+4cEo|Y>5Z}-uv=Ddt&$(ShKxwxL)~-+_)K&1?6cAu*nMKoc$MgDlpr~fqW&78 z>tA;q70b&L!n+haRFs#I~_$^ur~L6tDkGgylr+ff|gwE6nxmbD6mEG68_1jNX4)q2l;M|!R~$4#w?Ux?sU7= zj#@>{JUpCk<7YMIm|fL!K>fp-5Uleo7R_+zjnk$YV4ugoT`b5(E3=rxiy2E%L;t78 z)pJ?Eb2QZbo?Q+}KM%6HsOn7|-(EOXAK0sW%>G z{u`C?rs}2_$}!bIcg`+}Upp7^@SYc+t;G>PQ&~~9eh%bm$?U!NJBy@W0PDUo?AkP$ z4-rRLRWC0X;0^OH!r}|2VCMYEP5Z+Uq;RTmtRbvIvup@)jM@$*(>U=jDoizp18l!@-^Ff$rWWQCicL7?@<*wzl zT_3yU6n{i$M?0e2izyqJRAEj?RY zq5^QI3~hIcOCjR6=?p56yok5{IdArHO*>j(pIS9FX@XIGYdNj63ZN)^6s?aF!*2be zgicYbz~h9V=!)okMA7)sa>Wjs1GNUQQ&8#*zlHF91oWit9#!8^eiUT&QNWOiOwj$>mHDs1_B$F?~SxU#v;w!L^o z(#N5a*|s$HQ!#k!#qWOLYKT1yDGn8mn}YO`)>~_KxnK(6PWIlq#YoxS`8oX3#6n8- z+Z(#ukO}j<{fADNVY~Pe)#Z(gfSt=XT$xE8Gh4J^`XOHh53U}l7g=4190Y;`%`Oz8 zjYp~?<<94W@kQkatc)*7`XwM%hZ)@J$02!>p5ma40=BLF$1jP9DLC|Wdw{Q~E%wY( zjc@&N91UZusOwaBVlKWX8tF^h(7JIG)3+RFF^3a9(`pjMVE^{#;@I9zIHOH>A$9f* zF#8C85H2W0olBvHp78~Ub$=(pOHf})4FBhv3z)~MRO!o4+mL*U>zHwg6MpK9Cd+w7 z93rD;n|PYMLZM4yH%R4qkX3!bM?LuheaJMKE%yPnYR>e&%B_2-AorVv}N2jf4>bC z%z7WIq<6#4h`8mSZpGnG!&A{KDY}?wuBUgv**74Pk0w$wjpD%4A=q-c@pie z;2HkmV)XV?Fyaxa=X}WnTlCcXEtxo|)ce^z$Doqk^%vRL(Wm2%K+>`(aP z-1j>Wj2&cCcp!Wf-!Zn1d82+Mxagn#jHo!Ow(#cIUYLWz;}s3+e-*-hw_i0+;}S{! z%RyrmlfvaoW<@3BwXN6xZd8JF3}l5Dhq6(= zRaDGowIbNv;4N{WJAvfC0)(U)7v=}bA)vW;gWic#_(k;unH|Pcu)~<2E;i@}c59(c zk5RoGWkuJj&TrMiB%W+Lcxar8)+^Cn4fis}IZPca9%__9?q?>y_B3;B{Mk5jXIcgD zeu^8g94SFUA=YnoHe{p8o+IB)qKcq@;&Y1rx_FZR3NX;x!hO}S0@xD=O1i4evF%s9 zE*YJh0voX(txMHDSQuwH=iah%v~J7Tl4Z^rd>xOjs%$+KnZC|E;H-WXOXsZk&XiFG zX0fB`-}Ftetm05ZZH)?`h_O&uZA#Hrwm@?mxh!<*<=oiQ_eCJf>89D`A5HRK2}=nJ zStai(K!WS+O7Cyyut!&i_Fqz;g3IT6t9{4aG4r|Y*}kF`$d;|qP@_;~Alj*W zOEIM7aII1J6+!Y}2}zM-6T^CyP|c{M)@5jg%XohLeL!gnS|6|Mp?`N5yD~rVlP8{t z0}NzU7S>zi438e?@Oe{F;+^IL4ALriz@M(}2S(+<+x~UV=!G#>=No1JC9E6{s@Iez z8X{yKZgZ+VAQN#l?HF9CUJR@ZS$%dEk4gUDfQ?D@@MLEt@Cc8v%5E{kFuP32H`o+B zijN&kZt=jTEnD;Z)>fkMCy_57iCbgX-cDF~iHd$*aVR_V$pQOx=gaWp{BrnFqsa13 z)ENI#5L(J3Qw~3Q)DF3|AjG9rEUjw#3b}rv|03#I3=gF>1O|FTNdDhI?4H%tONB_(i1RHgUrL+Us~&Rlyq<6!d>zcdHV8c&Xv)5_$=1ndN*UFHc2f_uu97 z3*Esit1!s&gP4TfH<=s8vHIr7; z;nK!h{OP>gc&Nzmr+USPSR2wu1$oqWr^fbn9pC0p;=AVK=&fbY> z=X=<#Taj+uXWyXSCc#VkNC~e|b7?96(Te(0m|8i;9q~YM^OHueD`01|xN+HPEzD&1 zZ1U+1WibBot%IFg8A?i>*t1CToH=@?>K8k+ouWc%6r`my%i~Ov)H@WdByg)Gx@=2S${_)73jT*gDEkxk;{TUjB15 z{C@6;-vB{>V71R`c{!5*8t4)C^=&V&2B9}AoK+rc;t~rs{Z&hoP;os%TDt5$zVDgV zI@`xp$VS@i%TuM(*!pN4udchT$W7JZlEBW}SV!O5l8#t%8?>T5S{J{E&YNQjQHvK( zeyRkH!@88!KW*@-!@)Kz^d%t7sVi`OYdPw3+7!izC8DOX*vydjVz_)$OESFGh0F&~ zfI+|MlxtxP)OpP1WGZW63_-`|YDOkufIr#Q-P9N#i|yQ1ak(0$Oy(|%@6p9)hNbgQ zNwgw`4@D-|T%GVWPagW$?Rf(sxBYMCHXg-zBkum_7Q><8q6jrgt{jO67_`Z`C7?T^ z4tpjmia~nW}@U_Ww3;eLo2YlF!IiFyF`g?aYll z8>-Q|qrczQ(OtoYZIOEBnpR{V?WlEvTMWyPin3I?_6AtnA01MCXo}x;Tws$iEe3&e zlZv_e<>>dLGcr%SAi+6D$ww!aP#cGi0Hm2Y5A1yHSv|!HvV+%T@Uv(#jG_pRR&N%N|42m`5X*JOgNd9ZVo?+$f z#J#m}NqMQ|eH#%^TCF*BvSt$M^rY0dj~L+Zv-Jk~!)wrK9gtq1u8JjTW>$YJXhFE6 ztnG&Q+nCa}qtgQ4-$1ZELrR9FIesmdTkcR`inKkc%Q(U0l29uCQ3_}(CKJbmCX$$uR@_h2`=v#kysXIP%ky*I+el3i`oUJ>JO ziGRd?-WRJ>WD0M-KtU}mZu%8sy7=juFTioB1-<^|siH-98$S~6Ib3d61^d1R2PgLE zVf`)N=?-izfV+os0~xc*(Vd*G63gxov?5i9(}#$+diJQ;>o!M_{MW+`F?k-r=sLJx z7d>1&Y=o)1axpR|PQvt8|HY$Se%Rv2`yZbp3VNV=H~R9B4ZdqpX8(*#3v%DHZE9T6 z3hTIhVdu{mRbXd+qO>T^80S*kv2^EHK3MW}O$rl!i$(L~i|L;Mh-c$u=B=tCko!)V z5=nhR@?Q_EE~j6=NunN>eOCwJZ_TVO^y z_GmRPo&~(YeVj!?<81#l;zT0 z;fZyk8*WPOwMb`m=l97-W_(tR?Q%gyGm6cjKmA_M8h84gE!Dh0zevWEl_lm~e?4HO5Evu-mlDFk(?U~h!`tv$S z<8)2Pw zguMqN0|@%II#TyDzZd}8lb3q%Xd(Pow9TH;Od|Pj0x4aA4;|MV;f|gJSKuWZth&o9 z`l`+(ET-2=>}0)*`?7vjWcXf(9$(R&Gv-jhd&0O}-Oe|mO)r1Cq@B{mUZ32|ZT7hu zA}fDsTF=?y$G&wY#>r;^deOud(Or(*HSFHyRXRYrx7W|jUkYIS42SiLThB=Tn;N&}OGn^g|3)*1S1ebsA7RWNQzy#Z$DDoekgb#vl0 zbm8^d+>uWv7?aCG)A@u()Li7?&gD8$T-;Wm?J8RXywP5c3ww;PPT5GK&yO-eH-U)~ zR9B8%sM;x}+r2>3F_x{IuuGOQj;oHOCzJd)16u^&@qv#`5K^QRa4lI6H#_?wQDWaD zToz8=(cLBD9~MLv9)?Gwp(l|u600)6iLemUtk zL&>Y3*wu6k?C*NT^0`A-F|U(st&h$%AS<8eZ$8o)Vt1%o4DSaUkZ+SAcB$(!&fwp@ z>abr8eAX=y>#S18j_ozE`qq&F{cpO)=U}S6-SvDW|R~AibC8z$S zFW&;6-^%}PZEJ?ns)QLOyQA19pY3w*)=k3q{fq%l{U&&!-JZ|IFB=fw;!by#c}x6@ z@Wf|pp9XZkkkPraK@TrHkf?j>WerrEu=pf<$Q-kEtA4A!KHTep zIXT>`uU^rJG;LLXf7@(~eQspLp)J!*Zn;bb?uj4}I5 zs<%wnK*KX-xc1HnFQh_O z|5h+D?GCSsX@ScHtcR5MJ7a_A{n<8so`7kaAA%7N?Xa+CI@KO&jcCn@U@NvOW|+;Q zr(S7ea#Z-wj^tH0doX@RlC4%dUX9I@sr>N@*7CSVOyW1m;G6Yi4B zJGK9JBht8S-YW1?372@wTj0359@$WgdxIvVuyUnN}V)!Z$&ITPFet9K%c+kE>o8SitZeeYl}$w?yXRFaEH_uu2zV1Wv&f; z=ZJ6o`gJXD^#queD~QB>dVtqbJvJ7p67~*@lFC^pfqmT8bMR409ZCv(b1C+_H8!d$ z9QErM1q%K|oAk?`#qXPZOFq0J2}bQj_D}62#vj*do!-=VQ0M+N@>MYhZYjmy*lPNc zlz%HIe~CUEuF(p@iP3IFVb}4r^osg{ya~9a7FBsu))Qx%lVaQ+-Gu5_obwrfb_qB2 zRgF?tu0y7Iq2@EZ=9ugbrm)`z6qq>P$d^Sm#0)Pt%vo7Hg-2_YC@8RlHbxq=T|5o_Lgekwjz<{c330YRUw)}YURINdH~lTJ9Zah~EZI|_xV^~Mmi{1yGyJ*h-x3ef zUWEr0C(Dp2Q%Z9gnqZjG|Uy<^s!o6;hZIU&uu>U~4%Zna!oNCG* z{xf_6@^@uZ);u-G^f;$$?@BkLj5E($!u(Y*U2{MAqPw+-NnLU9*U}X%V~dXhvo{5H zFEVcbRb+~@4Rof*UXKNZ^!?4H^=0V#jNZnB>Phg(PvzNAbQW|u+$bn#&Lrheg|J(n z&2<>4uy*&Xu;5)|e2>jo-3gxwcpByz&o<W*vJ3fPyoM7d! zHCfgX~7cP`mSy}0d%Keed4pxV@o z`j!eGycfTOH7OYFm@TCsqmXQVfod~cawk)XSSkf1w zxR;@VrF-6y!O!8z#VT8Em)GFI5^lK3nWRtG21--90@5y2@c4bDt?~Lbyr|>DtD6=R za3nBhz+%4({?_*G!}&EW2sB@nHEO$HPuVW%iy2T*r=ab{KK%YhyP^pO+PH!f(C<4?2+Patp5UcuI#TGWM0|V zf9k>o?AH4Y5>G2B(1acqJ$Zi~J97V8@A^#-VLDB)`MXFNnln7cwD=+glEy^KKdWYf ze=_cbi|g*I?T+Pt5Lblb8OFA1uU0) z*MqHn6fj?Sp)SXL1;1+%CN6uz6Rcma+8&zFw%<$hRH$_TS{aSQ6@OLNm&aK`MJ z4fBVrtC7F)mC4)5mbm4SM_0!NC{P+ZUiHS)5@*FkqOl@(8x-oK?J!l*%%$9w6YwQ$SbSUU16=## z$-@=zT2N%J!9$nh*D!|r*PQfLRU@0y$vE7{5a%^ms2u)Gft5G&J2wnm!E`CrZ?mhd zAhav}J?2@8k~J5Yo}SKt0L#(6u20h7c$e5%nFL9{tR2K}+ho+Uw*yBm=SzQ9SA6HL zO)Zq!afpy+pIv1dgvn@cVZXQ7f+Xbj-)=Ni#C|YZwpAomp*+`b+IJ-{V62&ruDpX3 z$g}t|mGM&y`(`ecW^_Ov%Jd>s<+hX}->U0D&-q@0oM*??Czn$}puO#@r_8eaJAma? zg;bJCI}~N>V4pjja0h0C-Nm2AiT=MI(qZd~dp_IdnaS6R*7MDzYKPsyjDN(A?NO*g z*ioa4uRs?&Y+d#u;0rPTc=TP0D!PDgo&MDP)6fL*o_ZPM@~Q-Flv4{@`1BGc)>T)e z9!P;69m#<=Qp@u10G^7Ld*|=9!}DrWC%=z&SVr^v_(1A7aIhMmq-5FSDS^eI%12re zN6!hKo6{Gtd`d2g=zD{@RwW!-Nx99Abd#iSirmVXBf1zVh(ENKVb|5Rxj1{9bw+0WL zZ^{IRg`Cjzi;3W3+dcboVcGt7LbobUP`70Vd~D_%G9I_ZYu&hXlLE$}NJ96_hTdz~ zBaO|K&AF}U_#Lg(CRRu6?xYPPhejo0UsU>R!*dybY;|!#xRwGlPn0~VHkUD;;#Wx) zmmeUFqQh@P9E;KT*~LQp&9C9&!0ym5B2VE+kGJRZ{$=~$32N&ua`!*&0Nu}?4{plZ zVK48l+0lP<93~>#*w5MwIG6T$>LNTu$3C>;g9}B-V7g>igW+o!)GA0muoMr5i6hLb%a`qc zCj>f|E>ynlfZm_ZJmc|Kv8F!U%klNA2!*F`nsJL_C0jKu1jSV z^ZQkxZ}eWmd-SeiD|QH9)X$>8{OUW`&fT6WKG=6YufO~e;yLi_m7zxwYS?3EYMbyH zGTKre=RS)A4P_5|`k3YUzl-Si)hq68=ma``J1$-OoA_AIE1?y-<6zIXFFU=$6x+;5 z$HdD*MZ$--d>=A&#VJ&)6Lvxs=;a-ix!kCeIJXN!Omq?j8m>z3Pyelj3)ZKP9+U}3 zO$$l^d@Bk1BVr+D?_a~^3xVyHnlX^1EofKlxGeuJs4kcM!GF3FN*Bw9RwTLMbM?7i zW5>opj9~Yb2r;#W_N~B-jyAWLtOJyk8m<9FYhx6C3d;&7uPtKa2SeAbm{CRE| z7kMFT%GJa^4GMNj%@bXLUk%LsEJa`1d`z)d9!l-x8EvC;^* zWn_w-t?f~Oib*!c8T$HUsOsABDDR~hdD zv_fHHO3{rhkbL>>!_Ea>-`?z03QUq_N1Y}Fcl_57Vru3|KAO1PY-u&-`@qdzTHp@ zjlPZVR*skQSr~(DqZLudg}m`*hU+n${#5h>4WBC9?1DL;Nz5EPQifhBi&HYu1?S^9+?pwrNJa7rIU7=+8sV~m z;NDY+P`JFoo*TLsG1E$XVuv^djtL!$$N4W~mDe|nJn?vnrqlCG<^JTMs1%2HZ^yGB zLenWN|J?&Pa^RL=sQGgI*A1Co7ptsK;#TY&gA>o_#4b$g;Nl7M zA!$Wabb@PkKBUbW7wg`h7CTpp3KtzIva$*oi)d-3E)N9^jklCNd1Z~&?Dtl&dYFhB zj}Eoz-N-{LABU(%uw=t3|9oNDIDd$d`()?(g^Yjcdf;ca=_#X*E{NK(*T5&*84J8Q zKIB?C20}t>_bPGN;`3c4&C#t?DDLyu(<=TyUlaHTOF% zC1~!<(fzW!gz%g$qi?N4HSp;iHE8F`qd3Enz%coQXXxU+`j?hha?#@hyI*=A%7(_+ z{u6u`?m}IZt#xh-ng4L_fv(3N3br5XhCGEQyW^d2W1W|ZHou4&gSdXVgu|EA@!Ds> zm92|Z)L?r*P4kQ{b|!qJETa%dx{1o1$3)aH`NjH0;f5Mm^>*VIv3Ew87vKHOhvJ^2 z+pFw{!UuEE`-ggW2UN1b*HrAw*X%nm>~vhPM2@6i)&uWKx3Zpc?S^&A^H1mBIpZ$b zTcQ&E#vn93JU??W2s?jqp@fUG4Y9Ev@Jiu4hgp7gkw6Q@$aCkH9`@lgxbt}D|DoY5 z(bd-J>pyaos<`+ z`tj#>WG|&cPpDSt`V(S}cq05z$oex)q#CmM=wf6SjB59eJPk4=(6Egih2>Y@4)Lsv!0%sYX7ZZtkdQpZMOA|} zP)T}e^4+utN+;;U!*T)1LCW~4eRw#UX5o#)kt^sc9vu3vQZ zTsa$&*v9oBR=Ep;64|T!{%>CG-@R}7cM37nFY6`V=asnnx?!7aKVq$Depa>tb5r3{IUWtE- zD0AZN^^Xn}8`1=6;bY%!c~G7r@yW*Eu-Q$S!H{?0Nc}gUd+`x6T|1#7cX|z+;$B)& zaNHr&6lf+j&u&VJ?pT973jg+f^%jJXe%_Dp_uK34Zy-r#-iz9E;tlPF}lN z1x%J7kM&49<9hEQ+cYi`zj+Mys%VRyI6n$zyPtd?WKc(s8l3nOKdyqrtb?>^hAS$1 z_C?95pdYVZ&@6Fxb4KUcDRM3NYVqyRwp7OT3xui5)vUp^P7u~fs65Yl2k{bxKFqZ`u&r z5i#z|W2^AL-_z*l^_ta@r~O!B&tFy7r}ik-UDIHXOAS7_`{JI>N7}>};XQ{{9(4lO zQt8qcSv^FTzJDv2w+!#&?0VoST!v#d?{`a|tpd5NVa`t*-ne(>T77RPssAHB4sYU9 z2cr^4foa5ki+5fU6->sKay?&#JL^~U*A-NV!&<+JE4%ygsnDAb_qjbro6YOhpK?<@d`5d z?uU;`E>E^G{MUaPhhQoW)dO$0{ZL<|a9g`OdZRokd%JoSxw*%Pht{!lf3n8f|-#oZG`S=Ox16P`}kKkEEOC)b3qIit(pFJF$|5qfWE zIZCk5A5k6cf0eMlL=-g41mZy+zWM@PQva=a9HgU5*$k-0;Pxd!S&<8m2v+^+S9a;E zFt7*=iPb(x>!7pV;8H(s4&>pd$Z;8)S|BGxnXEc z^dTZ|n9cJZ9Kdzc2M!)C)2L!+0*Q(tpM;Lyb zxKSQaf!`AIr|<46z)$0%YrlJJ*B{ADuYbr!;WJ4VuOWiee{PBRx!;Y!1G6#_ z)e1XehtJi32TH4OK+pQwa+fbr{FSfz%dr6*YoEO2HFleDD7LMbDlf;Jp|`I4AG^WTrbmh|+ zssBzk37@(Zx~pl%;nIz0tJf_qMEv0ZV@b3MPny~m+#|w~`7Ys5q0>;{8jd!RL zJF~T1{|XG?)3(&wTHEy)Wy>_n5>bkuTwEKVFqbCwZU*)V{cMNeUxG_@0a~a!^m~q> zK_wouDbVfSm5T$)=~FXzSAvRQ+fK{YSX?2bcZp?{H2>f+2|uk%sBb%r!@QK$RuHBQKQ^LdC3TT!;aSfeIh8n%ZJfhzUk*-LxL37zyaI$n#;+Up#o>Jl(gI_?DWv_M zgroW!HpYeHaLrQR(@2R2jd{+^gm0|?%W*5R#Vt#s*v0Mx?TrCkLO$@C!~HSAH5vaS zeZ#oHYeX$GiHu|ckCwi0&@k@d9DXX7`q?OM7e6=1UU zR)1>n38u9wJGFKqnY8~?piF;ON@a2!N($Rcvhqa!{Xthh!jekGn8c zM{RrkzHe?VE-Rvq#0%Wl#tLz{TJ;54XEvgBN#U-?!**~$($y_f@(9{Q^IVQq;cpl6 z>f?`PVNbj8M}$iS^sG4k+;|y}ofuaIE87!E`#%LGU+Nw((oF#0!vF!NMQ8M$)m?6G zXa!W;1rpVo!-xP4&UOKv0qi0vZS6efie6o>UfGH*z=m&lYSdB?8ofKtWrf(%1l zMGJG3SY;Grbh`>SWZd}1c{&sG-s62HaJ>TT6tV=G>Jo6EPfUBHaRO=or{Ij=dUvVJ z1n~Y8JH#GijJj^U&~j^C0i~>KpCfq#iBDL{JS1F%=5-R!lO$YzU zg1mERnmM>?cyBxCbDw6hkiAFb@$b-b397=wal+@kMKZ9Ay;jx&V+E-B?nzLOOT?)i zmrWKAkmiq?r{EhGohIv}32?Yxo8v}qK&)JjSD-Cjfno2uTkmB;3D&@v4Lh3wOz%I< z;WXevqzK7m`!nR>I{#zdg(i$hkf1&AY_ts)8=tbAnHmw*8<_}iBdYMbi?zga`E=}P zo@p>YRSvzU#NRF&C*gM;QQvnp#*y}a8WbCKsf>yzVAk+Fhx?hw=zsSN|9f{ZkZ@)w zy*l%F0M{S)T~n^tMme+VZAK$GxQy)S@ZD>d3Ehjg`A!$KftRgp%;ru@beMW%zwCMy z9tpUqe6%$c^XK#Yl*=!Nef3iT!RM3l9xUS}XG)s?Vw(m#6N*OPsR`hsqu$pjYJi@c z(yBV*y8OX z!Cm>Yea{S)iF+YmH}^4DYFA3%F&*Mx{+B#o zlPt_TAY{idFGCDnsXA9C-3Ev`Yi{L%IdSo#LoT~iHSV5bvKit@!VmI)Y~@`lhhxze zmunJIFtc0Qb=@J-{GHA;9QpQe=QWv0_!9q`t}sgqsr<7$we#)@&@uRm{-yCmQpY3D z8AT4@SC+DSb{e`9E#*`H-U?>o0{s_{tc-zRQLFVEJlF<_f23l)nAK2T4s~6qX*K?H zy!e}%Q39^=aVbmrTn6=VuNlLyq+)g*8_CY-NRs_e!zE27_cg~!5V(X}t}IxgY#Hl!@_R69R>hSF{2SRo5kG)8+Mlr^j$fML)tJp-A7NMY1lu1l_qTB@gSbBz=DCMb@j9bSr?FbZ|M=Hrq!kzniC&cCLj6oUTMq~Rku zd-T;C5y2DhvPfOj3Lo3EcS<=J5C^-G?4m2GvEi3zr<6BiF?PGe{rguboVRG6uGCM% z!zs?Gd#;3$^fwIxJ}^)_J_++ayZIfu?-L6b&?SN6E0AFHG|6%xoXB8y)m_ROz)F?s zt2=C63ANtaNu&BH_~FayK^x3KxR{a;aXGd^b-T6{M}q?Dth#kqqPH41rA?gQdo2dn ze!Xn2?@|g{7jzZwFQ#E{o2=JaBfp~2Nomjb8Fo6A}{J0x4j0ofPV`RdIlkmjv1L6BW@Do(D=V~@3TcM?oRcOsY zmEfIHptt-`jbA>aH^b>sINA4r;n43A`0B^Vec^mMPL;NOywl^q`PUgZ%%Hk=V%ra& zI4wLLC1Oel^nUy@`*j%(2C@${x7iWBl_#fYO9!w}@!LmqqSgrR3l6jP$K#G;Dte;$ zFk#@JR_C$572KJX1`={ri3ysKlc)C7;G#oRM+3+rv5}#`b+<<)@Lv7u%n!qK+_>3i z8_w@f(*F#^&S$e%+Dw6Xo!f!dKvi^M_to@^)64M6>h{ug#t=f_p@f@P)@ z*qu1FZuU4aCJq-k*DZ#h5JtKolHYpXwLqb#)2q-pQ)IDsTEdRK22b{%w)*ut43AF- zx%hl5hJ3~Bpv))fc=x5Db1@q}B>m5TMifQ=z3eHd8Q~t+&v79jlpv1%KHuGg;9y-z{9cZ7SN_)`#K%Kf!c>t zuILKY;5&A-zm1E6aqpU}^Fga(2)|AreZ4&$2g>~VtlLbQf7Y1+@2UGt(}PpMnACpU zIbR>iT@9}2s9gr?kiok8qWi?YK(0d0h5;N<`*VNnoDyoTE_iNuCJI|JF!z5D;6_cJ zwPf{{El|!Md5VAY7}_TxO1)jPVK3R4HLth;>^B`abz`Lne&pWXzkfX)Zy1;D7EAOX z>3;_HWw+QS@0f<@!EU+ki@`+yp9?E{GMC{-w{h5~`iE$wPqRv+X*>S!%&prKPiaXA$oQI;RJhTR`hycuZ@EDN4Q@TO)h72JfipJ75;!i$`Z&@7&WZ zg7phGv#1Yb;I~2ZA74=tms3uvfDak3%E|tH*Eg_!6-xf;I>%} z?qxf&Q#`>7zq_;}(|Dv17Q-4IYx8E{PahvUu)ss95~(jutZ}i7%zD+}JuUiTyycH@jAXQvnzR3R-`*!I zudUJ%)e+fMu?B89r~J!Y;2HyJrwRGqs^1Ls<0AH-O3VnU>Qou0;2K=L=tu9(VuyEr zSBx1FE&w6%k_QRq8Q9eJ5BZTKQwU6e~$jcUw85e`ZY|MJ_J`*W@>L zU+(RC;Ng~oan}Ieafp~~&QwFgZ(hDTEAD_>{GKQ@iyS2$*N{D(;NAZInE|VZ-pL^G zB6aFNku|vcan{9h1#|qv{+~5}Nj}`pcWifmoPiH2?KrdlhCWIEvk;M^yL%&c8a4_T zsVmv7iJL782W>c)Vb9)?;y*uKiLE3nPO0Yu*yn2m(`M>pbm=2ake&HMJS^#X`p$7G z!i-VdVelh{)a2Pu*L1`PZUvjfM{zYcYKH!eZ-yR*7JdT}_I$XvA{njWoq=~rJPE&K zrcToTEIjlRIkdlY8Z@ORzZBV9p?mlB0t;xDLC@yRfmQi1BB|4m^4T^&`N#L+ujgdZ zAl>54{p=bzG*G2ML-1>($wTjd6W$mS<-VO#dm%`Sz8AFq6JLYtfSl}xz7lS|v!J*; zHV?)nO6z3-a!l;y%7DMND9w=Tz|I1DT-R;+@nf|>5{<}3xAAIs5 zUd*)K8QtdJaLk(CKWU3lTBoi=l`vTEU~`_W92R}QtlU4zgdtgTpP}$;Ep+3A?3fA??FXTjC7aF}Xx8j5&2DtrW; z2%q|%4W^|f=*nglWk2eMnF9_E!B-9A5Z$s z6g`7gN;L}}vU*FhYdfo*+sN(73 zoUsCw!2I}kBpn)|dGp{SJOgnD?N@c&ssuYamBkcWgI^p86ns-+2u#iFGn$`rz_3JK zxYZ*A=TRK*|2(AiKmPPA&^+dIETowMD(4#m{KvJaz^k%9k zxA}7e76WXt1!V9nN|+hMVe$f|pu{K5-&7r zjb=djeVgU}gWl-jhom=uqL<*|(RU+#UEB4~!go6AZU1L(e2<3qxGVa_o#MS5>m7_dug#{W=4vg&cdG-1AL#i0g|eR$aLhrt!D zkB_S;w`DX*>RLzuM$bEcO7EmQjO;B3W>8YLr3$LIytdp_HBNwH@jH-5k)nJPXkDo&oYU zvUL`{5Y!{*YTIyo2|A@;3~V$65moKB2li~o|GgH`1vpgh*_})FAuq?EwuW;vUdUH>ZwdP zKkM@6*xz(~Ebrg>eQ}RS`kw<|$q4`PiW%Su{}>c=I;d7%U2g1fcUh zS^16I`5&_w>+xuRN1|~g>$#w36tI-hFpRWcK^xkKdUq{0z(ap3{X%@7Xo``y?GdZN z6=5`rIO2Ji^|<)U*e>crcE`IWl2vCzf(bM18c zWkNDRujeXV19*?gv>u6*C8~XQ(9ST|;1LVmi&6GLaG4|HRZL7eD7WV1JWWc+4I_bH z8GpKy^gjFa~DX3DdSNM{vB3aN#lHf3vrJxO1`5?fL)GBbB{teh_9Vbv>C*o0!5VL503g_MSH*OE$<)fDaNLum|9LpgeC$Tu$ysRE3Houx zJQS@<2d6ByFG8!rTZOwR>csBT9J#?61Gvf6ub;X50g;|xBOe!+2u(H4QDG*6$l+z< z-?ZU+$guvc(B#C4^yi$6Oh>9Q%?ZADo;l%A$gUSudMFiaL=K<7#g&c~-Ic_~o_dk= zKM$sG)*4B{OyF$RT&53f`(h; z8@6Ql@~rmeH@_>yz3VJ8nU?i%wx*0xQu!(|%Cv`$uDKeQK(g6rMg%NK`C6qhroii@ zD0APy_qt_fN|F}AoRUiI&P9JBfB84w ziW|U|+SOehIf7_SEtWSlI|WiQtPd}L0wf8Pvh2IJ*Z)Rmaee=7^dkS%oq*hGOnju@ zziAQ)6LOI?icHBcAx&8^n4E^+9b4HEtLQ`0|2*WHn}`<}&%#UF8|l~R@1ZDx)oNz{ zMeykh+wJ$pjc`?(*>^K?0L$`h-TX*vK-9V6n)$p+ zg|rD}-3?J6WWx7KJJ@Cswoas}I7=9z1?vRN{UUWc%kF+b1XJAk3gSVlr$ zfH?NoFZu~(2Ar3nK4EHqo$zSsg!X}25SoFprV72sFM#da$s@Bxvv7{0guIzM1Ua%x-Sm`OgncKqsg8d2 zM&y6bnnt({V2`)AKKuIWq15+tzw@4E0Odc8FTUxA348MPHVeyI(98Q$*2676;@1e3 zas_oQL>cfxpr#69=HH#Jb*LKWm21Ztt;fK^1-%Ww8&4qnD`zrmX$l^f6gzy_*`K8U z1qhkf<+(933p*DCsUZhhLREHmfk-jY~(RLt-IljJ^)*#KGx= zleZM4Qm{qEmTdYT65nG1dS2}G(fcq9p>IB=Y2OP$!ZZTqC-*JF3&pXGl`T)y#Mb`H z-edr$b5r@on7E-2)$wnCb!35^v1y?M5R8_U2GB9<0y0GHe?_(*FYN-6LvmKsg5+hevhkmTZYy#}7ZB zeP00X1V!KPa)D?wK6%f&?f?#4E)$E)zK8r~3xfSEw)43RN0rNWB+>8l^}mFtt3l-F zIdK^U3Bsv8>^fa_72efg{&BiK4lGcMh)#42jQw>UxNek;1x(%xkjG8=ztPwa~+<050ofmwss zKlfWHBFVLUKWevX@Ua&X{CQK8kTef=kBY3q#OjB8y)sXLpY|8iaz!-gvb|xj-AuxV z$SzUqO9ztlzW{0hbs}f@=HN`e^T@dgU$iRk+C}|l+b)YFX^MROh=XEx%#Pg}z^9V; zJ$*{}Wx*}wf7{pQyM&YZRyQcVw!nFKqOl|->vz$?Onz2U|pKlcR+|C74wq@P_(2cjoXYcfD1LZwi~K|+wC>S9kdT;&{Rf|a4HXO` z>38mJ4_!qLyAV#f z?!Wzl^FW)z>#bPLM^P$`iL7gXD#6RIZl}@UeT01Myx(nAVrzzPcMPs1K*vLf-l-G; zQ|b;ybSD#W^>w{cKYJ2iXAxK{uJCsF%|ZI&+KU;dU}A??$U2qV0*ptwYy0Meq2t2A zyfx41y=MJ08gpLr>%;6L$cvp#^ zGe*28iW8u3N#L|Uc{p@U5nsKF6YxRBwMP1465nGHjxY_dh$PQ}EFQTa#pgvZRsZW8 zHCX_qdCr{+$OCz-G}VT14Paeg&Si&i3qtOWm7ji1K6r94Ei!~jAY=a{Ox;ikoFkkU zec08Azm$PThbk*^z-y}>$3uzWDG;aUX&MTRDs30(E+yb*1%ctmqa=R%BFL-FF2q;N zLGi6!tQoNtv5g2zk z46&o^w3nhKvlS58Aw``Wcn0yyIEEVsSK^nZy|QJG6QT32_~h=fV2}@ZXFJmnk5Ahz zIg^tI!+-DRc7%3C&Uem1-rm14N(^CyN#?X`y2Jt`>x&+;i3mo2VtO;;=?5^cIFDcC zXE$Qaq{%FzzW{P_+xymouA#+e@a>LY1x)l(k{2$jqDAeKt;YJ5_|Va(^RDj_p)0Dw zj$0)NE(G5TV~~i)Uaw1Dud|Z))7$pvd-ycV_#9ZTe6`Yl?S@mWT>!TF!lP00 z9>fnnO1?LHw*8-kM`^vNIZ;2FXs4=O2>ov^bPkrYA=R@{)Gtq00FyM~vh&C-L{+*- zOkS?UNvG~z`*$%3;>>E^E%yb$R|zMMSDjCAy4f3FPazVYYze-`rPjmeIrt>aB^Uh0 z4JB9>eF|Y-fQDbJ+V=I<=&MHhmA%ME2pYp}t&6(;w*M#FNk5c!F;xp6uUojl^eL z0=YD`tBO0f^YAZ6e+HBU5qajD7ow;ZV3)l-{b!*7;-=XAXy&(m>@}w`Ue4oAgdBNy z_l{W+{Gllt`mV)6JT_-fJK|6dVr;Sthn?=A3vcp`-?vXvSWC!>dU9_(M7Mz%n>L zRW$QuO%9#S*Q;BLuE6k<*JaOxWVmkgeJbI&H)x*De|>i>7B`;S>LmVKzsC}&X+6@~ zDKihxAHkuw4(j!G*;miEVt9J2bgw7t3aq<`ac;Ceg z=L#ts!loxV{hxjbP=*#Qgz#NMw`$K#aqyNxe`2LVR)8E4_o7DO*OdxujwU7P6IV|s+g;C`hlR`$ zFRGMqV#njzg$3M?)y)r7jb2qE)_p(QYmJq__1%LfJZhy-pKip}2+tC@D!{9ASM6(K zs&48N7rF|}b`>>a<`lSJT}l2|(G42QW#~N3V(|L&e>$9;|LK1T{yE=YqxPN$+v^Sw z)VMT>`7^xdBf{oEv>_=jjM@|3{P?FhrMe$qW6Z6KS2QKadxwo_luChppC6^zT|Odt zHU4bna51Ehn+}{YxrTB&h2+Z?%dsBUZ?l*iDPaFHYA0`xGtfoXZbW{L#vkf$G3xI9 zPyfp>lggD9{$$(Uv%mN!O4y+P_50`HfBk+7Qh$G2fB(O~?@s)$uU`tew(4JX-y-zC zzJ4+6?JH3s{xA?S%w4+^8p<(zespD@a|#&!aTSPGc?3L81(!LTqH#IR)BK2alK*F0 z20f;(3bNvPAbaX{Vu>vn-MTfue8p%UlEY<;cK6*uRWm0ahNSdkMsxI}gU^Y$>RCq@ za-j@v96sDHo~=kMNe45s1{T4_=V6(&`!`X;a@JMxuyTAPv!z`kCk3pJ(V*k&4)AC1 zImT;SQ8=9EcEYFU|Hc1hScsYA(B7^Cr_QB)YM~AxbPN+wuF5=6Gz5FyFK|RGTKhFS zBKvWl1H8I&+ZFjuP9{D`EraHUz9Cg@4q`ZPO5Sq55Z={uo(bs|K`l9kcZzh&vE0xp zYsD8SAj?HY-wYwU%tLuV;jzHW7RbUW)9i@& zJTPt4%+Y(v6U|i2p9g*WaWC)J%#{oq!t&PRPwJHAz%+8d*zhLHQi#&Gph{aKFVOKepzMU;}cW)|0@g=Bs9k2q<8!AG35+dLFBP3p631d=AI$T z4mUSs|I}G+%(NU71&2Si(A`2OYYTSGkQIRMOS2X&Ed}BX)qN|EnlgND=Al72XDUbt zcV_K=ZUz!pD2)_OL}K>JgNlp$N&Mzz@Okv}*1G6#EYUP^zKct8X>O1^ud+K-3EhLbd@?NO?&uz|_TZT_SCQvC0}iJrIN zIiuQ@2hLwEYyA^kYCMS&saVL$aJkoE+P4a+U?MplP->+QwH~+5Jii=)ODc0h`xF1m z|5t!@XQ1;p;RV=tYqZF&(UV~CsPj5BH3zhtkp0ZgikP3(8e6~Gk9S1x4|;yh3C$nP z$h!Bt9872?_IxqEf~-6p4+-(+!9Xt=$Gv<7Layo608>sWwmjNtMys6)C+(HrmQ8Cz zLf1J(;fQeDm{VBLs`X#~zXIWB1wZxNSb!F(aQBm00my=U=I6kRIao3}DwR7KKwoJp1?ek!axo38JmA4;%vrFWcyO)7kRL@zf$uL$zrUH00&48@!~?{9?i; zBY^A{AlL2rC7Sdw;+poS9H*Q)NYbAtTh9n4AiHklID0?NKVe~{DsN8ko;~`R*|P$E zeG|Q`<$DQXhr4>=COKe0G4?FT{yedRyw+1Zx&$AHhevp?Wj2z?fl0owGK;Ms_ zKL#RcKQ(Ie-t5vSssJ*XW;&)aZS*K|M_%+$He{;5&bAA^K~#}3hztppV8I}UFJ6yQ zp+|qJR*mN%eE9zMcMM$!-cP+ZI7srp`hNvdi{5#?Wrs6b(GV$@I$4*_DY@k&4YfJM| zK!O2`UZ&&4c>UbbT@FsEuqN;F*;h*lTZ^Qhj}-~VqEbgB-+v>We>ATEQ*1=XQ0W2) z#$2~Pf59JpW5%mW59grg?zLOvy;g{e<8$TtpM6;O%000LGF5amyUoSwPX%agF$XNE z%OjJhbJpK$vY=?>k&~&E0>SPjV!6|^7jDUvEvyV2^(Mx@B)Vy9%z^3t?iAjSo+z+3^=Z~xA0|I_-t;4# zGm&K0?xt{}5+2->2;H}#fw*V@TR^10aG@G^7OW2QgEc1|@w(v3%Sz5-T(VC;-^V-^ z9$Pg$>)5S=d+)1fjD`ndHK`67Ej1FKY!wbC9r6zxT!5aX4*4(&9VAOXUHnLP4$M+} zDTU3#Q0A4$9ls~~a8n6$;&U+vg36?N7rk61xbuA)T6R_-Z0q9W-I6oGd)O=TRqIJY znspbeQ%@0Yud8c+t)B|z0{7_>Z)xB&NrLaCZ~%VgYu(+jgT!ZBg|||)F`diX{_nWV zGka`BtRI<;%;cW~#piDx3rs&oy6T~Nf^Ylq&bRvWzdMXjrTcJRi+LsJ<~z4HT~sAr zKjUdNr^|%Y_xZ>0j67ky5RtEKS%ee$J3i>&NrhX5cDHhk?_>3EDM87f{c%T%$Cg>y zf9HRzaQ)@r+fTn2K;3#T+20#l#K`57a_`vYV8I!rrWZnp^Xo-9YOQ^^<)$2^mXk5T zlF#|!USuT%yHy#>Sc##&I%U<9K^ZW3tnU#IuPE{0&2~g&D8f%;>$5elrGnvJM}~nM zJ$#_Zb?pn6Kc*S*Y>w3+@pV?={VhWs{We;ws)W6RY;vb~#EE&bG`5T#8K8Npc>T_AL4xPOZ`!h_ zh4}hYvV+}%sqk>Wo;shKAr50C=T^P%hj*2^_1&W&@jX@{%=z9y8jeM1S>7+;Tc<}{ z)3J@W`aKK3+P~ja&htmAd^)@2a{I8$NrP`|5-upJqbJ>buo9+R?G=PC@S_Ek!#d}d z4i1+Oa_?)BAgph#v2))q#ER}yyE`~iA^eszZO;{B9KFdw{W8%PHwea7Efd3!^Bi@K(bGVizz7OC0x8mnNszOw94zMqO ztArPaxJtbY4iod~zSsM{r-2sRyV(Fq9%9dU{hMjZLTsDNy4PS|DvZboH&HH_;?j^) z%!coLu;}6M$r?%|e)B3s?47Njyt)W)lrK|I_GlCQ71H>i|XJeWEbAvrYe7Dl}aYx92&=j}+-$FPKTNN}4(I0DBF#nMIkj;)DcXow4z+G* zYMX^K)Cui>`n-t4#_B6B&V9H?WOslzjT4$%nPM2=uY%GWON5Dm3aa;h)aAID0);B) zt8Fd{q5Xm=?W}SEKIz8Adp3ymqTHvTn~K=VkAD>8mM!-DeU)HgijG-M@?7NiL;S|MRTdMFvsmu@v2IfSY!Wk$y>V*`%>}! z@@}^y<~CzhUzk_HKU?MtS~VI-q}L$+$c|*No*`@6_{)ua4JqWiQuFbZ_c^N5$tl}; z*^7L7c^h0{qDua3!xINm=R7E#A@!fc*TD3*8dY}GBD~BD(|j5eigv`w*oTD7!tOsZ zJfbYY$k=Y<(V}7>j``TKUs*_j5be0Iq7qmI0Xs(yh0=-=HA+XdGxsNf5$#|7W;-%O z=JY3zT{a(EaMDi9Z`VKCXEnN;4Q%nQ;lusblAgGpsn5X6hs4)e0|zSkho^EDAvISv z+0ZPUSh<(8AoX|_21qCM6-^F9yjnrJic)JOp}3VK6ZTRUtpS7;eIO=rQ%f=p^ z{QN~eqNxh(-ZPjcmtH{pjH@bp`4Ye_^rvw^=xHRhkgY-!mxuj6eLHyPQVNV_G%)Kp z+GDq#%u3UKckIcQ-gTmz)PGE0gZK+~eZO}v0u6T)&*UB#)Wj-9J#~8)?%5@NdJrFq zSbtwrOE}So#r95Bld(&ngn-ds*N3V=Rw~&ra^woic-zW8FB1de-#$e9xZwikia1U)62Ey3%2XI{OOG!?n3t`9-w!Q9 z!1nrltJEwEZ}l4b+dLrpjeF9|82WJRZm)ocJk~^JceCKJ4^{B&*D>$Sy{gD(ayjJW z{U@NJz9wa?LPz`v5b|hT%EdniB}4ialA)-og;}VjsyXgf`WWpNYtXNz>cg(e_D_2|tr1Vxdjo2! zYS>eM&-%TN91>+9X1ko@K%C; z(=TUy_Ix4B&N5Q}nQR>{$vSo9kuAaIWFhCxHYdXAH@jyY>n!~5R}TeVOO?yt?8R~v z3g(wqbO@#wlM9STt6@<>py+FiGODr567Nom1={`3R4v9uh(tsqt}2>~FWOk&S&m2s z1*>0XPOOjcMD7&>0zbwV-XG4UQzr4*)*)V*$LAT{5_kr<@<+V#MOv&ShRSYYX{YNoMezZ)w3BhF8Z=S0N^^ftBS^qlkdro-u#?htM zu_V6EI&ASWY1RrZL2p$4&cF7K$nk__A=By%>{^$8kss?#IIP&DxJDxJi>*9W43>y&Rdo%Cg7;gDL9j&kteu^98GJCmW3TVhX; zgEN+Np*$@q=!ow}4U6XrllUI%a3HK9{K>T?$na4=lv{Zf1^ssCRvVdtl*hCGSc41+ z@mtIy<4=1r?mTu|R#pc+$XEPZV_FST&;GUM>D@^rTe;$H2;yl4kII8dyO=gz(2y~M)7J9Y&JfeQJl}2odm4EYPU9qU9hIexsF@E?Xa$F?*-W{H zp}Dhj{N%$WxbnP2nKRZCg?!myC$E`-TBBq4&s)n7QjdQmu_yK7YsYt0Qr|Klq*8OP zMTJ&Fuspe>TG)N`qWH!Kos0-DDl~UK^X?1^y!6`RuVglsNsTo;YMlg^jaqLwJG


        aM=o;3q2T6z{Vt&#+)_AL0yycSjHF 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

        g*M$KjSm$R;}UO+ATg4nh}<4~q9z*?_$pag-@S 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%0AN~vtp05{(YiAXW9R1_G>kQdmg+CQ#_;03>P02V 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

        IW{{lD?Ud|I~r(FrW`Cl2tDaXD1UOOf%5lh|Cce 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 BM94Ik65wtZ2Ra+4yo>|yy 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%0AdA+UaM? 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

        0V~CL2Ma7(CB|S(;#vxSP9b-EL+Wn2qVC> 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°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 z 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�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⩔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

        N>fC8R{O1*i6TJs2O*d z&Y1?udJDB+$n)=vNrRy!YP%gHTJvyA=*A}*mJP6S|0dKHd~C;#JY2qd?&8ID`hkH3 zW)|;1JH<=BLXo=NQubM$JX2_!47oXt#9YA7Lhz z?}aQc!qD_V>&ea1!_UlxZZp2`ZfFA=j41iWq%h|weVlvg;A1EcO8SFxVnRse;W>QI}hElUhk`m)jsU&S_x~eV)O1Q(E zR3SB5RX-R|a>aCB58Q{b(Izxd45W}GhCC|anjgJNLRD~25|6v3l+x8RYE{ShX)H7m z3&d5ka(T=gM)g#pDQUH0SgT1Wt($!J1V-YqsgZb~G@Q<+Fgo5S5Jeu{N4{sscanUk z$oDKV3wau2ArlEJdV2yUXrA64U?%7g&7|zr(~Fb^PY?oS%5`&r0E3`b*QM7^D_A|%X%SSR3LrJ>WHWi<^Tq{)&{m0=Va5(SBhNTOUYlEnff z#G){s87&C8j--L5kO{=FRw=avGE_#&EDXYEf1tllK9H9W zjfLrUBtx3_xv> zGpIXbr2V@4p#hT^S20}-jA&)Bf)=!r3Ra9-?Sd9NV`vpHeKfs`SPz<3)Vrt@cg4Eg z(NYORiKL>Uq#A%}_ldNA#+El!67kUlSD-XWfbf*I^thTcsNCQTwo(B#i1F`0>8YhO*ofFP zD3c=?)n8(nk^1B;+-#N=7T1r7}?q zfk{R!)R{D!VwOS5un(}YmMZNPL)9sjfmphjF^j;_*n*llqno7x7;u#N;u)QCuMDO) z4(WvA4Cc1_3=P_+D21{H2~gTF^d4ld7MH3N3rK(-m{toX)v5+fMiv+X#-ak+ECV@9 zz!fsWDfvPce-IFe9UYn(aI^$12c8mIHq&{S-H&rejB85AB^o4=7zK3sWz;Mdr_%sp zd`V~NRZ1gcJRhJb8CJYWBnWD5kAP60th$IyS74HY;S&`dH7kLD&WXZL9%cau$3@jAq)AiO}oi=5BcsT-+gS1BP~^e$~o2k04^(4z|0~vD!e5L5hg(j znbMfaS@-}p3bx5O5KN*hB0r{`{I3xdAegY}cvUk{43NtdJrN!FWn9W&Y48i&L0P~^ z%_s|mwoKWed8+u-xgv)2ca!g)+900+qogbV6VMifN2DjkdECi-#nRf2kd~O`K~%mq zixe1su?LK?YAIa=kTndzB@A@SB>XArL&9`RHIRZQXqaKdje>?VKfGR1L17`! z;vxzJse!KTpqSA@Xv?Noc*z>qI0{UyGs6^m4UkJ22*^%MM^6s;r6Gqrqe}JXFO)?Bo#bj6%1yQVd{aZnx}>c;T_Z@UoxPb z@oEX{GzEfD#^|@iL>W_8NCPsCp*@0Z!G!ROqF!QnbC$S}8YBy)N>SwvTVhmF3<_tF zVt`q%B$6P$)uJn&Cs+f>0u{|Yus2D(Pe_=rrYj40Q8CLI9P^UdLY~-V$@yZsj3ak4 zT`WTr!G&H)g9SUJX9|TR7(GxUZI%qg#Hawhgk6Z{s4S$(pg_fgFq&R^#SL{}B+paY z88lQ_Ydde8fmRdxQFU1e-U^zkoKb6omjX>7;gEzBg*}!V1Bv7^tueGbvu$Tcpyc~W zbXCX7%tU-*YG#g_1ibo0nK9bvq!c)bt%VmR4o!qLIJ29|z@S)lkrxO=^pz6WbMR|a z>F)x+B9*KJB4yBGk)h$l0c=`&2c05<>yg<5P&&C=Nb3uMNOq+R_~kRi8WXasO3}a~fe#S_#Wa$G8+fK=arlm?3rY?{A}b5os(nXufZSI>dPxp`{eeuC zkdZDGGEg+ktniDLLNU&RDHj2w4nv9q47(&`PM7nl&TlcMy!B{)9w*oAu87QI*I3i5 z@OcM|vBKlK46t}H1HphR?u;1chJW_5ST8((iser+fGniHM!4@5@*6C_!2q{6$dB=z zUi;w>HJ+cx!}%2<|FuH=9R8VPv2cPyyqqsEz~gMYXA7&lB*d+`pT)`v3h{TQTio$> z{P_0(i*>{E^Y}JTu>d;b0{ubZ_Y8}j!|!?goNu%I(*bY#`R75#)1VNq=U&MjuSet` zum2-Lejfj)BDv!QUCZ`hiupgm=xPz-CH?vJ?l?$(?f;mN|JyA8w^{z_pgaAI!tWD8 z{(D*cntR##68Gf1^YhQI3Hf<^r-ux8oFhN_&kOzUahCsamj8+C>X-jJLjK#C^Z)H1 zq4$3ptY7{g3i-eF5Ze;-5bMv^yVHyE^96PkM@Wcgb>kwtCKg&PO@_)bGonF-EKV;=c1vt-tyU+N+f2AF@ zI+5uAbGCfd)1SBc}7_h!T96s`_9k%|Apy)CO{ap`#*Z<@9TWZe|#4$>GRjuFTdU= z1gW__;)Vw;JHrhRS@we)evM@pxZ&4YV&xL?1-}Z!GXN{+Bc&jx| zy5ZMbuo!euFi>xZyWii@}cy@Mjo&T!4R`!TI^qoS!c;_z4025`*(osKWu< zZY1)<;IA<|;%gj!-VOgN4rj+v^FjF)4*y+u`oHIJb_Vr7v-bT54rj+sPcnM`nac?~ zf#q&K9|$sjGWanDzn;PQ`O=&}H!}F+0{ra^{)7PE!{Gd&Y0kGh82r2d?`81c5#V<* z__G519tQuM06)gy{KV-U*7^k1V`7}S(+n;~D*6C}i=n(e$lzl9xrZ2B3^n&}8C(oB z_bCP!!^!`}_%m^FvPfIc9&!;Qa83oA`PFgY!cmb~dmx---vpLhgZo=eFzKajm!g z8Sufg?^+s6L$n(Q2%cIye~6_Q?M4!q&BM;eXpc9e9%l0wK4*Q9!NoIWF?P#MI4(2( ze~&f56D+-Wy6{uivQQwx=MPwV@d)KVW^nNoxj$oYF_O*83@#py{5L-323x%0xB0*$ zEwyViWE^Z^d=UEM10;Rzys6-W|HCbme(~VS#~55ZUS zc&zbXFt~WW-`}+0+T8BIv{0|__|S9hTPPke%+cEzTs$h~=Lo!Ze*NyZc;ml|;SrBL z9Aj|t9Mb!I@TflU6^2KQ&HHf%7el@Mk`JEW^?|>@@Q4A9USe?Z2&MlD@Nf|3r;I;* z`ReN|y?A=`HyK=vef9SYE}r=KFFthMD0#!XeBi?p#V-cDJIdhVY3;KTl`FBo%=_S9 zWO&3-e;@Nn|LZ>R&oVsXLExYBN&h95UOeydFC=gM@GX{JJT>+;fZr6{9k^GhZ|FMj za&Nhg;t`KY-FqGCAA8-2kFz~2y?CVTAs_tXEWH>3Amx+3z|wzPcaO^}3@%1;`=}3| zPx-)~Wq8Esf1hJ;F}lE?GPoF)?8`p*{~DuxpdIp@oBx*>9`X44A27JM9*F0@BV0Um zYFDdwx$P{ycwk!}gNvul4KlcRJnv{LrC-#;Gc3J$jJv|%Vu;BsgNxBAGzJ&L9j^G) z>k~fk-$b~FzIxgx{fj>E|JLf=zh3c4|4)p5@%%RFdhhh_@`2;=ve-{WJ`Y~+P0#V` zX}RKgv}pzxV{;T3T#PkhFt~Uw?#~l=?K<|OKJ@>p5B&ETe(~JfK&EQwhM7ap6h%1} zn^DFS$&{i5vT9Y$7j#3dDn?1k6t%KSe3V3xqGUBCU)1K)MI~!!Rb5G&%K>z=MYrK> zr2novd%P1Vwx@@pmW}F4fcl1H%~ELvvN-M(+d+gS6?ZQ{eWFg^A-ur1zYfNc6j;QTO+8?w(Y%5ef*t!1ZtcJ-n*=gMV1q|wY9;+ z1v}C^Ffib98m;l|3y*>}_?DKgrfEy}CXND%?N_=tzG$2)n{Mw~~vH@jeZgOZM z5pzG$=}xgD<5R;!2dM;GmX^AUm&JA;KeBoQz6eX>rmQ!+|d)*mwpuu!E$g!Qp_IJ&Z zO$g4d0QT-P!P^;8W`q`|QcBuP!SPHWBCm=>(9M>vO$0F9yBl7VIdM;5&Wl4iLoEtC zuy-fqR82@OxM(X%9=a8)h$8rt1A)4xETqd>92?b=OESCr+|KW0hZydZR&cLLfa9p` zGTigu(1??;Cu6bu6aQGgEv}Tt0Z~j_(6!86cPYA_NtYeMow2W;p z;6iQXwYh;ckC!8LPFK}4ZZu9GaLe!5@_<*Ad0l4+U0W>39vsJ}2z%!xaJ{503LIS2 zy#xU&Mr1mtRm5J1Ue208s&Z^mnPD0#R>c0KQ{^Xc#^rqNS#XZ*y%LE5t;a_NREM6* z(B5sqw+16v)tGCRAZX9zrhY=p-$VqFD{**_qb8t$R}o1zoOGwLAc2xWvIm*0r3m z1j6-Rc||j2kU+VrW(&AKao#jkxnRi9ak{i>>)w)-0<$jIY`j0%=q>)te!j39kM&C2sDBt4pga*~xVkAex3CEI@9D>Dr# z_e8wtw#mcoZUof=NDEw~4J2;~x{W-q%Fu&zX0fw%FC>+ZCsIeJW>fOeC1SJVLo@R9?9B93G9HnkJ&+`*yFXuKXgC?{VO7qm1`Gl^sqY*#gbrjC zv+_cEQH2J{sD(u!DlKQAYc<7gvJDn%2T5)2y;m;e@L#u6w*1dL1bjpcx zCekS%>_$l{pD6;nQEjMzVYH9~?4w0Zt9Hu6nr>k7i6L2z_H=hg4|MlNyF2CCRbYuvhsP{o`F1JrD7ZOvdOmg6vNsl%FfraRgfoh8pwkgVO2 zHgbgSx3!;k9BOTq;WIrmH8LAZDPXh3cM0PAj~OVB}wLHKA>)be??Y7I0@e;;LI5*cJT z(g@zgU>eN_7E!f>Qt1{R%*IC(0PeB-unyC(ir9aF!3$|UZ5UPZq*D$j=aQ-TM7RSx zl2z@9z5>=}sl7wqGf4Y9O=csql!1PxP$ATZXUn=-!McJh(ERd;J{*o9zO>Qqz|zst zT8E&KL^36kgMG?D3?^xs6stdCmlX*@OaeLW0zJ-Aozmqh*(x1`IBRAMr3^aFL8~)+ zN7F>}n%5BQLRX(~r+HD2a574>-Ifl*o!Ofw9COJGnH;Vu(EfzQnz_oWDUMdy4Y@0&?)zJch(UZl$s&X zq-t6RU0qg*nIc!y1szA9GObJ4E)It;k_5&D+Ihel_7DY1QKH-)#su+^L(axW1RXa2 z>R@LUU)=(Dnz|)y+f&>2)K7>#6{)0+1%9iW^A&mkWNX8DIa7G8E?X+HpcX42ixzr% zFB(&li2U4?9y(?kf@ECJNX=p3TMg5~GRl`B+BShp^i+J)`$!)2QY z!-r8_ajPt6VwYa8sU=tNcp^lh;!yPXsgjc^T-fYUXE~!*3^_4HUS}Ng$~OrL-mZYl zMrl+5XJS_cYPj7@1)SKfpaPb8B2XU=hsk<5_Eqei8G1kmwM0rPD6A}ML1N#7`WRR9 z>C6gba@t3%pG69Kwonz!6wI8C9kAwK5O99l!TelzU@0J&%y^(=|pRRX(Th;5Y zo5psk&Al@1_FTJVHC0E^mDwU85!{?sENV*y5OpG2n}6X~e~j9azTejF+uHr7O}kqw zOGeeq7@J!xLPdI%fZF-92)$?h1}51fYA$US=};jvd_*4967h7?fqBDKEuCFbK{)XE zb*O&^=E-V=8DYQzbW?-^RD-k&_vF&C!=hsrFeF0KE*M7TP*>N|(h@mOvxv%~D?_~( z5el8POD%WN>KS_1T?cgN&8mKYK@LT$m`*FlR!O*6;B0$!vcMAHzuD(s1eaA_hL9jz1);2hUQTC0HV5TY)pRVQWU4B# zoxKR6ZkIHJqbh8n!ksZoocXtqk)-v=*C{hf)n#Z;eQ-2gBrj|mAk!+Fq=64e4)v48 z9tM4Ho@fFXN>h&Sufs7bq+| zsJdSrw|i#kkOv3l_GqV!|Adt$$b@JxMfahaS39h-(dB`D*E6-~$k$UZU$iEtxNPN0 z-`yXLy7G7|bK&bGIZoF1aIrBwTUM80eul%sbSyy_8Sb#O$WUxL!L*32P;3RlOgEB@ zDGgjkB#+~k4k^ns$&qQQSt@v9u#PQE!6_WqvQ!T-r7~2OPv8TP3J^LX3X28Y&Ojfh zKqfedV!)TABnJ^9R4HjT!r?wAP$4qTKnpn-q6mfpEm?_Are+fHq?MloSV4qnE|*|1 zWyr{>L%DK%cw|UkS}0@|9ONUxbYBiF25K8!z6+Wp8i5f(u0V$|;4+YIE`>-PvSZLAsTh`29+hD?n0V zvc=e_1a3ySJLz8Dd1Nwzf~mrX9I#?Y ztK$>^tT}4Sk>0o19f`VoIxW0C3>oC<)QlX4YS;Pfm6L^hIgO*c=Sym8ghVRo%$fG^ z;o&e5n2uVUdu8q*?};XyiYHUiXaiyp%~X6MG14?CQBP84K$*MVZ1|%|a5n;Hdv|nD zG$`{!bmXX`TvX14P-y6*1uz#> z?zyCMk?fS|uBlqXuiZ-HB~taIy0+0+8I;LBEmgN4)RDLb`FzvDLwf@G3PnGjqS6h}k)t%2AoV<_GHrX=9qMXGHKb5Nz1iNTJ~kqvL}=7Xd0_Ve0Q}uSmL50WI1tlwzl&<8}olSl|ySro)ej?7Fbx(m6BRwO;brL z3kC91)I0_%u+PaOoSR3N`=W7gHxZZM9_6FIYm#yI-EyD96BQ@@?G*LhgC5Ci9hhn2 z!QEDyPc(&jxiMxR$01U)mJuMA@P+blQs_qeCMpD)f9smnvdRI%2JmDCCl@ zU|<$pumDSw=A0_4xHd)>Y+=Gl7aquq1991bWVIFm`sf0{!S24=i9V)O@EwA}3U{t| zl84S|bsw8=kBIYa3Z^K82X0NAOGE2{B6eshj~yZnr{7eic#kg;C)pi!#KHr~vJaA) zfgkH35{@wJ$zji`h@5uQ!typd)Q^IMQj0el>!?NKY21JWM57(GrXZX5;KBuh34}E> zz*WeRRak|(JoEI9CRroy>Umbo8ZVPgy>Lj@zHdk^Y4w-O@x?(7%2;p=r)=??u6~b> zj-GaZWVmRysb`&BTVODMUu4(fCM|uTBG7w1%9TS8fbBwa`bSzAwb6Mag+y`wGs5XCzkV#o7o=u7~6C(Pm!8 zHTQz8u_HR^Y)NtQ=4t{bCtKyMeXKUyDgt*?3&K(=6*PymRMK7&QAyiM3`NzGA7Jf8 zqu5ouMJwN(8CQt>5nvzgse@o>+9z+EeSGs`|Mbk;-Yp+KEO+-2yJ2+Xe%#&MN!_eO zWdzptV!Bw!))c}gjLsfRb`Yoe^w8EJewE+iOJUZ$VMoi-XzD&q+lf^$Yg_nmZ4IEt zShofh5NSKkop3bMAX6EzOlW2&jiq!&0s2UoT&}9py2@$Hq%#Yuf;(ZI3y`EJ%Ufo) zOb*yXmoPOuG@T%OVcNr!njt$Lgtr~dwjIrW!W_+NPJwW^8FPu`j%Ot;bB6g*b;_nu zD7rk*aIJ%F*TzHh+A#q=|G@?ds~}iq^0E}2NkO`G8FZ1RQ^Dl>z!8rgak+jGhb}S~ zqHEN6rUEni?Y-opQ;UQ8h-+QOrGsjm7Kk^LJ59aG#uip&8!aP{<&utC61Fgt@LT!x zFsz*GUGdQ)M{7?&@HUD(rV%w6jgze^m95^_LAExx_I-6%!JRLdnTG~y>oQ&Ll$RFN zDj5w>t)V+S_1^$>id5F^1;VOtZFg|@syGTx-G1d&o!VKtAO7A(y>@6gHuBTaYe`LO zdu^{@ug$@?tJgLpiLQaOwKiu@u2~{!MC%BBx$2-b+$alOf%K?g)T4r>f?mSIy_GDg zre*p=&J*!bQMGR^>eo+DST!s4d~Kh9JQnkNyL(zU$@44abKjNl8R!jrp8b*_6DUF_ zSa4uEf)$Pq;bi-}Rt0;}U~gsE)XI4{N)zp-ouR)Es#Wa`YQBbz*T-EV-?+xRqE6z` z@-#2Z?l#|k{!1sDZP?{EylI>0nb9Asei?m}o3^a6R(yRL(C57>osl$b=^yEa#FZ7| z4ezg4W9c$(R?HRb7uuH35ppF`N14K;ed%>PcfJNa#;7>OriGl}Wc)C}?WC3W}l z7Od~$+rXiy)6}cX*K<-s zl`YeMjg+me1z8XAS9KMP)S$pj*I=Fj9>+4##WoGMmf*rMS)L_nb-FUC52B)hxI$f>d>FSP8 zTN$8GYJ0Xtxp`6U*%swDOO)?wEXuvxqTIYF_il^wo2HfTYB+6Z?)6o26aJWu-(rzB zq|GPq-(2#6H~0N3b(#@Ox8`3I^*4*YXG`b@nnmAxb!T+RH+x3MUQ;DEyKt7IbHH|w zh3d|_fd*VXUC7*jC7B0s?XIKQIV__;xtTdETGC!e&wHipX*y-EdtTgHK;?tSGb;+p z=01g-52h&ls6bg!Nw!Z7+ji#qiE`$;3hrC6iK*lk+_x~>mfW{8B~8a@<&|dEt5oy= zt$;*9BkjYSGUnXpSd^kCj}uv4g4E^WicF8Cr4%NnWaNQfcWDVzdaNncY)+^#0t%Xf z*qIH$?rPkh9fLnhA|J+mJ5iK;4!Ij4y*>k~=pT!bMR5s>yT>}K8t(A(ac4!<8Z^|| z*QYYX)%Ojk6Z-ttsZ-rS%90Ei7wpFD*d7?R2Zrr|VXFhfh^l9{Ffd>?dthkKXQ2)S z{3>RRj?D}ddEd9VM@CYO)OC%H%d5^kagH}8opPpPD#ij;=-E#4K7j4D#CdLq@1CLd z{$9F+mM+3y<*B0WeVEHR_ng<$gTOL53OdkYkgplN7p0q@^Z=hja-Z9#zH-eeZ(4QA z82-9i$S)Xjd!|F~iFV%!b>ZN zHl7>B>7zxS_EbAGR-P+&e7Ru6K*vU=#yVvlxet`jwjH*uFMcAz$6W<8Y$7?c1uG14 zZE1F1(*4}U0ppg8E^1lnU`v^0!|&AqGj_UtEGSMD?y0rxGyvkFebswb%AeA;>YmZj zx@*;VL_kk(ADVF)D0MTd(>4Zb1)i>Nq5)l$9x%5omNwj-G<1S^T;kSfAhV&rWqia+ z9~+5}hPP+J+ZuRV1N&>>8l}rcd<&Y_3cIou^~*CivpmRMq^JxYG+y z!!fF}_=#-|wKtMXv+yInYP2?qxwr|Z1Sj7_mjr=t_Ay{29u&yE&ACjvm?39XWaV}| zyDBSdW!JVDs0v^wCs$dQHi;k|&`=pao)wi{DjLwDaW?+N>WSrBbPg->hY^Rm_{ zgRCng?V!~oBBe7JR?T_9x28ujMG(w(nysT@qa&l_ck5yK-BtFr0pC7 zM!r|*iC^SwjHrvis#?+(RXcI(kK~&z`3eU?`HDtC`AUXC`HIIu`AP>u`3grud6Pq7 z?XclKQ|omYL{gPf9C&~_Z3}~mQQ7orgaUcGdlY0m_Xw(FsxY)<)#Xmo9tJsDuM^rk z59KhJLvt#*5;@E|k?4u)3Hv1!%}Yb$k;8pxM(a5}-&l4Z7mUc7qd=iYR0^xJ4Cx&- zjiZ`$7bSrfHGa+^xz(Kqb2GgNN+4Zbp~)3UUtd3>?2x3`4=7Ie5;Eu~V)3+d`~oXB zrC_mE`&s%1rby;Ngu8u!QucrE@Y^Z5Qy93!FD218&Sg6tF@zB1m)VifG}!ONOa zTWE??4z#Cz{TSl+E7LP^5==T4pGno(FYBsDu23yu?^EWB+PqjF3_vQ#U-&+{3u0)P z{*A`zAKkCk+jp@4&Ht>O(@gjLn%;!6Ut~}W&-qT zTp1pp8us_It}&g^D50iPdY=B}RQlJ@>Y@%SG&AQ>c-vchdz!gD&Ad_zp~m}!7!1zP z(L57$@jRsWdcXm`PM(US1lLGNaFtXL?W{cyVl>D_#F?(EvenEgkI0>6iQRKF(G=kd{EFvk zS~06wWDUwfAn^!)uo z9jEJw4VScxGjs@Pu0eNlr$&W_i|8;68|@wLOp*KJGs7^rI^!whhido;{b}!r932`L zlaTB{37YrVS^T;V@SC_iLw=Hl8DM@TQKcfN6FMsbi=-@+LN;Hv*IC%%rMu%%h-M}2 zI@lPsr_iIGUH}ovm~_F8t;4y*z)Czs@KRZWe?>J79RoT#9V66b5CnRR4YRU{xRG$+ zWSNbKsm)^OCwQ0~m<@*raq_7{gQqEh-l7K?fKSzZ?GOB$_Z{!}(1+ir@5e0g^Pvy7 z-;S_-UaXo?^N@3bQebho6VXM`5KbHIPTq91{(k{!pD%dYlsyStR5$Z)*9Df#T@)1W zRnemL0PBIZ*2QW?MT_@cL39;GKn_o|tDu6E7Te-o#iOmZ)!NphTC1Q{i$?{I3L=QM zDu`OVZ~ae_$=ml<@_pZ5f3ry@d3niXGBZggkB@o=zpvG3s!8~-n)I%ufzY~_rOk+c zTv3M?0bGFO1iy`>hP14M^dJ5msiO`h6a6L6Ig3q z8Caf&Cat6j_4u?7;SUW<+lM_Qb*RHIZr^`zq`Nxk|Hkv4V;`|i^n3;pZ8v+zLoLC#+$es^t<4&S4}G7^^8 zD%$b18mq?&;12MWSuzI(Nm7%+y8c?j1gTG%wTU!Me=NuhMLPB|ds>?tLjo^khiJ6U zl5x@kPrdY64aw^Jt<>1OB-C5dHkEpsjJ{f!vqo?78{DU^DNoYZ z&?HCn>6Pkcv<8`^P~Qws7l#^JZ3+ytUTZe%4|z99b_n$AsWYWCb(YNCjpn4rfs!s% z()ZCgf1$BLOZ|e{Y4v)j(rnZ;-t6uIyrPx<7}TUxp9E2}8G3D%7R;9#>w0VTH6*Ep zR70;@08FCSSjTIjNR4(HsflFPX@_duy|-Qg@T@B4d^=yn(gcL&`QL>jI5> zB()ys7$k*AMysSTYBffk6evjxGz&^MNTDkhEpmpZV{{&x%S)P{4b^D;q>ZL5$v9AF z(rwl2C2cS7<}s30XI|Q>ZH?}pniRdpM=~4D-dWv^p-l+=yF)YDn~aMj4?k^pN#|}_ zpj(jDpvF1xWXZA5a+nELt40&z(kw%p*F7Yo#iWRWyL}H1)HIVEYIyrd9!;D_TU$v1 z3p@jL8f%j#T8&<+)?}3z;Tdh^*A&jySmm zoA>f|Hn~X)tj4UmLC%#Xhm5~Gnptavc)mGXGA@v|n*JRdzrjv|WdB#a5XF9L-17PM_Ljnn5 zwN_nIt=`+sDAh>OnWUB`7=1lR!wHAIjLBz>MoAMS)o|?nhl98Iz2-0vB%_zK)SP8D z8LOMgY+0IOG%o0FULc`d;s3k`H)D7+($WCC0M=Heh_CU7NmE#J^F*H!I>>6!Guup8p{TMz2cn`_}<*Zv%9}ymv6{3ZWSw z5Yyc;d=JB(5WWx43m^!fx1#PoRlKJ!;DQm~55oQcApipa1_BHQ7;5+2a7d2=7=!q+ z7=}VP4j{aW_l!rJ1;UAn{7D#(fN(OvRDdXeXn<*$7YAWH#uFf%0WcF_Hb5fc=Rx=p zQBVN$HN>6)xq*4fcI{b&=~M_m2FSqlXAourEC*NtuoCgBAY2Ww2Gd_cxK2@L7R1*p z(wiW@8Q?pBZ2&(2Y_EbQKOydC40k}d6JQs>Zh&6^_F&##2!93G2e2P;*%;_< ze`DT15MBki4p0Vg1K<|s-L`xFUq$*3#P0&!19$-N5a5v_|1rd$Vfs0QF92R?>=p|6 zPeW`^&#E>pdmmb z#5abpDaM;s(Z1$@djs*l5Vla1X$kQ+G2IHnHUMn_+5x;(MO_^L*Abu-KmfqoiZWdw z-WA|oyXVZ>s`(}m@ZB-52ZTKVf&lse^aJRRc^_an5W~S34z;UyIHX4aj70n>2uItM z`4G~f0ALDB;Q-??-vZ%8fJp!m0FwcxU|uAKQz483h}IHg8srK<9OlI<-jjgw85qvQ za2AHMF-*j8E`%Qe%m-MYs3%DgPlos+OfQBo)vjMlFr5bB#{i!KWB`1I_)G|wV|*2a zs{z&ktgB*d)&p*X0>2UBo9xPc4e8AQTL8Yryze303h;wn*&iYO6Tl9DodCNq{}%}N z0PMr`eh3d>JR8Csj32`AcLmv3@Wpa1Abb;`6+mkM zKY+IY+5>b1=mgLi;B9~|0A2C9cQNb^VNZbf0fGQ}1M~st3lI#@51>Dm4XO4zFAV_P zAb`P`Hx$BQ03!iL1B^j@D1>1E;{e73OaQO|Ov3yr5Jmz_1&Bgi4207FVgcd+;sFu> zrUT3Xmr5Jvuc>Z%mJkyQ_%OSlA zV2uL57UJsw)&p!r{3Zy$0{9x>8-UFKTL8Yp{O=*$hVktX{)F+LA>0YD3*Z-kJpjJ~ z>;w1>%N&3(2jCFEVSqmXasiHGKG|nHiSa+}+MkE%(-@wG@ULphJxS2r5HH5`6$t+Z zxC(F`pd9fP5Z(f~4e&4G?m>7T-~px|Lih;av0WRUK>8WL3xJmZud1;fD6LLi&H>Vn z08RjU0A~OfEaQq{bqEa@H$vzEP!qrtU{wC3Q}tU%7^gT{-)c1KW?XB(^TT5xzB1#B z({JAYJaORi<7ZqK?_a!oS^C}9Uv)67@4R|*@}Yu#r;3&({uQ<0mwkZ0ylMW-x$w-M z)9>5}`nTAyx8Kp7txtYx&^$f7V^3-MgS`MrlT$TY!t=FPrtdtyAJX4^xMr~~(09%( zujrOu?k}6geVP5t*lJI&dP7$oo8sOoF1q{YTQh5ACLSAQF&qbYrzmjX-uv?=H$T#4 zPa?vmfL`nO}y^9r8Kk9cZ=1ctD$(_|c=Al}%3up8a~c zZ@K>;L+efYvV$S|(y2|WPHl7T1nJHI(SYmr#A$4K+g}aehirSXxKHa5Jt19s>B|Mp z`yS9vZ1nupjSIfN1z!lf{WIkEO#kJD<2Oqew|lW*-!&-H^V{j)C70K`)UDq6{+}dX zIae^Wn_=Y}cZOXkUwo$s;uGF(>~wPXyM}$k<8I8jxTnu0z$HC9lGy2T=Rtk;u1fUl z@NDUzL$}6f!#MQbn&Ns8$~BI9Imh$uu7+172X?)BHSE({&5tG3g>Iq5#wsl4TAj8)*JKlZ(2?*_y1w4>k8lU zpF1vWvTNP=iQjCQoZ9d0by;~Ux)`pH%Us{j?^nb8t1iiZLE39|(aNXoQx-HjxVqKe z>rp#9G`;?C3()oS6H8d}hQ8B|RB!j$CZOk?lIbNMrtR4KGB1DAt~O}5cpMtx_6+A=hAgGM=U%w=TyOJ*P~l|?>YzJuxkOmJl+Y*T3FM|v3~K1 z#<8F6&vk!d(m!){dpPFDhhNs~7`ihgD%Q|5E>-j9TbYTHi`&DZKmJ}nAne+TogL5h z9}0O}zJ2s#@A*5o{kSi|<&PcOHhr3mI_5Fp{ilUzpWi+=dvA-Ee+Ld6{K12;Gxv`f z9^?<08DHkwZQ1wxnoT{wJ#Wr03Awr3gSG$WY+Mm2-KvcJ(ZhA6L(PC%ofbBkx&GZX zac2YS)*6&_)?sAm&g8UzdVOh#s_*vgo<5~@t~OXZ|Ne%Fe@`>aZ`blsLeYj5_qsk?x*}V1 z&*z)mZPy`xG2rhVzFH?Yrg@2X-IvX#&iT0Y6G+c*cy~l}-BxjFmE%6z=shc=p8u}U z1Q?rqzw8J7pl^A9^$l-!a*WH6HoqmVJ7O%Ioam&Ag z{Nt7sSFbaht55M;X-NCwGe3u$2X<}y)Vi+D<~EOJe!W%Ka@u$8`vug$9W^|>X+yvb zxa5`jw3hqzFJK(rFFe?<>+{i_y+7z``1$(ul6g@6MyucxgRF%iODt0j3wJI{3_O%F zzZ}M-5tMn7IniM$;ClgX^UpJ8G)V4J{pUWJ5wBn@W*+U9@yjn^cbzY!}x4;p5EgClrQWmebnyDyK_!;%S;^f zyu>wUaN>+nS%2;8Ijp}iE%Mvo&aKv8Jqoy_wl9|MfpNOkXT}F3XAOUOCO^b*WQpI2 zE?&mXJ3ln{nE7`4?t75u*5v4~yI`COA%A_|fxE6tc5Yj{xc1Niz1C$-IM94ooMX+Q z#V{_-gj*Mi`U!dp%r7R<9Xw z^jp7(jexs4@28!E4!{3*hZf16KYjkjnD7PW-KT)|?_U1s?u)cOUmaht=8M%&R_~qN z`q+*L$V(q;iPD`N^H)#EFX$Tia8q6H-0}}IBc^;7{{0(L{jD(&rbdmPzp&-U^Y87e z@ol?*6Z_rE{-nXDfZMZZU_j=uWA#Fp+}{uom*V>9W>C$=FVForc5CsJ(^t1{`^NC> zNndNK=K2r0+g1V%=Qu93tZuf$Zx_(<-|A}<`#l-=(R{#V)?9d^V(PT~F;D*3SM5&V zz;dAF-)>L7dbdYrVztmO6B`U4`1e|%<7b!phQFESccRW%bB}f*nThYa->S@yJrj2k zXuCe?+1Ql*Dc{EdebeS2KjV~t;BJRoV~x6$+Cz()uHKy3?&+%I3d(K9o#>zlrFei*toaXY}=LBnH?KfZV9i%tQp59%@#7lzGv z@$22qFLprQDZqD`F|^J!b7tbbl6jM3A?$W{PoJLSEnd?h{-n>drFYD8hwRV)DerIp zW!uK=4m?}4%q#PyZcOI^1DZ~o(PG=+_NlepzV8rxq5|srn%^_1xxP*2%puO~Qm+Fgt54`PeeD=iaq*2=Xd;hs( zf|u8Nk)p5j5@_7v#JG7k-7*u4J!j2b=hN6}q-m?`un)J?c?PsD4O^3V86f(2=RxUP zZ;cOwyivnn&bbb_EiG%i9`^XF>9l?6J)0FQZR_EjnYa|Q|8^i%P7?Vi8bFww!mZR*X3{>h#r z7i^6m1+X=H#*9s!Jg@ywx5QO{-g4^CY2Dhbti3V+*uIs9rl)_(3xzTS4t&w)tDR70 zjCRf5gP*6kE*tUr^{yR{?Re*9mwSb~Vn5gobgw<$!}I`XJ+rco+t{+skM2K8?6(?d zJ8JZ?dTn+4CnpZS-=ME9!7$-e+eJ_B{WkioMkx!tKU$Vp2cTZv_%kmb`+ugn|J&$B zkY1j!V{h4wxrU8}wKF^Y?T}Y}`Oa#oVz+oF*+ci(-(^ql3}O5Pm|`I8`jzz=^md;6tpx3_L> z&okdXyJP<2WaoZXM!2m`9DMXd<7pcTiw|5_mN+(R zv$1ae_QLy+7Y%tEhvsV!1AZOQ;HK$Z|Cew1&Uw?l{?>)N-`SNm$K&TsfPe4%cF*65 z-PrMb$kBZdb8CDX)aCuBOChh(U%ut}@NCV#Hy(HaTHxpfHzJUs?S~DFgx(OoY6+S=|g>l8lcYeC*o72l731cMXf1F7iA82b*^uIDE|3hcYD zMR5BKH~*QKyWAYsy0OzJ$UE@lpV|?SKLGOl&vqVkq5YvY!p*u?ao?LBjmvqp`Ng~zt)ib?@APOfy!-CNj&F_z+I505 zE87nKFah|$yUnV^SCF3$`S-rpsNw^|BwdUR&emrUhLMZC6apeFC`l z`%+w+UEHu(v**Rk51x&mw)@RRp$`TRs?i1TA8hQ{e(PVSHr0OMmD%q16xUUghJE2s zV@&6Zb55RlYFHyZ*uJ_|7VyZA-GfgAKz`c8Va88O=I`y@aa_Ln6W6mIk88iZsn+vT zf3NIP-MI9_-!=jdj5KY`KYqz_>dc#)4NpIwk+v28OCg3 z#}U4dD;)BYVsk>9bvqm9{dYjX&adjc-5A!BO`iT!`-6`yiK&nmaLoVtsYjO#)BMLo zbgo}>Xk}{qEyG|D^jbC6%-mp_|L>-0t9@AKy!T#{aUXxof>hLitp zkMe`C=w3pPi8neM{HHu0*#XjSu)a*s_KT>TRm0#6YsF0Yu36+*|JsToeXb2TC;2VcL}-1JC?8p;Tzt$yk+`#>j7We$8B-n3GaCIT=iac zr}Pxp`b8@*`NEpC-spidPkqv`WnaL52V;3-?i*un9St_thIM~aL+-x+)Qy$@3i0GzfR67qo39I{M_p`B z6eEDMWILND^;-|J^f>OrgY+zI&B}8>h-Wxn#*ys3Vc3mN8ZdmwVJB7nmypgG`AA28 zw&KRqCe+}aQLi+d}W#x;J-)7)ATKhA^RervX zbl%>Kz1N+ey)|I(&3nU1_P3&P75T*2l9fM#?ROE-`33gZY&Ufqnw`Dugc#Tp8F>ISHt?tZ2nE;Uw`bc)K8}>|7k;{!(i4gE=zCek#EuQ;2We* z4Wv&-9S7CCKB~iZHr1%+%Q7qMKIUTV5+32*xedT)9V&mxdQl}cn>%yQJyrw@e0KQrHyHHTq!j6v-HvgT z74@|jmY1fm^8DQB0gg-dY4v>Ug!8B}SSS1G)A!b5^@lpK_5>ils6Nv3k)!OBLiK_` zE_tAS3>k%di0z-x?E!S?`2_13hakJl9i3Cv4|pjmmG-75UbD7X6>NpA+)G73Bc;flWYp6><~h8sh7s{xTzf&QthL z(((OG?W@_xnd4b|ToK@!GybqiSc}TF564*n4kcdp_~R@@pAlFSq{%cG@=r`7_WH$8n`jY(zczE=b78M|>w zE`+aGqY{Kk*Jb9Oto~f&&mXv) zL?_&Ve4Qm&M{GkmkTII^Nfy!}SfIxPkv@57cX7Qx68X)F_C|Z|6OVMrzR%jz3g?Tv zp=x`(Kb9{oQPX*u7tYfQsE=^mZ+KyU|HW}c`~`26OO-m6UHviggBk5EZVyBX)_tRp z|4TKj;TO5TJa4B)t6EPrN4aN=X7wE7at!rUNN+aoAK`d?hWxYr0Bd+U;!|*3{D$DT z;JjOhmpw*#rI~Q^YSN%4-m+)@3Frb=+yl+wlf3m(#pf?bxIyz zFC0gEi~Gspy3g8#HIVx)-$yxYMLE2HuivpA?pVy%5qEI?TlyY*FTeY-ANwUCJ)O8e zm4xj_J>CcLUt#@bqz_*&WFr4$EM#;@LHhJ{#qmPN+wt7)!g-e+;~?M7;C_Ks>6edC z-<7V`sr(UdpdDC=>vw(!;;kq~8+J1=P4{|zl zxq67Dr*ZoS`NMy)Zz=iSs|MvqIch!BL3! z5Uj@|QNQ@%`kl+?HUfKK0P2g7`s(%I0+F32;LrVn`QBBa*OuaZEXDm3UVnX*tJce` zp7$MX_X4PVIAz-}rhJHcD$j1+JqG1%On*iP?jO64?~mEdmpQm@+P;+GZz4U1qkPLl zr{q^y&uHXNqYFdy=66SMA1`k?YdH6lFT?go3t4+&^)`QLN@ujIkMMC9@T~^xlDC`jWl3qoeKa0OSiJM)gI*HcUR{+^xvlY;b-vRFs= zbNSEpSD1rpKeMY~f2J|YjTkrf-uBr3bJ(8j^9;X}+i!yXw~uPG_82`JRC*-Ugzdb< z>fw9rVSNA4;GpVPgutFJ!15uuFI1n~v3wn|o|PY~wfW;#weI@^*UNsl9aZc7W;h@7 zP>=u4_F0>@2$j3 zGyFd78z}ekTv>TE7o>-R{n92le@nMBzWs~e|Ka;N6{z2_o*2IFo~KjI$Nk8+Cgj_u z{JanCu58@T;dh(Ha5;QVy}x1M`v5q9Bl&$Pq(fz_nhve8{ni53{?UA&5cO16Gbh#k zv)=@A!ywovc^l_NDelkA!SPDq^nb$e{GRV_q`#?gHPt=6b|^POtF!v+^1Dwcm#iAr z&QVCu9|iJf06(94kJWP&%Xh$Y1nCq*^yc?Qke(rbtIx#>_j}~S_zumy?{D+RJJHpG5e~iA24vi3hL$H5R7v)9`}73;r=d=)y0;kV;B z`tfs(_Zb~(Yi#$5seH(mRQrT|8u4`pE8hdl&%|-eGOGFEeSy9{EwH<03FLfhq;uYN zjY=++aQ%2kO*dD8og<-rm0@P|AB!8%u}BB=U^PE<6Ugm3DCdoK>$@<)c};b!rxf)L z|4zXtf_;@xzOKXz;+$_+^8FcHSZw0kx8rt>-F{%9 zVE!KB=fZa9mHoJU!wa#vT_tVA{l@G@>izAFc-~s-qCRgOC-HgB()`-ahXTKad$@kI zj#Te6uMnK;O%d!TL?GXq?9L_M$Ms_jt{?gO$Ww6cFiBvCG(o*)uCCsnpNRA~HDK*A zBmNa%@8E)ox6_30H5H&A3702mcUgaD{pI%qPx5_5)Z>kj5cBzd1@05_ecBY1|CO<7 z`JczvWp1nj9i9XBcMSmX^~(b`ykS}@)@gVIF|n$$0ZB*i-P#RDDvTUE!cc^6#Z!U!sXX4?ah|?}zpk=i6-LXDjmaTHb!7TLvD0M{@lru+R76xWu46 z%-8Qr1nZi00{S;bI)wIgQk{?YFz|CvR^Em00|@NZHaNd3aU+WB-+MS-W?X;y^K*yV zRnv#u`>Rof{#q{Bzw!~BkMMe8?%MP>)f)nN(iP`j$N}8n#)-N`uun1+$Hio4Z^R4s zdlOL3n{mI3+bwGa^JQsGoTpen_cvI9^F1`$L8Uhxaa{6()%#1|)WLJi)9QWua>2U$ zZNYqbit;=Z?Vo{2=P&sF+XD4I?Ovp3_C@wybW4&J3+T{^&#wwro`09)EZ;XXvGJY5 z&-DcRPEIweJ}2EGILE0k*dI8|?L!~6eLjWDVLb4hhw|Ym@_A_swO_<1NY6YMHQzq= zV&f88Y3Cop*YCX;el^x#SD-KY3(iya3+j2u`-_eze17#3?9(>Febmyi>V4XBzORLT zQ>ltO-BsE7bGV#Az0CQfp5T1vD)Ln*`WtZiIP&v%{tJkw-{M_fZTF&?5_MQ);47!I(ce!4;pe~;x*zeV& z9aZV8QSFmtbGv99tN(kff3)B{ai3tmXmEUuxN*hzsR9M__YB`Ro{amS)olG}EY*`j z@;fWtIi(VASIlMQt0SYl&G!uqh)2cNMldf-XwQ_+bCCT`D8Jx(r*fvFYW;pkaPE9d zaNf61pid`LoAdR4y@&EP5A8!?OIXI}+U-{f`$F4m&xc^YOUp>F(Vte?<0Z!wG;_3+W_2+_f9zNAXv{@`2LTU zwV!`O>v8R><=8rbpLT&@9FGa~V~OBA`fGuI!c4yIKs$kdYpoMM?>NW!!~yG>CfHBD zD>&Egh;k{WmDr`U-`-!a9`P0UQ)wGl-JT~%PwN()YM=aXfnU%u&WGWQ zZmUobCvki1AGJMmLm;m%3HqBZxaV?2;IFbD_nD11SVL;#d@L8NPyfa91$%mS$9`q? zV*T2P@7*IfugSuBQHpXY56gcmxG!+e9nW#l|DUf1UkLUS0tE8PT`-QDaov;^tv+Ay z7L=bL@3*k>{JUgL1?Arp`2DsKl0SWB$U z(9Y!kNG0m>PS{Q(w$sGVU-*3`yZz6V0)6zmV85{~-SMu)wZs+R-JkOem^$ZdCeRaitSfO@~k#OIxzztA|YmuoVv_eO_4ZWs0Ceha97eUQ$vTrQy=d=tyZ3GDy20(-0)&i6e0pepB2 zv)~?OH?&Lh_OkJc#PwZ$q-QAZ=g;ToXxvXP z*v>Bk?b6T~R`GOxKU8oIco*er)*B4pm49aw`<4A8>rf~<+&FRnMm(_M-_7hJIFI{T zU~haW@Q+=I`-JxPMm?M_mADS#>yabeehXst+(km{7Wgqr+|Sl---+WZ@q@-^x&Jfr zfA$X=mEY7b9G5KgujA{TtAhI%54ipI!cn!Z`PG%5gRp)*vG%iCgX zkI`=5%u6sY2IBsqb)0&C*d$m-9~bcLcY^bsD1kjWLU8U}7x_HYLA}1n6Zrk^6zK7H z(XKY3UHuuBe^bz}$pU|V4;-)1i;Obp9we==Q?>oS9`$1k&X-v3HzK$v)e-AAp`7I3 zhi@gA*TV$&1vYSh%VFqmiS)dW^szr@2@vg<@_I(GdOW$@7Wj$n;`iYGVe=7(N2)}- z$lQhD`yu{MzW&1fv^2C^MhNb?2MX@FFXa1{cKg-y&`-vS{=i(nknQ&-Rmibq!Tsy4 z+|OjBliJUR-w!?Fq_U%&1%7uWBEL0(-QHJV4@~FxWbNdVui&1zFWO5XXa{Cs`FF6L z85QU!iE?QH*I#z)vi^c|G;$oq_uE^fVUU(4&`tO4K5tjw`FW$g)N61_@A+F-QI4?LS zx>uLA$NnCD4Q_AuQ12T%*2Z<8PVE=5UT|L7NAO*RwrIC+cW3qIa6cJ-p7<+k=R%Y} zj|BITJp_Kd9RzaQBJe+V73>4o#riAl&OsLP`<{5w_BL*Gej!*d+~aZ}o%MGmzTh{( zeaR^TKg^$zPb%>O3g4fp!~Ndv{5*XH>x)#rAA3h_4<8ZSOHD^PoR!J&ZYY=L3ij)E za=RVn8?S#0(k*MXM&<7`MX)d0TOc>$1nW&d!8zj+!MIci=24ztA9xS)ZRnd$s&nKI zxF5bN&QR=ETY;agNpL^3F3Q{O`D%IFTyVdmv4B5k3jBrs5%@#i;`YOzYWt)qzd!hk zPCgf;@)N&Ll6_w7&*LOGH;i`Ye(%-feP=4K1nr-S^Dz|XDd*eCeBY)>Etf6}{C?L8 z?nhri`^ugUvjl$i^9A1n`A~5FdslG3GEHz#e~k;uZM$}c3f4j0k>4s!j1K(oTy)`b z>?8I1x+Bu9(oT;jqJD|NgIwHZmCg(7t6(mF7PEGqMt(lS*NNCs{%!Pwg6{}L2=0$` z6xaiY1pBTZ3htYn5cuu;3cd^ROz_=QOs86LO2q#p(TX(qvUU=|4c74HfB zCH|>f^>=>i^7|2I)cbgOg72j?6|4u}5bPsmb9$nG2tWVQ3H;e!2-=@1_-;&~;CmE5 z3-;~Z@w^}e|2PGjandk;o_mxbmf%3XEx2!<&)R+uE@5Pq=*Jer3xU-3n2U92Llub%OgEL-}_JT5DAPV`jm*!wrES z_z$(JzK`&`z-}2Ju+thKe}+y|+e=P@`a`d=7vuL+ zZt(j@FCA5KFNFIQ^mS70S6md_mr3K_musk=Uq*g!Ya=V)8u{TI+5@lcdkg%m?g+l~ z@B{AO+WTGK5$yB-fa?yc-TB4KT2=3>T;zIcBEzrdDz0+++P%;0L};@LiX>g7Z+Tz^+~(m=~K+&&Fgss{CfB@$Yh={ePdYUj*kD z8~HiWarM30TX>#pM8Eg`oF4>!YmtKWU^dEukZY{Jqxkpt1pbOU1>faZE6`s?!940C z_&(?R{Js_XWqUjl3z) z3-N+`3KI9_i}%vhJy1x4ce>5QR;hqZwU0MBlnZU_3s_z=Pw2O zfma0INoa+5eqoW@0}BM_v+MbHUvVFj>#4(n@96eG{gU-WeU4lv@K1YesM;R;Sa1$f zCh!MH=l+mRYWe>s$|W-{xOw|8;C;FnyZdy`{C?99tUdfYSK$Kte3HO_W0{~mR|V%I zlfA0egO8o7zDK`Mps(BV{UtoeYQn#-CD?Dj&c9F9teWaPv`pY%+E8#Gf3jeoWToK# z#R0*65O)EecM_aGy7TkRxeW0I|J%fZ?;Xt&oP&Rh4$z?9DhLIC-A1= zd}pWNyOAz}bE5VFzoRUH9*jZ$G%sWAAISeUqktbG_&(L|>hE_|LqEOj99$=G{Uz|P z8!EW3y$JUiOkXp3H3jk41?R#m7g)kuJ%FCPb-{ za?_LzQ8fZv1qG)@kDtJb(HIaRDq0GQ4~uGN>DYcIi$zKkX2!5IiO{6KA5Z)HMM^Qz zGe}^8Iw+b%BBe>QVxr?|n#Llf$?T!YP;?fH&VuML?!u365A4tz?{CM zoJ?wraf(8olDu-kRB8dzmrlrl*tuR5(PZud0MN|B;d*p_57*p`MlY)i~i zCSV>ba+Hb5%Erx7Cgd5YKt)fCRHgitFM$D7q-;~(hGTPIk&aOHJ#Jd8vOD(g4<8rH zBo~Q9O5qbCBH1sKda)KBMv|X!o(iY3ajHKCOcsWXi;JYcEEyRc4Wfw#6cIIHW_*0~ zjIdacm?R!%iJxH0p(&7Lpq3&m5#eD`PznYoCOi^mL4;)%NVnL8sBjFp0GyT(t%yc4 z0@_$13KZG6SrJk3k+vu;4@3f{P(+DL4?~eo#AakHeTs!lPDWA%ri@22W>O7UL>%b? zsNSfFv;!0mB#n-lMKWwLS`nF_as=7{YBz?pg2WU_hA>3Qm|lfptkvMM?>l*yyPi)_#o3$eBv)Odw`hEUTPE2yLS#vm`_y8Ns_m zV}OXA5XLy0#>n%?t>Kh;!^1dN&=?{n*)Wp;B^O~OYy~i%2q%1kh$$&tPO~JzPO=r4 z#7az(i_kiV1j8~^n6c1?0fd~Elau5$d4TgqIAx7+m>4Wc1dbFQ6B~`BA~Dj2Xh5RsxxHc2dGTsl5tsvKdndVKVZD4F$0g3hd&>=!3k1VtiMhyfZK52oPQ zsIVw03Of}=`b1{aglUvpKp;d%fmk3WEmFaTh?F9rP2(t@#>m9wh)6_0qhq*5{J!8o=|7ekm)Ll zWlD>NRB=(;lqxW$x-cEi5vaP*gr!Q1MVJnw#w!yKG(=5C(Wui{M4`+`rc$-p5(@37 z)Nv{mhpLU5m#E}egljr9P?^%h7^=M2G#<9aru1wHuKh>}SrKB4szGMAhcUA~43(fw z7xEajWKkE( zIih>jMVU5MBNV!rvY0|M+Y+)~CPi#Inn!IKT9H3fQGn@aHdUF{rXkbW6w8!14N-Md zG%9fxK^0CjP?@s`Q{}97Hfc$S8l9n$(P@Nhb~$H~oHdE5c$&i>p-5E4Wp`U&MA4 zsC_{vIWsh9XfreTEJd3`j#Jgm4GtDEkrolf?G6?aEZQG7^MlsP=p`E8H?JIvDle1me*_<7IGVgg=o9bfEz9>lnoY) za65&CvVDRPm06-lC@c|+(iE|%Y!QoWj9|oOgYXzy9&#^nk4Ay?BZl+`mvWUY)5u8dhID`AY- zbT5x_jmtt=(_%zcuo&Tbm4!Ba%44z?#fVLL@|dhLF~T(^3uO(75v~|n$Q2?BWkrY) zS^r^#t34LV>ds=*cU;M_P^sK(ai+t#CS$sbYcQ_BED8li1Dp1;*sCvfT2@yWk+l>? zWaWerg-(*A3PmJG71~FRqRNpcFdi;&-Q(Xbz+U~RQDnr`7^;L`L)ks|dQD^~RS2q( zR2Zg{R47nOs`MMb;rcFpb zsuB7k)?ThXFiLd>tBI)%RWFsAgB6M(+$G1!9Kyyjr9!*UwFya3H9}t>i|nM(A+&`| zdC=yJ=S5Io&~Dq5ggQy43c)CJ0j*DzB$J#{PZsnf#Ra?~K9lu=h;-H+kmfWJ!C%QF zI4gz27|!P=m)A5Z<7_BCJ(*;dQIljGFUMyn%3m5&Mlh3;EF5P53Rza$G|rL8`dp;a z0U@%K6Pt=qi5H1U6^RKGX;u_(M>{@)Y!jcKz0nd?MaRZ+k!&|P z5=lGAgToiKV4(NR)l#JKP_anWr$0++Xj`IIoT^~`{dtvj|S z$aW-qD$DK_+`IdGW81Z9*QSFUZ!gFEZAkwBTiLg4QCrz|wzBOM^>)H&$iUu10|)n{ zcbnYs*Hv<-p&P|i$GAj)T_mlfhhH81Iz!xrVtA;dKysYq94(|=XpW2gUn@Ca2w-)_ zxU-zg!C6ti7XRxpM^9rev<$CXuXuwCwvV-dwCnX6d9BL#YUS4GFel=(n8)|^f@dgJQ#WC!?yzP3$`177=s{x#BFhOE34`SvCLIc{DEFP#;fWBczc=jaq~;4QVuAe~AE@ln&sJfc^$SSM3bD{~d&BHKK4 zR&b{6JzACgR@R}l>aoXs#^_WMS*zedXS*?Ev~gCv#RVm>jiOowb(~c^&N<3SHP@W% zW|fQLX{|h$wTjVnk*Temt2%|AQF5X3zfxA{R8md(cBPDWR!ADXJP%o2?6Vo{|F!!L z&YlwcdllzRwohtk;Wwdfgq(L-kyj0JJtHFAJ@H-)`KG(xt_*2q=F(-3yv!pkb4yW% z=!_MLGUQvidMwM!5b2ksDC3T0w2f_L$VenB%6MZLcSRXOi-n3ZO|gu(q70$WB1M@t zSf;6>4595}EW^LIs>iaNt_Mx*?^%*=EIbwNOf0Y-a(*@G7nAMpT@pHyuhrf{9HBX} z(=KD0J?|<%Z#~I8zxm${HKOBhiXA?0AKv%OSL1nl`>D>dpK&$CcVd4*d=152SbE<| zQ9efTz#j^{o1%Q40`IQC7bx(5Yi#&Z1^%W2U#7r&DC((H;A<%Gj}`cu3cM+=v+Pf= zs9y3_;I#_8S%G&@;6oI6M+JVk0`H{2hbr)T1%8qO@2tSbDDW-{yj6jBRp3(;_!)|h zRVwh+l^+7mx8V&+`Y7;51wH`r&3HTTzJ;G1p5HU@wZrr8?Rneb`S-evc6ffTMQ?}a z_t78csqy^YNtqp<-#0C_!}ITg6xiYUcgpkZ@cg?wf7s#qeduia_TcxTezC*z`=;CN z@ci#|ZMJVGem^724)2G5e}091fAQW-h8>>YTbgN)$M1Xu*|#6>AqCjs^P*Tie)jLh z@5Ff97PiN5V<^*roSa=LX`3ln%+RtWa^ijX?hh&lW9}#N7J8?G!gyf zCYoMC(q!tF8)a_nfeVU}*Y5!?@wpVA#!au_#1r7@w8l3L_V7Z$VI3#dz zaC(Q9E8L_Zg8*MZpuhZ!g67{$fnm98@aW;=8=M~L6B3-h$%lMC1W>^~rtv{(x@NwF zrBjoAW>HB<2fk{&1ecmbCJjh8(g9yzx z1*cvwTShR!KJNsj-Uv>;O)zJ}our`jWFPYPD{0w4gHcx!lzKEMwTF+sYyvzGlm;>O z)W5;0PlHmAl(iY{Bn87$Uet2}*a+Kp52daZu{j_&OkB2G(RE#(m7IQcD{{qhvbXV-69iVoSsG zxt>rky~9CIQca7O@O)6t%W6TXl|eaW-GVeng7RO+dqahtu|hXep{PD<*953XN@yFD z)YSkFK$XxQx1hAH0|8$)7g(??2-xt5LqAAs#_)dJI|NnsV8zFjTc89>`)41rRc>fR z){jNpPl-+Fy6YQguMQWy2!b4DmQ8f>WxHbMO=~`FkBQT>mfrBZ5 z-Ruaw_lc6gRnqqzA4XoC4-i+^_%XalOF6_^1^%W+vp=w4f@Tx0n_Jok5 zN7d~~ecbHTy;rXi`WBLb-#yqzYrS^Q`KcupVug{M7Y6(2a;{giUR&pUJ{4X_XrLoB z(A#L>L0?ASLq9uQajES4$I2d9G738tzG2ulwm$H=uswyHNQt5=X}#(Ri(vWP7CrFZwz0qT`gQfW8mKM05D(t5c;;08HHk~SK4_wcD#3z_%IJfA0A|^nYb>?^Z4F7t(J_ z(s&hdau4#BiWO8sH9L6E0-8wYf7;@%t+t0O zdTbTweEhSq2HF8zHG`oVc&vW;2OyHlZa@5A_^(QNLF(0(O?^p74*6w&gWM4f-QtIY zJFR@afV^8xSkeAHgv{F1gZ7-6bKS|AGvuQ@I+s*jiBq7-L*$SDQvcIOryC!X-vE`< zmr%+2U*EC+!T&-p@^VM=GDobcsu>&ifY5}~gSNrG9_PfWrv%pE4>e>Mb~}OCYFx?n zPGL9b=eDuBLkfDoMh8BY!0}|x#J`<3OlR0_NV<~koJaVda0t>L-p<%rFSBz(ZTfzu z59r+8^AXtB6^F~#-B*(b@&|$0MLq>n^t})HLYB(N`h|Q)BfF@~u;d7sQiZoKl^Yg$ zI?}SGq$`&T9nx>RN`<*a<;8`D1@pnmDK79YD!d#7*4G-=Ib+c~K4lY&;GskxU-V6_2DlaZDB$W`uXa_9|IfeUtKA~bDnTB90d~(xOvYv3WKw~~8i^i_a;L!qy zrsS>PQ&iC!pA^!T@9868&5%_3V5ux9{8-XKO;FBdT~PSxqE?2WoGZGd$Ht;owGGLO z9Z*hNQoryaUknLK^YjTy%}=^g8kAFR0wnpf6R98jkgs_WO}XoqE9rF>O@e)Dg4V($ zF1TC-KVVH29D{C_+$p?Kk_-JbA5He*f472?AkxQJSXNRFSterE`C5>;Bw+%p$7BH| zknFRAjl*`*pX|b%g5NLREIe3vvgA_OAB)gv&lOOatj^mL9-ytE;v$n zq~LPN!NL;4SLC@xjh`VCUgNhoo!@F14BQkYxvySkP=|FIS<)nPd) zb+{l0($`837oIHm8-9;NxkCj9FW!LC2QMCjw{(bOwH>~A3*K}XddN#ajFlL|N*uaa z0ng{Wmhaw~>YObmn;6;I}TO+ zw|9K?U*3`WU*9q1zr7>a$FGVv!1E=?3UdoOw5?#21g<(k$L?53&cz($BqQNMZzW3_ z2}`Q^vDo1)sDmgzs5_UA>hDnVjgmtp$BJ4%y5TC7UJfw33BY`@99TZ50VQ#-DE`%|R8@#mcoh?(ml(BC zhz6ytp~;}s`aVGmi!QbDndMmEu(1q<_L4pH_2dJ`Nq=j~t5ZW?@-HfPgjh!5?edmv zF~!;gWPqj<0iPc8svsLkT3+L+BERr9$XEBFQ29N&$|uw>-}h9uN9;o;nWN?m8XN*R9sLNed{%SN%qsIJcnT- ztW8KVqXy;2q~G=B>0@}gG=~AY&QemqtN1H?j` zl`HBUqNw*tHLRD`cU4v2Tw#4xxA&H!-u2b0YVR>s{SB(9-*+z^Xkd0S4+?Js>#fc< z^gNiH9q)1J28s8`OFo@2p~3;^53CHeVudi{3JFV)$yRoHEa3)1epa8YmZrc&d&zo+ z^4}_kC7nv}FD|HXqU|U3LbEcUABEb^Qkt|dJ0Y{Upt#_`ac0~5mWS1Z^){JYGp{jL zjy(aTH$v(0MG*4Oz*$%pp|2`|);Nr?RPD&EJNK-s@zxv(i}eFhfi#IA~Ur(M&dJxAMinT=!Y zb$DxqhP}0@xPaGlfP9MxBEAI5CbRdMD)yi~Y>?*uF8sA+AG=Y5oSA|zEl|KAkYc^ya#fiq7G5_d&a!OF_fsOgvX8+pS zWB60i|9}3c_I&@3qCJe}+C)RJdS z;Y4^wmLF*jE#L)dQqp5>{Kcfluj0>Bv2#NucD^>?oUzSMSdGLrDR$U*g)cy6c*<|M z9-*96;rFul5nULRksf?jXLDe1NH z#s5IBTdMatRahK^eDD@dBK(q~49mcXw3AEv*&jX~9 zBWTkNUmS$C8otQZA53UYOtG@r4H${jN@Wt)gsI_-{id_RIOn zFjKIxyWB}Ah|g8oo^NK;_Jr8l6YtL&VImZbYgt@CC|R%A;l(9+IQl_rTr=Ruk zApK|pt<`hAD09=3ooasV{fr5ai#9$|jr9}NSd%|wD6^6!gYeO$KkfMFvFeFbe4^rn zQvQhBw`ZZceOsRX=k^t;-d6AR_Wg0vu6-9&Pn5g-|JpYzS=~P8|I)rf)!XK{yw*Nn z`}P&6p6G4YKB|Azn#X3Pxh+)cpEkuz{{VBxCV-wkUQ{u=x*?f-d$9NdsG7ox0T}j{ z=Na_*9XtKhN|~-`hno z-agyWklcgBTUWp6D#+lw9wISIT((o>#T1%9w^(Q?uKfr#8_kcAt zM2ia`kEou5*M+5K1`4&m{eazT4#MXdhg*v9<+6+ddr2+Xh@_STcpwzA%nfMtN>g1QDqPxZl7Z zJ#dF{#c%>;gR9|I&sUVQsk|q1@W4~HOqUD3$qOdZJt3REmg}ul*85zG#rv@>q*g`h z^H*}-BeQ0sc)}VZ3NL?H)cWspDt`C2@w-XI@6YZi`JL6%X*~{@iITBHLg&KUd=ujH zqw|mc#aO{qJlaQ3{XU=*zJHX3cv0UPolmjOry>pdrUQLjaDbGq$WyG(gVMTw1#gw7 z>7+PYvs>|ISI22;TSwdG={0Egd)V#^ws~6iQ5Lq_NZZ{u!T8xl9 z?;7zTSu9kGua!m*72VqcF4Y4f4QZsP_5L$l*-@I;CCaV`J^EuWNSK8l0BXLuKvp2< z6b$3IPQ@^769TFvye~okfwIQDZ)vJ^6Qh4V@VdF+)vFH1*tXvZTx2e5b^g_> zh1rJWX&~~-XWQhgq9TXQ`L6Vpw4&*Um8OQVtP3=AY~XOBuOS!agc+Wg$Dc^6R*}l} zoZ=xzc!(b6;xlgW%t+fa-FL0ldN6w*mB{_@Jj^=;r06d zJxvWzsO*?*f>wvrL3t;A6fr7+(FYT0?jg^XGV9q_ub@AG<~1CYYiI-+<9&?O*oEk5 z>OXjeo4pCXXhYKdpNassf4<@Xb<1sGP^?FxuMJX8xsp1(R-B@JJ`;Noo*GqQGaY|Y zXgq^&9-;AgT6VBkFncCH&ar&y5)IuSZBfDK0}_bj5bBV<^Q5B<%ePgxrw@^*w7dGU zrD+=Jo?)K*6S_U%TMDmf;J}(jj`j_MFGF<~W8G0C%I!Y}=)%}?c=Hc8*qe*talrZ> zJmA1&oOgNq>aV?T{f=t%eX0M)+q=g%Rb+wVNok;^lv@=PA4qkBf>Hz@EGUI$w`fsx zQBeUAS#>J{%Oa#8h_odMZKwrQRMz)nRTNZIW*|D{kx;jzQ$7${VJ%hC$uWP^aMcTLgZu_g%-)q0O`e&_u96ubl z#iT>%-T6Q8tGrn};|e5HJ&k5r)J1QYY5&J-KLL-uv(zH8jXu=DfX`t>y0O;a%S+fG z-cI%R2qImjZKqCMV}*uQqFd-)?>$o!baD}t4dG*Y@GGRYA?-}9!TBF#?IR^YZjX|p zSTU+&J6vr3uH44v@1$)se>Z=i@d0;G=v#xhjvl1xOLDE!f$swJ^nRiYdC9cPaTu<} z+B&F@eQeh0R|f=ze)TYMoq>d>7<(sdVmH-J=Jekr!2TFdN5}s_`Ww{vl+$CfW`8vS z8B`e#|D_3!gvTj?J;0Nj%BU-~zwg8KLCm-_yV`t`r| z54{xBo$Y!5^4CT5kF43hZ6DP?vSNR$eQW(YQ_lLgyqx;?{R*vrWrrjChm_l+^ptYb z&qX(|I*Qf5wx{z8WB zh~lf_g+4~>zph-OD7PTKmGy(c-&Vckml)!&WxsI#N^stgWknb|t&PArUO=f1YNcIx z))${$A1}s(*Z-lP@$ctatAFL1i2BLnAQ0DT{p77s92Zf)cSksk^~bkX|A@%?$zx$o z>-Cd&!&7l$|E1?Yv!M~>KPyWm|LN)}CH~XN$bV|4UIvvOgVbgi>}MG-qW&LZ@WG=V zM>tQanYy3zB>&Vs@a<9NuhC}D&RKC;ZQ*y@j0v1a6&H0DJZfFL2>Lz+HJyagfvE+^ z?Vxdos9Twv#ndam9OQfIe~{$G>%3glnTd5O!;6=a9r$q1QghbjveeC@R2r4)v90I| zPG6LJlgRC&&+XJs&|7cMtSefTTC%PYi^pSI+2Zjm{7%0VQf0GHV(i0!&Pq@-LuNj1 zMdVqts;wBusP*C`TQ6d_YU7o(wYBjIP5+Zv^rnr1*47=60*YZB>0N2m0HXOrndppH z3Q!eH9Irsxj+P|rGa+ZNfO?t`}&J2Zwm^vhI4 zo#m!2w6wRSPAnq)-wWSIr}u)=u;%stX~rQ)RSbqM&jO*+7932Y(Z87ExP?$dC{$+KtL4OAoR)fyoY$cQ9OSao(Jo<0&mmk&HNpsxA+pB{9E$B z&|6VJqqpMVC9;3W1ZH*5`V$&H(I%uA)gX?o9rd!YdL00_2=D1Kg?`nahjz&*NOcAJ zn>d)Gzhz)PRjh$Ixi|_;Ie$5P^#ETt4&Nby@A<9&8+^Iui@?VLd$5!(b!A=+usz<^ z_Ya%BzqfywQS*EIhqmfjlYalw1LtF>R_0?Dn2)`_p*=(Qn*JOPO#{{`qaZP*hHJpC zp#*~8UI+f=l;(h6Ll&W$F6?Rjxrl_H>B2b4Bbm3~Vn8#<7Z*iy5ZywVe+R?!;oz{% zM*S`>c@JkQopwUU(;~f|a>J-yR(g)GCM$U-uSOI1&fS2SxEt}cjHhGgW|%9(wOGF+ z{Pb4X)5nki8@Eq8+dA69{N6YmZ5SN!0*=Nag2UvA9KUCH z7pedINWX~V*L90={Cw96m~LY*IcIf~NI?H#W4mjLc)LqkyI&QxhVP|*f$y)bCVbD> zV8C~2F>7jshHp!Y5#O<_y?&y-8(Didx7uERXb*L)bmu*ERB;~eBDyt(w`JDa`u7E$ zy)bXj!rJ>}18;B125Jv~4CA}q$LE9A9uDnv+1^nv8`>CXui!3MI4cF-`VrqMn2o^R z7JSQ#q@MuOA^}EiT}Lr3f_23-C!X>}%n3DkUOV43!uzX$cOQdyUnIO;TZebc6$0LY z9Nv3i*wYKz41tN8BHj}a2R#DfQAGxbZ($Ix_&E~de&@w{ZJa*^0^ZpS-kc4sjpz8E z1^u*KN%S-L2Lt`&d)Sy>)m4t^=5wvmPn>A4aXq!yvc9$U8uv!h&!?9Q{9MD^YPv?Y zHR{|&>1WChyuGJ?p!V>`Fdl__TOE&nvc2U+Y&@1j-wG03Wi%QK_v%Jtbdea1iVcR* z_>hLla{b=O(OB9XML&E#?-lTFW$;$~&>DVxd&GG3?n2}7*;>PRG;ZW)23JcQ-O+3u z56-U_t>f)Iv6k9%u8Y9WKlgC_;1Z&^-n+u2jSOq7fHmftaE)%AnY@SAnd@M9*IlV! zX9@{fmX3RLI3d2exXHj*`S`uHmcv)b;KLu|{Qs%-`QJ&-{|yYhx~p+MB@E#sNbiXe zT(UuoVElT+2=3oV(2n~las&@IM$9J;Z?%B;M+WbYk??kH9o{XM$@$OWy@BApY=~!21^g?;Q-@J0juz=k8YFyy&#mU|g;rC0Cs!NS_1>LluabgAlI0foGXr;1mK4k` zu=L)=w+(%WjV+aI~7sP#8V zws>$I8>qXkM8djyh^vZb>ZYAEQ!fA_*IlZgsRw_c(RpTP7xbO3{NU1cPs zX}`(w{16nr0? ziG=T-?>T(8G5Bn)!RP<6b@-l;Oz-R(2H*FW>)_k>Bf(b*C|K7;4`0(-f^XK3k?@(K z;Cp2yhi~pmf^Xi+2!4_JqhY=1eHoqDj}R-n){5Qr1MkK8wHSVJHViUM)d zsn+%hw+Q%>8GP37T9tpci}igh9nJRceEGMujkj$4MlhK5-z0F(!oZGYU^{ztk_^QL zAS^QC=Ywx~`~Uog+F$%_1b$xHZom(o&qm;fpoG$Jd{6-*EU+7!ak|A(=(_ zN(Mv1r4ojA^^x<7uSX9HIR47|KQt1K)C$A+45EN37UgS$d^(b~=(_AOE;HZ|-Bm$D zwB?(~g=qBmG(=V9kwf(N6H)a2@z)%_*BPGP{5o>}mmA?rAo%|El>xpr-!b?GUds23 z2;bY~1m9&*@U2@(@ZA*!pZB;1AID!C0pD+55qxLAih%DznE}2QhQA-bG{Dz|!*}Kq zxkp3@o5~2naWE$9lJpREVG#biEE2+Q$1gI@_k6|S?8o376ba`eMmYDz6P(?Qa8CJ_ z!P)*2DSIQF4>CCa^K~RMo$?*Qd9pMT&Kbud;pFq;{VzG33%(>c-}tgs{YRY5--`L(r)}CvjB4vEU%YahC z%Phe4x=ZwU8Tl>Y#lJNYFHau5$U3-eIfwJ@B z0nRuM=fsY>B`LIp;Eek+5}WNAoCRAV;k+cI%~#Iv69s(XF9<&KvexJ;V@ssI;?D_! zyH5I=(N=DPq^-}7MB{_g^SfX0_7<}CUiqTc{r_e`&vV$k`|NY${{Ji1=5ejfJB}FX znYVXFw0DTLccj(!#>@5|V07|lV|)3$y>nW7o7Gn5PwnTtz1^Qvd-!AIf1AX3qZ-yV zmd&3Zmm2vWYtOZzgJCPvw24Oi&SjA!-sNk?|29SOKlLK>Cq=-S%-~Fpg!7S22D*HM z;pIjnoKwDJaQ5q<+r~W1pq%?fB$QLXA}CLnL_#?;cu{(Jd?|p`oLK_Ikk+`w{I_0uWiug8$Qo4y!WoU>WucB?LHDae=K$%!*KVJ2mBKK zw_P(&Q{P)QM(O~a2ig7$>#zOD(2v#Zo$`%Zw;w&I*(03rP}#8_Q9k`7m49oa*6kZ~ z<$HHt^AX!!Px(mft|uE?{C7RoFjCjzp#vIxX@=5H3~Q|Z>!kKP+4vm88mkA+YtI`$ zG(7Lw0?$8c)Sml3G>-ov*8dH<{vXiO%Ti-~{tHmw--23w`TFPfmFkvXjpO;k=Z5#o z@cmsnc!wL|Im_txP8~d3>h$pRFxEE{>-)<&t-d(p^HKPGZnJLuKQKJUu*T}CQ`+-2 z#^)-4s$PFad%kq3;dv82AIttCXZBOpBf7fkSk_;3Svy$PEk8s~=kM8r%XKw=#IoAxvKF$e z`gKMI`oezVLnxR0laiwnYd)oOb1$>B3%31)N(>_#4=;L}ynLLh`tm)_>D3om#^QC6 zpk2ipeKG2RnLT(a>On9-4~9lP_>n#66ZK#fdvL|N$Tj0#_Ml~L6#runepws&#zgjD zThtp5u?OEpJs7|qycP8znLWsjdeDwN7$5cEcnv-HThxO+>_NY%2kY5`u2By@W)EVc z9?Y+iqn)iK?OO6VEjd<8KCC4(v}CH5yj4rys3ot_l9y=7wp#LBwM^D)$zQbOJ}vp9 zmfWNz*J{bHwB*NHa*38K)RJ?xqh%h|U8nAZT>V9om&$vkoIM<~wS@jlMp!qhJB!i%5ckzwHd$oQ{Hk5Xks;$bMS z^iJ$H9~SUL)i<||Ngw}X6|-jhRoIN9S?NEJ)ZUM9&*Jv`J~!4@IwL_H>uO_?aS#5^ z>rwIjT++Wpzt7-#l)k0K;aMZ-1ppH?2V#l5z6N} z>ior&5nZ4A5QF8cv+|+rh|ay~m7UY#)e-JC zCca)Ztz`HK^$o)_?k$$P742-*V~Nr6sJc*xI|Oa>sl$nWSdNt*wUF!@z~qQJLPH0% zA&e9Lv&x8aVU_9T?Hy8jl%tLEbHYYBC()#@KlfdBcx83!LL%loagf9(C% z+yC&p|I$826i^EcE>t*PFi!KZo!*@nzR#S)u0pERdjiC(=>>B92Jm)5$P^A2p;5eg zM+YsQLKg#>R=mu5^(X385DBRV^-3kOj3ZL*fL>r7^mM882tg6dR+SOk&^4?Mn%?*= zYkH5;V;ee#jTb}teS%?ru6mE==hpXVes+1)Fh6I0EBuLmL0i&VoSyUO{*DCZ;eqZe zR{)~(@%4`CzZbVL#Pb>Ot?(Z@gj^(*@y5%^dkE{w!@8^qjDKN&$GdO>jYU!~nndew zg0!y{{NbONf1>?G_|4&Wv4+uTNuN0Xb=<|MAHUVc#QZ%!|3>uZ2m(6A0579oVKmQ{A+r|2G`MWeeH@-{b^TG#) z@$s)Pjt>zdTKwPibJ2Vvjbe3kyv9Fe|9tOI|3-ac?4Nsup?{CC{@ozGy+qvwyzb}X zb^H(eyVSw@t1mo-7akZd@WOn&#PjF*^K0Ub@c{+A?bL7oP4UzVEb7m5~^lcjx)$eYl{ylTG`ln-6_K5mt(E9g#_0JXX z_iUy9EM5I}tg2H){aKh9ZWmR5H2+w_xbnfb1pnw7d`s|;5gPxfnc4~6yO?*^C~5bO z{r^hvs~$&)r_@ZXC7$A+>Lbstw@jj6J7=}avY_A1L&RW;i)IQ2Goqc4M@}gtPNFl{ zJIt5sbzW5=>cx0Vx%}-};_b`H2Ww6x^FW#7ad}?o#LFxcWlmwlp&r|cUSyO*c>$g` zTbEbf)_}C$o>`Z-CPZX)VXS@GzlpW4grDh`2+ytQUoy|Fcy-Jg#@CB*_NtTHw&t&G z7>{LZ89#sc-(r=5L11eX3K_k---|8vfOQFSx~Ed>b<;-Ty1(4$z{U7Mr2Ez(>At1+ z-rAw`s3>yju&~J@#-pOhsmot(p;@N)-*PV({#y%8tq|D0HLOE(mxvCfNHLgHL^% z`E$W*ow4e&tgWGs>HqFoZ=?OzGR=*vz$g!W!vQaQQ_2fF-uwgd(9C5ta}efxVx#>-2&mX7|B&y-t;}{!N2H_p{d7MW3dk(Lx<()qxVSlYs6lVhI_-4Bzgh^9y`lopF`tNq0Ik` zTq8bYuS4;vno%+|68vP59=+FRCAW^= zAVysY{RilW;Z+S*FEsjFfmDle%HvSF4Q7|4z5p}y@#5nA9)B=U=MVad17-eZjEdwx zt-pVTVkKc%8VaVAnc6ZqJIU_})cNYQb*9FbnR-o{QdF6Je?~zEYlgcN?+`#U>74k| z!ue)TI2>PUADY{2N;8>eJm(Kq^|C^nc#TJ~zc^44D27&>175lV1c~OmM`(YV+Z=`s zP*xWxj@dpBhueQVG?(sU?x$q$vpF`m=|bL@_yzwLey?e zw+7k0O6k^m%<<7}E3Pv5e-z*k!p8^r^8_kjpvnVBecr%1f4R?7m2!F!)K(V&tm41T z&O8-|z|Gv_yl)o%u190ymf!N`T1hOBMd1GYWQ!;P-A~67y7YStB7l{FwMR|A) zNDiis1Wx*N@KP+%N!BiYj<1I?5)|IOlblg7#@ZvpUFr7InB>-lv%3TA+405h%Co-s zN~LJ0H`vWwnHnApGwRvQ+$N+)L_H(}gXjDMr!6Ee42GGDHzLJhG{A)g6t~gmrF%+( zfrEil0StPZq!d+A{Pc%RrrdK#@xH`r*jJAnJ-ri#IQG{*F5VR#I z#y0=;&5VbPb(fkj`j;>99cO|`A8$@8@hROzG8>*h>G#@3!bp^3L28`w3D$zW2aGC= zg*~Y%Wh&szSE@eG?&%;rma0z+zs}s|q8j@*(>vuhd*C;#l5m!K#Pe0(8Jo1W{gyar zv${-#?Yx#pA{;pyXtGT09FDrrgXYICco|p{@xjzY04qBwbv@wtrM`HDjrul}eS3fH zsv*gTb6PBl6X`mq#jH3T6#uR&C0LkX$~hE6H@F<}mErYb=huZ#n@oQiVLk62VQutJ zg3o!s7e14$@LQGgdLiBUQx-Vj-{d=p6TB+r70B~#V>iMCkk~H3WKUVt6YPuBRR z;axDL6bL!tbG$6u9$Vw{A20FgudEdDd;N`XW7yBwtOj5*I(;3^zqEqc){*Hj2gl=T zFdT0a9hc!gH_Tm`dk}Fzh!{{Zwd*i<2WvWXAa1Dpq|M!&QE!zO=iU^`ZR&|l#z=T}~p(*;DpE(;UhdaV(%tm@TO| z7K)Rvw@E2E-2p=({N6bCmvFdm**Z)!0Mi+O)c0OimN$my4YaBs!veF&Rh2axWI!t+ z5!el^|L&jTw<^v*Q_NKDLLEAzS#u$qEuO5BUREEwGm2efhIK5#8>YDMGzK<7MO6bz zl(`2)*m>I=8Lxa%@=JAq|$fO_i*|iJzumnj{Z-eZ~J`F)-0CF zXW|bCrYHS7fYEKP-bPo&mHUwLmx2^gfszEt8k4N~_zUxp{R{G3AO9`oziVJ_;_njp zZD#8jw3m(_Nu)?>E)7myhH9ovtuS}yn zphiYnje$Q#dHHyyov-`G7g=j4;{}=+9o|agIM6Nn`xi+e8InRCkQ6dPQpjj}?-}}@ zENR2;mh*|8IO%(VTl9A^q|^jmyw{YeG!JLb7wylLGdy3;@C9;)FP1a>Eqd=i^!=5b z+bbnKuA?WL=zE8l+bKUmN-dC4e58PZ^2L;>xWD{fPDaDwY{j|9Orc>Bbfw4#0{LLP zPgGgB0fpLg$5FstP^Oh(1#lNLsetWb>;+GiKR0^+zQflh2^lB1i>salJFd+Je>5PQh_|A;Y}`g`DHbc!P9yrpu$`H=A(>*^E>ehNQbRzFu)AqN=lKAEPs6 zVSs2ZKxEiHhQ@3PLm1NF5;vp458Q&@K6MLvTQ2jym3eC@kKv2a;ug1{z-=)xqQch*{T!eNuZds_ph-^nH^5NAjXh9wQF_sO0ctB!_=Wa`^F7 zTDLx=%#(cnW%~aHeSaW%{-^UbdGSt?htj2db+44KhD-VCQ7K=Iq0*W3J%zq!N%<;= z{*!!`vRKMjZ{`2Ll^5TdN9)}@(Vs8oiTN?aLGG)#i!z4(EyXj#B9c`Zf`!+DrT;(f_OH+bZ#QQ~v)w zd6DF)l<`t#n=EBEyOh~xNtrE2%53xKy+!o>mXz5(kTTn+^kfBnuah#Hr$8?+UQZHE zFDXCWD&?pCQhpjF<)?HhKiy03kvx?$R?1J$Ncm|3Jt282Wsa1eNS^wCB`;cNKNle{ zK15?YCQtPDDM=yYC523u6k?YYGK=1G()WTq(ci^+az4?M|IqhWd7{57^CIQNSBZ|^ z$rtT^Bxm?iIm5q_Gkm3-;j~{$*+kzvByC3Qmr@SV_i-_|Q_keKE-yavFx?hWu-v-D zc>O#Hj_#l)GM1ZlvZAtZnRdwmlPG+N9i}9}dcDr9-F`sJ^>ci=eqJufGvp%ulFW1P zJY0bDNL0bxLizkPwmd`X-z?Px;$D1>ymur*N-Sypz6rVP4(AF>dBf0m89D)RoNo0^ z#x*mm8(&ax_07m(w~FENtG>(Z9NEQFOh#lkjxjm0*DYFwuv+5U%dfDWcZr!_FH=h* zoe;E|=(<|A056bAlo3rN3Nob&%X;M;t;qxvU&{5;;YZnQ{mpb8Q`|Kzcq*apmGYoJ z$T0#7v8P3Mo|Q5S-V@Kf;>u!WUQaq6d3Un@wlAT8<9BvxR|YH2r(5JTBT-ieE6xYl zJrkeJ*N)=vY7u(pBtk(SwUOODF=3j1(f;4%O_U$Gys5+pd9$lg-aJlJypiP1tD@x1 zj66ob!}A2$KAI=Ua*WJ-O6HBvWAf&dJRxsR&l6JSY?+#yC*;liJSK1Yk-WLg`Aq9F zXU%0o=F|-!w)M=M-xomVNdc7WH>2gxZ-zw6pZ;1df#MwalU@Y<>r0vl`l?R}Q4>Lmq4O$ryCss__$+u?g7`oKp9Pv2TF^+d;9^qfJF~eI8e;UNlRy2f$e){y z@@D`#seYrEKViLh(d?fRXwuz_=X#k@^qxG8qGw|Ld|ETHnnV&H={Kjyb-*^_5xl}Q z_vi{E`*m8E!Y`8cVrwPwH>cG{Pj)Ir^~jY`-Of1kqF9s3Ri)(jXPg&{D^9$Z&~eVJ zI0r(m_qgKz?YbJrFJ_p!v#sNl)pqMR_o+itA^naEp^J zjxqIZ5FjjxFOM%)oa@@qsVlaz8j}2SR6HM;OZQItQ+wHP9vz5bR5k^vY@G4_n!EoB zFYX^T*70i_M>q!04V~Y`qH}N?#rYN`0PyEy*)SmcgyBK+Ogz#~DVqh$%&L_H9$8f+ z(EuNc;qm2(ou4@#4kOVb-j)(-IIS-z`2k|~Hf0;Yh>hPEWM+1C7 z^ku&CIU&4M77dI7C&{oVN$n9M>;uvZtyix>hMDfRB4T|f{g&Ad;3KC;)c_+l9Qf-85?TzQcqDM+ABW!@?1t-lzs#qJrcf*zF9$KyC*_Elh`Aog{iF&9tl zvi2j`{tB%hRgkgIUxAlD;vpw-o^kB{P3=C%!$%o6rRVJW$6(A^$fJ|XP04gWXt7w< z2s9|A%w1(>E%?g>!4Yp69%u@^klD(;OmkQ}$-Et%Dra#6QqrbmS`7IiN+=HL1A7Yt z;3zf^*az6AF$anF!0bafK4j0Q5&JM}lIs{Abf!5Q6xWkxx)4&_ruJ}E%7sk*`mD^m z0Lutlqt#RBmaMzq*mcZ*T-4;;gXI{zR?GDM%ktXOs+13*ZhIUaxL%P<(er|HC9?zh zEfW_Y^=0mddH_d2xWCqm=QfJ-nR6ruRMI-2PL^>_am1@qHs+w_F4Rq<-|FT-i@yX$ zUU6QBGE2F?0tmX;x82teION~v>;5l%rJ_omu_xpg_f{YB9|zn#0~2Y#;NLjK0_Ael znmA`S`GKL3e-r0#X0_`%y?nuCwJ8BroevKd38cKv^$L<9sp^DtV*RM)IU~j{FN(d3QNUG#TzKOu8X?W+AW*kYAO&IG7lHf2Er7oo{9KN*CQB}_KKAIHHq!O5vuN6g64iu1l0Otztw z-T4OnF=xdHSyyZjfSotn*$NFaCDaD(Gg3xAL!yPeQ??_}+Uy)jYmN(MJKCB+T?4H- zvkBZGI1^yXssqi;?#>8X@R1N>0KmYFI|W>OTrn|nvv9VGP*xawwWBts=Vo;aANPp* zEFmeLEoIsG6CC>+Q{&=H$HjL+p_y$>x-7v<(VeKfW*h)!|5ePsJ>43|9-8sWVmf?H zGV%i{=po;z1~!XF<d7W#SYY;yR?{A4TGGfC%DAj}I!&L^JyvE~39}&D?q_O zw+vPmY>dV9CpBS6Za6NPEw&z4$W&LE`jbrcoGnbtZoxN8 zd=*tGcd)0Bx=W^PGIh^vwj+miIR@JMpwwl1LfCa8 z#aX((NCq7?zvT*qn(Z#{&Ey# zN(&Ws0cTsq=`f@GHuT8^lksHcaVT$loQ{ZqgAPJVr9nB{Iv~>=7^p*A7hmGDAdv#~ z4Xi?Qn@QF|7?a=8*jCBA!9sToDDYg~F2L8n5SI~>Xa)s0-GVk4UB7kqgRz}*xAT5-tKS{kfqqF60w7ai^c>v~<{#x5e z^-ElHVdOG(^5hsP&m?gf4{tUN1x_N|!z>zljcHrKc~OQ_V~kI6#MyyWNM^Ljg_fqWNN~TV&6aIMPa8o{Y5c_ zX3NxEnaY=`1v0hxMP@t;Qhws5F<7ILx8XcGTX#M-Lq|Q>&p~O~i8!h$uZu_;ONS-#8S3udr0Q!*u^Cd3O}QmdP>!q95?Y(S-3s01j%vSW0DDfDl`594HP zy3-^I?ldEoVA_sW8=6HwU=?^5SAjz$l(%FtB~2Z!1K&(%>%iLSg3}kt)MlBgkg1(A z^|MUXOcyJ{!Rdngt1@*$rhcPT08-~LRT4N=m13TOD}%qRy8EAJ;!}T_dbmlz4fqB* zQ0*(`v!sQPiHzD+wwa{uSCaZwlTMF`{R4d9dH^U-`C>Ztxf+sRW81};`d+4fkSVWB zZI!9*m^y-~-P45*+CN=T{C=7GMW#YBb&~bD*_ZgFol@AtSROY&_uQ?=&cnEjMsA(* zs9lT;67t`5`d9xkW)Zs|maK+N=B&HOG&a@bF`1^dt?vHrC^GD?tL}OZuu1AC`(;uO zl?DQK9jq5kC9pi6ENR#jo3#zC8hoCTi26O%-5-)wt&mlfwo+AuJap6u-!0YM<7Gw9 z{;x2}`T(Bdk)oPpS1-2?M!$-qoU}RnXImThPlAtX?^R>@)KH?7=~FC=Ah)47MscmiS87$% zFx6N_8_J^nJaFsAf)Up9P<4%OW@2^f*2fY|XMK)crnCEMEbAUa0ca_1mg&qp+CpO`(1??oODF}4O?RDLu)K;blsXZpvDriBO3jU=ro`W-hNM3szAThY`@)mq#LyTs~y|k ziE>qS*IUOT^?8F9M{OKDyPDuK3%d>Pfos`2ZN`dsjPUvplg}Yg_taP>+jT(wxyJJ7 z#enLn1L~3*%c@5bOx1TReF93?mLLj0p^P^nqr|8`z=l$5EEcM`>ST?7+ATGf6Vooz zOlMs)@imsSP>!k}#41jw^FUHaz&3f3^#y}ABBQUzeT1E>?k*{v_!Xa_jI9 zyGt8ugmT`sZ77BpWOdK>2z-46;0vU1 z76}I?PHoj)0ks;PVO~tat1mL1$+&GGbCnwaG(J+C6Jk~H=}+2L54>~$7MB;3LKT`n z&6KLau$*Qmg;oc5jEvkbO8fuc-risPxe4}VSvc+V^h^8-%XBy0V=|?h+Cdk3b~g>d zG_WH3-|)Ha|6p`n*ncYPPIO2p!G~x*4Frm+(A)!vg6^n5b~N^|Uk*g;J(6Iq1i7&; z2PrhB1ULXGO^^HPOBPB0pC0Z??QFLnYI|I}lp>#!zmI%J(jI~_JQo9FIDL%tkI6lU zt}u!V130F_r&P&Xk9`_wr}tnOS-P zx68YYtRVV7BptYtnFCk99N_~b9JpqzLanT58QMg9AUX}D+L_y*uL2~8O@Y%eh-JdB z&r&=I>^>*1s>307=lfINwAJy6%z zv}4mDqWo&wk>#Fi8O+pM^NwIZzUQSLCC=Zh(IZXw+@l|`)BLDIs3mj=<+t=5jzgm4 zrJxLMd2wO_9`-tZ#4VcT^EvSBh?4hwjET18RqIJ*>bLY7PQ~)#+VBUn$y#za$ZWH% zY2w6O)1Ft}2$H#NB#t3)lG*$K_JBBSAZc3e%U>IaNKJ*daY**7nl&5RtriTk&W1hU zWM%aT>*Smr9q?dl672jY!47ad{7#0-letwa(*-DBd);jaF7%%|%k+3a#7^tWTy4Z8 z_kyLGs~2g|=%|1l@-ex*X9bFQ-@U|1wh8@0`LTRCDT=uzC~Ws-*DVcfRC%A#9s=I? zovcbJc!}goNWJnB?ZF`Rrp$X+=6x*lKBqj`p5sA91u3&b;(6dCGfVj7O6mnED$$cM zber6NZ*9ly6WJ)r^R%PdNmxcXJIg@b^b+IQ+Gl1uTSIbU_PPFGbbY{CrH9x%x_ax& zv=f;?6Z+`E`{ghtX8Sz;^1_U;8%9;_ZqOI{RCWr*S`oF*OB4)keq@r;cnB( zjw6(ZTC)cd>;DMrl*sj;+gR+yGYGfW=B_8VQ5!moHre7E6=!$g0qIInsm;+8R-Cuc z$w3pYFzIwU;ZgD*hD7KRV2u%e%a+Vp>|C9cNRD1+IyaD9j=C@qQE2LaU0_94x0c$e0Ir=_Sd1%zwF&VeiK97xP zr)Y6X5&rqW_Xhb}T8H(0O6s4;)DyujyH_-uet)?{;?jVS0c-hTWa!Zfn0RrzOpPx&I7| z=@{$zw}G(EgE)z^A{&2^PwD+zrTh!z4-{dK^Vg!H7Cx4~Gf*6uJ_L`o{gxYN5PIj` z%qDsRvc3k+^3IU9_6#&w55Eo2WJ+YVoxcfEY2DHzNR2-8-nBuipy}XOA3dZ9iEts zB^ln@*o>!lVfm_*!(5eiTq?%SOc$EmW|?Q2!SZlLfQ7i1S?I&?VVfDE*i89qHhQ*&DxN~RJEwzV`|x0sfKDlUF0Rnyvt?YH9XJPeeB)b z+rt|%esN?CVVRpn!}Tb#(pgz-urg^XFS(oh-wX4MZ@h zU6K_saOpH~9&c@o3j+*We#+91m*QG!V!kSc!%>;AHxFo`ObizeVw;E&v}dtln4Kkt z;gnqrL!(^`!<|F06wv{Ch@XH5sNFnk7kbVM>?KIG$r5?-G$;Ywdte+8Ht_y3Iutw3 zf=@KH@E{Su^Y@2l%z{CNc@wBp?-G1acg{uP;2Ap`@$+^uk}+9gbmJrybd-6|$Z`|x z@_fS16!sDEA-VuBm~HK%&fxr&#f$I~4NRk**cgyD{>T_-^@W+uY(e+yY(dd3&4En# z7CwOkCpCR!x!*G0E_mPej(Sj_JHnxx3+hjIvRcG6cJF01=8BRQBIr z;@gIr+o5)$&HbBQXmcNtd5=?`e-k1E^|b83<{x%J1`{P2JTLQRFvOj!F87!FHU-K8 zB~>ZYFb@V5cA3R~%O|LDp^fP@@*{JE&Gvq`T=iGnZlP*t`YxP(C6Vz~;WuB2ijEQg7RiZ5}&cOF#qw_+1vVS zLou{_kJIVj_W8?v#q4Da)xs+1r=n42Xan;%$Cw?@{6+5Rlh~dQh%ba*?8d9$dw?VhtG1O3 z`|Lnd?!^Z5rv2mXW1n=Daf{NdG$6j9GXFS9T5D{AUX{F~lrzsJ4y~tkky2bo#fg4w zd>;G#UUzBHqmMlD$k`L_((1$)rzV)ZjosWo_uN_-n_X?02LF3{GYTztLc-yV$#}ZV zS6j)jVJUi zh!7iw7!_h{JnYs(>r8PbQ^E-Aq1*%Eb1)r7SZjfA)cViwuXWU#&_okinVD?L!X&)k$e>dHA>+=qUT``u2(sCoY(9ubvdC-PpisTi z5L6|q+{6Z1)d^-$e`UIEzK}gVhK_i_y-(FApl!x|*so`)tld|ykHr!@9F=i0?Tm6e$Nn@C##D-LMwo{cdW)PDdlzAtZg9w@? z9x};zgsI{8!%%Y#-x_4Ps>qx{tx9=n3R?juOp)u^6tTulmwB^gYOZ{mFY^{mVV3!C zOc9p(?@SR){v(-MDpOy{)XFKsT7TUXX05N}_d%0i%f878rcif*Pj9FrZ515{V|x0S z`4*kBPeI-)JV4QYc*GuanzGNFOcp&1PEKIH0@zIw77X^0Q^;kFSTc<`d2lHU z?j_lUiTxuoRWDNwGId_2VxAYNI7*RfEv3Wr;u!YQ=fx;?k*RBC$|_SgJui$A z`cMjWdSqp{HQhR#F9}H~!i?9)rFn*2!ae?4t`6wq>mL74rg0s$+Gx~^+@QLSRJqK_ zj9kFQ+IjP8+C-6N4MsLlrsQ{FHYu<`qHFcp3kG}Bly#HXOhGlAx=+|2RHaPi<2`G# z^skqxc{25~OuZ^oOJwRjnflLUjtju)QmmOU{gtGal`^$XraUsWMW(jN)UL_G{KGey zk5`)dn)IJY`RJeIm9MI8_4`?0%2yK;Ok|AA%5l7?>VC3Mz8F7p{tiD<@;)Wb5#BIZ znRkx6@1&v?7@IlcCo)V%OwE?5xiXbMk8MsL#BS3C=53CO=JceN`5UV^nEF@6M(~A!`3U{Z@}8P(?=9zON0LHv4FJsiTU?f z#n)!R02jW4!1u737pl-RD(>Nm#LTua(^mQ9c8N11dShcnIQPlwG+f>T4m}cnd&1`{bXvOO#Nko z;71t~BtIHJA`kidUW)Li^cfD^=YE|YtjuTW@+`ul{+Zc}b;J@k3qB0^d0}H!%5M`` z=P$_S+DLX0FH?$4b)KjZ+Nq&r<7ix=peb~tA?KPMkNW_2IAH>T2!P(#0A4J+m^+KVt z9gd10O-s!7E)rvD%x21R8V25fvc%s+#z#L&<0Ba#6P26d|056c;FxqZ=P+xZVYq{E z@6B*;b??64U6Pr5IGk;Bmt}ZQBoFn5k~3|10+N~Ag1OC#^E}Qe8$0tzVoVU@v~}69 z&T6kX{j`G$wMUX<{kOTjN>PI?zR4DUQgJ>&tK2E2sLa)%-1%ZMkTtl;b{)@WH0@PTn8b)bz>?M#$HFs`p7bLzE150^e*zmm6_xbBPaoj$;$>(w!^7ZGUiaFZrS|@XW5ezM14(f$hIf9zr*x=90Rf@@89yklu3=X9yiQ!NA^S0r zwbQqXz4NaYWBg^J-}5E9`!ay~m7-GGF1tKRQKjO{r%0u2P*GozksDqy5Ndt-1p70* z#AM3um+^FQhPg2#6`g;xdzgQAg_Q*h_zWQ|#{Y=n2{PTY8462u@jIoDSjwH^{O7w& z+y-{N6SZU|`gr~$NWmCq4F6}p-^pNRF*( z5m5OOJ3_;!OD<+F76I?EemYB%b} z3rAVJ%?5ftALvjSbnm5GBlKqv<6fwX+o#!T&8Jy345vtahP#{*QcT*Mf8@3>>#Wb& zbPtDDD|r~5LeTFdYf@(F*1`U|IZx%bpmC5g?+rRf6}rPkXTxE?rQTK9$qhgN+fl@sNb0VlyDGuoXt0k zxAGL}JQibpfjU;NFR}eS3DWwcp#e{CN1{@4w9hgLPp+EOzlSN_=P=|LBdkf>)Nlvw z8f_R_{dlrc)NG5dx5YQwZ*YaP;$01E@Bnz`m9(i`gO|u>C9)IezMl9U%3{yylGfrA zlYG*F$tM?+OoTuGW41@7w^$b(yzyvBInL&;8R|X`lEE+G?4baeO)1*!E>4d>6@Nr= zKFK2ljkLLcf+B}tsBO9Daj>ms5+^ReOYX4ZY+=&Hg>$GIAFeEz43CE>MTh$Cw)NbE zR5x5Hs`7@qWw^aPgJ^S^-t(j_ew!_Rlj6JzHxhOD_W5kuwA3jJ@qKh)`g8~$UsN4Y z9RD#hoqnh-x^AVJ(CGp#z|fu!_8?Q0K%Ki(=O0w#&$Kx%n3aXMv8ufLk4(SXSI1Jy zT=L5-3#blHOel%z!9#KEx5n?LMpso5D)0pmj~&d*uSnSF^5-g|%Q%W?(k4WX_cM^OLmWgXugTKf$w~2;L3FU{qq&$7JLk!2gA8Wx;!p z(bt0>3yA++Jvjd79fEvc9V+$}$7br9I6nXhNG+Fsjp$Ufwk;rps8}5%{hlqedM22R zGV;y71I(~~>pg$SKEG0DpI>9SNz~^N)#Tjs$L;ee(l73#Gu%6ex;^PiQ8^0CCeu)g zx4yOT8@#$M)&(+J8qtK$K8KyR<*L_` zy)p_}ywxCNl%P_W#4NpUJGSgA;G)T)O;@qSJMcQdAZ4R%Q6%H+pJdX$d6U}Zkd#wu@?$hX- zYFG#RvvqL1CU=my@h_ywakyx3xnr#VI1+K+usi^hrZn~YK{$WOH1>#Xs>o&g*&MC9OZ~G>zKkk&a}6Ou))iHt zJRsVFs*dXXmwFf^1uFYqKvou2PjR&b=+hRxT~jOdJgT+XO4nYf)J>r zDQ|AE-D$7fY+lv;6iVNd0DXV8&U&ze;6?e|zjoC_`1wH<98wbN2 zOjF+5sw{}b^N{0c8iKs=v~o$TRe9U14Eb@t%G)LTf~|Cx^meh5-rV;ud;95lgCjb*~<1krV08Sh?oxju&y2LtGVcPOw)X86l}hx{eJ z?Z5`N`N{&D;JX|ORgf-(!Q?9z3Dr*#(yLWphy^F%4+3>`6OBhRX|C}VC8KNpr77X? zIvFA}Sqr8`$KZdXB|%)L_E$9M$DaMOFWH^ebI}#!K1Id5c{i?=csDis5WFIkYUt4W zP;aJwBtvI5%FL}4DFGOd>lh2)KBf)n6mHhp7=*L!*8q25z32e-z_fhbqpb1(vl@=Z z-0uA-!xi_T7KT&wcy&Zri_;l#zU(ucFZ)nel4crK@Upd$Nk4TY9+8HnBT-2a30^;# z`89wXA3!r5tVAt1!Zsih8&Ju9)uy~vJVY6?+vaSx+xXxj6|wyEeM6j8_M1cT(jJ-@ z;q?T{)PL*sr!~G|1@BN~CV=T6L3R!y8%84CJ9Pa`COu&Jx05>8w$7wYKs}6`0I~!7 z)imYp&FM<|o*{8RDK6DSbE5@k)WS)qC_tmw7oa5+baNZmQwXy^k+NP{HNrYdS(R>m z&U2)lC)lokvEoFd$EuXSK9&F=I+|m|^vPRF5sU77EJ4J6Wz(7l)zN61acN}FYka=M zWGJq_sneexC)?JICas`0L&?IGTLNuy7Ta&qp&Nt2rI$L(6c^s07wRVQ9qPpW{5x=e zb$xs$35%FcUbVg9JWa&OlBD@4<^&DFuQS3jCXK8{RP0sPo!38&Z0#K$-^PEOZfanL zz3izRN90FCDxu#P@6PLlA?T;IXz05W)gS6x7j*g!kfmL_Vt#*;eRk8uCfO4yx=H3s zoO~^emU>P{uYxr%zLL!uR;E{*QN~F z*4Klil*XdV%yYtKlStC$IFiQ5G86rh(&Klb-S!LXw1aG@s-CC@D+4OustjpX)6sj` zmfH*q!MrEPL=2$J#=Y#qM`AdX&jPU)=Fa8g=q@IR3DQb}6#rBE)EEPTz{4`>tk4T& z4ZdD*ORZ;2Jb^#8jQtX;g~g`axY!iyfnM0eFs)~ne5@QM#W^FEOx4%kS=c?CN~ z9q#a4q?L={t_(JPj70P;A5;I{h!mT311&m4!v}ASpkbui*)n*#bP{2lNi33I-iYG) ze)s0!G@Jv+Xl=Y+<6Eh7O)TmUUNUR(0Z* z2Lark0^I+IVbdl88#vY=PNBADWnP%KO91?jjjwHhwk&f^tq;2T2IGxbg)i}vtAIjT zeGz;@^1)Up;W2E%(Fiyn%BVQ>T8%I0>LwW^f$dBD?#cuWcqWkku`V?H1`P~x0dsxT z#PIckt#EDx!q$mf>Hcr>1jqKU`oeFF7mgQL)Q!-1bySNK*9d~@#Gn2~Nc_LmeAAh5 zxH@s+-_XS3H-6tw9J&C%jr^&xg!E-ec%~IcJ6RhoVD2ArH;&>sDpplQF07t|74ZckkSN9QO2h1EP5cY}Xyl=AjN>*b(kF%w25Xymm0F<2V!?y1UkW zYFK=+&Cz7eT9&a^-ikD!JnJ3Y6`WSadP1-A^N%Ro}cs`FU#0{fMMt4 z?h_gD%{JHwXRS11jxYr|ynC~tZ}#?kDL z7JIHM<@b@#=KAIgcMJNwqbFRYx4B~>o|WaCt#llSAw&@QUKD&yXtnag9vUz zGDawNH@kPHU+0ZKskj!2)4=ZhNL60#Sv8oS2$~#CgO!C}V-U0Xbwx1OsEQ-5Q}!Fq z?xLdUc=hLXd);=X1_K^9nC{rD)6NsC24gHxvA@E_yOkDsd%RZhEd9D-RI)|YY-+s* zR)YL6g1JpxCm0vN{rTW5XSx`P_){RzLE?1DA~(=(RXTidUR*HT?Wf%*!JJXuUM^d~ zR@HtF@m!^7=P(w*F+F}u{9b!s;3D>cOV;8Qd@LdW44Sz-5l?5_SFnRk(OK<2-N^II zwO+uqFEMwhI6uYMtwqIbY(t+#+hddZtvgPU67&~f@ygMVB5)}?vzgjKvtrNc;A0p1 z%6O;b58T2|Wa>s&r7VqpYe&|$i~`Hn-ufHk3C~rxKs&wRqt58m*Ao#MyoBt{$+;|C zV$fG{|8!65{^?wD0KU=z*WM1yUo^?!FWOOYC7a1Dt`G2wjKVP({yOoW(9*EN?s%i` zx+L7k;*G+-au6{$#1hmcOaL8TW4SehTujPMXycZ;HPhQeG;J-el!kXy*EOVl{cQ-mdXEcU29_dfezfoAn^N&T8@W z5U3g*zOL2v%`D>kjw8Q+?Bc?nVP=Dt!^%I?mXWOFl_Y;ZifEfeG1wHih+e(mUaE(|Adf{@#-%L7BQs7um>^=ru#6;D;scqn|3U5Q5X$JtO616l?GI{h zL1G^9>l#o6ix!hutf4;@8y+C9S$JS#=Za8DebB6rSK;Q7JYnvm9D$KspF=iPjC`$l zXY<*8jI*iNo#Sx|q)9g8w!XyYcx0XD_pmDieBB4f!*ngYqdqOcba58DW`CGsrnkap z7t_DO4wv>UMflLNuCVh{P+JuV-yQJpWoc+_-Km)D;A&$tTxGt*AL9}P2Sm5;wul#d zDonqg}EcEqcyP-cn*_SE&EO@{G)@{5I z9Xq}JC%V-jXFcQEitDZzrbN#$8xE1OV(1VFmm@se)#Qbs?~ZFONic;fqZP^M0A z=I5YA@ysYLx##|!VK=gnbh?DOgwNHwK*+z1vxIRlGrZLY$%_7f(5v#0Jo0e!9H#^X z{={xP=){{8V2UA$FsD^^se)jc#HuSW%D#Gw7M~rKiO%EO(K0cDFB98{YnQW|1Ymh_ zjH7YTM|~K(m0!p>oN5(|OB(Sx;`c}mzLc1D#%K{YY-OayFF+ADr1W895cid2-0VWV zWYs3{C*nM4tH!=9(W}P1pXKtDEG%7U>0oou58MN~?`;BfMbtMgc<;~A%iZ)Xvc5D? zm%m(X-=v-UET=V}ul8m&v5}vPEGOZBf>_XhU7U*Ay(qOjA&{UpkcL)YV&h(ZnG4}p zeVf_*jZe_dN6;!YgWFa2^|0LLL2a9HF5nekxUTsQ>gw~smTU(yK+1!yMqm@Z zNAVp?tB=6?UxM2Xf?;WOxu2C>Q(f%$1~$WbQAW?p2rVAP6%uw*OAY>f{^Jq;<5K^H zN|L=ccNx2D25sq@@EFSGuD3sBbMIPWi$7(HFV5;%mC|@8MGws3r6``dC$nF;k!bLeK~FJI3sgR|~%gTLPhRBOW$)xTVn&BbHt+fK+!og0-C^YoZ*G{GY1?^#7~uS>U56@7ydbB%6c@h=_<7FnFk}CE6-j zm4qh!1#bSz2+$1b}9qmtz!u}-ACzHn)-W&L9T2qmDQ|d`I9^Cc5g3!lQzUiw>Jkn{Wi$1|} zMA_kKP1^I}@y8-n1*Ck#f71)D9*X+ivHeT3j;Z6p`U_Y0+$P!=irB6Xb3+l)m;&>I zL&sBUOa8sEyt$+>_x(F^C@yL%1z2sxvGcBN%56E2d%7vN{J8d9Z7^Cg9jgxpE70Ov zcIK+5e$F?CPNMZVOt)LsFLC{O+I!7n$ZH$v-ihVm;+M0VZQ~B_3xI>L@UYz?FI3C# zmM^Y_7hC03xf|9U+=&+4lesO2;HH*DOLuNcWc5CL@%v=(EzUZU7rIZFVuv#>VEn@>t3CZ8S?51)e=Z3%4g(SjEfB3&mOv z;)~6eL|!PG(zrTGk!HK9evAgq(V-q`>%2W@`A9N(QqApPyC~$wb}c{w*#Ekjp-3n~ z$uFyW#^vOPT9+@NmMU9s$9Y~`8#>W)aO)lXx#jSNS$!$T%WI1-O{xpEEYmoFd*EY*-~!nmEv`uwH)Rxg4Z3~FsCo2 zDR+E59AdGSn{;BCKX1dGBC_suYwq~w>}E@;Pa6+&ym4NrHB?)6Fi8ZL#hiyrWJz;>!PCA6udt)%vcrPD?Z~0vKnwx| z+@Be03ANyf<)s)}@N4*KHj*nls@Foe2bbMZK3PtrzDrFDpXd17dGnDX0T|Af=8_$&4e9!DSn2(k9# zeiL#O|NN=TXd=%`q$u8CZ4~Di2FYg)4*hsVeh>t+XW$+<&+nT|AmJhl^CM`lH`U=9H`R`hiIRCa_}uKIFp1za zF94a%@EO1*Y#pY@ix_B{TnT4Y1Hn({sBfn~jYxkIKz{&)MkOH#&CbFkh}!&6jK~i; zE13FpQQ$Nz`aNPRjpL(Sw1?wMY4i=aN6i28hnuZ-s7HQ4Rn()j}c+Qf)wKI6oH z!@~e+Pf1A271GeBAY06A>6|@&_iPXlh!&XuZA}DiJ$*And$i!?4!|`Pv~5C(!55)>iBH;dCa!10Z?k!epiiRLVH3V- zS|gyld6O%D3^pN%<&w<^=RxLbTk6esFnI!x-F&0BU%u2p@R>96Tj?A5T_Y(iTJSOg z&ijzQ&6D&^zlgpWd0IhJK1j{a)DKA9F4)BF-v1YID;a>eO(s}-Si;)BxnS)fCTrS$AGFHq( zXRG<-Fc*Ck_4L@Q%zEhP{`D2r@8;9PUC(3Im~4-UHTbaV82N?*GrsoA3Z+HuaoTg% zh{Jr>A1Lc?tbLbO@tTM0>*9$H&&x_fGn_0>dTOXJqXkMY_&wMl2A>l7S6*z~h1pM- za2JvFTu%8#jWexm3sd*Kyi--ffqwQ;V8Sm4zf zFOZfIjX3hzHcFV1ef_ZGDcJziOw2{E5<3eN>W}3A?0+8ITod>ESvr+BPx5{*znSXM z!}Z@J372*yI@tB7ol&fn|F5X!LBg@D3qR{5uUjiy%e%VQI9fVV3wGgdwNvGO>Je&< zRKMB&e;Ym~oRs^wd?D=lC}{_ian#)J)d;LR=T~Q?AE3A#-^syL^l7y1=j7Fl6{}gX z#TrZYyr_uJZne_jb26S2*Cka?Ad{*!ij#ODT~OIAQO|zgolOy7-Uo z^TL94-}W@|sDN`WR!arig#8u1ecY?`C!-97k!pSdUGd_WkEWrQmMRt7@$ppIFvAFV zY2VE<(XY`m0>@wh9VT4+MgQ^nj}hoN3(xpQ!>DG9Q@`J?*-2E$OkrRW`CtX1zhMa_ zV`--1N6tS3n7TAW1>c7$E8yrc24AhB-s2qlTlgE5H^fgEkM#=PNA(7mWdMlQ8&Ep= zFavV_Li>FA@&UMv6Stu?Q7o#8V1F&LOXQzX+!Vv$?NN#|37q&!Qo?03^lli0kaArW z-S-^3YZIlHF{yk}rkZ7}Yy z(UdC{o5|0+0l=vBOze}rpNw#Np^_|u+w>QU*BRcnj=ESCWyq`VktK zzjZ`mtqISIc&Uci9=;3XN8<U~FXCJC5>Igj}f0=xA` z`Ma5Vf#AjW1AJ9jkC`#5<*(EW_D#Z{0J^B88vc~H=0tCw-LE=XhS&p~O(AHTEIFto z*@Zr4o%P?QBI(T~CmDr> z<#@z|N7@Z--3Bj}W+7gU&-w=o;#aXz(1CJ8@7BtjaZGqc)Z9Zoh6VjM z`aM9HfmSRJ-D|q;8Nv5hV^n{* zmDb*>#slXk6#j85dB5*J6OAbJWKv&AW}@X`nizjWdQzRJd7hXW#U;ROt8uR8k6F)k z=t|h3D~*z_3=wqYQJ8OA40fm%{?zMio`DG~^%dd>1=~r&%P}3<{sbkeP-06US-F0T zI6C#jzK)SEz03zV8kq$!V$6za7^dqY(=dw&qi<)RP{ai9MaD) z($7Y79M*Fi0Pmh&OJvb3>tp)bt#_JNpU2WCU!4^+^`u>Af%!Y^!YI5?_pSG0rDt=u zr0=?~6t8rfZ(k6!cH5EOJ|Pp15dZq=@4?LbXL)I*Wf$D?oB&Bcw!cfa_#vJ5+%JW0 zF+&PwkJ`FLTN3N)_Mwo9cM1s=#=lrYku1}GNd4{LVLq2-ce9S6t@}NJJmx2`^gTC; zrSBE9gyfwjB=5B1zgWo>S>h$JJ~_LOB+s2mwtcO?zOei=9eaL}yn|0VjM5i6L_ z(9vE%rXCYu86|au^E2U0auF9)1xQ1BpTRj{g5{3)Gb1O^{=a76TL zj4N~c`ZVySf5PMWMIhB#Nx92SUF_nN;FHl3_gtel9n( z;Io*3tgBK)<3!|G9knhw>3~)~pS#gy!c*nz5m-mK=>x&5ttmupC6x%X&VAQ(-|r5| z6V-h?u21z8`StMrBUq&j#Raq0{`mE9IZ47nRF!{;uKMTrJFZDZ1!!aza;tYMe;rdh$D@xj$ z3Jf^KMgg(-A>e7g!`G#HV6GLfVbto%8WGjGvYNPsj^)|I@#7>4Qhd<=lH6KuAlpVx z(}{$|tdCE!OXVlUT5bPeBV_?-ly4dH@v*6-^_fzpaI~ z_zI@~7Xdj;HbbdLg8Jb8F0JA`DRqsaoAk;Wkjel-dw?;otZsw9!f|5t?Qhbg%MEIk zj9OV3w=wt|j~-s2p{hYM@~A_Y~&Puf2*3(-V^x(Vn#G!K0I zmP*{FMg~|pg)UqH2uT-VwQ{m^l=ntB|DZO$Ti*-g@6~-Z{{&bA_!V~VMKw;O7G966 zzoV8n;*&p#jld4u>Q1~n=pRqREQa+`I}D!H(kiac`}X{A#i>>M1x{7me9rD`4f3aX z$vLIoth(Ms^S=R3wBWfOVuGi71YFnSiE|+K%2jZ4d=Frk?AQIoJ_pl;+ zkb;Wq5v*fyZD}K89Dz!W?9x&52FZnRO!v|r;RcbOU!?_qgw?A71y_CZc>#{nFfaUs zhM_|nCh^RLuRn24Rr()sZmVcDw3J$`vyC0kt3Wuw!npeG_&#h;(($3byW?!U7G&uL zTv|PVDclOwF@hUXPi2<@pJOCy^S2rV0&cj2uaCYiKw-fm0SWdhcM(j6J0i|PV;3#7 zqt<*7yN5NnW?YB$wQzo5M^rJ$dQ@B*8~ruO;kA$b-C`(fy$NFK5y-9i=21ks{rmn$}QE(XE-L*cU2Rrt;LOar@t1LbJV59y*pt*E$(*{P>a)o zHzu)lTiAizdhd@1_0xNez~)xle!38?B`8y(#e@_oZCw{Vca%+5wjK5Oz;;xW^fr5` zCQp7f42H(3QsgUDZ09H)&5v((B<@jed%ax`5VgllcYPqZdzkw>>y(}7Q3{*GRe4t$ zueEh+si^OoURK+1hL=-w+b+xRvHXs`iy|Q46+>nISE6*C5qL+pt+VSDt4v`0KvtQ5 z(;fBX#iRkPGT+_Y&nnZ1R+&a&mC-8R@z{^qmfG;$L z6{dLeyYO-~^Fes4wbqW$J4i_}VWyI{9i^V(TDMDDTa#@+neTnm?=dF{yX>D# zVM8d9#@E-|dY$nxf6|Vq7yjMRXgdr%^tq#dv99pNf;IF+Nn>ry~<3`#TFmT;x zeh<}R1NK}COfVWh9N!bC1hBTVI$YjMscH3`4?*QyFq5KU9&1&)gtAd9`}!8d)4%-G z?^z@oH%}p}bk_Wn~khxA8Y zb|tnxp+U;dk*A5o!ZrJGc#vH>j^h-Jz@4AE%$1keCe3u0{sQprzR_>nHLKcN*&hoJ zv7fh{(VJ3M1s=d}84i34xVL4^?&4H7V!&;Ksua6}5qO{-R`d$4D1R*3>gVgSk2*Q| zsrIM<(5D{|1~B|%&hv`+UYrf?6z2QFt|v?X34tcIrPU*4XS{ku3(n}{=gm7+{f#0E zsA{kEJo`%!E*85F^ygdr9@Pq#mIZ)VtRZ54PIeNie=PEPWF}({H|ucPi3dxu zw;c6h%pr-38fj!8SjZ$It@3kH?B7aZ;CzKj<QJpGGiBo_)~a;8$Jl%px)J3DMXFZ+9Ro4-`)73zoa^ur(t5KX0gqWJIn z`sM>KfT0)Kn1wn1IPweUS??sQFPbXr@sdR+q5AV}d;?hP=)&L4-=BB%7~i}xvJ2j_ zF^KwPW+~c9zRYyj{D>OF1WrzoGTel)tnDr5XHGxw@`Fo%X<1K_R`CM?Ub-*kD6#c1 zHoU2@JVd~_lT<74(`xB)uOc`!tN{X$|Dfsdo z5Sg@Kz32%&{BqzIJA^+6=(`wMTk}3!pJMpdcf3+I9EXjuN42-Xi1pSm{2M?QeJcnN zzAr{g`hC#r(C-fZY-*Li8bpymb-HiZQ0xz>Rp1poT^R==Xeg>hQKzBII3EV?Y{91q zn+h8JTshH3mrN?X#7S-$tQpWT!V&&{CKFaVM#Ps)Bu@%K&(VG7E(4~LR^lhbt^C^{ zj}&v)3?D@8SFjUho!};xo0~MiOZ0kdJo~kmUB{Ave7YPfUcCCT-@}a#Y3a08M&K-5 z)pyy%G95Frgz;{uu;&?pPd;{0)MPVs1$qRW zvo`^)>VnF)x?t~ZkOPX-5bj>Uia2DdS3no!f1C^&p8r$AIDDPn}BL%9ul`@80Y8h;prh zUbD_Sca}=2Z{174W=jwZZsvMn$3qXE@7Y0wdzBlJ>LeK3$-h#I($kR!Aw9(p2-1oL zK}@~geCE9EZ_$cE2Ir_tZ$cyJ^`*jv&7BMxOatWUWFvDqBbEx@al8WS+I#>jNyA zw9!0xoh_qfNM0~xnazDODIGjx!6IdkCn@`(>kTlYiPiNqqpU0^Zl-}qR)Zv2TxGzi zvy1Qf^H#eu@)En$U=GFhaf0)3Czi)Dud8kK)FSZw~K0-N< z7ugHYYl`Agpd21YV8D8oQfboGyvN^IdDM@_)4NC5>SH|pgBZ-gQ6eYQqbG*#iydC( ztROjj@K~R)oMfObi8>`32v?F`)$uZAcax)jmGKtdiW(*Ik;<4YUG9lFct4qWQvwxG zR3l;b@$`pbS{yC`>R%+@fQF}VM>KwdiXRhh8G$u17ug-9klhRg9|irrJLaOl8Mf#v z_5N1&A4+-T8~pToRQNY}Tv&zJkEip=Mx7K662~w-EHQX1Mqmhjb@9C7&8f zQonWl+@#%fl0R*g^f#dvYFm4&S&M1TBW-{FLew5O+92k{6G}NK6p&j zU3EkUph9T)SoI~wQ017Hi1^5QsfW`lf2jCxl;>moyj7>12kxf1_k!a`jhWXw@tBUE ze#Bl-%d0qEa@VSUxO+yy-RMV*yZ_?C-M2}15n*|VyEkffU|u{u=_ABlJ3O!OBgeYe zMGhl2Sg#Uj+lYaBbmV9g!Fn^*0&%Ma?&jAZ-PI}^6dcO<$idqz8*e)uy#3QK8*eqn zTVSbd$3o1F6CgFBRRuxY2<-gOg~FF8C~VvF#Je|r`2WUVHBNIq39iuy=&!H~h^{pf zUD36Ly8s_xBieEia#p!;75AiMIpb<$Jl*U>TLukscL+lD)g22N}-QBL>3P4zT#q)LL5;j1kwi1+qaUX zUtagE+s_6rHN2Uh29{+C{V=Re`-c9gQLyk@oeDx^O8uL*{-iew&l@!4f?d_vL2(FspDs%P- zRhg?22jXarN67B~KM|odJ|^Q}me}!tiwCpK|DlL&^Dmp@WjhnaX;@@aADo5Ty_6I& zD@CuDa;g(_bsZbfK?3VGv!s1R-(>`nBQ|v@8_5=|y)-fi$lN($-Tf45_y8OBV0zz6 zlGFQs5``81D(em`@_9!*eX(EAvAnF?^d(uh86fp7$-2V`yj15{vF{lqMCeR__6@~Z zbFp7Xju7d{%<=GxcF7YKv|!$(sd~La3*bBgX^b9%>K)}eO{rRKF;|QN@~R{a%7Be z0lFBl!Vc@%BbqzG2KPHO*zwIT@Q&kt&tHfY*W7VgSVZJ0GGHoi`We=Gc}Rw^521du z1pn0gF|aZ0aHtcQ#rNz5g^mghEW@d5*ZqCgxDaUCsKHab-l_c@=Yn4k>h;JPyR?d( zFq-WkAmP8Go){|^@}a|iSI{Ejo#u92caSqT|e1Kxx@?oft z7ou%V#*HSVX1s@pVjXw6-XrngHzBf~PX7R{r-3&=pa`*KrZt6CT#9O{_@6uY{rYBx zT9IxxiStj2K5+aBHzbL+E>nbo40cFc_gnHW{2__6xV(eJZc#2>g+UC}9NTBZ#cfo< zYbP3nah^r5gNO+DJvh|^*f5zvt85opY48xU!ygUC6mVgPSUyqr-Sjyv=4vz_E}w|$ zbXSsN#u~5KYXx1_-TgNx&aLv#JbKicqS|*|{af^Y^~ZG14^X}LXQomWE%-DHgR1jL z+dm4Lr0M8I4ixo>s8n(`XqATu$u8aQFjF19bGW%V99B=Ve|Zc1jg6wp_mN|cVAi2q zmwLs4|Xdn3MSFt#jeXMkMrra;WG5Cda9DlE3 zr(eE}x2kBY?mKY|0N}{-F?jSRgmp~xao}|BCG|o5FG0$;w9EW zt^FqSiq*QqHh%P);QR3T&I+C;IaJKr^Ca)elP$f~2t2w?iWDnmGu{hsnc2_3pW*5c zL@~JDPswUHiL8eG;&pZ37oT9}+_(n6$Nag=Ut-uNJ=*b$ zbb~ryxd}E4BOq1nsr)J*DO3l{YizxQt^R)>#8!W;vW=vGiudgGtwDKTWEGFhvZmYi zX7U0=X)z7fq<-H=yT2>^Eik5!@mH(t^irfgCHLeBDH=0+llzQ;uz`>XuGWt>Q))xg(I0EK5E;x6SC_B{>8(EqT^slpP7XEbz|<`R$@#1ZkKIBn%(gdx zM(CIMKdNLJTt>v0w8}@6{z^um^1kQunx><3ctfxJH&>hzMtZ z0*~#xJB)o%0;}G&LowhyDG+0{7W@ro>PWkY!8uEIoO|H93pUiQ+2O^4q`ThnE3k+? zJSigd2~LYBa>e61neybdD;-jtE)w{=+3!u!!`G99F06r3bJ8F?Z^H<@ao$g`ynH06 z31nJ`vtzrJ@;BO~uPNL3Ca9T|jSSefstcF-@+XmQ>b}3fEz-ey0HPwuS34+QfGq|f z&F;J4mak>@v*ei)f>&27jI@_IAeIJAJW|cQ>qr~QG_S&wk707qlg_K_05TE94p?Pw zzt=1yka*jMh|0<20I;UIy;%e4f6SMZ&mzBP@jh}-pQONDPlu)ZPHlED=Klb;9gdNB z+U&gvd{ouFI6hehvJH1YMp21IooG-JafyOLVd_K&rB!Q`866RoQheGlEdbzSTD1X`Pc52E3LBd06@?#)osi2;54 zP#lGHpQ~1X*26*+_0W5ur-rMP`_Iasp95pty`=qZLe$Cj%pMDnz zxaRDdXr)GK)b2h}pRdu^3tt}C+qkFxL|M46DI*+;+STVz2FK%T-+Sn>pTMuNy*9?6 z-iiRy`giJfeND3EOQ2=vom$J#>n9L$KA-W8S{y{MX=7b!j6uomB*6NN*Pn#84)p1P zp`2@gmXe^RTcB$AnTxFiGOP~$KmXd!K)_dxAcfm;`hW0sg6!CRGh?v33wM2GMF_&{ z3)DG>Lz|l++nWRf@+&J-B4LQh<37TU?^2cgQDHod{B$8cJ+x=%T7<-7iLJ5FUtjfn zg7dEAk~Q#E4L(<%o)!*}uWr43ei8hgi0#0yRs4>Jf8#X#t8R^hI5a2)5-#UWl&*vBKt*nAlC9fnLv8uib=M3QxvlQ@>>T}-N z05zWl_3Tv_jqnxMR|76jwF2NKi+@i1=Z~5IUp$1E3`m=N7JS)I1J_BVFy39sJ3rKV zmUAJl!*+z7Atv)5%_xR znMHeitz!vJzScN~7tfc^5A(bH1Fp5Yb&`hfKDawyw?6THjE-K2`PO6Ff=g%#z|}c- zz!>aSvulp8t)aR>RbLwv>oAB#yJ#)eK`btx|9)@bSvUSe;SVsDZ! z#OABlMi2r5xbqXC5p^MUM4KNXX)wlXUKvj367a!!uP~jX2@(&?>Kz0D1Cy$di9Y%= z(kyK{>Fp#5FIr>p1Yxd@8Pw>Y&v@{C393iV@)_sugQ;&_G!7^I2+`BlQ9RGu`Y`_W zeX*XOJ_jm-H*+sUBrK_4=kwOrGyzZHSv?c`UJ>8r2_pRaB%SS3>3^Z58FjMnG-}f2Q z;i=D9_%+bXUk|6x^-Vq)M?*E#a2RfD(nV;Ef&{2RARebi3x0(w2QKkcc0W2PObJs}(4XV^pTCOcLcM^;^J zm{(~yANpA;`55t=*0X}^3srfJu;05Y?u?k=pa zzWB1uo;ohNtCZjyCAp`6`n`cbK@qIQELTqNz?{co;H@a`r(>063iJ)TIB<;84QtLw6_xTQj6I7{@|&4{+r)~ z_S~-Z+^nY;L;BA>ogb8^c5MnBPiX%Me-6C5xAC*Igo95F8Z)LTp92F=3}hJ$)4rZ= zFg$7W`C-)qKJ@Q~HSIfsx4r@3z{z!Q0loC%I3Go6s%lSt={p8s#2JxD;{<+uDe!y7 ze222E*fFJU*(}GGjLIL{;5O^Y`ASk%r((8*{W%7(KdHV`alyS4e%&>l%B|IK?d??N z)WQ8ucwVY5cpu4)SU;lvBh#_!Tj3q!7jIELRqzkKaY9`#{MG7GtCTQ9@O$n{M;3lR zf&1dbZ@s06AFv#&Gmb*F#r$YaRqH+>H%IyRzBd?vo|{It6YGl7z6{RKZ8+>w92R^r z!{O~qnCDm(nV5u4d+gT9mlb>J6LDDsak%+MSu^G<=|=ybXaM`L>bUD-;X0*CS^jPW zQX%+cp5qFx0NyE6^8RBKt)>}wQGcPDZ>B4&E#U?UgDqSY!qjXm|8cAVt^uB|P0(B8 z-?e+E@eAGcr@HHpbk~33>k_ON?i&FxTj93^%8W15GiMoew`|D>CHH0+7Pk4DAIHk! zSe_Jh&9}ou!pqH2nB3DAgC80f(nB|vS=!nN2Axp84SxHn19rt-1{eMK@=f@%jiwe0 zT#4_3>>&%f#TYx_-#&ahk^9!n{idp1W%yvMZgA!xaJ=y1Iw;!!*U(S*Cb(~c+MUHv zh@C2je-#1(wF1jbJ8aZSEkK|aA@Gwyq{JQ7h_#LaSlpe;Xty=W|Ke67yk~yMnuPFq zhrTk;!^bYD*9@-+I5uJ}BL@+Vu4Ipm;8=T1S(aM<#~4H2E6x>ACUF* z?MmSru?B;G;khI5gGRMHs7C{S>;?SzWf)ysM0VYo0I_gB+{0>=mh4c#J2nIoad2-i&rMJN`Nh{cio zmRHX@0}N8O0^z;4z!8nF zDm~*S+CHU?T+{FRvI@{o_W+pRc)8$-A`4IH3k`t?}tT&>5w;BHC?NU}R zAaQhd;(dPrx$>@lAy>{P{C1V9GpPiD-2%W)4ntta0*sFV%}DGI!#WBgXW&{bSdjoz zApxrt-U|&BtT+$KLIA$vqDZPf6y_@~r1wq%_7#b;Rteh`)?pR%x^P-3pxpxq=%*qCptB=}1Nu8w!Y$LjdnI5C zz5PU-jBQi#U7&8`1fer0pV@+B-E4}cUw0cko@b2`Tp7BU1eJ|Wx0*YdsvFg}=siDj zP;S=khu`)71&u^5p>Fs)%bEZrF23w{F-$apRGPVxb-d=Bv#d$bJJTc3BPBm0oK|V! zTO)90@5W}E)lYjgdg$#LmD4yKDPQg_b73{A17wLr48t`E=mmH+c1A&D5g^?3Rz#-8 zh~O$^B>Tnhu)HZ^=t}jU63JS=70C_`LxlswO7;&c**C1Dd02@$45beJK$N=n+EA2= z?n9Jnl_=H5)gTsWNX4kMRiaTC)qpsrq1Sh!)Sr79rCz>f7)n*_XO#MkekD4=zjAKS zUB=K9Xa(rwKF+A;N?rLTq1OiW?E#&Bgwyx-e*)!xmggNCPJo7k?0Q^CLuCSYYqUmc zk@F`*<$m)Pqd~oGK-6Q7@0mifn@`Cf5y@D12NCIe7z-~w5eO6kUqGU^fcOHU+&Vxx zPl>lVazaVoE>9g`U9}&v%P@?z9eowc!-kQzm{Ve1^tWPN)G%xrIjm&FuoC02lE`5t z5yMKthn2(*!_2rJh?#Fp4#muedk`~C5;I4gg4n5}0DA%C9RTtVi83HIt#~EIpcGcH z$c*qxp7RI76`b&1_;vt=_?|BVVF*IAamHj4#JU~co&*pi&BjZcV+Ie}YiGuG%DTf!^Ah5uRv_K@&-?CPK(+M!*WOu(ymzoh z<0^-1q}(Mq|4cQ_rgh>y_(p|t70TE1igUrQ`zYLlyl75+vr zjDxg{xH@!-pE-e~!R^f~vf*J+d1~J(=`_*O8j{ofc91IlcEKpb-sJ4!wYOTZDizIv6Y0!kH zPO7-erz(XHkSqskDr&{b>LuZ{sw{^ZXr##g`;fpgg>oScN2n*3G|&nf5VLdyXX3;a zG!sbukK-a~58fLO>8=mzuA6n&4SZb*ZJp#gorCbZQD}aqiYp2KHUe}v;w*n4D8Oe| z5Cu4f3+~6%FDLeAS_+NOw zVz`S`nue<#u5cL{)43jK*?E-N5WEK8ZQ$-Wjn`g5dNC@gJjTm)<4w`7U49n8+}L0% z!Pv$W13T7%lK|I)$d{pdCof|=E>|0wWt<4FN+uXC<6Bg(6X2LqiEzp%&Kj!t&Ld7r zJd>2*XUl1sQUObK*dH^!#wxHI>UPgVC7IS_59;AeA)Ni9^+ts4g3D=CWwHm#%K1^K zq0Nmtg~g;&$vayii;1I@^|HOfULy42oe`Qo90&Ta!%<+mp$YZjBYB&pK75op@Wamo z2VO|}aNcHIap&yD7f;YD1q+2{d_r?)?FaP=sKg(GRq14v(aIth~9@DHaJsDgWkWTzirMso-=ow5VxumqK~ zh0&lq=WTYp#G|?rR-Oz0#i4;@J2r`E1MAaWA`Bu`O5xih*fzzb?nY)O?k1#sNTCHw zkQhWX)qa^qQ#CA_!G;f0(IhDd3MPfvSSj&pDamF*d2Azo@*1#o|B(j5FgwYPtUW9x zyegG==d_cqV7z`3>I#cVN4N)T?^R0&^m_XqskfW1-7EF>&8)YtD_FyN`w0TPQV8tF zAc@xPP;tSU^H|f}#7J_|Cy<1&;>x21Yc7)CBWw{*)(CArh$d?iwRZ$Atg#L&xnNky z`NK+*w2~50GC`Es32*Fd0VSd}+lPXY$EYDu9U+nJ+p%b?9)q3&-LPN{s`;eiBN`Fk zJryn;L_BK5Kh;4Q&sn1s#xe@maVa4bB9>QJjg1kP656h3CPzrMgPC>^nUqx@;(qQL z_#^Z^SlPJ_()Z%~^>zkR(9ZC#v@@6-dqV6Cn+w*kok31`ZnQSxmU$^S;h8LisxaXw zAC9b-Gp?dI3NU|?q;Yd<*ADrlNzA-3LFi`wiHMlgy zh#+CH9+j%2muQuZq);cBd~1;J)MAlWDNK(d$Zp`x0g?nd5$?Mul9GvvLIv4rnWdxL zN$eciR2|caAUofCk~PgsC+Y}Ho%#wn53zg`RLWr9<7N~@t^kC%8YpkUn#K?$_+w-c z3GSJQNYE6D1mW9hRR@NZ>>pOLZ&*q5uo89Hlph*C<$sCz zXQ%uL)XLVNy?|^5-#g`1p;KP16t*$_sSvCGh@A2>FQF-CjmE}XFGKi>YZFTqk_@~J z6Ry5CunG;Rv*7w&Ite{R^(o2u* zB)lNex+*-xj^On+MNaVMZT3_F)@Iiu)*3>v_D4ZpWqD@;Vr^I`*3Q~86l-Gy)?Tw^ zDAq;~!`i4}*fw%l$%tVk#$hFq!%8BCm4pu~i5-U7al7|qW~04o&;e^rEL6-jmcMze~b*`XbEKmQlf zDsnN@h87V|1sX!U-oa6h`@Mj6F`I#V9?YUj#~y`(GdHm*#H%xf9MGFW{1*mIA^R^3 znnJkTX{^6cGlgsurjQD_?iy+e8F!I1g}7>H|Bm+?Eyamcj+O^3v#d?zjWvd)t5!V2 znXtUc&o&5CNtr+b?3<-XtH)`1Mt8kJyLQzro+dQ#e)!iWq@@nFd$=sWy)Y@?HKK!CRcAHu&ZoCHCwzJNm1^?X=QLZUabEyL?sQbloI_MWv*{Bae3j(0 zI22qhk9IPzeU$-PC&YLnn*Qq}1+n}I89<;1tW}^!L0UPjh_zN4)CTo5BzvI<{xlKE z*{0q3jN6fk0=FMNA?zkf?sDA!M8k$s_&XxGWIyRs>yLiNGQ7Ylmf?Hd!y4V$$Bq6% zG`iX<8vT^$GFf3##}sN-7+N*trj1L-n^&EgggRwMKv|uBlqP%H{`D~ibpQm_Op~z4 zD0#O90)gRH8B%5D1k|(WOa1in#9scH(0*`}*)*QIW~Nuj6@XvUrbt=k0&RijEK8C`E&ZCF+GSG*}O_CG$t;MtVj^c0ZI?34I6!}8R@FnBU%FZ8m&a?{?C28WVX za!mS78P5#)KL6Xk|M)O{e^*<`_qO!gzaD{p6prjR1IT`}3TU4k(brM%zI7oGAD!hX z*V;1@J;!EwTI9~be_D%aL5-eeHT&o6C78ga!_z_aBCYV>0L5R7pc;10@*IR`SofL{ z*xZ{|Gj!5Fww=B-S}y=9C%*M7@SVfcjxWyzMoLx8@-#ao#m3#f??T5Du zGOXji>gSdxtU>H1%14U$a!UU z3qH#Z;NOfJ@`^L>$g5UzAH+A)l#XIp6Djpe9?Q%`@N7FD6ltD!s95W}l4tr6*<74= z-7V(TX{bnq@CD%S$uJzoHqNwhXcpJ$0Qu)Abov{l3U3S=0|J451r<4K=>`LA>@C9hU zDd(4_gLJ2fCBlob9 zdlGlBp)osv!k)d)Fc*fl|Mlon4-_dMq+9Lkj-X#JnMf5w^bsX@DVaT-_2ldH*FpBP zB|1^8c-|ajr~YxpQdCcm(OxC4;rWc(NVuI^fE=4c~6V+ZO!O zPG$IKE55fApZ39nIXz0gU12P#Rq`)5N1D0F9%s5YfsDCk(@WnxXh)RP*V?%?eoeU%(r=S>#9jQX*ntHlWk)Zkbch2R0B#M4i zV*iinJliTrU?M{gRfiShJ0zqcPlo3k#WjkmbVIIlz;;YGX3?TZKZ+mMA%IAxB?)x! z9Cpeo!Ce`kvREs+Q5g?w4^Y0--|W-hG{_s8d#VwU%gx}TkJg1=m17)RnyBk}XMf*suJ^1JdZxX>(E1KSM zaJaRE?;gRg_Grj54`d|y+A%CZo=R;Y7F;gILgx90;EA1l8lk5N*g`43*?`~Ur%r0s zi)CH-=QuX953dg5E4#T(94o=1N_@D_#+oppV;)0Uja)oa2*bs&D%x8#fG!mS`i5NjL5^-1wnog{wo!-+Z}T6NF!cRB#o)?(A3tRf(=&2bSX=L^vx>Ev^hkV`R%f_h|jmmuV;wBeLS>WejJy zMFa-*4z3Q+E4)3ChAY;FJ5XsTBHPfn79Om}O8xjnC8^-FAB7Ka9^Kop`Ss+|37>Z2 zA2j!Nu|$qqj~#~t-y9XhzK7gGY_wP8LapA}gSF8DLiKHsS%tGw_!*&^F~A#;>DX>c zxsreQQZkPm6k0ZR3{6SUO(3stoJpDi8V$Nwh2<%$7xdY^oA%x9NHTzJl`1P=qHU>X zh559U6}WUDv+2p!B_!FEtKM$r-ymYW2dazulWwWcr_?L?0}2s(AGUw=bZmbP$O$R? zl;t;@>B%7^(SLp%D@#w_$iF_Qcn|xBrdJ_*R`Ty+WhSKqANg)FIpMcMsv0w|4e*6Zh z(r6(D5VW{^^44`ol0w%}ZrIEtN<;e~yxu8Sfpa^4a|o}nVsnOdvg9-_H}j%4t^cVT zEj*icF%YuUmRNXBhyk{e2t?uv*0V(uC)N?bv^C`yP}8KWHYI=OB@91rDCkPKec7In z?v8QI&>56l+{6I3^9T|cOcJ2`2z~?=4G70INNi`mgfPMP=(9suPdY4E*6kD1rW;r_dtRcR;(C!vjB-U zYC?1BGObpU0_s`NMIdP7Z)aSGt0PMO%M*Cyh?XSeJGap?%segF3Oa3sGX32enI`E% z2u|Zj^kyU{a7@x67QB&8^XDekU(dZaOWN+zB$PBZppTx#(4?s?)oS)>WqY($zYc{2 zmDaahhJ@2V1WBNv`2&W22q_$466ylLkL+x_?a(Sgag0u#khpP3iW>xy?PPgI7a3ar z;%y zc$MoYXBQrFPBY#-T58Yc#6B}gCtdh9{QB8RmfkxcTs02L6DE&#vjLQBv1ctF45-(3 zi2VX#KlpN_Wv2p#!GzE$EDr_cT0E_Z=4U z1nzTH=$ZA)_)`Am34&Pzol{0LudZjSK~g{QYoTqT?|?J)I1Q7pkLa%3bk~0En$+>s zMsbh)dFevt&pre*;+Gp%GxTULd6tY*^6L|+KRqauo@CD>=d^>~26lJ}Dd9NWDaOPp59Ux+U{Q&Fn5J zbEaOR@XBw})XpY8Xyr^DCqIMhvAS!sxR&e7c>+Jf#h5~Tv_Z+=ki>Lm1NR{fXEqJD zw}LC3~pA&}cWAq(-ZU4~~th)tJCxmab9zlI;BnvzdC`$>G2q~n89X0Wl|=Mq8$suKV?*vi4Nh-<-@E72x4agTMbs#Afvsz zhxY-r&4wJPLs|Y@3!CVF4tHuk+%UgQ!H0Qc;9h<7pe!6sg#&P}&N;|?nbHJd%zS_? z2CqFJ%n;XL#hPpVJZqHyk^O-H*?%9W_pDp+vF5VR%!o}Uh#V1D*7kA_KDO!VwlW!UM z12}nV{I_v(Yt;V=PM$e(I4A$jNap1Cj{H_m{?m~`?tP=~`udUI%gKM8@c&g#{=kUu z<6@ewMV0dg!7x^K(YdE)W#J?KuduR(#{Vii?~Ok-3`QCMufX8V$bXKV?;C$=c5aRQ z|JnIJ%Fg)=4XVay%0~c8+dXnqK(o1L>-1}6*`eyS`Ph%UC=8fyxL@+wH^Pw5zOWbg?1=_u&lMlyiPF@-651>`ee)q7SiynN zA`u?SZrWf~?`38Nl})6bmdYHz*>QiJqabb@x#UbhZsZ=n0iPYC?XUT0UA95F#$rRPAuF0LGYxE^+#&t3amR+d6)Sn`C8dW>j~_&zALB2= z(5YsV!`n0x$At149qK^g={W6>z}UP>e$_a!9fR{JK5&Gg+nH@K_S_*iwp*CvLQiJi zA{d<0wy=|qS2=A9kDDww%4Z*$g;D$OwHwaHA*V z0F46I4fYHsqB7JnwujBkv>k8ZOUxZ|$v^>N>n{L|0SA=eho zAj-Rj)N6zU?v9G7(Z;@22LRe=mBZe`FqH&f8|)#*N3xG&OD;Lw2?W=3Zl`bY2qN3z7@ za9PheAVK3&*}R&@g8cy2(TeICzO{$6FZj5R*^pvh97UqKT!b41sib%UZQ>v(T06^# zaM;Ptc94O>h3Z<-Eo)V$G+!y*{hVA95mo^jiHbuQl)Z3Ox)H^loU83Ho+f3WT z-)-P?lM~5fhNyLwqhRcMrq(q?Z^z=cW(;qgnr}q@hkB_CPg~xYBrg)=#W;C^qMn=;uLr2+&(&SimD^_35n)9q_Sf=iOPoc#{iYB!FfbB z^YmTh$_t7Tl3e@~n9uu^50*aOOm>G(lWAJP@vt%4x$X7JD!5eN-=1LdpjA`NxylcLCpK4sGWERNcI(k%k)u zv|A%2D)WC35gz1yzBGiL+-_?j?;T>rScV=5=_h%;+JpnlZr1f_xnhqrj~-O%oCgt< zN9biGf4zW4g|nr2m=0Rx1Ch!TzveCVclW znR(+_gCiu2A1A#L$QuNNOW`8qZal?cNqjq^mf-HfnkViHU8Sd~V8 z>oxzQIwF=tW$~(uwIxYhQSEVYm@sJcFp0W^**1!=;U)^Zk9`U`7DN|9u8}Bt6h7Qf zOVq|D6enrx#7Q>Eg=uz}nfQ`PYfwnjP*plEFAPplVq(9SMxrDvnjhfxhngh%1_|l9 zTlnbEf#r5_q-sz~>Xl0VrcuK;zkYTiMl-N|-4zpJU{hadV^TitO(Nxs9%fR0)tf<5 ze({Na3n{;#OOo>Qy1t*3-_S;+{HhZnr2O;SLr6JdncOU!FP0!W`VT7kwF*nKO+tj$ z5%EWei2uxi_`=d4*47&UU_hV0O2r>pNRRPqfp#@lyK?f!cGUAw%-2!!Ys7Ni!PG9U?D zHat5MO2tXL?_+``mN?KVDF(K%C4pSa?5Gt;LHmd%YV9Mip)Y}xIAR};u#X9%5dCpF z;>5Dw`)xFCP{QMTXxtDm@ZfnKzH`Wv{=0{q^nF7%nEuT}PWbO0^0@CC@`Eu$hdhM1 zH%Q`MsVDA7SY}7rT9R}!TeM5J5LW|_0^T^x%p?sx7i=U6v8|^;as+ZeK;KEXPCRd8 z1|di_`9iRJfcv=gj7zT;w&?*N5ev|(BxxHRJ|o)CrnQt!O8&3;41BwAFCa;=Q5<_~ z7hx%wAb8o*?(PuMW=e(5^3tN@kBZhTFO|~rQg|fhl$Mw69We%V#dfCc_x_G(`zsGH zZNKw(lD7YFnhxJBLGwq?KS$iL+1omZjhIS11YJ*^*}-((*U9EicY~zudo{ZLFdIVV z90{T8dvE@sbp4eWJzYPggbqU^+D_7L2Tj6I0o}%7vhG`;UCq_5oZ7d;g!B8;u5^vEvJ-N;Z-HSB}xjc zM2?7XAk|@be~Z9c9!lBDLj~4G+Js7Dw|@Y0QP%BybB;hTD zupO5hN0l@_jjlBceZVf9yLxDp3>t(AleN7g|Gnc)_-`KXxbGS7ju9c_wTqgWjI;Hp zisc%j;B=-ujs3L-gngRK+8xr1y$}E3ZU!(kM&JPv+NeYLdI32#FN|WUohFXO(Ei(Q zq5HD@E$BE4;d0-)Rgm(2*|ym1PQt;bY?FK8O8$P1uh6cYbC)&XDfk1DcDG2G{5vu*#QJ_H?dgk8bIGOq04n{cJN=c~ba$6C-!?j;h+%M7`;keqBB4 z1v}{=ZAB;VgOH`VQXN%Cr3ZyMx>6nzE?0{WQ&-%@p^{9Ux}KB`(mrVPYgHoSW$N5| zs;f)-{SlXJRwKChAgfYR6Dw2C=->v3GNCowxmC?=hq5%G6_YW}(uCEcho*YpcK#sU zIyuy1l?;~^>dbBY+)bXOA#Tz5rh4vH?Rz#)%IDkp`8S&hW(TDysF8aNc&1M2P(q><&kfBkb=XOhuz2^A3x~lAvUNJ*7H~O!Q)Mv#KR5xV?OHG zT7I!HxYzcQcyV3Gi|sYCIeDl|oNNgmDpTL8=F0riaIBl}67>kg%Pt-U`V5SX-g=|vUa_~E+X!!uh#=8boL)v)GaFE$=L)r(sj8Mr6-&=0W%5);s^B7rESx@zyR zE`4%PcIj_BhqaV{%9dXD4SVq?r+o2|`tR>j$`0KO>CwKg^IINt@B#mBxs674CYZUB zBa&hYUy+0AB}YPM`9}xDEbk+q+)(c(m1p@33b*SXluC}%&lr<{kS#hQ*44$pJE(7u|__vOj*7 zPAq$sZkYmA{$;Mwm*+eK8AlGfT_yqJ{QMPo3G2ee8j#9P;(9~sraqTJ5y(5T{P{-Dch$jtDol_0$Ed0`#gjc>tln@%{tU;I8l`YI*VB=e^(5Bx_o7$~4}j`awaC38 z`=4&C|8b1Lf7?vXwNZLwjC@n%+7NMV(v55Iy-WB#%d6r&KKJaZ;S3_qnj!f)@Nr0W zGL8b&H}}Ue95^D%pZRA42abpmb=HZjB6yOpIJ9o9KMC}`%V>tK_@8rd|08t$4~{|W z&+WHeb{KIO0|%H_!M~7D4dXCfh>Te}KagowaO@kB7zg9x=+u*P6mSeiW;mT)3M zS^gM@=!yTPT*h88o1QBtZFv^EBGlvAz7^$!S3V3Xixt*0!kSGl!UJOf<6<_Bb$A<5 z`>mxgBpChb5&DWUWULoJI5}TgR)aNQV8{V)Z&Xh6U|4a%%6ZU_#6hShyX5C#7>TJT zr#Q@U|7MKYCxeJzxm|?b#m#ifKv}Ht%5>r0o~5fy3$wEoBQ0%k6qr1PGJKDDJepJ| zVyw4yyo={*z>q7QEHF2VtS5U!RuJ^G+$lmzZsCA(PW;aF4Yh(pNvTm*PN1+n7f=)t z^t!>|4tZCGbBv2|`q-i+N?vaS#kok5aV`MIS5M6vjTm{}j2J^}iI#`sp5-%?)vt+} zNh}M_%*j%mnQ0&YB{(zfrNNnzlM-Gg?HjH{em-mts)KWIGAgGD=isB@9C&dKX5C** zb5PB5aDwJw>P8GVvCOBRiAPIAXX3$9ITPlI-GE3D1@wHqn3*dpI)4oFQz7sO=YYD} zB3ud&h;TTYcq4%7JRmZ(Y!boTaXxC56%z=VUbNzKs)|27f$YAf?-ErNJ0$3?^MB~DDmESq^(Q6eJub{Rv-Y>+XOn1t1-@c|Ci z^6fK&Nh!bkjdq0Bz>GmU-ISt>pLC{EC*RZ_H-3wJbN-z{`R2q)l5bYOG)%sc@wStO z@&zRR7*P9^44{y)HTmmrh_uXphscR#^|d5>7?*!TbJ>c*%X{Cj`Sc0;b)w1DvhkZ( zjsS}R-vE+58Z+>qTSx-!4YEhC@qYTwy_=YblGMP_1&RKaB2AHurQ!#Xq((`S#v_e+ zeFgRHN^}F6SRpiWiaNIKYmSy8jxt-8A~W;IFiwb4rJ=lm6SC^%IN}S$wQ&MQToYqh zRx5adM@-h}uW7R0{WA?ZvH9=XBu#6eYqFYmagGafVkbXGVw%d&X%bpQNbh~@ufD7a z8%0xl_YazY1~~y%oPcwdb7+~!jT9$nD$Kz$T!I*nz;r7#Dlo*gj>C~toO06)?%4)$ z^uI+0Gxy<4#8r?}zfDU5LX*WNayC8JvdIBiGsWRQ&S>TIDJ#C_$VYXjVhfftx!EmR z0)Y!M&(kJ|GR{Cs`HaLWS8tbw6T9JQ<=>LR_tD%PYhbJTJm?;7tM&~mHRLz6I zc(E8)3B!S;0GGcBKvqJr|4V?pj(!I7 zV}_^{6^`?cIL_NZ;m&4yybe#@Ob--PDYC))z{$7lnSMA zG_BfBS+8OM5_)C!Aq2T&$_Aciho@5iJaA=p2S2Y;3U8&5V>nyNGbGM_t-bh#9QdsB zDjd-pvIG3qUK~)cy7Rm`2t|7*^tO&Ea)h05>`LmgOq3XKcw4S?gw;8sduByf z0RVqhtkXZ1PML+lVlBtNz-XTS=@{Czq*T8?Fc#;W;?gg$@(Cv$TeMmzud7zv=GAIzSkk%TMh3~{j)q36E-=v98~`} zI5eNR?RH!G?T8iSlzDNT!+RLx-z7P`tqIu&5PP!s;om8HmX1MD(^KzhMIF#nPI4ln z)9#s`!!y166J~l3fI>wqcV={%r*4*Ko;7M_bh)Q~f}ceeAP>b6vpf%p=$TQ<>Px~f z0AY5Y!7%9_>g<=8Z%A2v1!41H6?v_fli0{{jt5_+F zWRQs*Ulel#&AKu{6YA(;AA}k5ikX}#c|Ydtlk>=~Qs&?P7yUyNkq{3QKFMabNAKel z0Tc|!m)(U_A344~`mmDQO=%pH)~W5mczZaNia}ZZm5|AB$m^oZmE4-aV6e`*ECENa(TG+SPbuCuJG_Syrj&TLDbIX@@chW7(xt zX*vFNcznnrJjIS^AS^0XA8UdHhEPYsH|Ba&m@g50; z6#@t=BoLMhAS{sTb-{)DsEA{U?c5^UxmmPxvux+5qMe`0c77t- z`H5_2mTc!H+0Ko!otfB9ENPkFgMS|e@o#*X#6PTSzU;`)#f4>_=;A!t?)_Yle824C zeWHu^$u8c@1@bo)e}xX67@tD8h{o7vR$*P}S&4)a6ZZ5{gtAWddLRr#-zE}aQ=5}x z44k&s&L>lyhjn-hx10IY7vimrL+5ecAl%({l8?l8#%c;OM2A|_lsS0F%$pT%RGeS6JczIO_4LqQ5PS2W$Yd-yP(i}^%Z2FI|WF@?}Y$A58hk8Qx z7c~8qww_M>zDg#Ko_h(UjPr)(R03`qE;CTiFG4~~{Xxmm@&S)6@iQ^Tb1q@@7qvEW z&2CHK$FxLLPBY*V20(LSKKBR>xyi45%(>twZyA@PnxFUxUz1JrS08HuRX22st!e1- zR+b;ou9SOujEo&G@;hU^NAltFsuu(_{?3`JGOUv@tacJe7~`$}ryOA-qBf3jZx%@t zlf=>2ygL*lpFX&C7iR`=8PB1Hp~0Dhn!M$c;v_)`CemkzQF1u|gA;Z6+ZGzq1?$0m^72!||!S7Qt;C8g~#Gecv}CbeIy7qh0< zsBIWoydimzqZowdkE3waDE}aid$xQRmMg1&CPGvfN7pO47D~jVthimEd0@J-+7-so zpYbE5@GmSjRuLavLs?!3YK+joSR=BLGwS&m{oKacRPK(SzJ}29fIvZXX~EP{@i*{y zxJcr!2IdWntQy6?ow)=A05{ zDbY#&0$cqrbP4!G1z{G}Bi4&qrvGxq zSvj9Ozj*6rnZND??X^HBwhadJcb90n639N{Eb+fS@zm?#7Z=9J-C(n{X7hS53H)ED z8fXX@1Y?d*J%)>6)5Vxc@gI?oM}8m#rx718yBQ%0;*DI8Y7_;@kz8Pk6a~{F#6@Db zxG;tBE6JY3|5Ng@?7va;KR!$X!61NOkU$9hg@Hi72!ug#kvJeOO#R{_weK&(%CvrLMxKH4+7O@>- zIgjsm3;zeAn#jPAwL5jJeH4r13+`fjUApO|b7Ls+$SugX9ZYD+V)o%Q!Mq(f_Ptrh zlx2ypo*N@2rgZBqz};#^-ZiAq=zsw7?Vrg2hLFw5V&j%F0azi`n#5ewe*w9VjppQ= zcFgxG#n&Wp=$d#dXXm_?_v^jF!bf#cx@zLi&bOF5=j~EF3bE1IW$K84%(HHsOwVN< zB&lrG?dMRU916QnTa?hdBe{gx7fbp9M+4}NA&qP%ohKHu_E(N$_^#}(*Z3fQ2bSYBhP2cU_5Q9?<9k39cxA% zo4*u}TP4b?#Y$R9Zn2U(juv`K&6ns&pu8fB!_f4%%J}+}s}1ui4d9sR9}~)hL2~o#x3$$n_cy;Say2+njjA+fo&DnXaR2XX1O~ z`8>|GZ)>Y(JZ&cido{u#mD$*ep5)^Lxt?!dLdiv zZw!&2CtmY?@^dMsoiS4L?sb$hyKwao{qpKR4w0oF{XTg)?-cU#(e58CFIW6Q$jdQ7 zJH7;&YzO4!htHGpvhm)BOkY#MMjA)wE%sOcq*XR%(QJ|D8q zj4QY|#yWVeE|z*{P;XJ^g}&eTC+^v#_rnJ{ePK$j6+I3A3X+E}RMr9@(eq39|lcPjav@XDSP$+8`WrN4L`o<;L1Pp>oZ z3mbo?6lO&P4Iv8=X&2<|iy&KwG67bC|KY2{pi|*w3V`>ZNXb3hh#iekaxXWE9#>N` zOF;33lvo49KN$0VFDxQyykB0b{*eG^@W)~rFjz;6b?c}nk{o-V;$0})9G(2ty$cnv zgX3bbt%46IeN^6VoSSAq=hjbgD9Vr6Z#AdyJZ1ISoLM>k3E=T-!$s!J{Bgweh+lT> zXPm#dF{e0e3I#1hABQTAwGSSIC$dK5lM%RQmwg>wSQlwx$6iYJJrlONx$pAuTt zDESjv_aj4^dTt_QiINI513pgjEsn(wq zU8cS=FeG1WskY)0{D)N`Rhi|YEA^i|9tei@vBZSi&`C{8cdFwCbn(0w+P)^o#S&dUWWax{CKHVu#!D@{26AueXYaU$uy7aJ zvJVLNI9qhN-SZF-AgoNi5d9y~6LYc!?NLT`l15?YD|Z-6h$Og-XMGG*ytgm7KU}P~ z^#$oK%xATX$ZE-lZ(7e0{_KF@b2f^@u}KGDx|Q7X2gM;TayX)i@1p}>h)%ta)yTJ7 zTI*!}Vj&c(W6(#XsFQ+@~li4r8u_%68-zdV}N7KBA6T&t&%7c9^Wn$J~+;C%iaF^|2Nlce55spPyu zR^vRHuOGwZ#!kxDQtcO`LoT&&8n#fW+xO@w_V~N&#q=1*;^VD)Ig8}CD$=XI;$`f$ zW$(wel@@)#f2C-Ouu!%`oyW%BGIK)K&)}CF{DNOH+Tx2^KUDW%$U07d=}Hh^&^j)& zd*+Fc)JSdo08;hs;J%8PKn#FRP@fHv7fZ;8+uuAE&pXljovAD6tC6SDur+3D$CoithfliEXXk!%*4X+wLt@y z7_^c$Lr`N=(ABfAwzh4$Qh1XQuS@>g2iJQ?a8k!JUX2wKKz^@nD9yb3DqBBF>6i4g z^+G2zEq|4*7a#I7t^6@j{`!#eUx@P6L&|51@~k1{H;D3wU)7F0;66*@=ckiyw~pP4 zoK-L{1dlOn0nvLd>HUc=y-r!Z)yTTQf4)Mez)Ba5LI=;^zJfuu7aIA!jR2B~ECR1% z0RUC8C8J_=#O#^V1_MEoWTvzhEB{O=PfbpKVym!=T(lu1DhMxTdnZHlKVpS-{qeL z@P2$m<;Va@xasl9CayM>enCyj6m~(HmrF5|?z>|K11ycqHl>)v`kX&R-r@aFK6Qub z9j#WRvK!;5);dyG@8fY>t=gVwoi+!x%JTce<(dHO&%2&5+r3FQl$zjB>|&36hO#7 zx1#*(A?5j^{DUFoi$wYFLdxBy3tyu0GA^4#67(ylkrA_$7RGWsoB>Go@{6$s4Y^ou za+wy=n~dKQum5Te!RugJb@sO}ryXD<&lA1sRRcl!5b@LbVyv7;mXt~LFYy;C0#n8Q zH9S;Z!j4Nc?K(CW1!dmV1+e`5i@7h!jWJ@|na>%S6F;Y6W2gZ(%*;Vb5dQ}A^`pY2 z8EvqMFT5n34CGq%C7nEMt4zb4y?|OYpx;Ml zBhq-Q|0@`CcHeamv`iO0pKY8HBTY$4A&w76Vx%(nKDD4%+Xph$k7h0w^;=FWPLLFy znI--)=8$!-MhN-TZ7lvXe^>Vc8Q=u;n}g7wZTvKvUcv9yQ4({aEQ#&3^NS{GRFurd zpS~zJugMq}KlpsCL9-)Ky`}!0qXvU!BP?@Psf#%Od0A_Xtht}YKsA@OK96-bb4h6{ z;h`YcrA)5X11rNgk2G@gDCn#tF|&QjggDlF?j1#h1n*{7sd2pm{^{{=N5u%5J;(GF zT&qV;2K_esO8<`{u;4FYw9|E&;8)_3uuMd_j7mI1>%pwL7u@ z`Cxg^^FdFPeTj!o zgL$@RH`57$>>Bj*_709kx8Q2^R;Z88smHr3V-0u?#T9=a@Z=nC7*5pm zN<4vNSwUy<&;`NSiu)6|MYfw@cbJ!;+lxp5g3Hm+ZgExqg0qN z$haztIe7j_4ohZN()&4NiQ=;Sv6xeIRk8O0IikC9|7wdkwfY}XP^$@01A`i~=K{vs zQJmAFxY=I*=Y)S|%qBu92%I~y8O)oR(yuHpG;-K23hBIw-oXw~2xE$#vYtDoq;HkU z7gKtb{LhUX2@_+rQL0SmP7$@umHH@!B}l>^Cg1ZckAcF4<0dyJo1-pKR+|AW(8NiM z1BMpJON@*%@i*SeK6R9(6-{)loM(em0k~>pbVv7L+AHVGcK8~HWD*gYMNEE=^b>NyoE8N0t1K zBRNAt9p~iZoxo!<o7Ct5a`bZ8H zML~se^Ef`Yh> zP*N9%*0R%1waZ6|AQ%ztobuXrSc_b>heOi}G@vlNJsd`sVr5b`0=tMW-pm=$W%34! zP+o=&p3tR_NaMIR9JOhKj7Y+MLPt3-qex1P0aRd2GT0|}fRkxA$iTnuqgu`jie}i# zk$EwCFoz;?VZZ2*BSq!i$q7_x709%;hqR#RdpHKD7BYq7pHq))m>82FFLF5Y>~Xm3 z+2K5WrA$BsDwDOan#Lg$Y9K+uIZwyquYhnVcs6lwr--fMQ}PdoaZT$u3kGJ1Hnwo_w?+2 zYmpJ3O{*`6Z-cKg-ii)_b!j!#dS}&7DRA z+11Uf;MU>Ui~A3LE0nHE$NL6&-T&#Ma0`z+uT#vC9S%>2KLTHv1uwu`Q4UW#eCS_& zmn<7=6-DFk5%sJ>o7SqO)+m2;dax+Lv1+Q--+h~r4JvHlM~x2pi%>9{42GFGHFJ)XH3`8VYul{L3 zr~hJoDBv}yRw>VupWG((GnCVd@a#BRh@!npuG7Su@jo|lD48|D^1i4Eh#dl!DAd1q zOM4Z{xJT4jVXq@QHzpHX5`(;5$?c?5o95K!m4t|g*st&=qC=R`w3m4Z1~Hm1XcvZ6 zLgy=tZ%1)RDP%*3co~Q19$=ybOQ5=wv&B%-WXkOg9Mi@t3OBDP@e?{rK;5`5(*#Gw zqx_WI9v0>~u{1$7*i<#I5VPrxZ#ZLDvy3ckw)~V2v{Rm(X3nSpV#ib8a8ipHG+g-%X70q{`r^F&D8?TjZj%twyW zf|f}BuojGwvQN}fwkbw8n+Vw6$ej}z&yIb?$*G7+Z|h{X#W{*pt+$i{KCzfzrPM<% zjPA$|tQ4V&@*+{jbydsFy@S&-Q93Fbk&W|46JB$MD2iT5$;jKZ)Ec-=Mb54@N`58> zwLPlE@S>~ZT4ZV(Zqv67w|2;If7mcz{@Xt@%prs0amj2}ZCYXn)1!1~n;AUGUDYA5 z!IX+~ML^VQEp8fhy;i0L3mLUdWD^@UY8$4%k_gfn9JU?ftg%Mn>JE;2-Iv2hZ5OHa zx;UDz9n(IYYSc2iCZ)IP434^!b9*HbqCN5@FWVD>3Wkn(*2w?)iLUzMUpdi_eDS># zef5Zc!$jAt{TEO4rrhtE=nIVh^Alb9`M+|a)tv90=uwgXhKcrl_Aj33q|d)=qI<*t zXD9lH&2Q7GhD+Rc%+r$l%4DLHg7G+~qe|nXHtB6V2;x;V6^H@9_!NyuYMA8BX~OhS z!|W_gSQEN9sUUU$+n@}D1KNm1+C?e+h|$_H%C4O)@;C|?hJthjG${~st0uL`#t14L zb+%bboJVCIR@Y{VcFUQm>>@oB$tMj#t-6zQ22ol&4%~@SyStTxfy29dIcz>ua=VVPk$T^A-DoP6FxY?-WXS2AEzS^DIQt=8C zh1t?c=S=YcjGNCq+Bk1jr-%c4NN9j6RN1bq>OC3=sC`GZcp5|X8TImGq%VkApq*;d zaiKq;$VH2QbYic%B%s$f&_JSvtPKh@HL8jH5AgXW4fR>4R}BL}e-(NjlGAd7dbn@M z^C92w=>6{R%T9jx_aF3p_xG=MfA{x!Cv^TcoLj1f7auMK^)dG7O09pA?8K>yk3<{P zEgXfFoE3fn1*A-U4Tb*bu7Myt9jlBJ;&k!8W_|o^@xDGjBN*?iLZ#ign`aM?XQ~By zVUL(8RasZc=r(~YM_!$hi@|0bdBw_#diIw!uKhUHu$H!U&=ifXC^OJ1yq4^~Uj!rL z)F{heBYX5Fw!@yh5(9sRRXJXAc+jV2ItDa%C>K|)r2sM$s`RmIY8>9iD;?2w6#7M+ zC)jv=AfO$AvrOT`xJL1dmMK%}$1=_*1_g0?ONGyxvHv5~P0~$m?a}0v5#s&}`AbzqwGWkv{8x|18c+#rGxB|HCf`3#QJOlSTPb_!8_@3)BH8<+zTl>S!`qYKDG?n# zIf%Oh%Wpw94%{iYSy^2cA$-v6t1_$$(=Iz~_Z&grl_?c4=nNb^C+)1EmTO}q{_ zi;OSc97mZ(H*$W>V#pqN?e`-L%Ie2)sjSB> zi!@Ka45c*bI#2PeXxdu)=%;ZMxoRASC&37U9E`+F@ukew%A_eR(L_pe%o$kJ6Om8Y||_cGKGB#Z&&70M4zVl%CeTcY9;Sg3RRYJU`cq!gK}H02R8~2g&B^dVRbX1q3mAZmQ$4F zT~X9r(~=Rmgfs5N<*ekVL~yB+KP^JgEnI$8S99F6)@$_szR=VonF}Q`LjQlI@EqE$ zc47d5Ql{q^F^*y}4RMvvF_GaCX`jw;Ipn-2FpIqLuz1y<^+|ccvp2hiXbbU%WuvnL z*nZ|*f<<0+=4>AOvU~ClXGU@7GH$~|95<-|=9TwQ7&;gGxwG?z|JU;bbu?b2M)O{= zl8YOB>Sg-#9UK}`y@KtMdApPqRY=#UeI@S&vPzb;qH8E_7M0PFli+yrVAh-2JrHAN z8{hX6-8JUk6bG~aTXbj@RI^|uZrq|v>huUDznok+Q(BefPlX9Dz>lDsA|yPG(``AG zVd^rp=h{4bX(2421u|E?v5)P^_$?Gov?|Nr89_)yiR!E7a}Hs%ab0SxLEYIKJWuSR z`BHCU|G|P4v!SM(lcV5!mbU@P7m&Vl*^NwpQjfF{*i7TNz-+1Ph$c;lvd&Z>>A~$( zN;ykAC?w@2o}5X<1f*dleFv?_G>(I8sT5BR&gU%<*0~bvX2!8IPny`#qx_v4XmMhN zYiAO1;lw62a{q;vd1BeGSUEdLZ~j&^Kv}f*Xz3SrOVQhTK=t$qKaCXJzAILiU&H25 zV>pd=PPsaP?BSR+{c~oLwaW7K{XsuV^gyubjIdUkj_#uj{zvQ5t5l}hf%umW=i z$13?>!bQPq6h%G$EscosaRB;))#yyV+ZiOF(BS!6(egBOGxC<`HJ=25A8|r)D{r%x{&Mew};f z&%!v%X=wDfV^CAH?vFIs3nFLI!RA@OlCD==V=L1NW`yN z$+@QyL;iF)ny1nx(u-5h)JA4YX}l>%IZ&Nj@ImT<8*u80M{xS&-TYP>=PIThG}fC* zb2`r4$1aitv}?JR4={hRQx0si{!Jj(tF^sBe={MwaCGjQt`EvBbq);tR~(c*9MO1S)p+&w zaU?{VK@y>Od}fkEXbqBcCn5vN901MunCpemF>MWuIn$)c9=}9kx*+xP)>s4Ji>GqF zK#z$V*shhvOn>4apqPn+zp`tw@%1$3^4rM!crLjHV4Ja9gG3iHMwl%{`=SjzWohWpi;bs2r#U%O8XuA8OmIzFwmHfq+Q&8y8}3cvQSD2) z%Xr4ZWjssV974yT3PjMU74`xfVXxvGyOHE1K61}F3@i)q3w#fAq_}7c8rz~&5|-=I zc+KpU))CrY!%&A#Bv?*L0EG!R+?zQ!HXZjDZ_qFwc!~l8(AJWd^Mu{cDf$ zsh*5gv#c4QPb88<{DIe_t4OE7H`T%u8b553ddq@tqN^bI#A$-hD;$i)I2PJgZ_xQ$ zu_%$mD>nm{qI*9NWKNlSZnxkB%kP5ETfbqyGSf>7V!6FhSYu5i2q3w~PtdE-(nMHo zdE{rUcp9Lzb%i*ygM>Nxx;S!ud!aE}9EqYdwv@-*RYmJpc!Ide41&qy+`S^CKJA$u zZ!zC)dI#FuwrTzaX3L^q68CiPU*be1~`s}a28>69od*E@7`9~JRALZ5o|u zp5aF6r)WCZfyVTNO$aHRcf<6kjmhL84J2Cy<8z`X7-gYHry#fKR`KR$E}@>Xw8L&! zTNweM&P#2qv+d&%i|Pbjftq&wTnjH|inTE62nj zVHaK1D*3s{k`AEgav)5}eF*O!DHTsTGs$^T>S&Eumg&-U>NFiJ4#8PrrNwY6o+ z=1c(lzVEl6&#!+#&YU@O&Uwyxo_oFS>z2-+cJMN(;%^(HM^0WsHEYf;+*!fdg=yvc zmTxuYcj@=#o7sh@K+jHp)2uwJR)6ajy4{!cfD|47U;_dqkTGMnls7%P^VQ2XlpBcw zQ)}+avjXM9UR~RRtY)vZ<`<3|=U(l)#d#QP3Abc}V zwET8)hT8VA{7G*9Q&#b%HpO20%yZiu8gCkhavbr?&3WE1CwxWl1lH_MZYHhwy4S-8v&filsh%}YFKeGMZp3akB);jYXBm8s9 z7aKcggz*qxHD2za@+nyZozlOVd#w#+jWn)|kQR#rcG-Mq&N`_)dOXGV?or_d4ir`% z?au&Nu)O6m=;OZfR-U+#OcDEpNf?EFIGn|rWA`fs`7VirgIYL1%#_ID$iiX)>{0D5 zB$`u#?@<^NzuAI0lzz5R5|$`q{JFBHd<)#EjA`btd=pwSeVJ4G_nvMDV1)!A?_G=E z&;LnAG15P$_GCL+w?3>WYeZ9~8=oy*Heq0C*MuB^^{~{(R(B_4>C?+4WO<5H9lmOY zZ!L`VjP{{vM73ar#?FMx8}V-*nwIDcH9yuvcUPI+O)tCkOq*qCN}XQg)baO}E*pPE zKHufNLUGI>!kk;&ZMn2ldUF?J!}TIfgeW;a-10bJeu-T9irJ&5>aT9SmmiT+X6iF? zXg{S15ODIqHK|INL(Yka|J2R0r)Y&UK#F+WQGOk6A3#Z22@H9xSW=RBtwJ~hZ0JI# zx8q0ph>|9lRMuLy!BlAspTlqnqOf`k&tsmViymQ1SZ;gv@uwl&3A`eynE3d+|GH%lyADojJ=pFZ-V0*MTz zm|6Q&sC;?(yz*rOszWIig_T?TgH1biO<`)4nFPi?Kmko!R$)2nGzLmEjL}M3r(%eM z@{*ymxtP@~eQn3}rVeN?t(f}4aC2(GQ}5_MBDJA>*>E&Y>6KNO+B%E1-~+QTBs-u; zY=lHbdu7>Lhx9_UMHka4q7l#CtU>@qqdz|rfYC`=VX#rcKh_~L)~B<95T z9!;)~M~PddGxK(F&`YBX*GW{>U$IIefY)|V{6A(s#q&En_3Z;ie5J&P9!ai0tJm6q z`AT}U)K<3$iYfw5mP$;ymLtjrAoD!)hE_)A1ullX;WbKs+U`o$OCkm5_!pZ5M& ztP`T9U;G1nA#uX!JSJSm&P!DFCB+*nCf}f=%q&}pwVF|kzqxB4%n^0`fVuRKuV{4! z9wPexqSa>a(#ZoSTonI~y}sEq4@kmg5T5;%<_D#ElD}bbG2%W|2#zipzfCFt2d-qk zNA@%=V?B4pjZ*k+o=l*;I=LQptk8W{IFB#VO0&NhLqWdF8#Z;Uyg5{NULj)qw=2xM zfAWe%;rZ!Vv3D<1KKUzA(?XtB@Mo_`we7{_<;S%TOqF?Xft#zfK2RFlIZu9o8j*!x zFB|sA>C=u#JG%*}$FInj_I48sB?g(ZBGs+C@}FjIG4|ZrPS#$@8CBaXxtVM^kxJ&b zj2|pU%^=Hb74iGNk>=wqB=slBZdmR*FH)Ns(6%&UD%ad>?!Q5qf>0;s=|}g}a=owE zN#6Up8HZW>gy*YB@PY<1AAbPx@-<+oYS5l!nYUj8^^|=r&Khn&Kav^qv{W0eb8lYl z(o5ZDiP9q>KCH`IFL=E-r}q@8smhO-w=WzY{uM??CYdvZ!fKFP<;*y&ZCIA^?y8)U zcey8hNnRR>S7uzGCAhU_PhnjsYnaQdHDgu}CfuZ$WyUf!V{;(%`&pAVM@wv1H|qeT z2!E)%Tw5g@rbms>>K}V_B)FV1Z_P{dX{B9mgSH%)QDSaRP|n(ho@%hS^G;QH&)8pA z%j*E4h*V2m6q3UtA>sS@D^5AkW!jCzXfTiQw=Ts^4>ZrWL4J-@i_-CCZXc3nr{LJN zWCV^>D>aF^-LX-vuk9T>dv&KFI*u$k} zq^?K#1%Hd*=~%=5PnMYF_6s@5ml6XTi>8;D-?Q*+!xghfb{Ty+G=Be48^6do%=6i< zpY1{y7aO=r&N8rFI2eZMOBI3xR9{soo7U>F@MlGJvi)tPU7K=AUFT~#-3A`wO4AgJYN8eZO@ZK#jo_{DX3rtTMn8Nf z<(13h7YY@@m=&GYj!Wv6Qa!x9L&-!23!7qhI+5}QI1p0wwqGRiI_L2;;Um}z8}taB z#IMmlOMmfe#>_8COR<~^=HJDiCAwD{*D&1E@(W3b|3PMC((iG9=Q0%rV%f_(EqR{5 za#gC&l2k{kVttl(cCiU(5*KyVU3V*j5qfEEVDay@3kq~ z`83|h3ITuEoZGGya~JtuJQ4J3ms9o!B?W9THraX&Ijn%mADw3}g}h3a%cqgNf2Z9q zT`hAn78srS6ESc7YZs(qwbKYGAtv0rLnZ>Dy z;e+9Go*B8C@gmL-b_GiUcsIB#h4yb24h)Xxd&mE z*t1#jYux^k_{=cw3mr-JEv{dMYnOO%To`TamrD~*MvUsq(9rAaM~{7Rc=cC_G)Z0J zv1h&AXm|Cuz#7T5OdVKmWacBasrBPW7_WJB>Aa65pYuov_nUICB$iToaB7>zIW*ne zZ(6HJm5VD<=R40<_~mT;zVh(tvmcXGQML5id32v$CzV@H`3TLn^nOy7$$6K#=e7Nf zbI2H*;6488735XS_xaupI&)5^{An<2X;64R;a=t|-!L_QvTwxBq64fb4X<#Xe3RzP zT2#A<3NRZ7odNJ}#%?8oCR`JHYq4wH=g`V9W_6L|w)4-!IY-x_QJ~A;*dq6^VjgC* zzoWR1UN*Nj(WXge-{dpMRPncYsrrJzJi21yd)nS`jeD!`3&7^M0v?CGN!&VW>wot( zTpGL0t;R=NJ(W**fJ^^#eHZno+~Z)}BfDJ}&2(#cz$6 zo&URmX`r?mF*|#**&KDFl&nqLeQED*b<;Ug9$g`IZBO}i(&ijf1}7zN@Ui8%#*=)B zVmK+D`@Bjx7L<)BZ$l;A;4dfDygfaHHE&Y27GU99Ed9&2!cAgb(tT-DY|U4Wt%NJh zI;Ilt)SP1~;kwT0UJ3WvIkpl`Yv6i}|BkJHb4n#@lMDovVa?)Wauv#i+`?%!@+7^0 zkOUuTx1TrtD|YFE&aOm1Y8d1tyDvS4Tg*D=<&}vblo$YSrk_~lKYO-IDcEX8v_+=y zn7j+?IJvL+3JmvJr!1RHME-nt&%GJk^L4vt#(QV^Sg2<9mVU*C&_E47S7{ae6SyBB ztB)^A(^4pOa`4~w6@13__dMGX&-N&8tH~wS7AOO%w8d<_=>MnF*mn0<7o{oPY9Mpr zX%OY8Ev|y?t%>tM`mb>t;k?Ng5#}L`hGM-$P*p5sr+If@L}*q$Gl@WB1wmdQagoRY z?Ms?>4NnD3@uzwOzZDbUS99T**+A*X0FaqK_`ljL$Xkt%c9_r;@Q!B zXpsx0N6m336L3Jq7ii7dAt1gjf<26CtL;oT6-X>tlF&B|P;iBu3Dl0A#N~x}IxSVZ zd;p(qjqCy_7&YO|tO9q!b$A3oHz3O`AEhKBx78_Id^Q2ajc#sbwF^aGZ7be#0EKCh zYaI1F5hnuX!CHM5a!EO^8Aa*ch8+}Sd{7|f7_l725t}WH44j$ylX94X0zSQiSuFcZ zR(2b9QH~upUYVlnqr1ogAm~IRvk!G2c1VJNWgneIx`Gbziim}mo0I>#eKo1ae=%?(TBxDP@0Ge)e%7*u|w9_K3!h(bduah5aO*H8SYr=NnxY(KnffUzn z&fE1@n<3Yn+{Vf2&h)RIET~DBPcJ5XE%CDiF)d2V-#gnXiR(~(7s&rh1yRmY-jf;p zg0Pt6ed!g5=VmO2{4W6XV7?!_2f%<2vWT(EyCaJTn9gElRKR~5l#Z@CA+c%DMXDjA zR?}7@w6JbK~6Zs*mNB@WEr%=aWiUfs#)h6)G$Ol${s=h#^mrZjOFkK$r zS`rHs-cesT`}BpjUc3fF+VbTzU*UlHCG9^n-ViOvzzr#xVttH5G|quC-{+irYf3WINLuYOQ2Ho3oEyr z%yM_sVF>dob9MkZSJ`0#o?J}^Gn>{MTg$tasS-_-prnMpD#@)&W(!f4dqvg#<)3)p zMU^7NRz{8S}A8A#HVI@$aPT3i!QF;Pnf$I1D zl-C7Xo&~kBNuGr~LVY!0X=a@wF(X8huORf)+`)r`a3lpn$^p2Cz{lj{r_?6y*m78GM+2uw=z)n)sVCn9o_J7&;+n+3owBr3$vFY0 zne}|Nz}pvyD}@&-uSbWv!ZTE0&*tlOA*B=08=~T+PAza#KPyq{S_!|49iA}Z3I|@~-uzxZQTG}4$Lhr_r&6YA8g8i^v-CG2vYXMaqZdi3DMhQ}9U(6d>W&S_@1Ba&(=YIC!@G^Sb#Ylp=}hQ3Z*9B#+l{! z2Oumu$fX_zg$IH=a=FhiFL12H1citbOu<4r)*%Oo(rR?dUUN9@#bS%bsFe$pL213V zVg@bAHu2NfW_m2LZLJjJLXd|VkK9IQW>TMGx6 z|AUVird-c&s}aZSl45{v!Nr`umU|ey!-&^pOME7Ei8H+bP?<1d+f8$ohtU68rq!=c zrc=L;{+Rl8qv+SoClLlMK-N82-9k`bO9w`nnUn)4@+pX$T;rsZvI*tHE?t6XO1H+< zqU?kPhv=|Ri6<)%S!gB*xI^N=Z)c{t(5y#2+fzK-lRVqw?KVqY!s+*NhpYL7U~fY-pz_;kd;)jX8wLV(MNq<&Wq(fd>8T4? zY8!<<$vFF*G=&6;sk`uOI*F%ext6R*t!SNF^ebXGcZuj=VW%U@n0hCH%u9GO7JY94 zs})S+3v~YiJH^{!J{Cx|snR3C3KMl)2UTpv37*d(s)qui?7}h1ep*M8IiqnaDoB=- zx&1B`UywV3iba4Eh(m$NTDufBc7Q9N)3+Rs=i#0 zgu?lbSiCgcpTMBOXDQg5GAu}g4sIVDg6Ixw4+#-V?mqfrGA;Li?^%+ z2aGJ*MrCh4f}-p|!UMkHOpX>WX&d!3JU;Vr9}NR_4&}CU_wZqfOAx?lzjg{oyUjjX zy5fLxA9O<)-q99_-Dd~1j>APEjCr7LZR4b|*&rwSF?%EG6iHW4Jysd+eeOqXx-4Mzz`Y z>v&)eft44mjnqfDt9Bc~Ko`s!TA1u=LR$a=P+~HCUSF1AguX*Wdt=K_L5f?w`xgQE|4L*t9k`=FIxJxYVzAyHbZg`1Vs*8?lykS-~lowgDI4n|Gu`;HGHXOU_pajMJf6fpG zbg3AmqM3jGZmO>^Meh4zxhHV}BZV^MhK~ftVzJu8l{&(p^#Fs`0}NUZFh~!Oc%gRK zg+^Y?b;@ofCCnx=Cd0f9S1O1-komVxP`K_fH-$I~6`K=jqRkAm{ZrQk1V@Dg4Wbew zh#ujJDNr(lnEu$zKV@x*B22N6gd_~3dDt7_7RfmRkxNnRLyKRjNeJm*YD1Y(c&H1L zrN;u2jEc*`aFpfQTS_^ijz{ipYmEo4ALf+hDqjqisB$36_i(v!udu1~k<@#h1RRH@ z)(WKbthDVpQOR6K!bf>0cC5QRE+DGa5W=#fgmOe-QIq?uSGqhSE8G(8>vL#dC_gG) z{J1;dHST~9xdX1oqaEy&N&hDq@M=<01WAp_s_pt?2E6#+4ERvefZOeWj~-{hhyHH^ z=9}v04!DXh_XGn@ykX9z{>K09VFRUhz<9$)@P_H_E;*4mxH-uitUJ~lT-i$H-Q62( zvff~m^#(U2d4uTLI+u2&b^fHds)5ZBp!URdd7w937766aG{)GI`Q97LCp z;jO|SDJpoUlje&*zFYGBCGB4o!S|WjKTv!~B)bP2;l)@a><7)ZQhkLAl*z-g`lCsN-w#G5~} z-?uOby zT;hgnw#G;9^VZ+jw5sLsS~~omXe|CoqMk?%uxir$hNSQ`08=GCvWlt`O3A4AC1v^AI4SGJ$0tw3tZC0186pl)`rsS?j0P-({bh&i;RvWJ{n zprEgtkA-*4YgLkx*LWhJL|=Bd!|Bg^wtxOHtkk#`11JX(2!Tmbltn=cyUum63juW6;b{+A)TH9vO!+nrrcnfLin)g{7m|IApw@8Gb> z<{kLQMErP9)x}Q{7pbkK2P*(l>tY^YoAg~*PW?UsM05VaJyY>oojDh>*JOI#M=Vg| z-$2GUuI}TrtyKU1QJT*-B5nR1FosK=viuYeG09-TP}+XuU0wUGbmnBc-v{#N{f_8~ zrRGefl9Wq-oqIAC^Llx!@mE;U-QK%PwNLI|)Rpu5jMsTDQh+0_L*DDWZ|%j4o=XR8 z(e}^yo!BFpf5kS05Wbtr?}T(W<6&-#lFFXQZS?2;F@GZw*YqE9d$poA=G*?f&f}e^ zz6$%lXO3w4isIxOew*s6Y&uVXxGC$T9}p0p1EiN&Jrj@NO5i8W`!mn$jA71`;+hCt z^;uHD_@DhPK!pD7Ij8uVma}gQnsyHTYnnEo4`dGG_IyP|uO%Kjn%*D#!R7sf7)N|YzQ~YF%Kn<$)CXO!}h!T`S~b6_eGDkz@S^W7s}>lZX*XgCb8em z3xC_)7x90W4`p=KYy}$x_bnplbweQNreUD#%Ljn1v>nz|s zfcqF*?L2-JjZ4DkMs>RQ?@0Pb9}vzHztW4#j0}3K>=y8iapQho8uJM8}Saddy%LnQOP- zpObXgQcg{?&i`zmBtQH3SrHWd9S}uAy~}BKm#XD zM1t}eKjv|n55G@11v?8z^B(4Jnz<-su+SCD<=l6_Z-rhYdlm<}O0J{(TkLVy@N z+W%dBDBpNr*FC@Ar0BejZlJ~J0O#@dwAkk|Ji=&IQ`# zIdd{t0k8xN8RK4oe5lC3Ph@M5MUoj;VJ{)z&YUz}JhSFK2Fn(_hsV>Vx4RgWw&t<@ z0pCZ{Kj8N}Sm+EwrH#6d0akn&$KiMRujy}|;@|w|-?R2oq|+Y%#CvXTOX5%I)A89z zDp}W=kGy9eY-AC`j%MeN5azQ@Ns?mhRlZPQ2oscisP#;^rjPVYoPhlt&ae~HH`F**NF&FNwf{H8O}NvsG6_(QadX%vuq1ts8% zk0W<0V_(Gy1gDQV&Yo~p&Xcdw`1QZ@vT&940j9kd+q~cT(Isx1_q|HYKgk?sS5rNE z1Sa^#);%)B{A`fJC6FQWXb;{pr%JYZDT|Mk4L-J9QIpaqu zXoFGy5SL(j-}6o(Di*UX>VNaaR9`|KUX{D*N@vFJs0!u`b;@pH9Z<$S#tOK29$-b< zpD_IlbMvLhF^gH7*H7O^*qo608nXbjz4U(K@51R#f5O1`>Ei9O{Ry^WzZ@6N+r({z zkk(;R@R&^(vO$Hm(*dgiUiDFFZ7o-Grr$yHVPVOkEN$cy`agHDJ6$Wr^W*z75i{ycscZHiy% z&V?W`ymcHjRp zM3vju73*v{>Z`yWM&7e{|MH6DcaD^q%#P}6?IWXnyp^oF3uFIBK3{*Fba{Jun(^-HH%yDse2Wl-cAi^)Ak2DV14cGG(@$dY@;uaG<0lu@+u3w2 zPa%%<0`S&Tl%TF>U$vUTzoh)T@@nVFU0OX@*?zjpz5I#KruqhnoL~dNX@^P7`?%J3 zZ7yFmZIQfU;iD*@SD3n2Xz+BR$OH}KWkR=0Xp#@qDSZ9=+9dzlb3-o%g^SSK9GoQlr~1XZiwTfPc+Qc{s3x6;_{Rz4O+ngL6V2t3>)erFQj zxf$N`KgZe>WXDc00LuI+uQCq+gD$Obp8SxZIb>GJJet$&**42~?C$tR)ldqUC z6!q|Y*|LBG!c|!i|#JWp=3g-&f%i5STROIp09FfuE zen!{eslk0T996?gM#yWoFSLA0AMz4C5O=-0+~i!D=PwyQu&}(Uu=4PbLUWyyeZKKS z3rm-czf#_M;j~@yz=dNx!Bap!@DI)+ANcxby7PfY@LUR=e^eBfv|L#dOOxbt+uEi- zx%GXp7v_&E|76x%<{cfxY?56s_9=Ks)T6;9bIvr!UD36;;Ewgsh7AlsQBs;Z)JRz}w! z#mMX-`lY-=xLby&R*sN)3bVLf9X9gn?2%uFQftRgw>5Uqqf%n!dlYonCG%43dea}X zd|B+&r?l4cdDazYlqRm+G+oY9I&TtigC)CCN-IK6Xns7D#HV}N{Hfc78Gd>ec_>P% zQp_5|f#-H1-fs-IMk#G;EF{Ct(jYB`;^4H#uBqjV$`^YXKjqOr$w#}?DXl_8ep-9i zRA>5&W_#UzS-m%y^R0_dK56`v4QrZuZ&<^5kh;p5{;r6JdCud#Q+VW>d7I)J8l19| z#L|hUnD-GnWX4h64tkh;5(dBRQ!&ZOrv#roqTy+&WzjPG4ZbD#rYS!o$yNvJbW2)Z9Ih;!Z=-0nPOg$c?|J3`ovwhSYG4;a2(ym9YE&NCu0hm$l98!3Gm3gMp2w<^0Uqz3PoJ0QN#`PjcM*Bzp zmL7z6z898sefrY}<>)Wz(KnoS3XVS2dvu~+@guh%f@DrgtHwVezQ^3_*-*F_dDUa_pmlXcX9mV;p+0LL2qY%MX@|!f0v3MH}4D;~y#NIQGhbZB; z2IYPL%??A*@!x)={eaP%;Ns6vMLBKv^U9!i>n!sxsj^j+t1v9sV##q%Y0Jr!XVPQg zk!9dP(rDIqub4VoOAXU^T?EV8|Nd-P*0{VgL;4T^1N`+~Y;q{)_rQQVzYL!6=Utv~ zT?hFR^m68q9vejQ=^y_(P3tUS;#6tqK|&Sjzx#C}rSq#_C(<~-)NLYuqM6U~GkdZo zkl2z@$ef1nKp@i~0Gjv`f=P~K}H^#<*1#H~CRyDKoszd}Kg#xdI3YGvp z4&cUn88e9t8u)7(SbJMZEz7FAy{#;{5KH3_&2QE|RuCKjD#tp#d5P;}4!o$3z4>an z`Nz#VG*Ue?>j~HxThLi!_LQs#%q!Z;5QZ}V9qideVq|P>RWHo@U;iqNg6jd0U`+y9 z&Pa2hZLv*#AXWKOrNXxKp>(_>X{;-Ba(SC)0s37V?{zdGFY>!?X)^EgE@iusMOX}==05D>MP`qwQ`vSMXcHufmI zL+qbDTA;I#o)`#HBLXWyOhTeh(e%Zyks?^^*Yx?XVQMV0pt~?~ET3R6qQ;BpVu#b~ zVGGE40z>A{E=-ZsqVOiqXGey@=atDikX5B$or5k29SA`Ol?Sy`xm{|3-bcs;ue6cb zs7U^BURtmq?ea<=>ZNhT*DxOe=Rd;xKq)~xe;jQm3>w8=L54e`AUvH*#HdAs0WQ9P z^_h&;>~ygXHRz7)c7qZ(cCM7x`)AV3BIeE-_Gm`jojn*mG4H>y4S;kB=Vz?(x}_xz4= zJ%>4SM)d?IN@iv`mH}W!nY~|?2Uv6jy~OcwK(Pm6j*$Y3-{;I&kgEMtUg2~T9?$GK zudq08(37uVX12AZ%ZZu*mU%|M%zpE!R10vdL1nYfO?kq4+E=geLpwoHF1JW0sJvXLrrsAYT4E884fJ8B@F5;?N?uLX9^iXk#ti`O zo&L}-EdVsq$==o$o;DA2P+?iodBo1jt`NISZ0F($CGC<)uPwj{?vQm0z?jT@_@amv z+6o!W@+f@aP9_SXSwOyvlen7;krdf0WyYU212cYqF-x_Dza@&P{Y+LLpGEf6>bl*3 zytyuqrXNGP!qhH87f(_^_i3Vt-mj+5D}SkCDwq zkj?lFg6x#da?Rg@Z>4$O#f*WE#18}RMPdVb`+fYCGGoZO;y+-#6YGmOtdw?RZ_A_T zU6$&LU&rtB51;=+kn0P1?DSK(zC=&QPGK5Tau%PwL=lS|2hoSd6{?Znyuh!bkiJvQ zhfsNANn_8F_8#(@=jk*QM>ddt*Gp8B^K>psW!2(VH#iv;i`ZBxCG9<(>Cg6&jTC44 z6MeAw2aPPHQdtGw2ECzGTK|&6Qr+yEUnDGFtYiOHKQy`78&)>bQbMwbxSWZfB&UE*d+z{ zqfzt?{8Np^Xy;bQi+=ea4VC&A80R?%F;w*eGkW+NV(|#;qG|#D0>E5mdr<$OhM z2Wi?=x?OlGEP6Fs;TC~4Su?-*hB6Ax0`}ohrvkS-y3sJG$hjv3^wxv&d zK8@>U7}OOk6Ryb+=yXCxfk6xgY$i+1rSyKH@=osOBQsi<_bg2Xi&h$~R~28r-;I+< zeC#S`&H=8k%)CCfD|^5n*?x+`IE>zS-rB4=TV-LbryvUWr$6smPsP+40uIT(k-w<7 z2@aVMBJJz6!np-v8B#xxx91m}$+c=gN$f`CB&6>R+P1o$fFX)>6>0j@DFy88dU{};%UJiWuJB) zm!#m_NBgsX!F*+-cV4C`ANZxuF}I3!_4VhNzS6%q;YNke;|8h;?2Vv~dV%yvYj`fr z#Vw*m4r+SYTWdMD%nj{&mg{dhk&!{IOB70ZxCamxi2XNaCYE2dU4HfM@~d>0AI{R? zjyLXdG%L7 zSo)Wq#Z#LC_NMJzS!Q+YRAUD8in^eN2V_BA9nb|e6035sE~#pFSxwo?_~-*aH?H(o z52_z-{UKJm;5MNd@1tl4nOm&;kZO1F&%3Ez^Z*;FG>pog)lK_eK;bkG=eH_YE)jt8 z{ew@HZ@{a3_wKj$EaT%(K7KNoz=Y1|A_qKoKn=#E9uQ9MMr8FzKIk_) z#(XAI;Nzci3W%h?>t`^KSM7#@49_h)@-ue%LlMFf+xUZZ^oOPY&=N6{T?1KS$ASDI zKciY+L$?g1A+`>CD<``X&Hv)hxKgq^pP@E}`rIa&jI%}gqtY%Ymb89nJTkGq1u(5< z_mFO8w^-s;#bk34MoT#?$WF1wbhkBQEJWK&t!D-Ub|ID&;+uW8G<$0+YZi$zK1!|x zxKigReH|-sF6}D<=WBgc;PgL6gZE{Z z2Hi2rxD%syiLVoH-|eQIbmcfRetZf`ujk2PdwVhk>5t7{vvOXJr>iYz?){9XI7v`k zIjHYb>Szvoj8nVTmY((%qE^}?s2pgtt|#(*o9CqY(1_AZZ(U*?Zm>gM4Le4zaQPs> z281ZVVl0H9Bnd+Vy$rR14{J+7I9uNpd;7~$(ijNXp~N&3>I_h;Gb&J~df=hkn92No`<)sxlk1ex`g>ppPYwaBwJw!qcaZ)XF#UaZ?l0W^6RNF!dHM+`9 zD~YYt$+Su*W+Ojy4o&EJOo*CMgw>;Ua*tBhEp&;m{O>%;MOo)EWmQ-Y78Ejm_+WYv@F%QB=5JV)9wY@-w2F?d>f^9f%LeoTR#-N463rLs~DhZ%S3OcJIk**2Yd&k#Q?VF-}(e$3OA7r7u5`?3S)%{K>z6R+`Ho zmESyzu3WwA#UV%e+AJ!)Dyt&_iSR!?3kL2^!ksXyFfW26Xo(=kk^c59cA~mhPts1% zJ?iyHOHpOH5sqrfng1I6CcIOO)UQ9G7nd(a+dI*qVZ;quS8^KUSaPL?R`m(LeHx6? zt>(pTFt2PA_cM^~%=(#h75e!B#IgrHKEY#;Y}#i9s>It}b3~?Su3R?MW0QRC9-)ev1dLIZaRn`AYGV~~t+ENVUES|uO~$uH-5 zqnQuPq-B1HMYHC-`Lm~_`Vv*;RvD*RV`R%Q#)w)Vfq@!I?mHxlyltYx=M(*9&5%|y zEftVh4^hFW+9#@)H=n=?xo)PlLX5eeH*zMOnxkIDdx3Bdi%|YsIfdR9#u^Kh_iqP( z5o8^fwSEc&XQIYYw9d7VNYGd5(g|#IX$W?asSL&WI(K8PIIE#h6~jZO-bdwR57}Uu zsG<$7GN`kBLKU{su7XCB$nDhubmEf)P0@Dv7TsOAK(Ay$1;@qp7itn7jk2`Eqj~<# z<9jquJ$`(TCO%-_u|~n`Jv~Oja}RP7A2pMA=H_(xy?q|%yUHK_U@D{0zQ>6c$6qlF zE}WdIddcZ4Jke4FnutRmNyMOG1s4ki)*bV#T9X-%FKH$y^qhU{bdafDI;#zT}iYM+=cW3+(z$0x=&-^n4r=j zQZ?!PzbCDpfU-rW-%yIxGgK(#H&`#6zAdzctKgkkXPb+~`^gobDqZH3E@}b7GIbUp z4ChNM`|mAOCHX((!kPz*E?%-WZDZ&)5c+ZMMU3W(+dh@f~eE(f%JK zo#?xaxgX?vRAn#os#UW~(rI0O_lf!4gXyyMKF=^_14#{xc*>a$ZS}$iYOC~Hf57Fu z#`1cgx=7wg?sO>cmc)w2>Ju+qSM*-Gh4O_QIJ>ZCNkt0cIfc*5A*eae0gvDwkc^Pe zE?Ui2l2G`8%s-VRklSy$+u_WAPDu4BcS)FygXgzW)kRSfzk%mf64FS!ZRLw!MAw0} z#dawTpHs!4d60GXfy|r|3WElFQ<>+MaIICdA7oI9f*CnmPr?hK8Hr+IzEq-dw&U0w ztNWbT=D_+tfc2kSbo^OcnV7Zlf=TS$asRk1Q< z1l55M$q!k)E3Z#Z)k7$!jP#6udy)qxW+r>41iLO57kT@z*pgR<&iWllKT#$mgKMGmiHFjVDhPF3s=O-8D2 zHM?Us{GijwYvPj>o%Dv=-_!g{LMJ^BbP^_a`PxT!yy}9HE?Zt+lr?F>r5ArDaN;X~ zllXqBZ|YFN96g_mIXW!|n4>p5m?QKXo`jz|Pqts^^C9)Apq1x)fNw$oD~NyQE^}sl z(wkNU#xCgyH&bB3m!|}i)%I!Pj0Sa^||TsO5V=HzbmkE!Ah)#+ITqn>Db|?bIt`Xeos3W!SW#_W{*s?URIVX?JJSki zZY|VUi2W!xpK`yqBYPi|ViDzfU&uTyyhHI67bDqEGePi6`5XLwlCUfpDR_Lj%Pjuq zZdb(x^20x+hfztc77`(X$aXQy6_Kjn2Y4|AhZAM9!L4M5wX9i?Bl|r26e@7Q4LfhM zPyrZtOSN!~aDXb;NB)#FR-k|+s6bNAO=@vUjbt=Vyn#?6d0=G%8p*t;7nIEg;moWp zMkQqvNrZFfIy3J)MP}q!i3GZRf2J39vf=flS)r^+$-tLMn5gj!Y<-vFTt4i9kbPcW zF~N)3Q__6SfFWWtwK7E>@PGedTNWxe85LmE0j-XNfH`xDrPplsGsSkz!%VTQzCYDg zSXJ%|8Etp;E{r2H_hDOl70tZJ-4177pxZXrcJ9Nr@)W7Axmp0;K>$bikO%s-Qwy20 z-|E>%Wks$dS9%jTr#crd_p{0bq=P#X1JQP&og2_y?>EE47--9q?r`ie|EOT-V zd3}YFoE?)z%-dues0Om1m`opjzKymsyuMWVwV;S%lih-|K<2|e`q*N6>7@cjJ@jd) zv~1m$QiWU~?Y25o#wy^a9SSo$;*C#k7vMWZP!8Uza3$tSXt{Qx-)u^<`wv-=`LEEOzik4XR0HW9FrJMu8`Q$&`$;n%OyEUW5Z%#M?4QO}A$k|Aeu% zK;BOtvKe5H89wv*Gh|LbbB2$7-z7~hLSdzxiu&M-ZoQr2Nc@~}{_iyPaq*r%s#P3` zk*pIQvW47`mF+HwqzGRSByy?Q4$cl`rIa-Gl(IKOH73BUNi?%tf0g(GaSJ$LN%8A{}ks8I!nPUcZM{M~huB zdB41!Juo^aLbMg_3CZfzW1@L`CZ^dRg!AI|1LJ;Td2O7?3&K&Zw}PjhR9zv8`tVYh zMVrJ&AkH%X6$w&s^ln`VfkD^%09+#N|1K+vWR^`Ouakf3Lzh<)wNGv?AjBqu8~+> z!|duB%s_{WB8+B@i#_oRU1?HrJ802Ql2@9L#^z*smYS4v7wzu0)_@@~>t&CO`4pZ4 z*8zN$p>fn#>AGvoly$c@Q`;Mg-&s^sOlmV-c)vX4@;n4G+iywr#lOKm?;O6-$Sa+a zu%EWgX3YFkZ$(;nNS3i|PFjq7uH0khV-qxdI&A{vFQSRH3TPFtF>eyTKy8!Q-CGkr z2tuuZ9yGX)hs@eY2l0$HqAGZjyh|r&K=r%{7Ay^BIx{Ep)owsvhxPWmL_oFS*z7JC zT5VoROewrQnhywOinE~s&8X%^g+5aqa5%R|+>{wql`{c;SdlaX7@dDH?-I&NSU0yi zGq30+Z{|`mJg6KDIirNua5VVt=Ei%r6IVyv&mR@{lfT22hyL3t6S$x6jCXNAO^W*o zWIlkMQg0gYPamIVhlQoMdO;m@EHnX7g}lai4&(~^x0 zI{Qd!!W_xPZ3$yZLWo?YD7>p4#HI6ePCg7EZjj7)>f!^ISVx7C^>Xp*rq*&Lbc zicc|`26g_ZyE(GUnjtp~;dLq>l52h34J=D;X4}ok zQRgi-f7QC&=Mj>Hvp-S6#qxsttQi8CI4m~lnO+Gg=$aUekq`V)nonVNK?cbw1kLSi zSL9Dp=|Kaqbj$jwtP>jpy-q!{?!Em<{DFe^;r(f#M4FtAdYuTL&mO>xvVu2aCA9}` zBoAWjeg*Xy7xv<=SldS9#9j;jIK}JyG=bMSwXX-Slf7T%E@t?@ZlWy5rj~pLOKobVS&P6Hld*avO-Rn zUy!C4gmatR4iPPO=1C_Vki3Ha8v&unewV{@J#`mInGs=ZCF^r^kz(BlHv4f~s?ViX z+}uh+W~%Rxeu(AQY7rjr@rncsUbNr5xi)L}AZLK)54oG2nag_08(+|~n+)CUk)i); z_3}efpDlN0yy0-V(RaBj!b#jG0-(j$>(lvgm;HchOeZ!p*el!zNZwB9cZqGFi(su6 zUm;1xyoY`Oe1&SbZEkdHn?>z+5VenlTu{@32W{3qkQe-cO>_`(#I!4(k*;Qj1Kh02 zF}W6GR2r?yt5S>waUpWH5a6xMw5+=yFQFrmXxV!Utk!6k+so^y-6Gn;#VAxKa2JZU zsGuu@4mQT!|KfpEC`7?ZjMhd`331ZGI)Op&-cK{L67PxTy>U~fsV`Y)VW~Sg=lc^>Cef+>Zct#m-Xntm+W;F0Dx9U!Ww$+G0ZD@4H&)iL zR)(vo>~_F|M1qV06Z&QfA2?nss&SeXYBMEkoP1#>bCCp!MY%+`YZVC_a%`{=i@9D* zMa*(qU9ul4aDOW)lHnH~CBu;%kO)2gj^ZqLt%_ibeWVq1uJkpcGj`9fy}sYj`?~vn zt~^H2Z~eUa7kw)>|F7$GQiQ*)mx< zMYoF_sVagTX{x3iNq_JjqJCA5Y_(R@4cy;u1xN=S|7eE@5y{{{vYP`~zt&+}nXom5 zi^c#KeR{?{iBNoY;2xUAjV|A-7-88dJceb35?aZ2qSQNzNYoxofnJFsHU)Ee1B?(Q z?zhsmM~o_l`jM@nA>2jlJ!Dl3FebF0+ey7&AWBPF{JUGw3%_qIXd^J1TZzybbxdwCE&-gM<40sn>{iG+Pq{-&yvGtCXO>RwB)d{ zKVLsZHjMrG$|-6~JitIWltspkd}5-~{O#k^3ztb->6FFk_WMVUOLJobdEe$iu(6I% zG@3&?@7CZw{ZGY8`uE%oA-t!Rbk&iVt-WgFC&^g%8ApK5d>-4TF|(~UNrK~#D&}4a z@%(S#$S~Z--OZ^sYY_JT)!v1Ls%aT1&^a;fd^cAEaWc6FjT%R`AQ)w8i|z0VpbA`?~GzP$o`{u zafY_hT{F`#@9Z#CagO%F3X$$!4BHqF z4-!~}iHm+M?2fV7Hnj@_FTB_7{UNF?d-Yvh^@JU*xr=`D4*SF01hHGn zo(*vSKu_DYoCqjgJulcTJVbx5}JC%qts7d!Gx4UN(g^KiOaQk0L$63~lV&S)Y zUEYyR9+&s>JCAjFFKlO?e7RHd5M1-VBM`}w977=g={pp<&tM}k=ONMp(tu;>Ejpvr z!D<@pvE_z&3^;4N?Q~Nz2iyRrGR+0@dNjFgXh@#!wC)9U4Zv$d5pr!-^3i0At{N6y ze~XscX`gJ&+H7#oE3D1d=(X8IR9Be5BsXTbBd=~bs&52?c{gmUnqnP zGTCE{k_Y^&Z%gx)RHVGoqt)_A(KA5$sOq*fMjAA%WD8ieGEBVC1xQ9RHuNdkfx-*M z_eqFW0(%*Ig@~MM!?z{dhFe^)FdyRJVg|&MZNeSI z^J^|+K|+aaMDM$XLx}A#&M-Gwhg`djz{t#B-RjaG!mz<)3pZI-`e+j%5L^+EnFY+8 zAsrcoYZg9;`v}+$MGagPU(9o zUO{c#^Jb5r?!VP60O1iSt#C>=?*TaLzPl3OtVMe?4)W^oRCNr+4~$>e!Y7=5|2r1?Sv1G&^FtGJI_-KwQGSAhPI3Ies)Y!B^Guv#b%#nu` zQ35VB7(?Q>lYm5p)mGSII<$Ljv@8H#G12puezVA*!O#A8p|#AZCl0Ok9ed)? zTKu)$$wKJ_K3LTFU>`r?U1vwWccOJB*Zk%8ygt}**PC~hO%mZ$`rtubWrL4hW!oB6 z$;*2iVQqBj1GCgAx#%PgdJSgJZP(D^sVtnGKI$(}`Tmtrs(k3jwWDqcSHa?K*YZjFuIA?C17-@!XC2M!ssLu#X3dhXC_x1XC{~T%Hl+e)jsW+#Fv#3U9rpO8AJccjXL|C86{>jervNzpv(dUV59->n9lg$59s7GGpgqY=_;Fq z$58zL5T@H0u?niHqy{AW?wi!k4+$6;p3taD^eerI%R)@x(b~B?VN^<{+kf*-n1TCs z1{!lvCZNb$Gr8F4PuM6>J*>U{4qCE-a0_E~wm3*~%lW$^4D@;CteKnal6wb$szdi$ z-ymxH`*x5eB#69DxYtsp9kPT0Y?8FY7I-u&jKr;7LV^;#$qrbM#Jv$($9pXS4l+pD zQSKH~BAorhZv)Xz+JOy9;nS$tjI7le*5+QJ-FwniO707(KYe12CQ^#pg617m56i5!3NPl8E>p z4+~_lMnungiL14;JV#(#`QyWwJ`IYz`BW`gvA7f>8~&6Q*Y;$KOWG^%{vTLecN%T; z&LnR%E;W2?G_JeFwc&VCIFH5UiO1b1g~_GGEg0*auEn(?p$i(;c6Ghc!3;!d&7H83(=ls-J$JIWX?;(AP0ENE1VBt1%nm3ygsmt1kfWx8G;Ji%&5p ze=4cp&YGyF-_C-EPtq-_EA9j_J2!&R6a|-_RFNbiS|oPIk|?Y8B6y zf6Vzt-T2S`;LO`SDMd~wp5yFjmU6@;VJOF?2!^t-ygByQzxML|4L>X2D4$P$wwL*- zIsPd@P0DdDYLX2rC-fn|4SDmc%VE|6&#+@0zWnrB^?S}xbRXsRbK8;-u z4!SC*tOMUimVsOu+kRCK5pWXCU@Km8nk>n}0U4Edvn?ysg$8@;t~$xA@JPJiV_u#a?B$ z+ci;|bohUI1*ApZfl-hxYt7LjWBH57hQbsn6u4auoh(Vwyp^MDo*cz{vdmi*m?vO| zyx)zotlwi%&$CaBiSRy6dBDNWJt#u5(!oPEMs}{8Z=Xa**}xr$uGOvDJ9(vh*j|EE%F5EQ|nLF4zGRWq^(8kT2f+3

      d{9Is_mURTuQbvZxPu5c)z6w5(CcDmQ)su@gBna!+Mv)@WIIEst$>0f z+CkN+*LvP#HUByR-E97OBFKA!U<$MGUM6g2jIK_u0Qwmbapm zeeJU@GKMzadmkuGL>?E>x>6k0@Qu8(_nBJkXh$L5`y^4~Pc)bZkuyS^=4bHZb0LHC zUm%{(@|^`^>2*h#!jVmQ=xmOx^39VsCgvR`YI(hmFC?dMkoyEr9QC7qyBuHbx&W+MhuS2ty%?`P~|Tw=uZyy4yA_r;Int=`p`!Y=%hw7r43ughAe0kau2gd>|aG0 zq>+#`t=X8bq>zQ}plMutqT7hjjBDQujB8WL_mlmJ{+^!1KqA%qCXH)9%|*v-dTU$z z*0%Qdz_#{nI5ZIsEjZJrt*#8;HdsZk9%Yy_vv^|XkfGW|*sCllj&wGJ6I#j3$%qU&(9kDy_RWx!*jBlN8+3X}*-XYZOHEBqPMYpyTjr#! z96@X&FbJ%`ZHe`sNtd=*VS06LnQWX}cCS^DxIV@oacZ?FC8CbyI?2n&bhSlxiALs^ zHzpVPz7e?yP7}Wx-!aBw9Hn5IbsX4B@3k<>mc*!5OFPd3v`)(ZfU*(n(k8n~2m$r{ z!diY|Zgyi~ekO`T+;S9uXtb6V?>g-*RXMS}>$urG7u+zIB4~VaYCp_03 z`v&C^?}CP>;PI=Chw~4ESJOcqOB)-jtF!aGj;Tos54X5aoS@_qSy-+qk!!XA>gXO$ zhN9{lc1ASvSvII(d45*y4mGnpZ_n&(?bNpbe=3>L_Sswk|ltxy$H7>@w!gcrCoo(i&Z1NC1MFGkXD z#=gRSUdid1R02XK_S4LyQV=qUpJp}{{g91*hVm$c#60|`nN1}GWMe?$7bIQXdJ+eI>zY4HD}Ytt4#bXmj|;M zh5x6bP!cvPF~;ELI=E)nY>yzd3Ht*YTFWU*9Y3DzP4>%uks2XgNZe_$$)bZ^mMQ9`)Zj4O5=aVBV}4<& z@NjWai$|B4#8_WEVkHRUY>e3fg@NOmE#Dy^JvyB=fs%ERGKRvvRrtI3@FeL?RMECL zzT~k=nmbHrGHH8NDB>irn5M`Afs&5 zfNYt%`P%5yFd$^f(PkXJ#=36%PHDI1mWq|i0o_kvO7osCc7LmUgKlxj_O$(8Rukq_ zRsmS2=T_ZHu?h7lO9d~2P?1ZzBkL=6NX?M-MpLGx*y*6QYjQ*JxO$63zplB2`uxeA zXeegqSJ!_r{pl?Yh{&Ax7alBaEElGxZ?E1%AQchWD*x*2`Y*CLOPU=K#SdFS2CXS} zz3pJTb+hZBWm>{^7@vCUW(WEsZ|HRgv19^1ppGRAmta!V^g~!&(vXvJC*`W~Dy(#) z)?T5_;vfR0TaIy2s4Yb|S=OzHprs5Hap&5tMeZE5f-tm|t^z0G2O2S~3!2v=9aLUY zG3Q355PNR73>hA!IPW@@hSMD9Ckk$z?bnO?a;B6x4v&aXF&HEv!@jdD#1t3!8EyAf zP$CGd7(gR?5D~*vrbPv#e{C9u4>h8Q2#OvGU=Cx)1Qon@G;$tqU9N}kiKmGUW;?>D z-Hx!S=3K^*DA`QmGQEaW+fi7=!(B0Q;L8*liZqEEj0O?eDXJRF^Uh7X&8jnc@PsH9 zis>3fxtPJjX(WlI(I^b}5e7&I8HMcw--*FU*Dx{l(?VM2sx_d)4i!_I++Kj($J; zJl(#}<^SJx`liw8c;&=HLBWc7$J9+in4>rYn#@JNv73R)NE*iVJM4SRzNrPM=OPQ# zUKXT&QViFd;b`^VI17!%6hK{DG7+1NlBS+Jo-f#TP}lf?Hn(Uq?lh2sqq`Cjy!AtpNItO_9a}|ESFaow*9^ zh(pLQ+zAqmt#1a{*fQNQQaKJdMm!ID$b(F2F`Uxa?Si~{5Xx!-Ex>WTz?4gL9kXr* zHE)F-0AOBJ>Vu7kUTP2k)YR9<}S0vJx`Bv!0;=aIhD+Uve70 zEds^s?XYk@3N{hddVL`$nJp$h+Gw?}kma2|IE{e!6Qz2y>CiQDg-KbE0?rK~QLTe@ zoEZqjOgI?soeD`jT$;{hgh4(47d5V zi^{Mj(b7Sn_UO9gW-jFs6)L5+BD1&goy#H2DOKm}m>}_YkZrRaxW#PMu4u89kIPXe zPOFZ;TQ3Xw0zmCJz>_dAE66}Q6=&ZCIjIA*4eh!$Kf{m%V}C0*bxY4uR%d?*CoDF1yfzXU_EZhEYM=7qK z;v9L?zhj&jUY-;+r3w7ave1bV z`^{_4Qg`jhTdk?%tVYJXnZQz;LqZ|WK?h08oe0eJ|8w4U3m1-r!qE_obW(r4hhhjHqD*IL@zLkk>Wun2# z+pZta$iP`BAIU-l;FCyK%0_6;IxkP6OLl%|gV(1(6R3W?NJkyY}z zlyq#^nlAeexZWZ{4#RVvux^8#MU3agc%v7lJIzCT9oKv8aiR7le9k*wsp&Rw>Tc20 zo9q=HQWWHh&8KHrS1w3Xew9+IawlJtFEP4%Q@H9K5WbvqB3N3_oGCEQ42#)mF zPq{^kdlR8$e5GYjU!o?gTW7nsqJ>YZrzDeJ- z?{P@yTKH9_vA}^U1hY!P%h_C36xewg5GZF0=)4lFYu?l;SL8vL=C)yNZpDdm3i76) zG4{zrjv)+T86~~j50^AmoQ{}reFq&D6rukwCyJWl*Ybw*^ryGv6=!}pevCWLquOmq z&?YxCy^_Kfy4e8B6lY(VO=8AKHdFwut7yfv=h;_b zu>>EtK|(@n{0W-O!Xx*SLl--O&{^vJHC;&;_2;yfj&y77ioh|}jE+A+gqKl{m&eD- z{0__X6MltW-f79I_H~&k)TsbP+;IWO*v=+k*u3V!mTRor%+M^WTRTj5UQ#W~(~XOT z;(ASI+#tI0V>3n6Y9pE(avUL_1V&QX<8cT!_rq}rrxxwt$A`1}AHw0Ro+iX|lE*^A z;8r56RiaGsA}W1WwI9PE(eFO1GGJ|#`*{?kr$gw$7{gc%Sx--3ln0Dlb;5c&f-Z-j zo+Xf$Ot8CN5#~9ZJ zAFg098+;hWXnmuR(fZujXnn5m84cvQ#X=?l1#hwFML<}38bV*<^mGDU^3v0Y<)36v zr!4<8Jr&NVq5jV5q5e{4s6X;}9^;Y5KgD@PVR)H8!tsippEIinSQlyfOx~J9ez0Wx zxUic7@^`Fzy^<|NdH~Q{ki+9WUM9wJUhfGXN1~lbza!*5*>qz?aYM9;r(GzhDr2Pwpv;#6G3Kr@S4(=Igdo}uoeHXbHq$-lghHs&O$oUVYFLql5 zga|uYVm{BWh`0>oww=NoGBOTuG8QWJ;Ca{0kLeD~UyHOTLH>bo``KrG$-eGlq=kM#mM7wQPz}?^Xvu>+GO{4{yh{PHO&>k+*v2SE5e|~b zr+k$6AV!CP1U-@jLoDzSv!-LegzKMfQ2^!jpJ6R2MuDF54EI6=%7K-S!#&Q=I0V;K4Ap|Ul4bGPf>xIpNi)`5vo-c|12Qug@6Th zzdtMr#kgd>!x%aKuYxeE%JA(vI^I#xVR{QPF>+pD#PCz}!yp9- z_n*ZgMar~C;c>-hA|c15ScAES)CVcd{!kHSy)D#-6;_^yE>EpPfA?o9zIy*fZfp`mP*7W9>^*o;+m7dWFe4Y1;S>L=C*k5$ARlpkmJix z8ggT#zTRL!^ogj}G#0#{1&rR(u?vgy^qyQ@A=u0UItYg;jGzrksIPl*_m|CI?~Axn zR2frkXg5OaCDRY#=_P-yi>i){0HZ}`>PBd)yPBZh5ncLJ_2Ryv zUI4n0EG$4A#u}H}*RrX7v2n7a%o@E?4f`m-e4OI|hAxRv7JkrB2Ba>}@b;zL_i=ya zbd|G5RL({W{@;OS_I_g6vYF)R?ErOL%=E;dPUJ&wHYQvqUuc@`68?I_`0Fa#&YEZ= zcO(DLkA}PC?=|jFO#JRg!(H$15$?`~a7Qw>H(?^L&y;to?D&8Mp>O8Ib5fCMI)X%O z%5VFmZ0yyh8Yb|@%&Dd|`i!|Hz~)?>*u!^h3R&zTB2Q|w2V!y@fu) z#$SDA(XMNfHV6{d#oMov*8UB|W?8%g1kG=KL}7t@D5AS1rW}e2jQIU7Z9O*T5m)Zc zlH4NG3RrRxX%BdM zK4dk2OH}Exp7-Obk!PhPBD}wh8^=lOyWjFvA!hn5kw-rFD$jkvGw>)Y2r}bw?Tppy z4_MDrR`buTL?Tg3SWke!-rwTk|Mzs4pedhIw1dWXSik#QOPm6?=E$QFlSZ~UE0Pu>G|teE3rXMz|3Q=iZz&S!!u5_K z>#pdBfnxsww<$=e(0$#o(Ae;zn-fQb<;?Ab3{l;m=t-P|mG3Zc+GO%Htb==#{U8h9 zWqfy1-JCd;3~AIDe;r3Nu-l;JUBhP>T)4|RfmdhNnSeyD`4c|skwKXVz_$lH)cR$< z55@K}*gjM*ZNVlJullU-b`w06_Fq{{_1gbTTT!%Wd$~+8(qHw9R|E3ZfOs`1Uk!>^ zL-N&-c$Jc`Qh0IbFh#xj1JV8<^7A1;0l5dQ!y(%0K4HbBmWSCs_po(HcaQEKp0MsA z>>paKD(u7SNdj?+!#)ArNdep{)?wk@C7$cAm0YJpu1h@EX_4!HOz7j zf?F^+K!>enUy?tM;58@|!!YzmG(Ca6z=3;?CNn%3$>R|W-G>Ma$ms@8j177IYh+G} z_x>0^p5VtfVqB5|v^yww)on5Dp^-1s4;GEB^jMcCwDuqv=_7MeDj--ozlk5e6i3bx zrt$f|C-xb&M3O{q%@6kHX>T^thl{!LJ1M7>KN7b|VA%5u0%R4RFN@u7y2rOopJn>o zq0eT1N8cIm=7Q(4y2)(bSh|nm;}(gJbBTAX-sCWCo~05WCNK1yONf8N2|Um}ll(A= z;spO6OOld>SiFP~EPW(cq!gjeX<+f^wA}yB zOVmd2Acq~DUoQ6vfx%w&%U1*9)qs38C|(W9S3}~}kbIRw>A?lYl|W$O&TE{&2&IC^ zQ3S>?7Z@Xoz=*7H1ci%4NV!JWl8wS-gJz{pobrGaOVd{w}zI=#u)Fnb+8 z8u;;@fY3NPq9MlpkG!c_mIGSHVRDrZlm3JlBp*i)k;M7Lxg-sZ5p`&M9X&LHLD7_h zqDL7NTXMFQ^J=?@Q+{_rsA4-b?67QewC+>Bg%VjeYa-u?Lv`HtOeN;O(L|%;uFvSfBA~6IruE~FT^bKicCBB+fNc8 zwqc@y5iS;Y14xLApFy_oK1tMOaf0EgLn4*`P8q*Xh~M~Q*t(2I<2akiUXRcUr=O2d zHd=9=wbRcxDc1O|6DdkQ5f!(Fy6r53D($wj4>r4@H1Uv8xW@;Y-#pY>BK$Vc3}{S# zG*&uxvOvo;be_Pb#)Q7-8%&ZVIhgjvBpJv-+K7>!8uHs>UC6F(&=U%NS~-EjMb-@k zubbyRx>ejiOYp^}l{n4+T}+&^`e72hkT}JrN9*I{Y*JpgmV)LBDQL=aT+q&2aHHe4 za-$;|x`9X=#?)uJBj%;qnzs|{cqXEnf)0eP<=Okj4e9Pnu8VU0Xc`3mFTwuig~4I# zQlf;@JW_j5AnZSo2m_S7B5?wkI}eyS&$Qa}c=6&A2(a@oWG}rM5F(qjJ+6o*IX;_v z;<=aK?v&FpQw_yH$BmLcQVx^2#|bHDjj&!G5byq+-VMS#_+BUGe!%oVQVY@I&AY3R z=6FW+%wF$z@+LRlIAv!5zZHs+xtTB|>8OugqIP{}hn*P=GK&>5yQbxnYJ=U?!nN`3Azf!oM zPv-(Ep>ToUCvW}g)Rp&tH8LO1GM*{7zZD9gc|7*_TG2KCZ%WOObi{uPKmI`%33y7m zw8bg-FB9_q8dC5QQ84qfz{C&5bfG|N^+KUqFYi_0Cz*+n2jJ~HQ0_$Lyx6)Z6w37y;2GJ+^P77mpGLWN;L#mA z4$U|~gO(=j{+)QqY=hZEa8`K_Bpxr-t5wh!XkU_+znCG9Vmwa50UoZx{i&LvNPDmb33@2e$PNsVM6Yvi|lkBr6F`)cQ z_4Fr4Kc3k0niJb@Z2~IXt=CecbIU7h>kD%;_FARr@6?-Bd)+DR!5BEOXFU(*ttu!P z_9Co|otO3Ib0|=695mf$yS|+%W$o$7smbf`aVtl0<}3DGy@}3@D3-&hof_TP4gA&O zh47uGCeIlwo2wKC{} z{;p$#PFSS?2>4^^!6SRgsX5JJ#a`RnuDB)pzFTr?o|76aLd*Ed+hwj8G5;dAzs}pY z7xAc!fc@P5+G%=tgf=~%8V$o8fJZ@0u&Uj90|S>7eFX2NTdCOFj=kqOJA0K}Y7|2l zKVI2be)wp^o_+9*{dhK?pM9|L&F2&%r4Fgi3x`$YRvQ%;>IIOR#TsC~zLOeVUC7TZ zLxI_QEB9A6zQKqJiz^!s7S`A8#fN!&)?S;-Ecx(}-I+N1p1!}W!68;FM>LEq!? zLN4h*c|tFhe$lOX)ZcG_5FUV4Dcifn7Y-1l26Mj8Rh}3963FM^Gc+UQG3fZpqyaMQ6_aQgbu;}hU?TeLqy_vJ`)jc1xug==` z=F(Oa=ogW6_N*I7y?pS5TGdNs4Lnzh%Ob!-W^apA`8$w~ZO2Dxr8 z7OQUMz@9JqMHsnA_SNEn&4f(edEwG1y*WOavh7{pZ_G?gynOj`T+(v_9U=lY@hynE z38yyURJWaS*(sy6#U{Lo?c%|8zX{wwQ3PsKonc$K0OdG?L* zTjXc;p@c)ZRYZfD!{Zhjg)w_w2s^tA3YUB^@V_jSFpS9LIq+aK&zsH@XTS0^WL zwCifQSe=0RaYBO5x>d&ZuGi@EMZI!;TIpM(yd%42PmNDaj!%dE<5az8KzzD3goA3!lW%CrxTF@vDfwn7Srn(_Pxa)y(e^DfS#SF@Eg229)V8N4L&<8} zQ+mG_*7LKgygVgOMK^@f2yGQHy_`933zV+FSS@v!=Xk%`LbMNe}RCFKzaIe^WE<3q=Z&n=*{GG^b@zFT$Zx|N+#e{t`8EZ~`1BqLyxqt7!o6=cV6Z)y zy?1|Mo&1?CD!%t#w|?}<0FT^VLz+6)#p>4{=CM+mDY{oH6F_NWqE%cGLiTt%KH-GK zU=|wb_QSN>KMI_Mg(n*f*8Nxv^E|{pt-^Ig_Gv$^Q}cp3ar##~RSxlExg*rigM<;N zFRQ4>gtVrjs34X#wC{r6U1&^u+Z;IjtpEo<%YobNP`r`!+VuLpxpWpih%$$4sw+&a zOZO=%YGF#2(JNjVbYyvjIA^L=9FwC}H5tMK>zVG8f5r3mK!3(Q25J#oNh>QB!!v)R zwrPkVL+8|mk-%<9mPHrOM)H1m0Eu$hRHqJtuWYiuu#NT^CK33qYhb-vZ*XIT=_gt8 zMj8XAeN?xoylwUeU63{pIs6rvKv1J3Y!Cri)ss0ecL6s*?x-`zxT>7%WRkVm$H5Z& z`$7Rrv>%Sc#8V>qjqP3>mEnwqN-K^Nvfu~iJ5`=V=bz8p84`!bz&`cA6D9=;QTH|e zX@#iQWZhQ03qR-cF`P_dJR89~alCABfL@UqyqxpeGu&cxOGoB5eP!F8+3rxV)*qSU z2nL`akzWLmrLd5Zyx5KvTLer9c!1-mi_(*WB03>MI=5p(JIwZmN^l(J?jn1)m)31~ z`xw&t^#r!MVh*gMU`m;wvB>j=RRg}s6*X*>A)*fVD6PU|6>~pjJiMupjRc16qeTy5 zLpzOtNf$du1d6sIcqf_QO(2c19MZBQn z4ZMA!D8_V{)*?v9`aS4Ax{1ziPHrjaB`11jJrO468QEyg&JfmxH-C&6haqqeZ7B%@ zcm3I;qJ_4T18hVn-6~@AsD+$ac&FmXdj#(L{id?rj?7W^v&W>f7*annwQ*0IiOR+S zojy8v{KOpQ*M$tSuV1&zb;qlvF%*?k#l1j0o5FKFm;ovW_O??hx*nd_rrCsthYoJ3 z>q^P%%<%SgYHNni=G5klGSAPv>1jTI1Ix^`oaVzEv$!}pnKeU$vXzLl?*n3;axlel z{PGLZ*OH;d?f}19*H*VmEdmW0#-t&Oc_)W^nS{F67=myFX9CQ=OTA- z+V0(OM0dP_<8g&CWuk+ysdN>O*Mfd#K;y~M$v5TJqVa@j*}CIqmz5nJgQTOzqA`R1 zA9%oUC@tv4$TfL;W^!_i@9^P(7tGg+en_>Ty`#acYzhV%c1GrDKNd#W9t^HbsN*aO zW*hutkx2A2)H4d39ntr*;_z=rNIg#qy!d!3|3ydfRFW7^BU$o)j@R3 zpD6dCB`R~&PvK35&{U{=ntSS}SLCg~e1^N~r&lNN&bBj5p;3nATe5F+`q2d=CY+QB zr&!FCv*i7_M~j*A_SpXIvHjoqWBX1chOn3d#%f54h=hpSfkp~4ZU++xEMf->*TG_S zus|IwN=MtEO8NE7u&|{wW0jDl9o~I*5m0wP*yg!-UDU-f@17IZ)UB?el7(i(**&|< z7;$LNA~~4H^>k@6d`fS;7N_$@qw-YVsGA?ho0a4v>lO=Tqi(rWH98a=x07XhSNl zl+gWUvXkf)mdL?*KCzrQ$`5|btvw1d-qSO#sTr3RpQu%=1V0|F-y;JUc{U&X!c+M! z(+nB%q3~K9Nw4!^dePB;m|&lDNU%I}Z2fG zbydOa!?`Xaj68n}-=PYcXt0LvCxnqSD3Jtcu%yFa+1oCIi%w`t!Z|R2*)PEi2WEO{ zbt^E_FvVs{&?p=fA(@6mNT!qs$;4taokUEGL`E|DBsP)}e0@vinuQ)U3{kHhhG;Yt zhA8kZ+%81UYa$*kX3-R!n`~Z8gdNMiut?hu%=AgaW@h?j=14u9L`I6yN&O;_L^z4U zr|_g+EqDr<1F1_P^4k(~VZ=pC4l?kHUemJ5l-n9Cj*@oKg7JGs7$QVm8t4SJ(t^w*n@Zrixj*q9|5p+`I-uHtmlIk95AGhWhX*Y}3#8rz z^O&TD>|nZ=v1#DH8;fB|ZsA#n8TMs_t&Mb2#om(#fl293r_|i<9{SEipzn!qNgsRt ziH`%!^{IyCEilK!qUeETB+H6buf}%xGT<@7LeP0;p9<6)L3R1wb<bS%$S0+?xTef@XJVEG`JG#FK+;zVLxV)U?0#$Rz@Sm$@{nEpPbaQ{0 z*qvoaPz&D20=d793#ir9ND15!#& zh^bq!UmmfON6(M>+rrR{AANR@>&^whsc`+)k~XYl@om|OVe5nB1$er|+=2|Mj(h&2 zXg=)I`LJJj3Z-Bt=u<~}rQVKmBu^HrihF;ah5YMjPOSU5HMHT~m3hSxiQh|iq~1N1 zBaVGpg<=yO`+^BGcwH2>pYcpMpJ(>6hH>a8BJ@f8wUa@Ox0pHUlypTa8H>DicaNja z2QX>i{85jIntOA8NzGo2q0m8P($-Dp5TmaZ)-9GN|=MS9@|=?+J;T|0W_RknGAo;*NxS0x!Z$|7>0r zF@h};8$H6^Pl9^~XU>8Y$E_@ZOupo#L>dsdxPq-x35LRGik+Vf>xM1}lk(qEZQVcG}` zZYI=V+&^<0VOHG(Jl>R1|YWfpr;os#%2DIqY5gPPA=3LR+jw^awa7CZa z6@5`$!RN64P&@xFvJrlojM1+#26NUI#}Le4Mn?DI_f&WviuDN3NI4KQSo2%bvtOaB zWA|K$Y6RThhRJq~$o7DF%9LA%%x$2YTG)*8jg+M%i}Jd+j7QRO*>?B$97jcb=y#b5 zjNYL^a&~cI==9LY@cE%0_?H@b&uBGsx&uEKn9L1LX~(X9G}jkQB%hIvrf7>_*{)>~ z^i&rXqg_Xj=EPz`ZoQ)u3+Be6|J=EA!{-Js_PjY)6`#I!Rq@tU#amYuZ^%`}^pE4J z0_}%EQ6WQT&(0v8SkBzOr(8_ni&~cQ+0S!i*?r^Yr?)=4t>i+j3aZXSCgbf==q-7@6pjq* z&B6v=6@x4}dwyYkF2Az2@i1T5!1IU#JBx=Jl;ZGHuW!kG0XYiAN+qLZ;cq&0b&zWB z!~ie!0oN9`_jY!irk+3Wx+Kb61*UG%Jy>MMBrmb#shH&ZEO|Pxhi)Fxe!3ZDDs2l} zY4wh3oDH;L2uW!{oyY{G#$JK3XrTm>#b@=ab*rg{83tCsl09BpyHKi?6s9%xrv4sQ z=`-g2*0u&GaqYwGQ^p&^`~qIF29vj2do~WEjd=xxp@xR-pW>*6l}Xvg`K7j3-3G+f zsbRMS5*r3Cj7ylJ@M&e{ z=YSViW^YUv04m^_{6b-48Ly4N^P>kFMiT}Z!Y$gLw5gE)V9yv&ShtXwL<3#5!Wpy8 zsiPSM0c&m9qb6Es?6ET5Ki29FU7b`@xp|H753%F!hd7v!5yQW4m^K{X%y9^UZxnKX zK*Y=YILZECe>6Sf=$Lp+N(W9^0IY}ae>fl{K?53aF&Bs@x16&fg;`su^mU5+Iom1k z$I~;mmLoItSb59N&jW&R&K=taIP8U4bzgE}-Y`OrX&WGxV27DWrUfLOS0L5@|HqS% zame1nIrbjM-p4q{cI>@QLPlmtviCUW*t2ApGP6?I&apxWQC5Xi2qE?Tzx)3#>b8rX z=k<8Jp0CgOoFWUa-v#xQqS?i~Bl#sN^_zCWQDyfBh0ps_2>8vni&xvBrR`Ab9K=1o z6b?xA#-64|#UETU{g_^2p3m*1-tar>Ln^g{aaVIa8k@OkXbV==O zRDy*@_b+y&bHA2xTk=V`T;bhMxmB3j1B>OhQXb6=jI|scd$hY}tXspe9Pc|{o|QTI zdORjTRx#|WuQ5Am-qcCg>;ZG8Y}O%r!0_bUop813tRdH#FE3uZ^psv(D=5kMO=R*? zkZZ_dO}MM1+pMo|xzqZ3$ECa{Nlop!-pR}Z+27vKAiThbUT)lJNQDABF1)m6wJ00; zJF~{*V&bZoNmbkDCTS)9XmLBFZ(|Mlm&ZQ6^qq%rO}%oYC2yar)A@~C@=F{f z*&zR@Rgk@Mohq+}&3pqAbN}v@gpWM#`|odA|DHY>l>fb|#VJlzG9Z4hcr_&?o+dn{ zx?gfBCNHIXJw^KaFy}ZF<5o277xA&;X6U+F!uwc3NQPNDNtNjaCB5ItV|NjQJJp$% z38qg=9F}gBr0hQ6{$c(yjg=PLaFYpI$3q^xII#0^rzGj^C3PCgpS4WOHPAXC!oUuU zU0HxY*nzd&z5K0gKeDL8Z06@x^#}T8<>+q@@XPnwuB+f=SpK{ z8%qxpoDm&frpGtj*5oHVW_{dG{xZ(@kPMzpTU+u-t4$()t93TkHm%%qnUjY#AXet` zghPUnPQ4a4;g?lI!?k~%Z|7AT_1>+3j+R+{I<^uE5B`tQd*+9 zI%|*O)Em(*D$@=ga_C<~_>*?C=h2Ji2Ls;;!PQu9Q#ab56f?<+JxQeZMk6&UB9t<)%!l%1dE`k-S08GxGyPh+6ZzUGgf;$X4j**z!RR5kR>K?Jy+6_( zH=OJR=9YqmylaTi%<1eLqsxi2P8+5rP6u``bF$rG?v2O$r~|e^ zlUHAHG_BRrgj+m1(lHOs4+vBTV}Z9c9--pGucT2iF*3RPGrg!^yZYzVMA9Y6leUAzAuh1SKN>+A=Mf3>e3D2?e`-TK8!B%ofUj7EGZ zJTLZ#wiz1P6;9J68gtQ6bmjjf%Uo4XwM!9*we6z_c-4{dqj;S%^Q7-t=0Go1?t9)O zy>RYKr2CA<-S|9`bchLcw=Dg|#V<9c4skiR3!Y5lk9QcQ&+>mqKHNWhDwJl6@IH(S zLZ%3tiilH4IgdQ6ZF~_mKv^N}xB9ZKE^|LGw=&OC?Ng}mCmJ(lPDABUOMGSC6*FaK z!=0NVzg%iEKa|m>Z&R}BrZMWLWdsRGrZEgs-TTQCwU_0lN{;LwtckY)caaD6i=~VH?x4qN>J!*2+r^il*R*8Sv zowyDH^phVxuc2$aQ~l-<&(1`>+37Uj8>1k{kHw5=y1(X)ObChqKlSZ7yCWN;)XLsa z_K}keZ-&}(Ll*BY`&tP#J@d+8fh8|tPJHswBcB(0xeOv^P2P-SH?lRZdQQ+Jo_zHg zFc=C$eRp;nAK(AZMV@vXGh(Y;$XMrYqLdd=_#Y#E-+z%F9Do0a4@}EUHrBsleS&Bi z?)&zV5k}tq30mrt90tFYERj!o^l>03r$!wU`#J6Vv05?fiMwus-hEq7Bq#;JM~UWZwn3h~*(QmTDnuT*cU+jOj7J^3no`}@tP z`+|wLu6&fZ(_loJ>D2Y+ccFHt$Ax~bb6BAq92W3le?o}4AsG;8goQ>B0=x;!G%`L4TmPCN9ET9rOo>PvGI)VaAc#bh+vpSy{~)QOcv|C*D_N>#nP zu}GC`j!FkC!M#=uYYBe)qVg=V$Npu)o|_pZ3)c)SVt>ACiuZU{x8QjDM0@wA9c)6f z(&4D$i{G0+`HZjN4~SSFqEH^Cb47}SXJ(m8Sy76 zSb9RZ^^`u9d6=a8lpK54o7&@#KJ4*2OqGmM`Vw#dmjkW%_yb<;jUcVdp`^(DNHy$3 zH#H=7QFOc3Pn$ZAK2bMTx4hV*f$ z%H!10|3L)ror@*nMTz0@zTeI3*5K&^qj~A=^tvZgvOPFUiD{c$-veG(FaBp=#&o$c zHpkCZJ6g-ajN`oL<`xk-t?iG{uo`~M$$YQih9cC{SER@JI}szUoJ=%8z66*l_)YJ zaty}PGzexK)Xwf)8x`g5uh5mgi6s?&)lD2?2s`8;DXdzCAdwwp`GGDEmUUd>6p*yd z%9dsoUc`u`F0yNnYH#@o!a3kI?^@Pa*DvXH$7WPA5f!KUq?~9tffXf@!NVoQdIGSu!L zitQ84Wk}q$UGCGJ3sr+(TivTC#z~8hxE_7_-6cyu$Vq(LLz5==Wy$R>$W6%PkL!lXOHdHLtzJlvGS<}S>umA&=7-VQ{Cg_ zE0)MEy&&2w87*{Qlb;aTF_+y5OL{2DYxThbwOljAGw1zK`mEEg4_1vT9^b~;zkc3& z6F6KH?YV`j<8Y^Ev%*5cNE9!q-txwaO&_G|=WPdsFTdWN-CXByk>euu;gG5B&sW#z zIW^Dr@mX^rv}i;LSOo9U2#K@vX|5?lY|gRh1t`MeBa{!-?z+$<`?{ zQDkafx%J~pyl1T^dc<}m{aMXvrms~W>u~LO2RS@hI6)HACLy9uqPT7!e`hW0ZVWqA z<(6`)U>?FEMWm)bkl8!rvQdL&vuX&tv5%@=XY0FAops-(ZLx)2xWZPi|5ooCniLa$ z=lVQfai^NwGk3Fp-fOl!8)l7ug9=L@AuKGJ7|dGMmwsgaCI`uF~M=}$e+y-HS{kb&;wdk`H;%ZH60 z5Twz8Q~Pd%fzJCZ``i6kq0ao;E-60^|7MF4o}X0vuDqnOc*gnj z)<+Invc_Ix9hvPFUhh{o@51d4HQ!XfzBIo__tpXz+l>d`M`A^4o0OJbM7~`eTRJS> zv+mRpU4vDu8h_c_*|Tw5-C0NWczW99S(SZH{avtenA70VwsEBQRhwi8_Vfzr{!xW? zct}Qi>I-%zx~HEa&|0=$ZAtaEUTI3>6Gu|FI@CWefdSBO(~!Zl2# zzIC)8ex}HwKJ1OTayQt|AaQ(o+XNS}FVLsV_Y?%#^=)v^cF>ibIyt@pOyO1op*&rP{1AvP{ci(~;l??lw4tel&yn!a_tVKV774^nsS zPm4}LguANx^9?a<5{w;3H?=Cijzxu*=w|KMkwg5&N%C*&-mmokW1iu<=uq46w8&Zz zVxyY-D(YC2r(4r5vRU4gc{P-Oa%u~! z^>;NHy}|KnAVW3asa=C^pX1{>^?W&FE9+g%=P(*8xMSsG(k-np+VeXG!a=4_yWp4P z-?x?s>+iOgBnNh$-?E%+p`Tdr<~7kOJPH3QMP1=~^h=Fw+ynl0x`W-|&%OVICmK|Q z94cOFG9DuOnC`NuQ05$W-~N(v)EvXA82|0yAV|+#q3Ab-#6a)d*pJ0aUULOHIREQ1 zq9|C+VRD7`1IHz+&GDq@zwR;mp*-DM-Oh(CZlv(8Xm4b8dJvW9T2CGNj&$)P>Yqt(WG@XqYvI_n_&hK9O&Gfo?-z_|h&*M{1N7R2_?w|TE z7J>~qm(+aE%2A$uKvh++<=ge(xe(FL zVi&vjc7so2_D(LVYiXX6{*HHbtQ6hui?t=`-ZzVGvt)|~Kau;ot4{Jtkkv+om$ve3 zfR&hH`Q@Fp{i>DyGrE=hKGt(HxV3xsdA6cJXuF%t6YHnBN>5nIvxPY>;pOTZnP1Xd z&xx~1hRZ!FTB=wov5T>ErDI=7p&>u-DTdp6wbS*@I7M0zalczx^|B4adrM6XzUTJ} zKNbya?myIV<{MOthp(aC_E<{(CUg*@Ir?9;-^*XNvJYhZ;K#>yK6PE^aM<~h!0yp@ z_DG~vg2q!`rY_a1;}T3B^)u<#w3=FR=WXk<=5jGPwy#!yUQ9eKt(2?Kr?;J!N~eF^ z?H%IlHTH~!6M{9`p*6L*(JcdUl;Ibxn?cwsCDUciWoAzJzN;#{ebrbMZissq-R`Tx zD53Rz&FGV)#Y*ji@M6P>5Z*rT!FQ&cZYHmNL#|8cl)4*h6w4I|r#oC>zUk298Xt|T z6DWH0U7z?;oVBnn%A>fBP{|>WvaEdp{U9U5pt2S zu39-$n2e$a-7CfXN0p?5*JPvvk7QjitKko3ytBsB?}r9IPW|B4lUXXB2QT3cNL1V?YonXn1P7;Xc+w1~gbe+a!vTsaD2ac@CC0lGR zS~cl?T2ji+T7Rb$0Qo7pIcH*DO)B}V$l%3jWje>ZWP9#Um%VRVy`Cwt&LP&1x>;(j z%Jgx!G<-}pf#NvY*k|cSA2W+ia0&%@Ci<7vL#Q1Dy|fA8k{-~S&$kY$TC1;G>NelF z)xi8{f3iTlfjEVXvXF>4d*>v&9=PdIR_oD{Ft1R!7H|DZf~tpy9cN)@cpCcW37!reopE-0ud zxa6C$ZG9b`=AUrMrqu5Xge=?62+w7i6X(IwmhvC{$>ZTcnkQeELXWZqzQdd7;-le{ zC&M3xzypFGOC_3#ot&=Di>D=iZL0!TDhF3-FJ9HtN%OIv59W@Zr4rBDY^eHn2YlT( zOP?pP=miW-e0eH#RG?TAxVpWYNcZP2(fI6AhU^nhno=(P7nQ{S&OJ}Q%KV8Mn5}4T z7ZQi0i>X{f3)SzeGaqX{cFi}Cl5f5o3jm;}AtML(=1*8je{@;Oa;j+R{=r?&yV-uxem zt@Y`R_HftuD682`}XQ6!m<2p*J-TJxKTLU?+q$`@BJ_+>P>%LG8TV!WybCK=-BHIiTW30$ zIo7gRwC)7(S<0GV_ycP@d#*fz9C&34rPea4|5Pk*SL!P7scHILYI)EH27QyY72M@{ghEpq1A{Bx)Y$bU*@*D?cT z#jy``u|`WCGz$n)j=~#{e8|sj_5#d}+!P5WTmh%X!;zEq@)zW15yF(&=;-a?fTY_y z-NX#&kY!6IgUEcU57QF)q(NhJ`v+W@8#Q{rw7r<18kYX8iO;1pQ2 zd0P?Dm{`8i{a6>mn@B#)u%a4g!TXMEIcf5%y?P zL?l`pp@&8xZlLuL)@Tz%7#e{vK^r0b(FO=-v>D>wtQG<>i$r+N>XITYA(O}uhy>CI z@)UUs;*WHMd_&%aa3c*M<;a^5XQVA;6?q4ujx>Y3LiF*hIkU}Ae)2;2qQrkl1soqED2VSw}eoL9KjgUM(~4#5S$=C37QW`*U>Ua&v^^ zojJmD)j3Y^_c%^+NjYfo2oBm@C`UHllOsEqk;4>!A6~{^2QTBh2`__wfjjZC!kzdF z;ZA(E;0FcX!B=<{;Vb-|@D;v0@D=DUxEe1VT#Y{muEu8uew+Obyq8xB-pk(v@8t`G z_dgN8%CN^2+o>)Tq%ym1{9fGRLyr@( z7Q=2|tD}|NSm;OestjFwKpVp_&4<)cNkr+U*ugqzgOE<#8@N*y7%ycQQkUT?HW4<@ z$Buf2pu(e5tYFV+eUJ{^v$!J_3@>{aL09%GHVHG&$4PvKpv7CJIKet;BatrLhqwzB zCSI~IVO^@P=7~)6m24u<5R_2RMOcCuM@hZ1I-a;i) z&@+_HXkt6yxeM@qK9dr zH6oz73vi!Q8hORS?DTBDHYYdEyK~z&4U)H7q?lmZXdMYQ+#R@YDto-DVT*d+r~`LB~VW zlwVs3wAYD3+#0!3D$xQTLr+a(w)b-{X4e(Zss>#j?Nq*P`)|jcS6|(Ds4*qU?zox$ z1rP1U+@Rh{R79$64%^1tL9@$IS5U|t>9lS7jG+Z6ZQ2t9H3rw5E3itQG^B?*9$Os+ zgA$LC+UQ+edi4Snf_h@0f_KTGfmQJoBfZpHv5ip}=+ZGkJ9rnDv9$oDBR(|#>Udrd0@P2i zFQfLLzmJu)Xm^8BxfV9BDnA~T33ke1+^XjJ4{sS&CV2Bm$!KaPsKRM_lfS!q^hU5= z&XcVYo_9oudH~)rYDMtQQJ2y8ouCJ5)0=#e)uWz=x;b@Q#XN6_)aovH+o)c_z@rGG z4?71H(bJpIv+B{Chk7|pTctc7iFE2Qc-N>4!TU$2M)IVgG(+C8X+@CcYfnfN zJQVx1%gDP@-(R9T;JAi}CO<{>#qv_JUlXJ!^}sEX5Ag*-QVljZv9U0DUV4q`@pFHVz}t%SiOoV!_YH`oUh1C?ictgK;b5TYQlag25rD zc`TFs!)qdbTJ-3-SdZ#15&;dOAoVxRtBTL7<47PVC@Dv-AbG4j{2{wffEM-aY^+W7a}q!X(q-HUc_=S8 zWLsB-b2=#${*ZGgK#OknZLCXmCka3U={fE%ISnrvHqABB&q~c(s0}=`5xb0 z$fCgs=j~W7`L%1xetq=8bFrRVT_i#T6zN}qIvORDDYn}MWpZn3-EMt)!Nl0{t#lGw zBAoPDE+_d4tdpk8VsNYaP zVuDiEZTe1no((vE@@eLNZY;evgDk%>zy1(^OI9jkgM&V2NRgie<*mz)UrdF;8t940 zU?>`!r(ezAkcC9da^SM775Pbt-nxSLrBrd)6Z$1&I5ZerroYACokc(#a^P~d6dzp@ z@z&)-FQ)QW*V7LpgP?|3ynY^kO_nfXjKd;3Pw~;^25(&f^iry5^<(;ZWEj*JTcSV5 z|2(T6vCCnRGpG27#K&6~I=h%Es1J7|^YPV{n_Wp|sji_1o&a6OcIdZ5zh!M}sc_7s zg(^Iv-tpB{oLx=jsjj03q5wU|zS2K}{>fs~BIl4vrBU#>%I-TPExVFRkEx~yrT`tm zw&-Uu~B*Oey_)A}tiig8rW1-ONR!6ZVz| zT+$o7%9tVd;Gxv2ts?qSA|({qLY9)ADQ8e}8GM6FIdF(9cqY|otCilCU=4kS`>GFg zA*)L-fHNp%1-`-49XLdKIGt*+)k1GZu!L6NzUTvA$coT&;XFw0g>P_21`bgi&ZL@c zwb8p0Y@x4kKlFhxWS#28a2}*wz;)zqq)c5=mnm|C2{KL$dBo>08UtCRG~JNxH&GLe zKxI;DY$)<+#S11P7Zb0h-O%x47)|VgRZt$FE;BOVbp>I9C}X4{z8G6pEzKu@x}oEX zA4zP7l~eAZ$Qfnv#)23@dt-txx=tSCff3|E5ahuGx$@=yu#pab%d2=YJ)^1ul4 zAPDkc0`gE|4)Rb5@}L9qkO=ZX3G%=Q@*oKEU;^?`Vh-|93G$!=@{lNaMNnQ~(%9S7 zp=cW4E?Wur@zimgok~2ZPN3vQ2{EeVN(zPwtQv2dMioux9?4cJ?s)3B&b~?fi;1Nq zCGs+o=kf{C2n-stnd%ow<1=O5<=H(47QN?-fip-0XTS_#WQP-hGf)C&UFal=~1kPXroS_sr0~|O*-~f5+Od@awO5hBPz!?OAGnfEp zC{2hI>UKoUHi2%LcuI0GYa20`EqCcqhFfirjx*auG~0%xEE&cG;HI)_?j4xUfE zwberj)*{9L+i5sVmJaPI_xK$=7td??+I zi% z_(>9d3-m=zrfGE>JJ=!Q zdT`&pj(F84xAme*XHt&fRo8a{M=r@uXKG`b*})PamyBEY%H)MkvgzrU$|PsPJ-OHe zN3O`uWTG&w>|l$KtHtejP4LQ17U_AF%A`!dJ$cSXGtV$_?9@blIj}}}i3^NR*qPcC zwcs0NJ>mAABMz-ona7v}c21(89M~hg`~==lESiQFwdC%}dMYk?j<~eG$^5ew%T7V$ zlLL!{7ni{3gp#RgQ4s#()`&>(a;Dr?Bl{OZq?{x+!wYN@lU+K`N`kVS6gSDceMTgL z-)E|BJ!AhxxF^ShP4NP&#AJj{1$aZ2n&Ku|q|b=h;c}+p)>HN$gu8MY*c>mgOH7{X zyec`!idNjDIP)2iI((n0xz)s8lJw`zWpx=lFdC@AXo$;S6bGY$%ygr*&qR#{j0Q4| zjZR*zcor}k;=yRp2BRS!j0Q3=8mPf&U;(2+9E=8gFdCY9!D!G1qahxQ1~M=jsKIDp z0i!{jVAyJpE#GS96(Ziy4#1Db_re~KouNpmsqi{1OoDpi!iMSg=4E-!4`CuVw0+Pc z@vYTmWS>xE)S`Gp7Arw(@p?n>3cT{U=7)j}H?;lHqwzh}6=cUKQfdyoK8w7diTEWS zUu{5%ct8m9o*}hkz2=fD-Y55@di9)PNE!fD#gb5)RU-G#ze$ z68(S@@qiL!fD+Vz5-flc5`Yp8(rLyWZh#W~fD-Y55@di9)PNE!fD(4n55$|@D)lBc z#rZQN>~snonlr^a-N@{H`bArpq851eCCw!MC?Q z0+i4Llt>4ZU49`Kw5P+a6 zEy*xOp_i~F)h&DysGFc<>QByu?YT=V2-UKaEUvhjk z7LtUb=S;_YC@={L_z9y7m&{A@S}MgwZi1SrKRLY`56MR{b3VrVDp(1@{pwM^OXj6> zEtQfDH$l(Tmz-RUgJhu?Ikifbr!(a{E6IF(5Mr~-$qLm^{}oM~D%fm=Q2uiNZJnOw z>8#MsN{SsHgw*W&WR2>ke@zo7IW|s#hCjidO(%I-I+Lc;{R+F!ps?(6vJ9s2U)97Z zh)q*4=Fjyn(y3jR&NA+FColFH6qkLUtc-c~uWM465Tf?8L$WM27m2sHi`aV&2Dc6* z=VS6APlz0xplniT6yo$-L@F#b7yGrii!FH#hPMtTmtzVcFNi#xplwpv6Qb}_LeehX zF5+rg7gqKf3<@4d&fRk5G{wDD0CkhUlEKvb+i_0q>kQp~gTNP(fiFOSFK_~1PyoK* z4}9T0@P+n&zAy-UAsP4r1o#3c@C60n3;w_t-UDA~|K|&Xz!#E%FF=4VZ~|XY0KVWq zy~mZjTq#7ZnmL3?DYn~dW+>$j-)J60IfZwnjnYb`wG0|ugkM2UXJ4ayPtVt~muj-H zNMAVA2Gu~h8R*~%*+Z~2ZWKyZ6`#u#UJYy5Lz>Jk;tHzUpz1_71ARO(djgihZI4n= zZO!Eh--31T5ljvjafMrLP)!jx18p=Rd!Ra%TMs3pnx4xLo(HSh6E+!Jv?$1Ht5R!l zGtfg5v&X8_xvf!f)yKIU;d8L(d-W!}ix!1*ZB-gRZU%^1LiR{?8aJ=WH*fut_cQVB z?N!V^{sx@03)$h-FS$YIsH%dS3J>LT{et+$bW|nB z^@r2&A-=KcC%>18&usT(V)q|qlU>LT!t`>3)=^auM+`USv;0=1U;ADrVWQoWrPzOz zOZHuMu=P_B_w}>jLpmz-SgO%yMIAPA*AaYFr?73| zpn3e(r6su>l;+g2N!9H;3J+e*=G>~~?j-oDe#gED2i4=Z2rZuFgH*MSP0C2$QMtpF zY}TzB?k2)5)eqRt@ZPp3oP{59>B6I75B5%tUo9TwN4IUNp1F^j9gb&z+{)p;pY}O+ zs{esD1}x8sc~!t2!MkANr8qXHSdqGDQjAi&kDpg3BA_pgdjD9`sPc=Zn_e+5Wif>Ri%t6e~p! zK7ckHpn`H5qK26LkQfh(@1q*JNR-Dg>+fKhg zwK={q)Q#ExTOUX3LR=W;B`GICpF#mQN$bbw$i1lFq1v3V7wX2k^sSGl^>D+xbo*YbxFA zeI~)+YvWtlq<4tw6yI|xXw_gjToJ|wQM+%#q*vI1d-%?rgmzy-qNo z(7?T+1x+;fss1a~{e+9qHP*9leb*1)kxUXFXbT+;ttEoHCb&W{+IWNvm~xparHxZ6 z9w@DcJ!aow+XxvjyKH&|MM#rQQvwZSIDfXKGiA2XhBEyF*lm73)RwLXekiRPR?J95 zQ3;{(R;Ja0K4nOwS!G-W<~Bc+xTWibA5LqW+It@6FurhJ5CvH(BTQi!UVhB~&w)dJ z>o&g-V~FznYEySPVKDVSP6_P0wCK#ggA=+{$rq+!cic&YsAOBf*VhUMOqtxbyb53( z=_(eP7C}NlF-(DClmo?30g7=4D8}}`Vj>MF2ID;JW*B-ft)#ku@i~fHXcr%4Iwu4v z^G0$g&lJfAT}D3>@%gM9GCPn~fL}E9mT2emFZUL*0P#r!@nI|%Xvvt)4-I+rLKj>x zgraaCOpo~Pm2VrItIEVioUMj&kgLcD_lyg0>cCPN4Ga14=7EIG4jMTA|{>Dk|-}!YqXK+eG6Z%@;1#r(@S;!+h_=8 zKIld+gLl!mFdsA}InwlE(EAl5$XZ>AsLPfW^wY4ZxcdfL2rRFrV0kUK`($Mg4j-nC z0$;njVJ*=E>0iD{`(v!OHl!U)NE_TrWi%kl2!WG`X&LN4m7w&p@C_RGr2;R=%_VR4@;e)s zySIk~f|t_7wjMLSBZM{7v>$Q@CM~tm$6=iq+K8X8p;}B`C8G%HS>q32Rl~nE@^IQG%Dxt-#y+Ix zV+iNd@#wzh2+X$UTF%fNJ`&Wn4lvs!V7Ammn4u}U3yVeyfQ&kUjCNyPs4&>e>?lE2 zStAb?z9-l$%pE=o;*O3a{(X`ftcm&z8N*72jhAG?=QFdUUj+oPCM z3#n9VSVL#=z1Vx7E*bVSDqzPc-|2C#Rd^*;hz-6hQsAa_A;mF)& zQCltbbEH4(F1AN<4tnhDt;NwZohlz*Nf}3Nf|6q`$z{V4 zgRFpql7NHGfP+1^)11QBsk(Ou00)x*2dM!ESpf$n0SA`~FcRSM!pbu~R)MXP1V=dM z2yK_1eM8W&c7cX9WL^DiZ2&Z^NuXh+b`|)dxc*`vaf*uR-gi7@RB!Hj*sXji81ci# zo+jQxn$pW7XmHo&ItCi9$QAHhwQT59vg7`>CQg~5FUb$CtX#!oIo%n8pe!O1udlYO z`lgHqK_wZ-Wn~JJBLe2xHpW}8w2D`9f_sc2xW@#5d(0}54~WtV5T!1hO{*@ag^J>= z+}N6pzep8lG24xBC^d0cUje_G#RaS5?1qg=Sn#AB;-dq$gveHekyPClcEUR8JrBhvxU(W~=K$c&E4!U7wVcn{=EK2h=BvJXr(vTM zIMc0q!{iHw1R1owMdhKBtKQlUJu_oZ9U^bdjy#PraO{jCuP=AxK3je<4^`k^*%o$O zO$!Zw^1;<5rtSq&FFdS@b4T)c39;K&#|buWMX+%PfQ@?7Oh)$K5|tFe?Is{>uUObP_{r!!!GHgVB__AFXWk;B#Bmj= zwEFb>$D;KSW69D_Hb3XvR*MF`pE;U1zVTG`l>hkDtBJL%1v|s9z}cEeMv(0+iE;UE z!#ZRmeY1V?MGJ_WCy3lgR2taD0{rkplNf46tY3)d3)pw8x6sn3k$~3Gtd}$8n#dDH(;N35 z-!@r@bRJvfRa^yC?u#IUg-F|iRp_tPh&7w4qm(WBCuM3un<9~)M?%(<_R$dnx@H!{ zTWKGz1||XSasuuu0`3L??yiEN_Tu1Q_E3)J-$np`+fi5stcV*>Kjr`%7|+)KDq(ehPF7v`vfJ}Gl~ObG#vvrkq5?~rjFFX zM`1Hzzj(<|JKCc7f)<$8Ew4rOo?eT13{fVgHNU)$C@JbQC zXoCeU0W4?~U_qk;3mOkt(A2FEWON{8JRoFhU_pxn3);a$ z$%Zf5U_na&3mOGj(CD;EqQHXo>mixXjy71(62O8+@h$O0hXR~|x3q6oW=vae3jz&O z0~0H9+L7V+)q6=XI``dUrOnx3GzHITaNhOO|0>-GX*8QaCd%DN=E*4?(&sgQw4`(rZuV?FyX0EP(w zh7o)vskWa-Mmnq>Even7#56#Qwb+Q}MaVRE71MKpwV3(HyySxjgP+Yn9@yzEu;i!J8Le_49 zu}$mOB#|f$sY7Zqq_z|lZoq|!Pw%C$AQP+MRnYuO8B*U!1a%+lrz9$T+aq&Sy|@+b zvUQTLPMC--;$LPg96`eqWnotT!+J9foQzqswm9K}CcUxZw?vgoQFCSO`;Tg-4ZTg4 zBW7$Kg)=-C;_lr>szlBdhaNl<+xe__r!qzStH?M|Fqb3T4RAM(vjDiu0JvjKxN(OD z7mWC?(A@=Sd@s=WNMK$E9zf%VL4YzqfTWi)L>Np2-u4zrl0C9r|Ld8|Dkl(RbM$t# z$mDZ`OyR`Ojq9=>Gss%~*8lTb@4AWGauQE7f_*`!0m*U!lJ(L~z%}GKI1wCsfE*2z zr-7$ST>Mx%uuon5a=l;3Cv!7=WBSK8hHp4=063|W@egXeTuii-DM?WL&wAa_#LWT9 z_3C{oNiZ*X*fABF_K&2Zf6=qry(Svdxm zqaVZIa+G1fpq?ELm#V^LPmwE}VM|TfKo=66~68O;@@x!|6Gu>7d>jT2g zCY87UZ4BG$f9wU%8bloAUL0;Ho^1}hJ{s0y9fZ2l(8!3+AdO|D8I5Qfhge8egNFK0 zPBOQtc{Z}NX%2?_%r47Z#hcR%z!(zjVBs_yL-j4UofxFZ4^Z)JFj$%gwg{G{jmC?U z6O)+mMQEyO1~j!#V!Mut2-bzbo5n6M2E!B#iR;+#m13O^j4|T{Y{}&?q$5iu}8}m0L;E5%z zjRoe8_0T!yUE;{Q!g>-Pwgi3rqMbr#+9i~q==C{cDzFB6Orsy!=-jHznzr#4YA@X2 zhV2T2e#jG?o3peP(|U~N5{@#prDj#h@BL-<+7YuqN6oncn2oq$^Ek!HlCL6eEJ>#& z8^zJL7T_4N@ZRmZo-huv8724L#vAd{IOFtwjI02;Ws;A~E?0PuG@?jkg29VAB(Zxy zZT-6Yt7a`bVQ~f)YNN!O0a^F%W*s|`Mg|+|TZzvHRNP-SYcC4>;Z3{kA4v?@v`Ub_ z7g*-oV+yByk))0Zq&dO;kpT}OjDWK=GG)y=z#wkGF3AH+YoGhdw3zlOsAAjpqj%X%`G+i4S4PFe++#zJmYv z?(=JAsZyXuyoZFrSbz^{03W&so=-W)rdOZvW$F4Pg~DFau_tEg2-+7EV-EPlh@TPR z_`#GihEM$6_Xto67ryJn9|#ikbczlGv!GtIuqatN4!jPxM$Zswg%;K`{B5o;Y&3Re z?ozKMdTx%=sBiT%0*yfmXbk8;V{qLURj}MjAC}mIepn&?M9PA6b~;7Bx`oc<3Zb=D zN3ODaTBo%=Z`Vg4f4-#spc3>32(b92WaDdcb<2|^@r(Z>R`j;W5&z43+t8!@p?}1> z#J)YqE4!G&hpDFn&#qn9$Ko_H`K#{v@>gWK%P*vWCW(#_v!p9aOaVI{9oX@%*XFWo zOu*Wr!LT`%2E%3@44V`(OeI|g!Q(*>vU{km_Pp@CIWukio}ISMd2@Q>i95vp>!3>O zhZG1J2QE<8!39bKT%e-C1?sfq#(SqheE-%*f-{OwnC zbX|=aRb3oB=W{iu1{z^;CoN`^U(^m7#J-x{+im@-QCt)Gc`&5l?z*MzU014=(`~X7 zTaDh&t%@3O|BHo`JDDGTgW?iHebDe+H_-WX&$4ji_33_o+Q(?$N2f37G#?o#UXRhs zN!I`^=Dq0)(YmRo;N3r>Gi!ypAs&Z=#vEgN%y+Vfn*?JU<4wTb>$<7P7yhgpE~VDr zy|xa(A@pK*?agHkkuO4%MREnnv99yz=_X&1En7Ke_t(qo^x#j+1(5lZCzKgVG0#74 zp3leRe6c-d|JWq?NNE4blP{FrEHRgDxu0quIxHtzFfdZ15<$~(o%l!8hzdX3Bske6 zey;M&D&`npI~N0oj^q^_z^m8mXhKo2yz{6Nn(eIPR*YkIa? zc=Dv~zwy&~n6tg+Sc_JqrYJT&#)?1xPrc6LbBipiUrz)l%zW&v5RfH0_@BrB&FB3w zH}d`4Yh+?LcTz<=K7af~-|VA&JR*emQhhYZ5#$fx|XH8yA~-)fhCqM2_*!S7C}G|DG`=kx zkP?<|Swu?d&iDDB_ruKD!$;1{Gxz+iYi0n4;|6dzE&+$*z@Bsd_WM*A=%sHg}##SWl_)%H*>>fnIrsr$M#Bv570dRniyqgl87Q8spqfm z4Pvq#E7YL^!jGV==shJRAfXQe5_$`ZiQByaK=Fvvo?!mg)Hv>8v2aS=?GHge{jZb! zuk&%9{hfbcf{@y043ca?@m2?E!ojgqexuU1V37OejEg8-%un0lR%@>+Avaf>7 zw>dV;Fa1{I@Q-2&T5{x1)L4Z$s>-WcO;P>Y5a8}VDf@fGq{c$b7vsw3l;43L6 z>IVhHviRO!FevO@O?P6g-tG($w)c_q+?}igk={V=7G$1WIG(u;>jXs+l8}xAEb>^U zcEn|q!FSK*=pWem7l1DK<(RuQZll2gvf}jj`$wv5)f+qpX?%|Xu>~Dww zO9YCPjRnd21cyH-o{NYL0;7BaEcqe7v8QW{H4l@yo??~5GO*Bz-q=OF^f-fj!{R@_ zj2MX!|6q9198$6TmrDcd@y4XrkJ3$^_c(*vM-Ss|qyRuj_k`U@CWNEN39C=@Fho}O z%0^49{^gTwi4>x;q!Ki?588w$PcLH#ZwhAoHAL3gZWoy&kwTt_GyIgK%&Sxj+k~u) z#)v!biwQL#nuIeHIbbynib?HzGq~UzL>MlIxEP({RKTXm%NXMsaL40^86J+OOAule zIb)4#9%DU=PsMKJsD9w2x_~#X=cF%-I}XW<1!sqisicKmh1IA?qZL9}C{MXMakiKZ zx}OGWu7=3wV`P`#&h7C&z9xP!_$`ECx8WNbzjQhY;fpe8@8AIzFs!ko6WZR(>ir?!7A{~JwACB;{`L_YoZqo zZksgQde46}V>J`Yae4C2Q-5=ZEvcS;;nx0oo4A4XcraCmtbrSUirnF3ue{K099z-@ zIrf~%vE9Kt@n1$3(JzU|U;|n_jrwtR1QPvvG<(S%Qv3Tk z*6NQqEWo+M2KH7s7ut<%-rxU@0Al=`U1H* zLWtj7Y83pi3O2y3Q9fPfJ!o&2C?c(3cWKLO6BY_IAT@l1n*b?e@a9Q;42XEH6!V&A zYyeVM29WwE0IA~vNS(aki9vN0+h;D-SQTX|2Z`_mv#7Jtt-1nD1Ih9NWyx3}8k0@& zzE3;N1(eD@Z_UKZ)UAp``9?9XLU(GGz9=W#n<$pK2b6ysA`%ct7*aN2fBI=BcGpGu z^lX9t?X1fwn~R6VD4WX<>vG*4T*I^x+tl9-I}e}km$903e)@!R+I6Nd=`6H0I3+XH zZ1j~Ns#uwjDf8Dz`gNa`7b@t=VDjL%gR+k}S{^~8tk!tgL{jmn#Z=knYC^WmJ<|nj z(!0^DOwWctJ=khxu-q`Kh#(VMfgtpXyeO<*uD26Sthu)2F|@oRFVHXmF?XFME1a=* zhHmLz;ZCHT5Em%XQMXegqW{j)?(2pVdm%dm9zG=OafFsIY0@(W z7Lz6kl?um~22X$Tm8VS@iQ0$maJ_aj$X1Ugwv(R~S3X;X&Ic#Gyw@cIOhE>~6wJPk z8~Kf&Ft6;xpcEmNF%ZLc{As7F^r5nkRJT}}wN57=qR+CK3sJ1x1REYaVl$0TLEoFg z2G+@YUB1A5bY~s{i_Qy;c%jU&En)kY4bXU}DCj8Hg2057ZF`;S9KFe>POBbw+c=>` z?X!pVHk9N9_^;;K*E|ejkgT(bNV-M>vJfLH-g$3zgvzf}yD7y5my zNh&;lbHDv8sab;uI78$W=h6)ymtS~4DzmQg7ep*Z@8M2AXWYm8uX_k|7Hs~s2Z8fX zR|5e!hzGzyG7OT5Gj|BILI0iwMSLWV04jfqH!s&$6MdBdaUj%%?8=@Z_obXtlBjY3 z_i8AxQ}lTLyZxRrNW0}i^$ssTTqc=JnbqiD-;-$ebd`#E=>A)&h!?gmNx!TAWtTxb z!lm_$_{F|LVTTaKRU!)`O?kZRv>>z5KA8~szmD<0j`qKf)u{G*J)Q5Wt(%Dbw5>am-2^jWN|sMl&R`_^ zyn;r>M_p0{2s^?Jo+A`t1`#$%h6+KWTYuo=@e)M&5NAppE*Gtg@bRohf_!dgY86*B zPgrx26~RAP1chv(9=p%uDlbhdvRz6QGoE+E`EuJJ6@9c|*h-N;K_ILj>PI34koL0!k(vq+snt&>NU{U4NyS`WDy%NS&F(`2{0sNhQHhW%{Ab zy{XO;Oysw#uKm0!E|$LHMRy+GyVL(x%&LI{JOY0F_ zYdTQ(6YK!55VMBG^_0d}Ab3HjHVhRbQogb ztcEQvj4xUY83vG2GS1lKC`Mrl^?QNj%zTg z%O)yDll<=9AHbofe?Mqblcg$#uY*g%5YQ^s#7 z{KM$~K?-c_sz}*fA^rynZtGJrr|HCGYNnbwSgPtI(3eR#8V&%cd}?QAbw;#Q^t+-! zI%drQF+j1f^-jpLg0+aXC9&9^B;$03t*Ef(*S_55J>h-OL#K%s4gpFd00__kK!77U z;iU;(VK^jAxVHFd?_6CQjhsmIp-vWs>1-#jR%IraT)x9JK`yeeWF4;@9k~Bw>3h1>ZI{B~iH^7r#4A7WxHxQ~NWk#8$az1tH&! zZVlqzxdEqOI{cm;55IUOqII#yl%{D>v2ahJXTSv(upo};q={5&zyZ}&y!AG>I%@mQ z7YlzhL8L6m*m6^4GW2*p^!Up|+Mb=INW+t=H9Paym&IZt8q$K%l@q6M&+H|Fb)K)( z{r{Y1$=5}`4k&1`gdN7q6RktuQ}!Dl2}N%jNdrUr_fxvsADMMm$oGu>a_alNK#mMQ zL)2nf(XH~|er1JFRC z0S$ynnKDr#^d;AOTz<_V0wa)nfJ-6|;Er11Zo}XN;_6er2(qC^YVn^9Qwe}*86+t? z#-dE7{+M%6?X5<9#P1k3)*r0O*hXRnc;n$5d?RI=xN5L^0)Vc90J_>LZo~sXFE>5{#yc~0ODHIdte`Ktkt6`5B%9(NM=0&6Xml4=@D_M8=F#l$y1ll>cOf(M`V zt4%#p?tW?N)j_q&!%Ed@D0_7h5B#LX;#I%f|9xGAX#1^!)}~VM(~B(wU-N@>Ht=<$ z%7|qrIb8};CZZ7;B#1HcBQdIM)+~BMGi7rT|4~O%+=kDu^q`~1qcLUgyWWF*2={Uc z{%Dwd)f3M&H6U{!ewjVNJ4B;ihnT<+q*7$-F`uQX*F{ep5dh^4sEVVK6PO+9b+L5b z6)H0tbsrPdN^5jqClk$6U3OD{u@HEv4V~tN@jwSYKj+*Lm}y2-K;)O{}2qV%gC~ii^~Li5Xi{>uc?A+ zkpY^YkYU z`O_H2B@85Nef19Gitb^s9^C9qzCG7^w-8`@s5wEr3dqFgILO z#T#?%3LW(eiYhA~+XvnJ`jQK}p$sAp9$Y18G=Et-dsD;*sJm3Drk;X#~ zdseH7Pg==u)ut^?&bA6G{R~pzKBHQakE(1=PV(|(?_FOSkpj;EIotUZm&{jf7~0nU zGn_B}bgc8%xT>Vl;w!;Ux^A3C`R*y7PasQi&1#{Gvg)i0uDsT6o<`Gp!_EQ&!FvP_RAabIyp2Qy0pi#?-`E5{Pb$0+L>P#G=I1EkQ;=-2Y%{& zh-d%8k{$KqeSE3OLD}D&HN*Mp-S3|zYn%S#>G106gKQ&w_OWKtz?SB@urcT2a{Ns&t)B<`#7Lp(1xFl9o6Fw! zK9;Ypwyh}6O<~=)%fu5yMKf?Icr*MR{0vS8k3|);NIuGzH#)R?@ri+2*)h)ah3Ih} zakckp9^=Gvp|2ZV)rSXv-o{xwc{*EJZoO>nv6GrEVoCP*_l~kPPSKbRJ?^%4 zICg13XKt;3mvq>wS=`&j*4c5~(kD51kq7%UvfKm*9%u0HB}Kg;2X3oSXicE|^IaD; z%0j}c?&m=aL4SIVG-Tm#SpAa_`}lQi$=W}bf8LV~Fe%v^^s_DqO^>-<7XG?!Td&y1 z*2z!pI&GP)1D}v6E^?mdPmJ}rzT4fkpg!>;ibs6o zm|A`BQ{Nv@6>qS}>x!LFqqN9#*a5Pd;WzVX6S281S)Ur@fA{q+KdDJd)c@qg(~TWJ z9zGe z)8S&(FKQ0+-PA4<{|$IiVa|3A_V;M3yk!}#!1A|vO^)R+=h+935Sgv-?WhlbHm}_% z5#$ONh>N*Ts!*G#Q(hYD?%<3GeST8N_6^aFzq^0{srnsleJZS$=VGF)m$6v-yK6R>dmx!7$ zT5kT7qXG%T{-`g|$D%`E>W(r^lcNH0!@j5rsHA8`rpc$WZ8hNri_Eh1@Q4HdHO?Dr ze$j^=1V%*fK|CDRP-Hr-C&!vvqUQVQda!enICQ4+E-;eR^Q|?v)k>w2^+Cn8d~c)0Hxu|mAV`=TCu6~3Nud2u7N6z)|N8irOa8lMKs9}VNwKsPgq!KaQ+1gXY!gDIIt%VT~^#_@Km;k0t zpCr_#R#w`tn04W&;O+RG^|GPVw@SGoJbws6s`eBki}4qAXTy7LYRI5Ma*9#6OMf-3 zYrUjHa&Cv~8D++qop8gURoKxwD(EcX*-mSZsJD*h?El~yVc}W5h+FGjfRuCgOQZD# zpZh^3#E|KK`=~Ho1^xQLo_*_|u`wYrJbK;Hx>_mOzK!yhZLK13@RR(@y;SF0 zLfde$>L&V!j)m=y|LN7bJPp5A*7{@S^oWl8nUC-1uHP`H7fKdCI7XPsipBXC-yEf% zuMUaEWzG$}v;g(l!ThI3J$=uw zn)QICN>@q#udb4`AAA)4P>SaKk`_9}!1nKbmp{LoC{oO>^$6 zTd6esi-&nCYTZEYb;VTsp*{i4Xzlhkzo7v9=6!wm+)keq=Cx=uSgylpcz%0&V%5r; z`F8nVA4{zSdI@jBT6879@n_Vn_2|c}KV+oj2C`0l-VPI!L&thif$t23mpgZ-B`^x2 zE2X349rvbmSL1@=`EeaabXRl04^`^`mCRiKrlN!R(}mpko^$9cg2OO+0B+MJcb#DP z4vU%sY%Dl^M=J03U0pBr=!5L1G0!V$R^KeELN*3NtgI>XRv z3I6L1YWf*4voi;)?Z4`N-}L-KF4Jb=X0j6b&qin?Ir2in)#|wkZ7cQZcKM{8qEBRB z;0~4cg#mhitSnmP^`>Mv1@u_2g^%icG}fA>-CKqZPT z&@<}EXh6o8)$b%S9j{ymBiiet$=Mzcq&@>gI1r6+-cWUguk=SWL*;U3kPFw1deBy% z0y4$&AKoW0UATvfc-obO@b2%)#;OMLw2Ak$tZkIb0b6>Odr1|K*Qi`-4q($+_m7_* zvnZBloS(p^Z?tkvMr)6po66JlD|OAT8yBFh(`oS0cR=d4Es8f=krOWBxQ539jN@+BYCs>sYe%%-^*%R@cFXjXm zmED?x=F>tsvAXm2Ux=mBZ6?95{aE+%B)&(;A=?95fkiL^SOi&lz{UX?dE(qzCA3NI z0;Kz=wi(6qfvDT6$0!n32g?5t?8qUkX$w2oBq~(0h`qTpLu5e5Y``)%@f)*q`sQQ; z96wMNeGpGhe%!4Qfad;?{4g3FP*SSDM?)DE;Fo3oHz@~A$(nNjBlhP%R7A|^yKvciNn{rR8*rBy8$!g6jb>)rqi>a+O`W9jb22!-S`hLuCxTz$}zKGVS(+hL7!R#;chRm8QtV-F37^cPPn7fO(!P^`_hYX`y#kO4LO{N|el6 z?@yGdBJ=Yt6GPI|T18<};LTd+U(&g$ctPiD`+ieJCrRINnv>O0@rBq>1v7;eb(8el>$OxL^aJe>&IJj8j z4hXtHhOjDg{MJZET!6Ukf>6jXRv5>IM#kVpu|?{sc7xDnnuEnk9L~L5ujs>uwrJks zh8x);Lx5odH}V%^PmIT@I~+4%EW4>P8LlV7(C>qs$0SeJ1GH!_Jb~ITE(-A{$Wo{A zV4YG`TUD^2iS;$2IjE6y;darvm2Ad=(C z!&YSLeB2s}K*^n5{mQd4Fw*#dOa1bx@f%L{Yfm{ye_TCEMyVg{djSFJx43ph`>pK1 zw{fgse%&MO&u_liIAWDvKvLl6SCE+2pQ4>4Qu^oD(_i$@D?zzyW`dHFwFNR!>7#C3 zEC==?ke{N{G5EL7p1wysjE2WuG_@X;vBnu@?9Va`<0#Qwz1oUh5;|JvJF#rtG?kUrp<8@$=0x-4X*FaQIww&LO+A#;_!!NA0 z6uY-`FZ@#cM&o9YF+m;5Zb$Zy4og_yT>7Ni64y`1y$;G&@ynbWli+-JRX<#`jOUx` z6t_yIcy&lddVX1-EAwkW8Dpii;?;HGv$XY~JC-qUFhi?1?p6jGfJyr@RT>oVhc-)P z%C=jNi}`RDirx$g_@_HX~It_FbWDkzIB=xm)9W2U4> z*?oD~9)2ES!+rz1*%(+o<5$B`F)T30>U(f?MhX3ar3ET}z^9r_s>#`C`J^}Z2%9;v zf?}M#JQCZaAY};KguMdKAf}Av326bq5fKa6Q|$8CeuOqpKHS}5;b60ChT#x^6R--P zLLo8<1Z=P(98E@Xs8k430(ssGG(B_~Ym94*$mxZtD4W&v6?T?xFCMl87sEpjGEaA` z7$gsNmWBlBuK-LamIznILl4k|d`J|M2D`k?n(~RZRyB^3ZX;oy@PtUn88iY*mNE@* z9J$5x?G-c)3;5#V0AE~|Z`9B@EPqNfJdc!oT2CLWPNX8XrRoVO7PK4d3j6?vPLqV_ z*E398i0OU}`7b=JPY<5iF;b3;Gi*LqeIT$RjrS5b6%O|F!s;dE#1UXu~Wr6#JY``OO5gf>i=Kf9RnE zQ3#<&jbJ%|8Xlyp%2Rx^v}0+=_2UbPKx&Z0;T_OHltLcD!%-X#_D@dV)L(u<-30X1 zCHslzWmmt#{^tgAcib%xdDonZe;`p^Meu_AQ0EE5a3zkp?)E%Z4rh)djAsV#0O!yS zOBA$=tTWK{1DO}AzVUw2A?KF2_SGDUB)>Q@>sVxP&w$@ELM) z>;lGWi%(uXX(%ql4p7@R$FgDUV()s@MBrq!-@meo?~#Qj$G*8>y`lO>Xr_X5(U%e* z(rlrJckukl#qt6Ep(9o>{hbsQp%iq2EfUoCiBCD1q=3p$cFTQE{WIH;kpM09GEYRg z=7|YO0j1$%gaCA!4Y(}hQjRDc`F18y95?m0;kQg-V6M|xb z%?>J$2&3mgQgMQktX7$_+Xx!ve@b;Ht+x@{p$oxI z^w7$@UyZBJ@tYXGQ!GhAGxM6+7w{%xO&9PdK5o&WilL=>Q!8@##b-el6jn}ik_dO` zIUDeuBq+e2c!Ur{R)%h=Su#W46zEgT;y%s0#-rw@xTTYYupvI8^4My)Ylt!a7&sdq zST&SRYl#jehACll=YeO=a)!2s)6t`uxc}*C^1O3R7!ok`e;7^#0F|oxr)sc?=TuxiI`TF*Onh( z;+zqSL(qo$CHV0pd{Dz9)Q>FR%suH~K)IrJmE9yV-%w&%py2MJ{FTL(g;> zO4KHbRyhF1M2Zo_m{Zt*S8)$t8;}nBqRy3>c!LNq8kkZxJqjiKL*heM3SK0D=CUt1 z5lYDJ(2GnyN|gzU2x@jJa{gXzIxWg#6~5PeU?Wx2R6bgj_XR2h)JQFM6P}7NgOoA= zNEN6PNFtxHPx0)8{bKK6zaR)Ez~-P+;VaUE=s;BvaEVC-=#YXEDjr6aK*p~6Qgsk? zNkN37XP@F8BUuwFuqHS~HmEv1ks!$jdFl-={|xa`ZJpe{iYS7ixwu}hQZ^Me1Y2v$ zUhAr&q4G+wr1_47u{J7n>fYqr8>hqDv8yYbMdv9W;3pLaDeR+8wM5QFbAmC7>oQW3ZFH_Od$pdm>y|lac4Fw1ed!5FbB`G6Z3Zw- z2h%~);ZzjHz09q+<_5QBulZr+GzgN-k3 zQH}8oh-;PBT=WTr1H~iN^jGP+9d87YrIfp1t)|EqdYY~gMXBs#OIv)a~GX=%tX|E zB(o-k>Fzeg(?r>j!}4F+YqsRGNd8wQ(`2JX)y zruM#Fn9Zn_V_cEE^=ql-+r1O*c< zDnVjd3;P!+GOyRo0B z@qbfJeL`&UNGuY}-NOeoDHYwLyHd8*!OgE~>b`FNYyyiuH355Tjh=FU7zjPc zv_&1%t~ZBiKeB6B(^Vb1^J)kE>p_1jN|u&)a?D|o&a#Dbl4y?{2qmf0FA<)8>C@YN z-?(|6B3-U(UR+ZEWB#mhQ~L#$-P6Wg;Q(o>&hEWR9`4agnuSGJc(sL{;=c0CbywzC z()9~#Cyc}PDRx}$`LFt!c_i1gZIMS%BlgojEJZ}2`oxmnw9S&*wC&`}7jGZ)ZM0k! z?l#yo)Dmo}bwavZ2%6D2f8=}HyC+3QLZIF2{eo^6scc)0wqoq}i5@<+1tvL}Jpn|b z>QSsT91@MzwY9Q(>t)W%67dL^VTH0^6EjmMHLDTsnVGUY5jN1Z_3kj4}&$!A$u?JUno6!kJO&Q(}wOG3{Xqu5t3b=`lUl*jB*kS2MgIcD2aueh1g!Po-H~YRUpPfE;!d0R+}!xXCY@f z;1TE}L`b}+GY+;DDn5BhH;gFlG1m**`t^y!Pd1u5RYVZ!*kcY%XxG4l`MRr+&7NoZ z9~7$|jk@-@(9gi93%e=$qr4A{=ynlly?){5tTWyLs^+vIoeVQpHjgSWl6U9+bc{&p zp1I!{HDW7VD@69h^^(!AQH!>2yzj#5ljf-V-R<MI5cv;upfR~&qdhHWx^ZEr#O z0l3so=8#Y==*GQD3PFW>GWIlL2Qz_sO|R8B^y zQAqPEb8(`HycH;ly>aO|7?ooOH4NCs5P2e=4!Dk>Q;stIEN0~gQHjRePIStgTAR?K zc~5uT7|x*x9?+x^PlmdOqNg%0E#)Xj>)@TMo+XnqF(#4V86`j@U*CTf-2RVB8nq+b zOI%qW2hv*MH=q+*B|`O}n+Uz%;?kmpQ{167&=!I=aGHjP8kBy8vp{H%-jK!yW=X9q zx@mz6>=ZzjU_+Yon6iM-E!v5XId>qEJPEN-WmFT$Qp1wnszxN@2Ln1Y2VG&WC9xPzSeYh{5R?zsuMKKz+Bx z^W^?s^HBJzd!#-5y;u9{iLZvq^*%d~IuNWfeW$W>!9Ay(@x2&Nb*qwN93=+2nNJskR$~;g%@YKBE)E9? zMV3h^vP|&&wiAqW59#Z$vV)!D)=Ly@W|E;jqmCZnPWCN%qm+hn~zVcOh2V7FoYzFUZp+kj=D%IyAO#2^87H`y^~{#0v7~ zG(e<}6=TajjZr5>ZsjA!k^(3VTdtj@)ap3){@nl3{x-U zLq$1^5-t;E7$*LGv9VZ@5-6Eit4GL|*K$@YY-TvFLjU57AZh@*Ss+K!6_<`@2rZ2a zLTs5##DVyeB_Kb8BAtYMI0|;(WYSDNcUIDnn7Zlf+NZtlvf*Ti$ZGs~BV6D)xDSd^ zC6Fd#mttHpIF3W8n+B^(eBtaNgnsfP!3|Q@&+dV0NiLIVvW9*m zk6M=h#<=9pXD{UCD@9^~qB&lg_P`O}mt*N-T=dgDKJ?U=IgCS>s#=-5p;R!f(W)ml zuiNI$7AJEda*ODt9W8;1p7Db8#)CK1 z^A2+%PIPLVm@K|AZU&8sFd5Ov64a%k<%=AvEew618uXY?gy$L5lW;;j(iFPOw?Of_ z&`F~)PRqAa)kLzinEEW%&~oTrR;_qucELrjtc`|_Ak92%G2KD8bJkt!AJbE7>@rZj{(*uPx4N0p`j>s;i_EWKwXqRyJ zJbmdNOZvX2hOm~@gcNI$fr2gO>5t2bC`oS(w#Xo8@B_vo>@h2ojI~b%t*K}qLreW7 zioO?inkI4hBr!WL24W1C&y|EKuJ7JNVjP~)v-A;QQu)*=Tb>ccM((`T>Gv^UrcPe0 zqKJ`Na;LMGaY|||#Pc1!oa5_P3qN$&AnV1&jPdPp>^Tr+tU-IZ?A}rtBg&(3A;OW@ zi0i_1y^$BwJPvA*%ye+y1Jn}V9}v0vAqC{y&}pyfGgf4UrIMSC#Ng4E;q|_35=)ew z;_|YSLJ!XHRJg+{L#nvr?mj~y_8f#A|KUrjVM_rEi>u<;96=tuXT3+sfkSV5C*h)h zw?4}Kl9~y%vSrud;|Ux|5ppyftugzLdT{4N?KrI+8&>5vN=4HC?WSceFxTjCTRqpJ z+T~w<#qL%|!DA8H!O-V=vwzAb#jwIwl0K?y==~De@v{qYn?6bPs{89_)0Jq9u${Jv zS4XvBHqJ6liuKi^q1$HgWRx@eOARVH{(q5n()GNNohUiOzYSb-`XkK;WKhp|v}!V1 z?ZEwHH9~VW>P~b(btNuGk>%}9^y><=lE!N#M8$_o)>7!0xO1{?qiwWp7Q4}H?(m@H zypP#4jpDdVLlX^erC2TDV*`_+qFkuH&D!&xB{kARd~R=!&XK(Q2~zGU zw{A1bUb+pex=j^f{;PBjUtcRrCW?dlJnpqm^~}}qS^YLH+xFeU3HxADFUfziHt zDTuy|vXIAHcrlt% zW!Glmk!j`DwJajF`kL6HTSKxf{rKnn&i#9qt+=wc8GDv`#tg5~!JCayduv3Id%1=& zBJWI1SPz_;olOnj3Oo(A=)UwdX){r?<6~GKktlgC5;;(${gi{psv;4R90~hc)tFCW zC{?oPG1OON@l=s#w1NoYZ2B}BW>{gQ6KRxUZxp=X05jt*q46)B?yi84##Hnb{e7yy zGn&N!*;by4-kv#n2AOj3^RY8pU3tB(Z#MVZ1U*%e^kKgr{3%W9{8`O~ofb>5PTEw5 z>!}n)Lz8Si5 z9Sx1K*lix0Wd%xARjn91nFtx_k~A&GfpH+*hFHCulYk%dTT%2vq~6o^kAIx}=m3eC z5sA!yeBUlpqVEhcF7zMiI!mN`cGSHu#Qwa`o2%PL$LFfm!r7kieNVskYkMaR{D1T~ z6A-vIQV#;e-%$1lT+5Ph_vE$#kH?;BBnpTeh$T=+sET5C=={NfcJ3^nTdAx2zy$Q%z~v+Vsm0)bPT;Qs5&}#4!s3wx0={Y{#z>@ z$5WblUCyiwZ>d&eyk7ff{UyKEg*feG8~wF)cwegbHuhC~-Qw$x97S_b~B zFO1K{MM@q{Y73U7(X$$hdTHp)dg&n6^cvo$t+``ZuImc={-s9Hk+l}e^rbK-*;U*o z*}Kbrij=5&hHES&SJFSFrz0sC=GshHda3sp(h7TMICc$*!6PyuY%-j4 zhpy|9YAKEB*NbgpFFncghU(yS`(ZV!*WI4k!gtFWO8bsapwk!^PDhkj61s}c0qjM` zV%X4n_TbL~?PydvELg0h`G&o+MZ){vW-p{EH_lu*NTTHIxITU1=OyGcli1E>kG6m6 zjYy>P`q^Q+o{C89_FXwQWZC=xm$5SaOf8oyweNtcULIbGq=r;+FV|0&lFr|shz)f#iexc(j~!e7NsBVZgMz&cwNxeH=WZ-*Qt3v#P z{AGLBUl%pUJQ?DsPx8UOM-J6RcLv6{^EWwrp%XXM#n}5nA|RJ=J7b7WkwYDg*0Gyfdx;SDQ+8+ z!)n)7xH&)kCX3%VXbQ(Nhz$H>% zmQQCW9}6V;GC-2Q4kY<8g-nKuu|&{5839nrdYOtzOd*4zg8R8>zhRP5wTuhc2XjEN z(#k_ETpc#m+#u1_s)bOh=~aAPt%Hm4f0s^xw))^j5xF?YE``Ho3ELaIub@_*yNgP9 zoM^336RLrz%Ga>n}7N6=prOEbt+lV+B4f{b7dj@3_$ky4F-|2xa4jmki?1)3qyS~?Yi^ekE5 zxm$96>Gy1Uak3EOO)wiTiF9o$cRZYA^c0y}x!2r;Xw9ZiO%+ItFBBiIGvHWK%;NQg zdrDhE8)Rx;{cGi`xi-ug@PuTyAl4~EgGpR0afR1i8lLqvrJ!YNN-A}kUON|CG5uSY zO6QjC_bk_rZ}n!A8)({oYr*tiiW>{iE*@r2HOt5ZcXrhFWPdT;{3DURLBVyS=njEc z>oM1$>hSRakC^;gYI^8^=X zuG8s7Bi3o`UNW^%7GhdQ<-O9@Vq>*G9GyW zV?WcRS)dGtG4r1MF42uz;=Ce~J@}Y(M%q81!fI0mr_;6k*8Xw(k?*~pF=$p~rDKpp z4e^sbv0B!s_Ul^6gxgr0D`BMh6D8XIdPKUz>HeXN!{H(=V=Brg_6#YLiXKYx6ynT@ zw10f)%_N9O@swAsinNzJbYuDn`Z-V!H)k9mMn$=aAbg@fuTl5<+o>|uQr7kz%0h-^ zV`4moNxDD-JPbx}*MT+kvqx;;gv0g1B~K^)>=R#G&zSJl$laV>VK?HffajJm>x&Ls zGe5W7%ejA-kM(z&X=m0_&32u|%DgjLusyvk*P45Ub|0=+fOo=uNv<&rn7?tuABk-z zm6|R>qM)9_I!w{7Wk>Fo!+HCCO&`yLEE%Azs6+PGK`4y+U!j`bnh4BA7`n7d17$md zg*le#V(WTINnz9H8GVsa&2d=0aqa6#ihcHstIP4u0_mu=T$MK;yKO4gPQ%Sk-h zjj6XqO@Dc-U-7=9TS`2BGc$J2GE27+*P4n$-*6=r=Jlvf$wHcb{KvhEN3itvo0)Fh z>U0x{d~bd$71xkHO1`msEw08n8}W}ugx{A7`scN`!wmWjW(>v*R(|an)WkpO3sX4M zG11G5yfsTHOC9emoCZI;sZ1EJuo=a5IqY5_oPzi!y>=e6PfR<2f!oEHk(@SxSz(@!i}HCU3pDx88)3{b}3=CElvuuop7V7itK-3qS2~H|owPd>jV1 zVP6obk{3AQm}UI_AKQ^1DAP4{v|a%9 z)yHyFC!r4Kp7yUGJAV~I@d?FO>Nt;_Wtzg^&JC35y3TqyK)L`<*N`8yWM|R)1;Q9s z)}ic^ODvxKY$0l7`&biw^U3rJ4Uf0sN&&871Jj2kyUw}y4*8<6IWO!#!(c+8jbMGA zx@dDJ(;TfWq7-iKsZJq%&8R=yxTfPnS~NO#PgTwXs`Z?HB>JVoe{vtl*YkXALJ<>o zXbQEYcP5WFvFuWsk2e2$b@k(ZhIi^)ZSxCh^XCUy#lw|^%M-`Xa9p>3orZbWNqsqM zf14ez_03`C4yCkw%5YuKLivn%A#q%92)YhSQm9QvAY z+cGHrTST&=)-U^pw|u}zpWO@UF-^D-`q)cYt=FdhOA{y8_^Kx{0={QAqCnFi3Vz31 zMSWIC7@(FJ_Pk#)bzJ;Rx#7}B#YK%Z{X`dMwM{dfs-bd;Eb}Bg@LyW$(JHS;mQ=9j zmL!T5Ec@cv7>C#C!V9OHqMOG9eE{5Pe|gm2^rKiy>x%QE(xpv!;!sL=I`dPRYn?pJ zL@(6_qrN@#aoSWVm979~U*Z)U1M_~jPnU5_38Owsgk>J4n3S;8~|BfZfX3TsG;7^0vUs))YOI0SQ6{r}Q(Md`RQYW>kG#F8)(Em*3_PPCi z?<{7*eR=OH_WP#s-N9kxz1z~=xd*Cq#lwZkIp?1=lSHedY$cCR#$*h=Tk6w3gP7Iv zwxURnQ!W>SiqBBtf_FyJf>W>_)$-RctF|@W9*rNl$)T2P<#N-ZFlGmiCEF4Mqc?tG zNo_j9iO^&+JDAlRt3HP^|7U2VCT{}!7a0Hdjl@A?0kJ4#EVtxfS>}}K&}Z1P$J$=1 zgaqJxz2slB?tVNh9&1$3aqref;XYa1{@zry{K{IX+_h)Sp=$m@S`+iCz?O0q9Fs`b zXMK{z)ePR`IdpVZ!29QJ?4AV$_gB@XAdeG=La)bUeHT0R6((vE)* zhmp2qaC?G^|G)rEMzi9~CJ_pV35ibGQw?ukBiLzF7K?}`Jdzf;CHXo>dtA+|v;_Xq z3o$RbHx(96$Htn<5v0l63%?O`bYdfIiLmSiQyAPt|Dl>y0mnCCdcFk~pOx zBBBLv!}A3Vj~BTc*%AkGa$a;4qs6p$n|OSx5I%0ZGZy{JFZqMLjD9ra7ro1l;FW|j zCrmYvws1ibbC!ot9PZk7je?G_Xo#~AM5O%sZh*JA5ZX#xx37swZ+|))njJrtdYPKI zBeADbao;Xj?rK^4g?D7HS?j$%7!)&1X4_^f zM(o{|om$zDfR7PGR4-FLJ$`!@s9j~+>6jg3+@7CO4C6OY`iv6S(&w&U3b&@$f4*&@ z%=Cq!1%0$dUrAn>Xw;-=Y4qu#&Eu+)QOBeO=3o)zrtrorg=>=En$qQyZM9x)xDPxH zX_jcN@1}`)ifQ5k?6og%K{oS_?piKy?7WO3I#zUCT-U3MYQirT7{-KQZpEKo{|^j7 z^S(*EO>9qM2eC7$o3?h*CZ#<|>?Phw>SfJ+Nv+TCPwI8a14->F{8Uo=76+4>fD>*4 zPP}cBn}ENY)CBy!q|SG|pVS1LaC@J`G{YnIpL@#cgCss=upcGyaZ-kdh)=9(CS2c0 zxW4hzr20lm`wgyd{4A+)>*1vK8-Fc%dK%$2(El>&2n!$mtWfIowyG8%tO9*$EzwbH zx+DvPGn#Qtq&aK4<@(dgo}o-G@7YD4RNc zy=^&qT|T9qLP~DwszOSq$ttFF3tpv^-jA)ELKWJqn$iIVqFPFZ)l;TsN7PJdd%K=} z`&ipJs+Gdo?8^Cb%RaSJs6(5C$KWM=DLs)vxc-mu(=d?2^a_%KW+h|@8zP1%(YTZi zkSztzw}9d)rEbDfH*WtCZk>S`Wrm{-;|wmXlPPs5M13=K{R82;rB)VDDupzIZC6T@ z)HPF3xI{(v?^I&#Axv zQfdSUr-?VpKDwjDbF@i^?FEfH&B3K9bfWXl%y;7cQfjulq%^YXno?`iEv4~w_mocm z4yxpySjFWj%wR&!Fh5VN_RcD$-sy@IdeF0;R!KNtaZ|4=Q)=X{N=a+AS4zvZSEqCz zQty=XO8QtpeM7QxO$vQel3cgsPKZ*PTT0zTzZ5o?Wnz`V=S2S$2JpZ6rPNIfOzHXc zK`C8re{BlOXyrPqPL!^v%^Onqp3>kHhNOg{#EmHwWtt63;U<@!DGVn@q;Lx{GKE`- zQ7jC^!vAXdPR(par_}P@o>KK)V(}c4!dN;Om%@0%9mLX7njcL_DP8Wgbh#^~#{ce= zv~TXQRGOI5i))io>WC&=u1v99nVM1`K*=pSQF3ZG_ok$lIW47)xcm4;EVTEhP|Q7M zlhOl?Gg8`~nVHg(*Q}JZfM=(q1hz+MyNzN&N)uxC9Siy28Y_H@Qux+g{An4$NynfX zMX;C+1f?fZSV}yZk~TJn?oJz<75yAy83W>f%TsvT#U+K6#4{<4x>hktl%7p#@I?pD zQF=awHN@H!ULamf;U!{S3NI6{q@jGo=CRu9Vj6cC#YTv%M+2L+ndo zKXD+1gT%Y+LWuX755$Kld_;Vl!Xe_56h0+BW5+-oN#XO9=3`D#YKJvXU!*jA{W684 z{O>DPCl;_{DJe~Uox(RX{5FN}i0@N4P8_oDn-ati&d{VEQ!3>@mC|hYrxZ@`zn@va zh+moS4DV!0Z?pWC!tXTvBZWV$mHLbLJB1=?)BYxkrBR$Hkw!@~EM+KdC}Su~{9Nkv z$V1~0D@*0lD8|`m`Lq_Yhzicn(zXVXRy+weax7I^4OykM?k239MwPTsm8h1+genS1 z+X89SpkcYv3a@5bcer`Y&su5J=6`k4*zURsv*Jmsfp1t^a|CZ%ZL2Sh#*CRit-Z5A z8bP`Xr4c3~X+()wTI)9PG!m4OX{3lWKZVGqks}&gu=%w5Bf`y{&bMGYRYZYSdX!d5 zoRLOdN@u3^+Ui+p)T7kPY}QX}xwdy{^>J<>U*X@2Bu8v^<{E*s(^~!}-05wihe-|S z8O*bWmaGFyYuMDtq;t|Z*F`t2t5b<4Cb^?x#CayUyQ7Jwl+I7%0^-6nni1EU*B7OA zc>iXT*4v@ZarS-9(~>Sut7~nM#=~qU?lzm3r1jq7M3Y*k^+l6SYL!-xKC84|?`fU3 z7t<@~7>g@lM4PnM(%mToLt93vU0N&a?bE1CbVzG~y(5dpsVmj3VAe9Jj=^gP7(#}K z;Y>q4Lw!Rh^QE)lGNMab1G=thbW01}i8-a!i=Ns*xZINb3MDtLWbs)9G9_1wtdG=|X1&@^r&hNZQrO)EE1x;d@gh0v z)0odnG9r!HWjLQst7jgW#&Y7;G`13>(%3=Vmc~28=(PIx+tV0B&&HC zirMjA8izgdRa zX$3oncp#0rX*qC1m3e86{Q2L5G<+zHrIa3Km7(;g;W4Hsv49E5{}!gPh|=R}EGCwu z@q~r2)EqoXEKB35v_5)yTF(ePZCGJ8R}#;pv5HvDY$Tpb<9T9D8f%Fc(sqkf%c4PPUmE*~18E#2-c92@;{7x}AU;gvBjV#U4iTR) z67Dk@3F1gvdTXDj^``I_X?&TMpGS$W(l|zZoyIrBw`qJwe4oZ~;)gVTBz{WcgzKHs z_=Wg2Ek(DJX{omTmc~!+vLF6*H=Ml`^Vom5C}DR5hE`i0T>CFsUX{D}&lZoeVtY z&TH;`=FU$9G6)i(48j>z<_HnZsKbn95T}&LAeoVrBGMUTEQBnP%jgX}B5zW`aE75S zab^Z*5%n^tPn?}W1EOIDjfitHQu8@CBmEvmzOj8n6T^9iriSy03o^LSq-KVT49$s) zGiX6v!ms6|sbvPOD7DT=UxTP*XhXxc8C@1mxN}nNGI~Iil6!foeMT>bQgTm*cF3S3 z9bB40C!%u(ml0hu=t^|UpgVDS23HV0GU!QMnbGi-xXPqnhN}&|4SfvP82TDu=tuO= zU;r^NgF(c#EIq{a8QkFVD1#xy&q?%gFA=`8Qf`J-$mTbJR&A$Fo~F)!4zUDy(Xq*a367h2GfZd8O$VR zWiXqVZ(Z`7jOM8eZEW*EMq`_~8O)=VMP}u}jM|sQrS)pXLm6FN^>7A{(8{A3JsW*$ zq;m?7WiUUZUUVU)1sUBhwUGJews9HHqHG5hcVprp*-@tR$YvV3oOBO+1^ybHwu*tRdEB@B;B-1}_ooGI*JI zC4=?EhKxpJuNq#<;B^{q%-{`TQwEze($0L7cq@Y~#MTTxtjvjn;cdfq!;TC-A$Df) z)BnJ(40hA`o(%R9?_{u#*q^}x;$Q~v8r~z`&)@^%!;B_y4;wzp=z+VBGkW0eP)5&c ze3H@2gr8>gbkx1JF8o;rhv}TjcS?QxUz>YJGXFkH%7k=hNk7l%Ea?{+X^lT^IsK)j z*(#HcX5`C;(pm%jf7&oCW9w)8?1iN-4FB^{&Yd=L{57DV3gO-|Al&1ON3HOEWrgop z246E0-Gq%JaE@C9zs+cy^T*PsH+)@6{9>McXOaItgX8qiCH^PneaTGn$tj+Ni+&t<_A@D%RbjZ%A`!|eH^b&Ul2zfm)q;&?HQ$V75ohR=%4nG) zk=6Y~$t+S?A#KPQvWA=?PZY8^gQ%OunTE3r^$hh5XA=#wXy}qBi*pR;8X6m#7|t^^ zB_6OZIzOugo2M++7i4jg4Fqu^t*k3^dOq!{#RmK6W?5-EU6j?VwRu(@-$rwOaaMDS z7FjLOZYiV5lrp-QCTtoED0z|(o`V#}P7)T7t;#%UmEUqVNmQ{3b$m({MP+5KZ;H(zv zhGexpGc=1EX>(XsN@A^Q;U-EqXEEI1p2ZxI#VwRl=Gn-sCR_E&YT@iwi|#0kZu_#D z&fS*PB&|c)(^=(SHM-KI(N^YrnRL53M_H|MjLBjw0~(jrG4b(P+(BtV7IzYNWpQ^_ zN2zrB$((Z}=X4;iHR+zLRtpE4G%>4b=LnM~@uQg?Bg?8xOwQ`op($BRrJtkB%Dq`M zaEf4-57V+*3BE6@`)w$>qwW*U=KWdqhEvVvbo+)GR^w(`N=!4Gv$B}Y5Z0SC%%iJ| z_m|cB?wqV9{10TMa6dPzHj;);+nk2()>#_5$t2UGFms%kzQcmuk%<8bgvaGJOEK$zX$*gYHGHH1hPcvp-bFjji%9U9>LqoqA zuCnx8ZRvTTxqCLN%XKd`>A5VPrvpxWUCh>Gv6j*cS-fa?$+Z(%DLi#E2QQmvJxqGV z+KJvKZL6ja8&>Y$$7$D_gHdK>LsrW-lTCUxi`N(er@?OF?DZ@*QhI~+o!Feko5WjL zY$3L0v5j~;i|xb?HsZuC)+%C87JG?zve-xL&*A_v!$LTi)uX?2EJ{vEh5x;m)on0y z%bl)OPQUd*N|_>fKPwG}4=mOnS{eK(t96u*v)aBml+}LKCt11sG%G!b&$7~kIGmLp z#1Zr5bHf*gFSFXjI%-~jWyR*06&r@gk$qvUZd>D_w{0vQq5%J}bqZ<5{gP z|B%(P@{d`qC;ybyLh^~M7Lw^pe}jwl&sp8l|BE^JHH)E6!#k^C?{8Vm=gj-}EdF4+ z{F%kfii*p=@`6SJS^UlaisVo<*U;H^X;v(U;*^$JvX;o{;9tp{PX8`5L(ah5G85r8 zHdmOtQaL-|R!;3_>733Sl*wt#P&OyUvvN6&z02n`EUb`2MFvzUhss2i9I6tpnrGE= zDsG2Pg_lDO{#P@HTEtgo=&PiW0Q21`dVg!~YUfagR*sj`PN63UFC|}2dqn;mt|tOH z3?_m(U0eC1c^1m)1bR4!2pya#cX~fHn$uRayWag53n7-X+a$}`re{u0 ziVo5_WQc4Iw^!x7IEQ&ep6+OPMh z-~UuR*Iu8S6N;8slp5#Igzn0hmzDE!QXXiU)9yfJGdw?st?r-`Q{JtDn>$}Qr&oyD zX63@1bbFiSaFI*1^0qR|q^rWYb`IAOEpoVl2-$x}Op)P;X(=2rrGtohb_sKuzO>3| z875}oZL6e1Y>Dz35VX!|m$Z##PTQQGhHRJ9)v4`sdSjZCrVcrwBXMaCorumkTt;-s zp(~Lxue;^Yol?ePc1k1b@|=$FT#=KuL9V=3iF;Tv?U_^Lugod(R~dR4t~T^G^vUVN zPT`uIlq&k>bRj=-+OQy;K5f68#!LNkZtn;Ka;k;{&6h#^Oh)iJmO za~MY4l*7%$@Ek@Ex8yLAxHYGmTCmR?l~WBrxBThF{!==Tt4;S{g=u6pwzp25_V-2) zZlf=wSrmyeIlRK2q-lBW?u@mRA8XZOtW}G#76LIYCpcZ{@i}Q85l-`Hywzgjj-24$ zpLUX2nP7%LyItp;Ze(a-W#X=!df2;jx&fkPd38(oSawXzso|WI)6i&gPVGy3%gre{ zOr@XqTE#nsPL?3k%z0O{d0$Ry2KVPQiXB%|=w4nschhs2L0@L(@TybW$mz1p**W}B zM1~G?a`=gOAm?6K$K0HI726%`Z|PoF%((}f@n8-Eh=+1&TOZCzEB=w3X-_dOt{Kfq z-RiUIQny-=le*Qy9NKYszQ}U(@f;S@=G7MKCH4(ZSa!JUmx(^*HSbuO({(&g=CCX$ zxYp(=Yi*Y2wA}u54t*Jk6*;V=m1lBTMXb)@S>m}Io+sAiu$FishZl*La#%;a%)*e9 zXX}X#Oc&xcmR(|F4sQ^fa(JhLY`S|q`&zNtoRe0>n>lSozm?N14_k7&4o{X*`Ae>VLwK2JKfRGojL3xcITuBwkLOb&XVM==5fO&uKvZM@|Zrf95ov_$#N~>fIH!D7v$v7DYE#$KMQSo|UsAc?DE7 zuWDE;Zh+S#=AyxCz+pdZ^JHNa>d7r6u1c^&eK=T!<4d9)ysd5mzc1m}@v zlrnjJCgIxhY+mD~TwYpwi>(yo^QTwE+}`dJ#T!l9Tps7}zc)=f zH;=}YwovL^1Woclg9(Z+&tzH59aX@@o*lG5RbAf5%cp{KrGB-5%G8)i-{%7aAIj5PZG=Wc#2q_ z$J4}$yv_qLx~>~sna49U+-5~;RbH>UZ#QYRH929}`-RG=a zKW|OfK69`pkF~V&LLM)=+MmZd;(hb_<-Bw?KcsZLI9|zPJ^$NaZQZNZtev{5?zOy{ zgx9St*qB!%(5$9j8G0j+O?0<8uh(hc%;POrAM!dgvXvEq(%VcI7TWE3?4YzWuh%$t zS!Ldx*V4eAy!2G}<~3%2Cy#x!xj%2uKjt-sI*`}O`oX-k9^cLD<;C~%Qht0tueTOI z$m_Pn5A*nl&OgrMP+lu$pAets@mc<#X7sQ%qet@ioQ7ZIr365@C(6Fe>p8Kbc|9lg zRbKCi9n0$-v9I%bK=1%!!60Z}4W zklIbWpi_N`f_5sB1--J6D(IC3!ac8$E+9h(*#dGzzJLO8Mgi^J>E8m*q;ysR^@#cf zoJ}++=+cdb1?*+$jSARLoKwKL{O{fBXk1YCHzCd|plLy6_k7}l0xl$)6>t&Jynu^| z76t9V(ZMB@S{BfXXk9=XqHO`~i1r0^AUYOsDbcBb&ctN}bTM=-{8O$6RniElTS1f8 z?gj0(TwYLbPq^KdL*+GkqU4^LxuO8L9gYI}6Fq5#o?TVY+^|={hQtNUQ0QQ=g)r3I zxfu#E%p`X=eeVKBm^9Kb$_=F%5dG|1z!-Dx<^l8?1xZtB*pI2iCcS?_lh6SLZ9)=m zF<@Xpn~;MFm`_|=&|W0r_9Cw<;Bn&m0+tXr6tI*ST);AS%&Hca6GIAEVV(^w$d_j* z-B?f)G_0VZ=1m2xq2bL1O-+Uu^u*4Hf}Ys<%!AFuEd^{fUv?SxSd`pW%E$uVp>%6O z&+m*X;Glhx+aA4*#ndSS7c^|Ty?|edF$Mf(DN(biFxHZ%wn?6%N;6+krF@{MvLi%{ zV}cOlSz3uZ3Yb85cNTB~rMn7fPTXBU3*w#v+7c5B=txW|;4)%z0X>N+1zb%`E#O`{ zpH{$dO7|5og}A?tA5Y%HeK zb@#2!vo|Fc7qqLeq~LC9a4)dCyP)RA5F+lX;LhRWiGnu%mNE&LX3GjlQF@B`KrCmg z;iiEFcK{zN7&Bre+XCX50-BW2kl)P|R~4|D&YxvgnU$9AN_>6;@jP1_Vokvvz{lDG zUML8iD7{$FrtV7x=~%BT;N^l09bPH8Bk)*Xa7WqQro@nv>`V*pED2sMND=Hc7HHQ5 z6?8zKz03lRliw&fB}{B8;7ww40b7VS3wVn*w-m6C($)eF5ZelPmw3B?_lfOnKZzY| zKkdJx#Lfb~A$BqUh~4ZM%CKu?^Goby*(Kg#DiQk%ZjTcC3m8yFm1_`j;Qu1*OW+)- ziia0iU|AN}xpz66dl#6_u?Gu?kV!H#*_q6QNp|)Cg`T{gNij(}n`38!2Z#rVC?JA> z7vPDA2zcNPDBg;Pu$2?W2w^&6B6{u>03;nblm^EjfL`tf%N zem^MwfZ&fvjR>9?6i*`fvjTq^6i*>|8kb*zzaseCpmf)@wnrg07aJ1Cafk|_5=u(vJtL9pBw`y$xS7W*SuVT%J0thB{}2v*tR zAOr{7;t=)YY6M-j=vJUdfnHnor4K>BEd~&*vBg>i4n=U7Ee=O;ge{IlaFhZ#b^?|y zjz(~dEsjNSoGp$=aDpvE4ceom-6_cAx~cY*Eq;WeZk;XGV=mgILj7is~5h# zM!pckt07y&5hQGpv?V4FBN(y8s4Y(+PpJ=WRqu_d4~?s<#kROaf!C-nT#Deews@Vodc7^nwY>qsWwy9n zjp2<5uCT?M5L{`CHz2;e*%oh6ZC+(dhsMg~`;u{FQslc~v@ofcYS0CQ{j=G}Mbp#LL)pu?2J@tj}t9khWf*&FoBKWZ_euCg( zTl^Hk&usB?1drI_7cGGI9#!xC62Y%*@oQTid;J>(kJ;jJ1i!_vBlx{7{-758;Z?G- z>>u&!PquhME%=iN9y(O~SyAd=5Ikjzrx843i@zfHn=PJ2@SH84CwxJ4BeJl?zYx4& zi+>~dk1c*l)`Ttoi&x7+Vy_T>C?xhluskI8MX+B;?2lkYNF0D*Wk?(tl3iMb;GmE= zI3!W=5Cp43qDx&7=vG(1>XV=+Bzh4%+9$!U6hM;c3rVEy4@oo~2uX}w6O!Fsi{Q|Z zJi+_0kT@K#jtGe(5gZi~7J{Qg;ur+ShQx6Qjt_|wLULYC3`xav9fI{CaT0=)L*f(! zgCSvuBn5;JghL_{lJglwupuNiBG?oXn^h}R%LJ$VRJ_^}k^#!oLgIA1IwK@rg5b=M ztlss~kT?sk&JKwff}xPC!5$BZ1YRXWvhwP1NQ~gsXh@_GYz>LAkTgQa5u`(60>NZR z8rhkUI0vt$LL!SG7ZTglWKDka#_UH-yAxYD84+=JJquqk7~D z1aAt7D;0RN0&h{^Dg~~lWekb8BDgjr-WHN({B;Pf4~e%UxFIBNR981C@D2susldC` zBkxA=o{-$Resf6Nf>*bO#Cs9EFC^ZN-~%D?K?ENPiQ5o-I3#XYBclBl9|?&&)WAN9 z;LecvnCko--n%O#0KwfMaS#6Z@sLb>`9w&360bfL689qbbVz&#!DkitTu6K#!50wO z6}S(<{UPyyy84m=Usm8j1YZe>uPX301YZw{Z?wQSamD&2_?Ei*wgTTl@K8v67s2;J z;`ej^0$!G zW}a17&nfV{0)I#FkC6B$f`5g?3kd!l68}N)Vo3Z~J+dq;N3<7$y~ARkuzX~BSl-(g z!G2+}KY|ruaex9V5gZs6tJEV0AvicJ4pCRD5p;z`H-et9=ta;M7X1hY!eWhjWG#Y2 z!{RUmhlj-xVL5e2A~-56EcM9I>gt%VR6~yqOa1d$b?-O?$A`rU2u=)(bqLmn#YqTG z4vSL|3@U(6+6sgagu^mHAQBc)yxI_!Tb?(D#ip=StT%_H*gchc-7B^rI4vv>g*ZJd z&cLgegvFU*dG%6tb(R8Ws~=iCBhh-w@&I^l|sULrjHqgt%;(WZi z06ULh2K#xa1bKBuF<}uFE?&)s#Tj-LL zQAf}Si#-Sy!eS9YGb}Db@QSc_rMh|*f>(#d#Rx75i`O8yG%Q|=;B{f~dIWC>i_5~2 z7hJC1dn1A?!s1N`t_+JeBX~<#T&2L(3S6VWTNSugfww7e9fIq_;_V1-2#XsL+!Pk? zP~e>i-W3+_4of*km9i1MM_t{lz%2^gir~Fr@ji9+eg!_Dzy}rhkOH?U@L>gRSKuQG z+=1YuVR0vdkA=lu2<{Gxdk}m)EIxtYlVS0xu$1=qBKUMzd+03 zJ#rs{`@`Y^^~jeHd^s#0MDUfc_$q?0g~ivyGTreT3Vaj6x5DDv3Va8_Lt*hJVEc%{K%D<$|*SOR?S$N1h)!s1~BKMl*^*U!Q-0Q>W>cm#j^ zMOZwF;Fn?Xs}}fmSo{XTV`1?)g5QS4?-2YxEdGGtk74mA1W$y;lM4J9!C%6%swZAi zRnMowvYhABVOh@enXvdPKJvG)Jj@JVe-^Kv3ybFw{5>rGL1Z76X(Im$ixA}!NLRwFx%h*fxXP(&Pz;E;$oybIO4h`8?{Szfvef9#Hk9t6D+d2m2qL>8Rv zkB9;MaZNWB44)i|$N~h|T>^1+m5BJSP%!ua;x2)tx;GpV zBiPDlM4rK%iioWdX--* zh}ebTT%17!FN=tmBRD@IEA1VM4G_2uaZ8G-FQ`vh+0Gnu(|>b1@@V1D|Zoe)fv)iwah^xt` z8WA_(y&KgP>Yq0#;-W1>2yViwcSOWH5xgrR-i_cr5pi=w#shANNTr)}cD<40)`)l* zP2l%Nq+jZN5$Owhe?)Sr52zoL3Q!RteEpXP`U?x6FepBRKmJ+;_il^G)HVdG@ZN_b zVlC}hQ7_yc5g)-P5!`{`xA^1OGV#%fxD&5F7LmT~uP&q0j;Ol$7x$Jq8F%5myCbs1 zhY)->BEF}<_too^&yL^+ z>gtCI{78WxEAZrMnZNWCym~kyev05{5%F^bk3_^T5IldT+ikAESOiHN6(WFq3P3j7Vhvk~zeg6AXR?+E@8 zk>#5Z+^fLF3Vd1tD&O?ah%DcPSD#aW$~T>Su=p3g{z62a#QpDx_)kPG+>1oM5wR?~ zS?m=Rdn4E4C^;=rifJH9F^BfZ!dCHx)~ zmF3LvYJ>Wb>g*vnRb3s7uOAYX=^m@2GTj4ztoEP|9hJEp-BDRZrY9;32qK`+FoK-= z@$Q2ppc(}Tu0qfo6@5|l0)m04JR@gKRD1%#+Nd}be>^NI9>%M~qvD9D1V}l zM@PjjT;gM*vVsSKW1|wRQdb8nK-oSBj#Kxjt~3JL5Q*Rr^~mw+-U$kvsK7b|>!TDW zCvXy8og5XXC@`pitw2bDumTYUq6%zK;Dbj=uu)xYQeZQJCv~z(RJ@$de?L&B)ozK3 z)9~KuQE>)>mqf*x2woZ$m*OL5Ma9`slMIX?hF3#T5l4`SiX?*Js2D*o8Wkx7TchGG z9Oko%d5lG6x&Q)77Z{JqG=t|4TV(M6gY;~NZs3} zdOfXry{<<^mRHF{DeZRM9+ia|5RkQmWWOUS0hv1pc1Gnrs@8y4yYTAVsLYE+aGtuN zvu9q0>kyUTd<3Vg;=Ot=RlD<^Q)e`$4mM|ZA@H5ub%CM)Cn|%%KVK%TEPIvASel87 zJhmyK!bLC}6>|s*Q2_`pjEZ>#VKswAHQJ4XlAkxw25NS56Ow z78VxlN*;t$cV?WLYv;XEXpdVKUbSXd3YD{JUbTKEi2v*Hs$0Q_)Z_JL#XU1$+q1HE zF!nCvR2|VQyH?z*R&3aSKh^icKP9JDcdKwF{|34g9Hrw(M2 zWAIwK+83|lP8plNjV`gpWvQVw+{5>Vp_upJr_|mWdb9v}uiR|!kOhCGC)VN>a9YKPDxMMnrITgkzkH}95VJ>57^jsq%nci!5T zjX{=v?2=FCy{eUleAUy_e-+(YiMJ+8*ai6`T+P45DwU$EhWiovjRuhzOviS>uertS zww&?~|oT~oR zi~H%%XH%(>Q`B!=`{QrN;BR9)lUBBgm{O{#5m+HB1B*_zZly}j9F*ta^aJqOqZDdb zQ(k`FZCb)B&*4xA&8=Y<>JCmBlbU00w*yEJ*$b}SQCfq%cce#^$uVy;K z=3$@J8t$HogC9O_<3_4g0o& zo<0^Y9W{lPaIH+iL!w&5e-M;lR}zi*q%% zJZFtNGc{PXTBA%Xo3p0en(I{a1vqH6=78G~G2MAMc(rCl(;!?=&8S+_)vGmcOaQVX z{AO}@11hxW0nF`Mttn8>r{*haCH2U=xg&9?RvR_FYCWqpvZl)TXqg8#)Tluj>C{R) z*jxOUMu%RW-QmWCP_H$tRD8VkA?W8}WGk-IBJtP=4A31C1>4Gil*5YxYgTJMoh;%+ z%+V6IP*6PtYZ(D1;!}Y^AIiO%#&>HqH@F^f7|%(pghD3ol&!Qo=hUkx)%2Vk$^Feh zzTT+1Ib3oz(4!bpM{&||3R<1=(G*zRfysH$H*noj*a4)>CLFz5vy-K<9gbP8i7Pji zN+c(8Ryq}*nuKFlGwUX?gdNpGMhZNBwWhm-TP&(EtYf+}q-c%0jwm{1VI^P>)M%zo zqKA$o^uY0Zi+&6?{c%R!#H z$s+7=>vgcq@O@9&{5o?+wyk|*n6zJIL{6NmBH;|bq!8bW;=IIO`?x?#^#AzPPpiFS80$#FO zi@2;;ETV>n+6GFs|Ei#XCsEe9HsNFc`O9jhTiBkwo!E-^38 zn3n)VcbI9=0C7bSwUK+w$<>AgW9(!m2kN~f{nSG|ClmLN*&5F!V3=>BO6NI2xep`U zSaLiYvqnlYqcFY#n(6Vv2gH7MS5}t67VUkHa)wkiwnzke_-* z2ewliCrWnR>ZVjvam+w#PX%g|J1VIL}i+i8; zW(rQp!U0s^T;`?Qp@Jh#m1jMvn2$pVi0IB^IXTfN&EV`#AjVtMP-~zx^R@jler#I4 z?V}9cGqo%)XX=yRQH)X(p2Fet`2mz?b!O~-^txcRHdeMQZc(o|j0tJ9G@NR?rZvMY zPUc+{Rg<%*Mx*FNo2{fUEYH(|8a?t7lvGd$!Skqa)xV zB* zuaQ(v8e{UIDi3d`Q*sJUfYxi=`h>fP_H=O8>x^MW>M{G*G@%4qgWEqxF=BuF3(SDx z%_=IQ{#%QywXKmFBpt2EPolQFfW~*h%1b&c*5D#DES#VPlmgLkI1I1g7e>6IsMRGJ z>Jh(^dD}Ru55(uEFc_wqVH0EX4tE`i$Ox-Z@+f6Hgu%#0l)S-#a0zwJyCLmEkg6&L5DI#y$&wuiwZ*Jv)@O ztjUV2ey_n5M$>fWi!RI+f@aN?Y)?#*#!-Sd8#&czL(jJ`S?l*vM-TMiDqh$msWk4= zlY2EcBCQ6*?MfkV{~9w;a7s(gN)?*^t~MC2 z)*;ZIb>ShW(=vl9x)gf6Cs;ukS*YE$DiXufL05AF6uZ zJnCm|;PrR&xN=pPb4zWS+Iw2xM*Ff{YvX4(Gd*o>kS^*QGrg_8e+$n)Pn^GjTlr=Z zMFmo105{*u?0Tf=&A4b$mK(DUnOh`uvrZ8g;C)P2Q%+u@0`?pY7^2vq@f6D@;3ND2R=(M>tcdcl?EL8(Gcl)Kqx zAvQ9D*q~mxhuLX1H)QDSH|>uv>oA*w%LVBb!9GMm%CebE?}9_od`Pu|CKn~JBk@h0i$eqNARqgH7rl?M!S z*8HccN)0EzPjJ{fc44u1C()peFJ)qXZ(V zxr-=|g3{vayvXbiLPA9rUW0FNH(EYse&?IUEyGKu=D-;9@NH(W+^U?phg#nvQ~hLv z@p?dL0#`OV3 zvfJ&vXW2zGv3_irG%mUsp3$RzVwR6@Wl(vj6i5xwEa&0X+L4`Bf^4w^88sgLl$pSk zS17eU@pCrN;>oFr!DOTARmhsawry+Ht6HcH)gfObFK4qxV|;{HIEh_iTQ1u`jzb(+ zz%N*{n3zr_QZaaxCp1}V6x|?#{gR0>=gwE1QoCBHd;V+V-m28wwATzyHka@w$yNRxn+ekneg}SUI8CKe z1mnxo7{zSs4?Kcc5e2-@&E}hcKN>gj9&oe<^C!bCaeZp_mMD9IWz3Z86iF*zYEGUs zQ(DVIklX&5*J}p~$#QVI|H71rVmF}c8A^PLo;ZonsX_g!4Q{V$)kawvRuYYEAzaq* z$dmN6@oF}ma!W^khUYz&FZkUcQpFgwMkXhc*3tMs_-o6~b*i8j<8Rz(b};R=+{e!v zpWoP6U}(>=!!urW@s~aBQZCPI44$Xwj#G}&S_4H<-RW@Tf)N6LH$J~&-J_nFaLqs1 zGnI*32|yuJhkvq1Emv*0+7J6LV}ul3a)Y|(qHx>WA#M7G2_C2c>=dO7hPnf8^t=5DAEJVx-{OT%78N(nB2X( zIGo9o>+1=c-!|;srG=_BiujW80PS+WPOGtgpDwNEPsu>ASE<2r{%%$}yI4J!kMG;1 zdDV0(wp4Tbb+JNN$DTG?ArRQVi&gfjS9hgL7N1{1zgm(XJC(Yd55>JX@*o6lT5KN< z=;HXKl5ga1Udg?Q7pl@n6Vy83z%CP#DZ^meS?tiiR&jrKP3+tenBjxE*wD;u^D8R{ zcj@Jt^3a_2-8h6lHd%v!f@5Nr-Ml2RJaUfm|FYS8x|sUvB@+$l?eeJsR<4SYq9`BN z6W`zE(?|)g)XxJvz9BRc1J0#2U78uB;u&j?SFQWZc%@9b3SHNBY0j3E{xDn|qop3& z)iQaIeTkqdb$FN7RDI5OO-b#`a734hUb}forxpj>q>)*Jqq^AdoQ~@$vAQ%J?E;$R zqr0@^PcG)sx{z2TQCEH9SRTf>+mNdMwE7OB(Q&-gB&>-Iho%Ah3&%6c4o^;*_&1!$ z6f+FflA4G0UF>Ibt0lL#w9R@_msUG>xk%3ih2q@kDP7uJnsRW0907y;6>@(neqhs2 z2b=hSTh$yb+{HoB9ho+D)ta!UZHO>Jp}KDnD%!};nGW3HAlg>oY!J{q{RAB2nu+ph6oro}Ah3-Dkxs^zDLKHWMVihGRkW( zZh9CGhKhKZCSX2j^}_^9KVm>Z)gLCA9&!cB2ce*kKRC~=XBa!T#*!Vr95{!0-8jXE zY1nN#DrA}0rQKrQlfBCEz%x(|%6cTSZHy>n%OD+9+(5i>ng<)(Lkf?-r`!3~wC7Y8 zttpl6B)_<$OIsc329Y1^WC1hkREsX5u>AHeZh@S<#UhGWqc@*xBz{2#a1;EzoWn5Ko(JHzH%i#hqH$PA zwE-?<(nf2djGy3iFqr4}hyakkNTm#QE3Z){W?5vBSiuMMK}Yl*G88PsAh+fu&1ldiS4J9 z1r{8!;;f7^!XiJ;ITC(`(=@{v%u%%7uMJ+*rLCIr5o_IeBR`M)PRD!Jck+Z+@H)im zb-z&ouQXWXN|jML2NIA+?nBvAuVT@j3r(51dNqr7pW?-C7k=hqrrRl;g@X2Lo+2sq zk}jX`XTDLD_7%LAnbI()gTm{W;gU>8v04=HdTur$Q|6eX)6;J-gkHd@N7HJyWNnRk8MO0w-{tqArWJ8Izbk2E3<%vi>hh; zq8W-{xq`}*?8R~o`1$L z=4KU*sQ?at*4UQXaPn(G^xe<#OlQcLAh)(MQQ-5&zYy@AtMEK~Y^jAW7*>M%k0*R4 z`xm)w%B%G22>0{qXNlxGf(8$;{7ZOw8P0B>E}ZZ$8%I?E_V_fAGCbI2QUve{*$m=s zUb6M{>>TM<@D)}H5_a59+d-4|tIQn|UJ>T)J1Dy|n@gs%)*#7sr&e=n@LeMh zQOVHm82|gJ+?^KWzqnWSVv7 z37dk#@W+f5xvAttZgQfN=lq0cMS84)DCbL#f`@sfb8TAjPuVh>@QAI#&$vTbl9x%E z17un?m5u;EXI6bq!$rbTC=8Dn=3Dh@v)~p*hvfeSPr)wyaB#vODrywOk{wH%hhNcKHL-Fu2RB zxyCJEB5c1iB&L0YzKmBtD*VByK*$dl9Kvv4t_l2+XE0f;Idj&KgF0gq{={7y=CLVL z=?V5f_Fa{Asx^)__N_3Udd&HDA2FJ7^aFMsOYw_r=e+hig^QSj!g%i z?rLQb$`olzl9!r~H8uu+r$af}o_Q$+Kk2`%KA1;KyW z6pUxH>X&8Rn(HH{synUto4mPKw~65^Iq6R=gT1@8KpJwI!8|T2HiwobZ4%grpBZ=R zb!hkIsdkok^A<6jJEbbYzTF%xC<&*aKe%7F=A0R)T9f*}4NH_&D77+`wt>re5YGj9QXSFe96PvMFKiOI3u1_z zBVW#P4G!U%kcL`C`jz~q9I@loJiwtUN@?C72wmMA;nW6=-+kd9a8I{pG^o!=CRWb7 zok~@2w-$j?07>VFM!vpoc6&9djmluMHt)@%HW>?Lp`RCIGHPrb7~uYnHfO5R?;zJ{ z4bSp0RBLtA`l|H?Bh6Z##tmXt%X~D3L37YUyEQZR?d)jF{;tv1f(9jb9mb!TQ2GpI zD)UGV=P4V9OeQ&%YmX;Wex^j8Bf7OGHlEF-;7IOW3{|;Wo305*@$|&1;0E(6t!^C^ zA_79h>@d|-#ssm!qZw6Vluy!zCh|MSbaO-v4fK<54XSgUDzW)!Lk5=KCT^3tD2*`VN{~Gc}@MH1<(3 zYGSXz?l#*RMAco;rdNnpb{J}fJgSia7g?BTf4k=inF5v0$32I0t|Epm8@0il*|xiZ zCs{5FJEmv@@4T(vUt9M$rmXD-i z$_#XN1Dn9?>D@-ta(8#wO=lQ>MiH!PGpHuNggJ@dD%XL>oa<?`)o`L^j^eF=IUTtrI~*X{ejCFkLi8oJEM!lPA-xO{cBcwnS=j zI+fj)93M|+t@K!K#5gAW#zLZ--J+RY2yM?mno%d-EK(e2 zf-yuYwDmSut{l)LbFIK`w6-*JMWPuN8gjENOHFHXC!E9UJkq!b^cE#a3qIW*vOM^4 z#3rX2+#Hx=@*<8yyZ+VB+jsyd&GK%WxK>j#%}6}$%22-FgEAuu2X@k) zTt1IcY_ixaQOKA`C-2YWtniy7+XGu5c6aOSv3kKRRndUKwXbq-M;mhm{4}fkCQQW) zHz~t2yP@74*d8>mTL8DuT$+HXOK1BNBXF5@I53dt0KK2mh3M}w)$YdZX_A{(2 zb9WZaTGBHm*YMdUYd0BKMU@=t_@f6<0H{FcK&9TusKvR z%e31am!zTYUB!LOQo>f-4#=zd=0x1bzEVhU;J`I319MeXk)=a*CqIFe$tB^fJXTc% zgA!*cfZ^lc*YeCx72LYqLneFoHYOLToh#m=`*t03)-i9Ec#HJ1nKaq!yNy4$QLh($ zJHy`2mJ&*eVlgk%9G5bd<_I@-2NQFxj>O!KbXT~EHEz}W zSYEoV-odj)eJ1ykFAG$4>s|cBG-z*t4E8G@kcw>?HkXWBH0yb%7*tf>W5hHi$607N z3vw1=Q*bk*R~Arb&Z|_4TUsuSg%P*hwh#PPmMr6qe1}wxrKjM%Oz0E2TtH0f2Hs~B z5}og->jtUeyx&L#90%>rX~Xaj7?m_VsYvyM-6q{>p(a&Iva3GCXto19U!3bUBNr3n zOW2h*e3%W(oei8}`KP6%wM575%m~u1Q)^V+9lHIGnBTXJ=TeDSPH&aJ!&uElnFAXf z)JM6qxx^S%5Ymm^$#b#Qt0L0)JZtLy$5=LuIHi&!E7jb^<6}1z+E*l_P3Gp^0hPz3 zZs}p&(;e97A^nZAhaczHM#$uqs}iW?LPj< zNIKmTY^tsMnLg4gmqkv}1FTz)dU99565J5yW|l8O2}b994C#W}b+He+JXg8+0_SpA$Wu|esl>3$S8ff^D6Xyrqp>4>9k&STh$msUF z8zcpSR^^X)WmMqFtjv#FD9?2a$Tay$w=Ze0LyLijjaxV0Kn7@Kir9glvN}ck8A$hl zpBW3STy`pG5!X8Fq}cFtHes^Ok}OW-m;3&D5prT4F~Zv^qm+^XR8Hzs?frr$Vv08K zcniUac+^!58>c*dWq9>7A z&uO2NM&-YBn_K|Y4O`LcrSJ-n`gtHs7PE<7lV6DKP>2^yuDhMbfHJDU^Vm zU*6M}$Uo#cRZ)Zedsxsroh+0#%k=0Tc5K^)e9$2UD|<9Mj$;d|Jb+|K0Zm5^`@kM{ z0#hKt)f+Pp>Cx*m;?@vLVKt9P317-W^P_rqk4BT7PHnzrw8>A}(9^?ujjM}Lsx2!$ z9L-9k>#D3B3~)oVu^&4VltOEIH1Q0RD?w7T18aMvy~;4eqfrItIx`XyJ;t>{tKqcQS{&iY zPUPa94)(45>Dbg*yFxV9!=8cyGAL`SSMXZN`zmR1oL4s!&n3rIhtfSJiI>Vm4S9>? zz0u`^b}=HNp3*|Zb9u?nX*ed#cODOnJdP$a$*I;+*|lOr@G{0$TxXRB8W4vs@6iG- zH7H%rL8clT%)xfanQ|9lhX?A%WITtRZ{Sh)R)`-N}p0*NcDqX_A#B)63+4-i9U$$-*dbB!0 zc@%S$`vpCkkB%V`OAlnW?zRQ+=9xxfvP6wuc4?L5O?SS_S-oPt($x{n5C)3AZC3mj6t3zq zo{%yHG6Gelk|iF~-Jaeq(^s zUT@ePeTy0-1mliNmEi46!*SX&?X{A(Z(yvEg>g(NW4MXi+@burHBx{>Rx&egIO4l_ z)|2^yCo4rsc4frIyL;HStYT-8btyk8wSIGtwt);GkGjsDW}DX>ZedCrO$`oD=wdPa z+mut|$$1~E15PQwVM7=`$j>Af9rhi5sK>-|)dpQ(e*bMf+KJyD0~oZ1w#QnE`-gk9 zZJ4vOyCuQg*<)OprAFIUk-K=#w<9ghxH6edcK72wdKXY^DlNzP3HpI*UMI%A5es!1 ze4&OKz---`ty*qT2R~|5Qi{@vWJU?HI*XR}lg#iY5V@VDT!)i8;a*+~%6JblpU<=U zBa`75I0x>FJ^rB0Tq}eAz8<|_g-Y+<&oie`T?HoIeL@xl#7<54-h?{cHD z8INk%XnIoqp6@a88@sZ7wC?x0`z)y?{Rq$rK;NTwS zZpSLh0}VgzX(e*act~}D=O5v@B*kM2o1=_BUkTJ9c$9fd(wF}5OJ3@c>EJ%ZU-9=R zXon|#|1s8r;!ZK&(8W~Xah^;WfhEtFHb-bCe%sU9?o&mRn)aBr$FKir#3OCeYcB)$ zCvH9!w=%^x1bCX2kjZ!w>D9+UWGcWjrfXFX=AD441J4?M-dPS?P0jPnsK`ycM3q`i z6aVZn-jZ@%7S;{K#s6hYi6)h0mxj#?Op)3lq7@YC)_)9c(g(F)nEgU8w)mI|BxWn7 z_``n_j8tkyVS1S^ed5UaM z_)YF4ss-hooc8^CHF=CXGJRdsdwO_8SK036ZFEI%-Z9c>MK1@Sw@t{@TORcRy_$a{ zvYB8Jg_XTJq&tNQqC&?5dwE~@5+ys-aRKzPgL+vnMy%N{cQyB z&@buNaF=Bf0ZT<@nWMm3zPrnl1s;lSrO?`xc^FUmuv2d2&6FS6Ym7mXajIl0{(clM zMMlLxq&a&?8;{0~O#hkLnr zT~Y5FLMLzg_T9BjPYmCoSBg}t|ZoYufO86!|g$miB5^Z zvZhC>!Q9(&k}Cl}(jsV?QmDi+jPkn2662|fvG#Fq?bR-$agS?Rb>!^p=^N|S9=aNp zE`W5emMW9^I;kujQ8G$(;*V!D8xnq{Satav<{arJE0S5pLo)IQhnj71aM;nSjUQBL z=^za_uU8w3Llnrb`t3fI-gkblX8mONRh8v&0k5EB{exLjo!g6esr}!)0J2bzU+U$1 z^@bXM%BZO{rL8(&;=AZImF}r^Cy^9__PRve*E7ennP9Q9aw@NuwYPQx{lF( ztJl;TR(smo^~|ud=|C|l;`(pzH5K3&g8C2K(Chbm4tAObH};w>V8W}mTRS%yrX}nC z`;TxT#D9lr-KkJfP`5qx;N6CqE2QDCzK5xibUIQQa1=K)6HNmpU6i3wYTvyJxAH`x zaS&R%YT^5s_m5H`@Vcw<>b71}Q?@J%tFSSpi0SrTlM%64C#;h0$h)|kJ6e&}dss^F z)_imLh+j_{qFO>9=h0K)v656>rT^m-yq2b_Z!4+ylguU1P+A0?5&bDW{-gw*6>XB!n+NCz#Uz56)3k{!mhdx4VBXo~jf)2wF9fm+)M zOw0RtHz1WzD!Og;wD#-M%Q$K>r}ppDJ`=U;t$lQ@+C6YUpH|f92ngk82>1{V?9;4s ztm#!+YW*tydAn1s)G8Gv=ine7MSL*hwUtpmxQ_`{W_U^7a7Z853vmn19?+^pP-lhJ zeM~IG4UwHTI#?TY@i3;mTBCEr3Uv3G>VM6A!7V{gAIDRM$F1?$gxZa0x){%rl0e_< z<7G=XYwbl-^3dPMc6Gkssndg6BOaieXZX&AVL21r_h+rkBr{9h!x>r+Yj`OMg=c9$ z>wF#D8L#Nfp-3N3TS+1cN`+s`Ya(mV*ZCN`L;K9O>e7t2D3|ZBKC`<>?eA7TXWn57 zhxh5|ESG!fEFbJUs^W+~mgf}vsWoJtY$G7 z9X*=wq|y4X_(j1nW~orQ%D2}QKbF6ioJh7W<8i!Y=>WyldO?wV8p2Up|7nOqFsfeH4XDY?y zs}9V0zU@rNtxxImA86nNNq?}fRRm856m6bcR#OKp=_c?XV%rvg}6(xo+ZNk>o5Ismns+R7SX1)hU`>sV&TsW0Vdh2dP!X z-3@Hl_0}_Q_k6Iflj2!t@W^7)zudYFFX1^FhN8@` z@DKY;?lTQ`L7!{~FJ(eZr!v`2mm8eLlZAArHemS@*EJ5D-Di@2ie8@70y!PAK9l|( ztl*|^^)ii%*0V4#3Dq7AW@#tzjU9*L>D7(1wPrITMmRfBV>TYHgX70xq# zip5(AQ?mV+@vX6KV=)z5VU}hdhFOpLP(DvNrF_(rImv^oI_F(XK!xH^_C?`4M$J zcWxi&oma(Dn>S&$Pun3|8|67tgJF(wHIW$WES$-dl%X9-onjCAOs!NxE59OpVV`!% zXQQBu;`tU?3MW`%Phxwq&!m2!Z8?aVh8k3f89SGmw4uy2lpf@74$JM338>9my3Ud^ zEtCaY<$Sa;|UZ{x*MHDcU+qYAp-VuJ~c5HYVj?x zL>t5N54UMpv)l+p3(!I~Tji3q7#pFOUpz^NGgCEHosd=(nRf8XK69#hX}0LwE)B2h zGvRKu2tnHH=H{#WbX+vEBj8tT^FUtQXEruqXBJxlGMO!V3Cs9wa?~)TK(5DY`pn^U z?Uhw8?K5>--6g2ywX8W$yK1*@pcW0<_injBNo>?j2VU35Awb#^URFL|+F{-jZByg$ zdbU-@alIX##_$GXFw%Mi({?WF^QB9QMk#30UCwi;$_BY@{GV%fzR^%Q%*i@mep0=H zr%>-(?>tT5P4vVmzWlhL0iesQ>heeOge)?WujF>saSA?cVjlZu?$)?db=tL>xA06Q zC=HCT9&L}S7y~y{oT^aisFdf{r;~tUQxk9vGm>m`MzyLmowqVe8uBV?pkt~xn5_qLSztLDH!^{-smeXCH1iZK$Yid57pcI+IE8lQkQQqTAEv| zcVvFRjoc~TqShi9xT(c%stz5W+ip<5!_Y|EF%xDX-r1);O%qU_oAInsr&5pH-oyA^_dLRnge19J^t=KlTTN~{(F9uf_qr_$K$C`4tcGB zkN26)MJ2ahWeWL3%h;0#%eo~mSbPRPX_R?7C#p8DY5G$}?+^l1io28>_x711$f;zY zXU^DY^Ll=o=|TD%^7Rh#`wR|&Rn<$_-@XD1@e7Rc0z?|{Yy+* z$?2?0@%l1PM@DV1X<6>t-TPq63C0y&beM!Rp2=Bjs3DvRPC0yq)jZmm-*ifjsT|W$ zn*OVdM3nL7sJ$-6fcct1QB)mD9Vq&BcB&0Qea36b1l4aazm1J_l!W{yujis}671>@z`1%B|&u?}r$RX`^k~ZLil88-efj=~Rp1RNPwk z|MLm2hwn2}ok+CrFRWD^S5`!YAFz&;T7Whe-4A(o%(?D1{D^S^S#K3sKjb%l%y*}} z{5;|NV4Mzi*GcO?VbqN`XXt3&dLU!ZEa<~VW;JL_SlfY>GTg*;D;t`Hs*XMWjOmsG zMy*}C!EK(r0^?w!D){pwhD%V9tvc`J{snW)G}R1|d+a;(#YYWiqT1E7Tm=1BJd|k< z+Uw@Y9CY|KYv$5@xTG%no4&xAEcHU?Bag8(n$Aw>p;G07X?UDTa+>9wjL z%EOou5o8ljF;f^Kt3I%uAD%Xr4i!1ECIUB~p_^yR%&*B@Ydfte7UNig_o8~UI8n}A z*{ih)a^*w(tKl*A>(J^FvBvTe>{B4gX~(B^9fxS3yE;luB~Dk}q($ zte^9Rq}1{0EqnEIx~f$12Xo1|YI*N|&A!$42$RNPa!A^=i+%d}TtHp^t*yK-PsQ?n zLvB!=bD*t=+rIt01%>KG;&@P!?ANb7P%_syxh`mVUb~oWIIv%%>}1uQ;{#BG zTzwVKL(Fm8>=zl-qY+hMemv+B%huGG`7rQB9W%MSH>FVAsucVh{Q zP7b!u42B(rw2zoEbIPfJ@MR$n^y|=AvPQnV7_4E`L%T8y^^T-gRw&o@vjQ(u8IVYP zn#E!L%rjlIS_w^skHuO2zRJ$18c``-wYTMLv%F&y zZ9&o)w~c0%Jehfj>0#8lP>mz7yE4w`zMWhh)v^`a11+N~(XYL$QbislhHZBw$wHDb zRaZt*=;kj)Jg2<9nR;`*a&J!Z zTE_%M?K{GrnSN7+z`?#$efXS3rh}p!&f(sg!XV~cQEFj|H2~E4sRGk>I>c%L5v#-H zk!7rvl{*(4?eoa>n`2oox~SM$xNTd%sk2pU3b(c2OEx;q@@S~)cX7w5HXjwxaf35+u8|BLmEjq4=A8KkoY${Y z7f0n`3p7dgl7-P;W{|SkC|}rEBKiB}EJpDb;*mbsatznmf%E%ymEv|!Yo}sst;1*V z_IkL0Nm?!<$5V){IsMwDlcF7UbjJG(V`;LecdP4O<(Vi+m!5S>?h@(xHV8AHrpl?y z!$JMJ;si6TW|_6cy}+`}84Vy`S3AQx_eU05>!1#!k{!6vU?cewOtFl4)`?O230)hw z*l%k4%{1#;gDV-F!NCzDt@@2l6_M;WwI?V@z8Ki5XoJT+K>VT5tSS@%6~^~i-6?kv z>~5ZRdCF0~HKA2z@)dc)RE?1{ySqVOl;?){Y>@^}XtKoTZ>lP(KGm#@)-(?5WQ%H4 zp&VFXzMh&GZ3|v5@;U^wQrT{lJ#5l5ltM)`hNi~FJgtdFxz5GeF6r07=utW^m-cDB z#uzcFKwg*Lb$O}bV2Ex-cf#$gJaswK{x)PR4jq!~%(`+NuoqWw^KxfWop=N7qvXVv zH}!L=j(UM&j7yd}ypoq}BAsgY4BGJKejP_4LKdh`Ne&l}O)o*xZ{g`5OHk~g?60_Z zm7x!}PVs0cHyT`5?P^~A;p9|02G<%5BIE4{d`8dObxad96%&m7ALVhxCx$Jlxckqn zxW`~TW#=q;6#Bi~Y@7;@a)RPFn60FtOtJ0OaKG7aQbwIBXrF1nIY@&D-C2b1vQC&o zQ-KbvqKzObNwnrGudDm;tA1Zy#$tOW+i#iZw%J+R>_3MmnHQQ_zwvU(E&jv;Y_k>Oc^)^Vn9=Ews6;Fq@YNDD+vPgaGUfYw z4Y1!z>a%V=c#5tKdk>g%5NnRFIN3e}TtvT!Oh+B)WAuyV1MFSXVoW-cVc!9+OQ@Z8 zGIf4NnG6A2Xuko@P4d`;?kFp~{{TD6WjImycf|m^iJYqR&IQ@a0X*JVv9iQrt~RXX z@#0|gZcF+5fdiUd?nEoyk$<#HV1TV0s=|`?=qo{og!CI8G{7Eb>pgJIGZ;+D;+aIG}ZKs&k5s!>PP%G19!8C0X1V{N0ROkrkHYvG4H#E({Sj#iQ6j z9OLecC_8DWiWpP#Igzwjm>MvLc~zY$I^{~wLblZ{%IIDao3;(KRcSRfaFs_6E*vmv zDCz-r&_IKiHd!t=okHh<5%9(Vt;r}^+wQ#7bbc*QXO4=!;A^)qAyd9gy|W^D)5nKD z$ap{Q&QVGj{b;QllC`Sl*29OHTq#{w=Ihd0dSw~Jy`8^9@jmU#Sz>3h{LY;Nre?Ux z`)$je{sNQ!cBq+S4Q;q@fKRaY_8>=qFAuZ|E74wM_||}_2qC@EGoE;vc3edHKvjs=vt9R$+&>u8Eupr($|u; zr|d~6a+i~6ZX5f=zwP?6H5?&wloNyr`0_OzGeO+rBu-Rk_~+!DBq`QF)|iv*XK6<% zJ48OWhSk}r>B-4J&}e8HzRpA1F_LQca(sjCg#r~Rb^NNnKu3~N;IXY@uwrn}tl?do zXwyoUh-i1TJ}f;N+jsU_FZd^ z>vKpmXmS0uT=5VmjkZDgBlq2FIZeHyvf-v7vQ|?bRXM|jiLKSWq+(oXnpfJ8D987g z)>8r2GIEb3Q?aFl&Tf8UYez9e&h%TWX=Z{d;K+QCE7t1BMb4|J@>&|h{zt{&Yp4m% zop!6bHYMD;mbZq+&S{nU{?J-efeVL%>s!K)R##_7NiQB2o zDSODf3D+FP^~c=d@gy1m$t>J)m@a{r_R2cQU<$7W7Avzy=Chwzv*3`!O?AY%LNRzY zv&Nd};d-j|Q75{fmBIVd4%b~njzHxRe|-dNKTwt2t#k9iLq{32S*G6>eTQVw#ypFC z+{i=dDBw293d1Lu40*I$6(?%9vko~?QyhgQ)z+B%Z7$>nWiFe3`35aY%$96jux{O` zJ!Y@h+S*3eQ>IXkaH?>yx>C<3Jq;U4aMa+bEm|$vkSIDcngr$W&OFnkPsO_o_%8QPmjmoW47gz=tW7_Us$QSH<8Aju54yR)~+RH~=GR!5}wf)_C zz~?=Pk8(Axs<%)tw3a)bGRd=YLvGudgSixE&@4hQC&h-vlxD2s#Mnm{g2_#z<9a2s zL)pQ}soF7rWj0xbMtIcK5`Wkb_m)2+9i)dblLdu()Dxk%Vb zXEu=hZ=%4wBEyMaRxoD=HlL$W2C=j#vn?bx5xa?>!->Kh{Iw0V>bfE8t14`&ZNPZW zYz-+>zLr+Cx3O~oWaeK`{$zJB^TcL2rP_uAgidNtxOqOEc&Si~B;46qw(|Z5M@#|> zL3_du6i8N7wtNp~=?;=@6Fdode?6!jAT3OlI&sM*?9w7?E{&w@tdXaQ#8vn4KxmmMi6|^G^ zT6QZ}_H~i3)$1}N#il$oIqYcD+OD`{|cRtEm0LTw-uj zIBX@RhX!+2u2Ggpev=S`Wd%LwRO3{79rZe64ThoKvVwuw*bO2|haO=`bi)yUg zHH!j$2o7Ay4kLbMk`y=6F(em&tq{ms!-!Wwg%GjuWpqwq-&YVyXpZ1H@w4qHig zYC2ASkmCf|p$%45KMD4OdRALl8hDS^h%Ep_cnCenXBk)JmsmestU$k|d*3Li-lrp+ zc%qqzY2`=9;hoc^n>96^oH&0=c+2J!63OZFqo-|1o{-%(l--#W!H4{hFZLimKlmIGj~cNSqF&kvdv4HEpjBSzva~$3J-4)RqYdR* zSn)AU)SAo^biFsdGy#pfeCivYzock?;BLf){qNBp1j$ORbyMptc{tp;x%A7dsFi3S zcd9giTGI?HyeT52%7Y6zol2Y^9tv+dA%p+ev?V;8+#K5#-?{O$O%ddB%l2l*p0*mb z8LOuACFC~ceN|%-3-;ej6VK)iTTZQ^b+xQeuUAeFg%%bTY^PYH{c1JD^g2a{Lgs3) zB4$JM|I;GK|3b-JJQUk@T6ELKSTtf6>ZPLe{A$FvHV#60FkK2`R zS9Cj1NHJ*qnJaNga&P5=2vWT{Go6c`HoPG^65bLYiVel!l55$_p`3;|jY#zt&c05U zFD!tt)FEV6zDQl2DSDo;WMxJQE0j>|l0YQkrUMAYMhRrd&@hBlPV&T(igx45E|H55-r!y7kSv_Y%xd1xQgX$r`mEl4|g z=(|*F)%0f64r`Z592NP7OlvU{wqm*FeGBf4MYzA$zS<_qHkwdYicFqtcU`?c*>qVN z?R86wY>*^ipIbDe<*#m=j$2`SgA`x%K>sbQ>2BMZny@0iTWfFCs4jmTP4MrTyR|T) zf}W1Gpk#B6Pik0kzwSOhPGkvteNV6LXvU)RxAZ|sqX`)JKHd>rv4Db%vYV8Ht4;ip zw5hEVj*W!3M9+|5vjUqW_?U+x#YYgOI40iCAsObSY#9s_YFYSV}OeX zLE-|J07!x}9+?0M5@&`F3`ov!q)Nr9B#!MQ6~|62FPti+lJ(Rm*<=^5lAn-O9x;2W!Qy-z>55x)zO>BtKJQPeZ`lFOAD6rOus&AY`l3w?G@@7pq& zJOaIs9*kxSq?Vw+d0p)W>{dE*GNv!s+LEK2b6)3q`42(&HPHR9AI($ba`@~ z9jis-<^JjT;@vTu8*f`q!O1VkdD92Ow@n&BwG^hMl6*i8KC%=^r_l{p*#RAAEhl4G z8Ot!OY^T!Q2$v`9KFlpBA76{i0!w^|Ov^KrsAtKs5Y)c`Lk`FRc%oABS#qYb-Ngp# z;|#Q_%vcpN`{0De*@(AJvwpLk+2Vw*ePcYyL@&H@i-`qg#|gUjjJ}yqk4H2#;Vp2} zSUfvgiv5Vlcb=$40oh}H+;(|-Bs(k_&+#~}(j?kAxG`pJvp0+_W1)oXj5H};c%ISd z3qmd1#khIHS~ku8?&X3B`VFCc!BV?bEMs;tp{uffRVXjCUJ67?4JL^7O?oY+bG3YB z>|`C1h^qkUWxH(kv|B-36uEp#yEG59%q2=}|B;*=l`=VQBT|56o;QCag#lt;@J04i6y0^NV5*{Z;;0lX*Fc%IQVEGOR>mfMoVUer!= z^Ph}fnMS`huN}_jw(dW~^B^*^mTS;6j6g5U>s>~dur^jILSw!Nq_@&JvzBqEvyT(0 zR(psuH+Z*dDE8?PORxe|@}ExS=@jNs;;+mr-HOyDyFJaCQQf}^L<7K_S4v;%#mIs{ zDSfHFExMVarsI#XVv@osekzVhC1mE$t0k5hh)1}DZ5Y!m&nLS_W8KaC=`eRTD$Q1O zY1@!0^Gb+6z0pkBXtL>}+E?eb1C~nT%}As0YqRq3J~@vS)VKawGg6gVMWQu;hHj~u zyll#xRH9&Bjr;D16~nln7BG@UD#xSLWhHGm*!4O!kxdIA{ItB1mRJXV8=wQwoqxJ; zO{LnH*E<)r`4tg$S?g@gUzWKunn+28-ux8_2ZA{xg>LgeU+JWW3H^9pnf=R#XVOpo00T31+(5zx2y^(M};uua2}^?NXcGs;S3Fn~sS z>07a@RLJK%>1dm*-?g4MBRwy5u_;}H*b_9WWgjzu%l!ZdgVZ^QHgey{dW12 zb7xs3-9Z#2vH_Lk+-s`GdpV5RE2>s89Qof3Rami)Ui%XzuM=Bvci`3 zr;|2AbN1IVDQh;TjM^z2WzBLNE%x=aIa3RL<>t!E%+tk$nZ49kb~nOSHcDjl({+)C z7rn`0^j11TInM9&l{uL*Ce*B(Ix)ls`AVgcH^u2t9@H4HS{|^Mbh=Eff$|ijyonyV zJQ+`DJW!6J@)4xSIAUX1?xTq&KQRmQkh921{!#|ttBGA{=8C4YD|vt=b|wAZKy|ow zY~seDe;6pq0SdJD4P)0~XP$p})?k03J$w*R_@{y13@h*RQJwvhnN=B5XIH(W!p@Kg zLb<|nwW*|?E>9F69*U;R`KZ>SSN9YH>+-4;r-yVTY>VbOp0az&U^_vPPuSu09CL3$ z6y7v)3r8eQPG}7%*35oN-7p>bPbD4*scBgH&Ym)2PGyZzlcTXXWK-{CEIkWFPYsWo zBh|$1vOKd;3BuvT+%%URx^|`{YdjC8tJPPQW4DpnYUVAoDW$*m5%@3aOaAi~syWa0 z9BaW?aA?j*bs8}Isx47%!?2=mHw=@WG4%9VGzSuGZc&?G5?QO%*RzIdtZtZ*k9?S} zA%em9G?~9^;51`1Hh5*Rb6jk?|9v&##H{k`dZx&;4DWE4p1Br_LznF|nro}Ub5<~N z=9v&;tC2BHTV#@qw3VM&iNbXbgrNK1i+5Aj;ZRoUoucw6qvPGy`F_n1;;p_IO@{k# zt4)S-nnpbtgeOxbkK#%!u56Z<2*OFu8hCjx%n@>kmeS>AgVBrdo?{qkR|OMQ@hc;E zWRol%W5sMm=&^~mkCDii>fcn{J)x%WVei^7%oNX zg~v*~q>87Cwxpx{a05}P=KSr)`drA&O1<$|Kf3oxEo45{C+~;J{SKy)Wwju>J)u~M z>sD;CP_xN;tWVqFPQ41Id{Wfx$Eqi%sfq4YLe68=d@1S8sjBEDJDWmuAFJsMnWLNo zdwN-sif%sEPq$Bzo}Gkz#wL0kzcd`T?;#?NbTL0AcY5)O(xDi6{z+f*8h!DJ-m`|A zyDECwuvz!%HIAY$>r_)w*(Zw2Bl29(_|2-AdaBipCrX~h=v%FZZ0!`%>J$BLbx>?~ zXE5Q;6V=YsMU8V#P{qS6a-e@k4gLk-UjhCN;NPF5c3;R>j3ROQABgjAinTM$+GPA( z%@?L{nA6iZk$qTd`V{_LFSvy{L#il<#%$$CKI~Y%A|dB~5##4S6aFt5-}#Iy7$U1q zMV;cMuH(L(qh+(7uBUWQrsH?&qMmIfEf)`gj64`C5e^QbJ8vW5H6xAO$A;huu1HH; zZ&*!=-W>u10EgtGV_#0_$qVXcP$k$Za0#>WVJF_(Rm~#R=Zd)&&U<3H@XJ&YKBRF$Wd^$#;H;L z(p<9Y39P9a%OrL>TQRE{P0zSO7eYR|E}A>M7o*zNRaER5(|U?gFGrhbUs$H(0^HQQ zG8!FLXdTn=@)c$~yd=S&!lS6gQUt;|wQ>g>ZTJD#2LCG;EuWFERLEfkn$*>6VkaEtsueK@BV>6nu;Rs|<-)2b)Bqi9NqO%K2M=d`szDMtUK6kmBR zZC`wr6gM~peHGyK=M-yCqiY{v0XT~Q2Ea{#54%+bz!5mi8N1Foaas$R_u8M^{m)E#OgkEW?sN)^j-{3b9Rx zUVcfJm)&sv!=!63C&8BfVbk?gu%myt^lTDr8uUWyD@R{SeHG*nOuR%7ygM12bETKR zq?S-E`p4f=>(7DZP-yD&Pn$M3-@1v(c^$?GwFY$&cHf-d0feTP^S)lbn9TdSg%bC& zujX+md`Caq1L7dX0W=0Udq+*X6m9Z~x(po%@?25Xrr^2;`TDEP0+uR82$-T$9|&Tq zwFHF|tN^7RlZ*-Pe9%yvrHQu<9_?@i~RcE>9iM{@lJpYPJ|C+XSmpg-_+ciG%s zf9UIX2$8gm4O&cq(f&xIF|`_fE0rimf1LWt)3;M!1^Q0vt4QBXeU<1>d?l~a8U1Ne zJbeC{{+v8u8AgTAC57k8e{Z_-sLx--K>?d>r95MOe;NxxKhOnnF-`uLzB*@TVPPWg z_vnX7K?^zh5bge>RJ(Dv{a6!~*@{N!(_bfviUxg@`m*V7edXGs4Dlm)ZFXxa~z^W&N&Ee|O|LqQVSZnGV|IpsEU5taUTKwZWWGs;SwzHa51|Wx1=iSPO-9LFJm_ zWra<(nlf(M#aczMRutWhcBvKN_o!Y|Lq^i-`BE8r9yO-J8=8J_8DE7rFXJmZty-+Y z>;i?gls(KUZM~+MB1uK<=|EW|>eLjQqh*9@nyEaw9qRQruwi_o7GDFX!(};XQxoAZ z*4i>`t2V_BwI20q>IgteQPMU7zYqtW_f3m#)nZ|bjSc&C2u*-vfRnlw){e!(dKJEsA`#(P4$M#j-3_O?`$*#I+101hbQ8+f7-WPY9gaBPHEb--q6PYEQkNu)NaK6 z@G8W%a!HUYTv9J6iN&0oe2Wv>Mon%3>;ddI;vwMpUWJYuDIt8MNSjukszFk{ zLqj!7BhZhO!e|=}<;^E-J)ncA9q5;mH@lYDI)UpdDok%kodDBrO>`bW6`%&N0#I+p zb_I*w)n;sUNK0X@8M7rD7{Ff#Xg9U-WJ-G?!Ln!*2zvlSfPH`ifDr%z+y%G?aKEW6 zq=PdmhRPL^+{4Wv#`|C*(LWdqDurqgGAEhrZ8(lgei-WvNcVDxI)=JFvLVA{=(g?B zM$uxa7%Dc*TP6>Dr%WqISP%8_cAY&KKU|d}Xmxhvnq>X8*^yFiQe$>xAjt-^Bbzd1 zb9ST@-_#2AvCZAlaIcS(k^4CG**U|JtG9jDnM;rGYAaL6$I4*Rsq%k8UO)66QH%8h$jMPO{%ojWp=tH zsM=PxLL|AZphUH{Qh5gk>o<1xjXbTjQ9*!8M;iyaF*{ZCky7f_4%!M}rIS{v5^+uT z)mkU5EM!D%D>Sag1v1WIJED_T@`&TWCbH@RRJ+<_b6ktsUHB>hTiw{DvuFn)eT~UJ zoKJ&p?9o{)l=ixb4z_7!1N{uJ3b3{jN7@Dj2xi{DF0=Nrs58w#k z7~lk83~+xVE``SgRyUE`W?XW%iV)HU=xk~a#&clOAZ%k(>(|)UaiW2N*e!rlfQOs0 zI|(<&=wXW@fYpl~D;tiLjX(#$O~u$8lkdeO9QKO4=}(K!dI{Ha?9FYaPy`48y4x`= zP8-k$0(Z96%@{?)#VmkfxK7TXevB)3tI%LO?*3!|?Sa4$;A~qD8jfy;0WLZU<@z;cz7qSm?JHXmG?j! zU=5%F5CF6QMgVsK?g1PE908oXr_MmYc#!r3J=oDtYXxPR+t<(W6t{ySvqYDE^B_Km z`RJ&B9GyEadwFK){DFRc23MAfMOH#fR5*xjJI=tMcMkMk4a}_$_r&0lKvp*ol=ZPS zBHZ>kq2hryFxin+V`8N&a_sao_sjXmrG*=&W#tQB^E@88`lEhK^#j%Pn|6VDX!SsQ zT!n&1;ej%)nsw^&Z`#&nTq);VuE-son&p8TM7HHr89WDqqOYmuFq|(Av>AE{HD?^r zBV_Y|#`kiCJpBkkFO2jZAJcWr$77CO8ELm0<3q~8)AIq2*Mr^Jh1{j$NZ;F36aIGC zuKXVg30U!X+MK-!bYsVLAj+l5UZj?~wJ(-cEvYFYZ8Y9{*d=Qu5CBO?1c?SfHd`Kl zH3*`~s|Eoy0CuxAlY}kXvg~XvYoB-$c@od$do*X1$;_D~KQqTpY)AfM=R5h?e->{^ zJXxJ}Voz-Ud#i4}R}Ty2#EEVbuWs#CcdJ{sN+q#chF3O6MmpDxjErRGMEXpjm@Sn= zp|}LE()XMB`{h=<*6AR+n9t@HmeP;GhmCAA#idl{bm|Nh_Zoe_q31i67g{L5M<^|X zX{mfh6f5hsW<$(pVu`qw7t@ulsMji;uIO&oM6*#7=i1FJk*U?|0r&~b2yamC!>Z&* zmltz|Y>_JbY5d$hfS>J1!m;C#8Ti=&hznWx@AUa@{G7?IJP}Kz?Wxl8OzBMN2|E%= z*;Y6`Rm23#f=^J16Np$`NrWwUlPdoVecMmpYU`Jp&2{)qU5P{r>CeAKp9yb1BchSG z1z#`swgW5d__Rlq2d`FmeHZjpMI;Gy$U*IH{1% zWnt_BmxW1l3ouSUCpjPf-iN@Vx|f30xuY9sFCQfEeFVOrzz-1kAp*~Ps1CeDUw)Xtj}mx|z()xD7=eFB;6D=hDFXkO zF*dl)K5qVu!Y2sj=L!6RH_tKb`X{~Ni@~P|;nM_uk-+B&{E{(PVOj~lLSKKCz^@Vb zbppRl;P(i8fxs6De2Ku93H%{}KO*pF1pb`BUlI6*UV*l4#bBbXn-aI-2>yVh1Rf!f zCXgYJB``~1j=(&D9Dzp(JVs!FK%T%Nfh7WG2~-KJ6Q~h5M__}%CIKMuB!Tk;>IAk3 zGzc^a>=Jk{foBLj+jcis%!23W)AIygBk&Uhev-gXX|#C4vSD<``xS@%#;*h%Fn%TB zpz&)4t}%XP;IQ#43)dOHX5o78mmPtdcJxXpg`*aP@h4m!(Yw18OImq&ZokfvM6z<^ zviHk@8;oCAn(-?NHygiVaEtLP1$SI_>%}_Y?f4V!rf=8dHzt+|Czi3TNVsz?eXDGB zwi_Fw=tK(;H*zBteVB5mE_`ENO~W6K^GOrqEdu0Lm*8cLtvJ`+zWaUCll}}eR+() z0)a&W1p-9^D+C@lYQa%DOW)SKGGeexU*1pPSpq*q;3|RV2)sz(6#^e7@FN6%)XN@+ z*XYYf2>h5)Q^bOwq;Ee(;6Ll0rBdMp{FfJ)6&F`xwiV2j#dM+F48SM6?D!pi;RTm0 z;7??TpQNHbMc^0R`r{6~Nnbug;C~SKES0W^aV%~T#~ppq#g4(g7rjbw`X*i^eq(&Y zdDu_i4iGr_qC2?>3$B0BYmlT?;Z&LJak-(DMoTLLq z`cm?~gkhP!oYoa%lk;$eKD~#)Ge%`$OUga(f6?o2SoZf>`f?|JnYtHOZ1h3-PfYz2 zc~Gd1e}IbnJ_6rQ;0Fl&Ab}quaP>vz^Z7(9h@01KU?K+36T*uGULx=^fmaB;O5leH ze4N0~du2Gm5`5BVr(= z1m<4iu83qTl7RV_xGRJZNgzV*C7!QjoT%f=Zd()B)}t?TV#GoEal^}c6;Wb74L80_ zZGD+1ma5MNiHwfD!cv73vF&VZHVfnUrQ`I?0bdf+}>my zlF3(i9Jd?i8_i3w{}mpytP`{oNQ(}*E3b03)7DNhf*)ReRgY>inT8Kj@<}SI3u1P=QSAcO zyWWP2wYE6dY>Q3U*c9uvbI<^pRM}pKCUV1%v0{*_*Tp58;`vNICpz1$Rwf0E#TAh?LL3OjG-=_T>raxANJ2!G^CDKXQA^^IERcKmr7>g!e1G)k8{ z-P)E&Hyhn{vtF;YfyPPBfkyFi0+kBX$j;kIa>te3Z3+}iIb9A`quH&kHJj(<$P}=^ z)@H3;shd@dj`HMDR$mD)PD$6$4rrnV#2@#K@<8O;nUq=31SQ-=OFmahi@D{TNL8yf zOsRC6ZP*>d)MIk|wj1lU_6)SwWnC$nKOgEooF_RhChC(-92}^g7jil$2<4U@6gw7+ zT4Fg>EW;$F-$tFRkmsctU_cP+gseA z1LMrf=9=~OS_5&qHId78rt#C#JoX{o+-lXK(!lx2X0yT$CnG|RnK3*W3s=GzZS-)L zW^EZ2%tWGy@@n*HEdE9*d4z1s5?RzW+l^XRrRFx$0$#hs5abe-ID*F1n4#bZFPgdR5~c*j+-jKn zoi0U5`ysj{d9KR8GMAE5U+KbHy(TiXi%_k}nOrEO^){?D*2P>Qw*(^-Jk2GfOQmk5 zyWNqAsdOPHr=X`fV~F3S-M1>u9I53D7BW7;JzoJN$O0uQtg%CzW`Z}(YH$V%&hE4- zjSkUAcagxv1nKbvjuN<;z`Y~h?w4!KLm&M-3Ahf)wge^#>_?ymnHfwqcEE#;x-RWz!WK5}YzH@>I zN*$`rEo8VYSf7PBxTKC zuGe-%CY84BSfn5_&^a$s?RMp|Ngxox5bawWR!K+rl7n?ye=y!>yM>G^an72-u?PQ{U< zymh$>$OUoxI$xnRu0J!?lyXs z7aZqPSp?^)!1!6_e&1=iu#a+x-V)WkOn0{e$YeysBI$bKEXzu7*-S}s@@ZF^Jj9Y9 z|2*Q8HN~Y+p;3?&u3W^jkn}C27E9fB4P~A-5b2aTyhX?}dMl+=I}milIif?fuz111 zU0Ooz6CZ`#KIvwwg%l21geazR89%Y5@eMn2e=Rhtl{&2@<`OX~mk65V54cwSWfSAf z*S4DN%ZffjT(=`PlNaUYc@)!%w9d#*`_D#LjxFI>=(>pmNM_gGZutbYIoe$Fl!f|z zy3$60e_ge^M`p?wvU4~lnOYTDLL2fU%&w4>n*}aXflHczIZ=_HA*zQ+RS&78MH(v9 z6v9tynS&)KpD?5u!9UlcOF3N#s4J{!>FPd0m3(xBWfDTLqtW~t%Gr6}*!)}FJ0}{G z>%d)nMJedQQ~2M1b%{Tg6LTC{j#0>eck5BZAsllB5Rrmk8sW{S7mb@+E+u2Uzdpi8 zC`9985&iie%+Fy*@33ik__Bp+mMCrGLca(ojGZW9qlhWufSkxTw>!1aW3|g`aJ^QY ziWOKlC;!e-?x2=1wpz^&5IxT|TH9Ti8Rga3m%g;!C4|f<8JJv6ZegZJlUt#ryJXFJ zR712;=E_paMsaql)KheYzpCq|UjC6W-|(7AW8=J`sX{Cvx0H6ov@S~VmS8pjNy3XWUL=l^k7e0h z6*8?>x5+XMcD$uE4>4^=Y^xTv>;QcG+gimbWK$&Dm>e~YB(6&gDjLE6#gYlf1}n^z zc_o+9bOw&x$w#7cDd6a=y@WEX6AWdE zBBbFi_k_O+ad)cU$SRL@shaz~Q!Z@#jH0s<<;8IpmG zoi6vA4Y?#RW-v7m`#>^Y?tEfqQL>q(9U* zx^f}=$};pCRT|uaI~8staQm%H6$)u01Gq@iSw9Okc>4VsFF23%P%L^(RLU5*(vh-A z!V>7LOQT#H7bXrCtv#1Z=F`H7SFPX_UWPZ=A}lxSy}I#TyK_8hOBO;+dwqBGF3;J2*w33xdAPPM}#(6NTbK9p>(ih za7Fk`7Sg1VE%A018EIFArv)7e2qtmT*b&o~53jQ41@B8nkY=Ri(oCPJ>xCY~>@dU^ z1uI#MNI1%h;*&FkCVn2)QhClqd0DX1$0$8}_g}eP+l0Dn{iJ^zwJL3u@O`Y7Woat& zP(|wIE%RP0lVai0Aif$Wk*wW>eJw4oYQpH(wMED;uTBy^DZ#0^f)+t~a!lJhA!moq zngX!Dr9~h_mu>Mg_(Lsi{>JovOYSu-JtKW);^|Vppciidu5GdEJ^+!5j_d^BaEr}4 zsIPfuo$Fe>&^RYyb51YoNSCLQBz-nz`sYfim(nI=Y8UAaG-shefw@ zUN0sC{U$;>Axv&o$ojrX!3<`poOuGdF3+1!ZYub{ z=9W^0TpCXGRBSZ1>{jB=Ff3E~s|3yvINN2-fI97*w9M=kLRjna#wP@K5POHEN~r4u zHuZo@Mwu$7LUuT8qC%Htxl*2%R!^NzQW@uUm-;E&R+q&PL!yO7m$^0>Xie<%+f0#( zVU@5kzE!t_iSML_X!fKgJu`>^BEw8=t&8Q(nwW(;Z3ab>6&jwR-cC*ltOuI~046@2xelzLP>w8|#;G99nhMfG*bX6J`>X zuGnr15OujVeOfwdaTN#+qX#)&jFN`vOsF-IW8RY-f zt}+Z6MmTA)bImn!z?I%+8g34|Up1#5xd-KAd7f9*$p4DV{yre*AXypK<#NYcF25j!mq z?_&#cS5*k&8AP(A#Ry51NsByr{gz~SR=N+1v zgZ_%if5du$C)>c#2rWVod+li=iM z$eao9dx@zG53X3>04R`OKHPP2ED8J0?D7QswXK#*gqiC!#LNWfR7n>Dv`BD5l#$vzAhX<%IeW?*$FLelZFcx#;8cTms@ zq-^ppBakI9M<8djbR>QfJ}SssR_lbw4}<^KvnggPTY%&~B28(E*QWe@16gQz#z{h)N>37ar081e z=o~|fD5;`8x+IGfS?9Lft!BrkY0MOPAI{dBt=46A7-pW~7yZ5xh6Hqf*;O=gbEbpx z0NQA#Vx~&Dfm3A`{`1jDG&~4h8PyoQWR_jXFN;0oV`-6;r@!kJI+X4)D2VAowwMl} z)SoWp0&+ZtBTJIgYj}`0DwUE-BbjJ-$;3i-Dmh6?i_!))O%#l#vVIro&?(_UDHjc= z6UnI7S)_dDD6i#zh4L|FZbt6x#`pQOr=upgB9BN6pea0}GmM6nWQlGS~jjcMoLmNY7(R9&4c~g|N zQA6v#DCfb}D7(Ta^I26mj%Ae$`V3{z;EI-9W!_x{!j8c`Xe?KkIg1#Y+`bbq^=N2#9StJNHVd$pYypw zDO;8jLvBm@fZzZ;tmsAs2VqAP$l(c@%4N~0U6P|;7t=U-30&ThfLst;5))48Q}I-{ zUg`8n5VuV*;VU6_d#f+~_6fFb%x||*FGD#ErM_yNF2wNpxNCSKrVn>au;`&03U^Lu z&xB2AG@Iw)?fOF=sR~kKxO;*n7jmr?6Rt0|GXuwT<=pEz>>=4LYHjSgaysb*Xs0(e z>d@JQdnS0M)e6-j19D3^PChU9Pp~<>Kxcb(l$dQNk)H`U(HKHprlI*F{teR;%t*|7 zSHRMJlfR1)(beUXb~qsxq#RKbJ9Z2n(ZiZT9i~y~b00Wzm`9;}3CI>A=bHZ}<{~9j z%ygp1l)hhReH9symVE9%&T_HaEzLz~NaM$Ob#rI(fP1LXpn;LANH;qcfy8khAKh;~ zwKJrIDU*6;B?rmlEJO3D6cUeZ6a?iCiDg;A-)qh~G{tj~=m|+8P0Z6GAy8`0WQvXe zXTpC1Dy`^p-<6OlpsqtMVV#rwDXA~2KhzwNnOoH+?t$JzQ);|v zfe6pBMS81{vx13wyHBGDRk5jtKf_%<<A=gAD#AQHbBs$E(^W#vpxP7-5oal!Iu3 z(0cdoS4LPFqDp!b|3IHvU)-peE%=)Lu1|cF^a_8Yzf(a5{@>~bz4hq87wGWKx|W@d zmF4Pp3cR8{?}dkz@ui$M5AUQy9R6O(Ei)S(-GTxUDT+|pyq!IBtmqP)XH8f4X;9Obod;PhFwJgetMMM2urQ)c87iRepWY;htjs=$tmfg zoUo!(=`{YEusRP8L*QFCq_4>Yc||cAnTkhaPCV%#my0E4+0_|^xGC`{Dibief|ZhA zhg5+C>L+CPMx{x~b}0T3gMYGB+aR8=8J+9kw#T7^;w#9gLi` z;PhD*@L7~34qJ!wHL>P;m6(nyD+|el{;VBf4b0;M3Tk-{)CT5F9_IE=&`1!xO-vNIhOPqF_wENRb>A}>Dve> zE-7Eq9)=Onj<17UlVv4(o~>|L&9fDbc=JrxC&J;5P2*1FUmpFK=ED~GHI|T)Vhgf8 ziO0=8M69&z!~$$=c2)cRyK^yBNT*Z9jOaJRd7X?%HHX|IFCkW~A^omB-{w9;vK~sQ zIIR>#N2!^)oF})q2imZqU2&qZ^UBAJEy7(Q%Rj6=R#@;Mf+g3l)WFv~$4a+Jc90nH z;Ff((`x$9VdGFlZZ4)V#1Nv$Qq)0d%!8(B`#LyomGY!0FRJ+fF!xlU<%C=A%++-{YS4UZh z#tz#_8=f2GUA5GZrv5<|YkkMuhJ9n~&E<3To*G~|ofu;ws)rDxM6KM;GNEuLB=dzb zD?XwrMMjzK`zqu(l9P7BM~T_eF^wGz!0~Z5@T^wW$c4MN6k382%PJ>=nOGzM);OI_ z?CZbEGbOwONNs6)X&-lqHjUr$q3^Rk<#yvWG<(gZsb^tir=Y3y1{ zpg{4mzQQ0qD0Z_P9RDkOJJTrjzEFHDFVv`RtT&TI78s*7mc7 zn_87bv2w5%{>VX|I9l6?)q9Oc|&CeTT#~^?h2Ll^fHU_ zo}iY5=a#vvy$a+@%La|`^G0}?iW?zW+9Ggtm1%>L%GZ^}KeR<+IJlRA_N^KI!abEu ztdZ4!jW0TCatyIG?RDr;Nu+{uIr`M4DqnKwKqnZB+Uq-Tyvm0V_=zsB#-s^js>(Jj zqUC)g6|AZr?EyNOUFFS0QWBgPP%O5CDp)BV+d;ZZzvDY_s>*yS8FT8} z6e~)`~W_1qXxy<&vGxB zNWf@|*RPfphdNG-wOFd;rCpLYC(S8qvAW)KeUT(;5+TfOd%|s`?f8x{a06&nTKP>V zRsKfpLNt7cloLYpToUvOs|XS9QkHBFPYvu#aw1C zD~TG}uu0vMSCG!hBaB8eifgOUjfiHWei=USDo+DRYsOSdmYi@wXnDwsAiC%BuJ{-wQ zd|ziOom!b}iE;@JDwNW08<;KRNF(IT5oS`^g`nNPe))D4eHmn%qCK-%>na%D0NsOL?UP z@wu=h@BW(lP;T&?$ViVdCq>@*@qMM$IMYVbNmn3UU1kf_Q7W4(MzpT#h}>+!H*VnF zgP)88#?mHI0QYtf+knSz)OT}e;G0-uF=|8EgxQ)^@$7 zwxxHnq}vB~-O8LNJSSx9*Objl)_m99>{S1cDbn!KhP&=%ix(C^cCpF@(b$REP89CC z&p3`&w|;BwDqSRiBLTx0CU=Z?SzK?m4~=oNrC94n0ui9Ar2*cIVMmayqpu!yfw@ts zU#5FH$2B^Nwci2y6roQl^cm>F{Q>R{5l(V&^TdxA#ynIk86F8RjZT&4v&ALU*Nb5b z)!#LDB-N>(cTLUKmJUAS^p2?2T^$l`X$VLymQg<%C}(!I+sc+uh>>ps?MQVswnt(H z;jm(%cCA7xkVAucgTT>hxDUy;z{GmM(MB9^u}EWChc5d_zR$Dtlpu$H7z?wL7_N`a zjuYnN$`iQ6)}UT<7bM*E086!q2ye9#sUCMV^5rh&C0O8s)jdpu=9g-X4q_dYR~&1d zZk;U6+mmecO?A6;BfTmXY%vEL6`zIPxbjc*G+1^i!aF&v2s`VA<#i=3yG=_^ZRv4j z-cJgO)0s?OT(nQx0Xg7{D`A_iBF#42xc-r=MQJ{zufe-v{EBuA>1oyUVkU>$=t(O8 zpMIK;C#2Pc&##D_BrNA7t-B3z8d(k;+U4_WImOBnl*{Ep-qlCb0q@62JozZso^zJe z3X`}iKF#{0+PT$DH+iKkP|A-r&duOQ2wZ_U~GJf*Lgph=P(MJpVBVYY?JV7;qWOP z!2`eb+9L{dx^e8&tUM;1GpM6s7{<=4(h!r_SgDxAHRWjr@gQkAg4 z(REPfzHqIMk5kGl_TCugs<2lTl!0ON1AP9E1#LAO>vGlUGm6K~6qoctMR>qDg(S3e z(XMSHRaEVzBZ!dCw-FAGQE*KHM+n?O;7$V51T1~aF_kGTz?Fkc5Vl%Q!h+dbwW9`-<{a%jD9H0BY6g^3zr7~5=p_G~8y!kXS|gt&uWtfl1jY&MBQQZ=lE8if2M8P_aEQP)1g<4;n80-e zt|xGWz)=D>5V(=RO$2Txa0`K335u15zTYLogCQx9BZ~SVRqv$EwKen-pOIabfQZ}#7cMt;BwZLDTIrzXx?YCi$VYa0Q4c~k z+3GIMFM-<$h+VeV5MCwdkQ^e(A?oHKNfH+-m+1zt@{3={7U9?~^AX+ULD_ml^{0UXSQffd?$TBzRP^@J18IJbL#i~yX^2cAkbCNKaZxZDnNNp?wT&Qbimzz zv%=P0HpE@I5tKnZL>T*IDoyK2NACM}yD^+I#?MQrnW( z*CB1kHRkPqC{vxw1Xc)~Ca_B241veJk;pk##L_wlE<5++^>z2I`Y?VW;0IslFcRLv zfggHZ-{w*W6S>R-!rGakQxzC_gY_S(NJ^R&TJbw4km|KLkWi>3e3B51zQM}Ga3SSe zBw~Kc@ZKp_>O@6M4~))&Jm+X!_Gn|4Zg8rAPL(#9#OmbjyDo4N>7MD-y-DZ6(&Cw@ zY`Ye1QRN}?CMr*(1tvtYR3tgLi?+7pKz~^46l6wtWqOW3RGhTHPTFd7-fGd6hTD{7EMk4iU745k3(r zud=Q{hrx#U(R!7M;pt>DZl`DA0^Lr$?+)!uWLaUKx2AHLl%e1^yPaqx9*svU$yzuO zQSKxZlWAT|m*xZ7&LaI~^XcVKzOc-vTQCvTk$`5Ady?P4rV&2p$N_DNQkJSvD;lZ# zFzzAGj;VwCroS{m&?WU)UnC0aIYwFm3OsQ+7V9@x$%W&kOXq=JXPe3k+7##E4Y=%m z++WikVHK(`?4j!$6C}RE8E7c)-Wo=Ke)cE*a>amz|sCq=53u^c--r>?9t zu@xxAiP=0-6BV1aRjZt@wOgBXk3<~|PwPe68#Kf3+&mK^SGp-5a%eBqoBSGv=SO|t zTa`gdaiNe_&!?nkX|u_Vsg48(nM3S-EVw#KjvFc`j^5@W&g_LacAH*-G=ry>bLli$ zBn@-v$8Xd3EqItq`DjcI=@W#-7Luan#@XV@AT%$aqVivWWsB7;^A;k-i5eUsfFg~a zwz!2u`*0+p-wTm!%V!dp z*9S5KS6hg>?6ODIqOlbnBF;BB{fiV1tgx|@NlIV*Ft69+t1N()YSryFbZKb?z2uQ~ z9faJ9Ix1oY5sz3bL}zm4cIA9525V#bKF*9xC7zO>VT9^=+NlfBt$}rzmy?%QCiD@H z#9I72X23upT6or znGVl7c0eN1pH3iD$fP4q!cIb;g4Mr=srbx;}JCD<8vAIYEe+}CEF9qIJa zM=YS&o$3;ryCb|Ub{>DhwtF?)E09JjgmWN^UF+F=lt{8@w&xTA){KRsw^V{G`2LNv zO5cJuj8+HWN64r=R%LP9mjdI}zD=mga$w)Eq%cfW`}U`*Cg=?Q9ESbX-hESAjSy`( zcCN3jT6{MU~*T-*EN=C0#|6rjuE6Gp+B)*h4*OsZLVgoUC;2S`I2piHbUVS z2BkT2lN7#8M-cb2)Jai2=mw(gB(%Sk1Ic^!Q*O13&HA?Fx8V#tla(dz?yg(BlTb3m)&I+})eY{{09=MLy&X<{AfUedI@`KeD`0`S0w87fg-l?$P; z3J-4ZL7R8!5sti{sUX%BG6a`n&w5e1LdLP>Jvw}h(MB`hsX^&R{^GNGaEe(+i5c2RGP;kjq|1Vjsga4W@#yzQ#7EnNW- zrYP;oSM}9oGb*!e(lcMx5y{9!+C07f;8$5E+TKbel6C{0`zlY4c4>YeS%p?n_5kt{F&vA+^eLi;{k!*Xq#G4RyUpJ+I+u7d;`t9@GK&bt66R`@_7$ zyf3#)g3&+)%{2xXsW<3bZ`3FEGZe{Qzid`RL#^Z{Qq(`FZ?ut#TRv{G(`};)2;Z;6 zBFkHS?oIhpDx~CMH}n>aKC45&^ZX1#8hh3(PQ{fPc$pf;pEaCT{0Eb;?^$NX$YO)a zE3*e<;#rPLb!Pj#4qw~vRAefGRT+jn0BdP&M>md}`ChiX8(c_*k<11MTt9LzdiKRd zJ1DJ-HplzAL;ecd3t}L$KUq0DRQ)m5&Q!K4n-watQR$Lnt-_LPgR&0JsSC~yuJ@46 ztXg@k4lge_xX6u$@|K4k9XVS%zh9OOlB;!b$0UI}i`pEiu6}ACT_vljb8b)9zJrNk z@RA#UH;DRGrCpV~=(@gSB}e)X%lYcGTw!}xrLIDO`A=zP)4|k&cOU3pav31@P491t(dF7d zRhK=%&f*u@R1}bIAR&+<-$#OTWaaeNk#lf%#!Uo(jna|_Es*%hVk6|))PIfmy# zvs#?+o-fmZzs1E3Y}4g>rC~l5vd3)!@-vu*0GX0Xsp1KGlVIRu4C5rL?I&=6z_kRf zBXE?!jRfu`aQ{`7%yb3!tG7s6m1`Gyiz|#Y>mcyZJSPW_wT)nDK{V>C+?aKP_21@+buCj*I zf<^_Wt>!-?7}JV`R1%Ds8fHjeQc5NX+)RO}M<%r}w&>Vl`&3$3PS}FyK26W!ep-vZ zm30zRnXE2u&n%a;ygYZEmofApwo3O!^e75gygN`ymN#3nKH?kZ?tYgQEm?3A{nzCkcF~?_!@z~ z)H;@|T=dqSJ}vHblo9|akRvlTUUJBkt#C3S2YQ{3b1Lf>wxOerX@C~94z`1Ts(0V~ zF0?XF)ytz4y2>b%VkeT%EeR0|TH&ArYdWBWJP<0iYPf{8?jWzQ%NvQLW|5~EYZ&?v z>f=Z0dH192_UCVgJc&vf&5*W?>w0R+Eh)FHUSxJS6E~9c4uMB*WYJ43O3OqrX2nrI z^4F;%6fNe0nbavL+{hdqv17Kq3SXdjvY)4?B;L49Kih&C%C$Cb4(zVVC#Ka6xquvH z^=)eh-k7G?2H%CCMPQeJI6;5CgFPQqqr#Cay!H+rYHaFkVJ@Y1CcLA?H=pbnoi)LK zY-vlif8ekU-2I={f%vJ2;C&`PP?lc@FaO_Rq?o>0i9c=pi$eXPAIw}&68aI8JtY>Jz z`ej~KrQAZ;wjFq6%>00ZHAC((nK8DTVqI1&Vx>Ye5($Y6{e;w{w>a^GWBeV4^d#R@ zPv*x_J$&a^S_i1ipdo2;S=tZl-I2+@-7e#lwftV@`z~+E+8Fw0X z_pvFCI#H~lC|X029rtJlHX7nF95Lx3go#NjVZqshObn%u9gzpQK;+Sxo*OUeZ5*3{ zZqIT6sg)AleW$KCw)GYWmc@H$2!dr>rMJLvtP&KDx(}|S{!U7DiB_m~SRoE}-~GJC z%7yf*kZ+06d#vqRwb@?hhwEVeer6aOt&UXwN3|o--eb40%HtP}z+{2Zb^k zy6Orm={QB^!O_j``!&7K0*V^nh|po*^C&Y{bkw?-NbLYALFSE4CZ<7&TV&%R~mM3xwUqgQxgzEy2-!xfec6A}{+ zypLxw5v+4g_kM*6lnV#n=ibb1cW?*R{pB;(E$`DOk!oUsD8Z|g+b{*3_wnt>h*yz| zF;5r=pJ8zWsg`Woy8eJ!;I#op* zlOYGB?ZwTNKW}qRJ0ROGleN#iK9-oy(u#Fd_&+X28+!_A2+o(>5{(E521?FLzrD8- zx0d{Q$F;>&j58V?5umi{H?5GXy|OAGL$U2jXf0%1tTA8vlq@$)VM)Siob~i-u)MmM zR~ksf3R*Gw%w<@lO1ZR*)8WP+F+&P0*1D_m$W*9f=l&Q5D#Y^1q$Q(g23^0xfuRLB zR7xhBma~(BHpk=lJDy7{BBXcU&1+FvX%^^T>kM)f@t z6}erms|6WKMYv(zm1zKVS!`$bDQ$<7$FDqPeDOuHL>&X(9~Z9&6HXVIFu53H#Uu=w zkHp%MGhRI6P?nfAJI!ZmTg^sj1y!ut4u~@>t6`h+GXq~jmYl$AjvNeWiI2dkGlmCO zPjWt&gW?&_NnW)J`|)0DR^v9jwKncV|oZ;z|VD=f*lMtAoouP$)x>#en> z#JO3ovjtA3%(R#W<>p1^t=BC z8SB(l=KX!mbYK21ugV&i`)geA)hOpJQ>$<9)Qn`KAh*x3+TS)twv0YLu6ZpHTsO?R zyh=a@ue3p3gZaJ-y?**%U>8<#M*W6cD!xUFRcC*06-3CFS*VC+L=QT-6>VT4jz znqR^;%wUBu^1P0z(Kj3%nu<4@10%0!-?z)%&1NH5=Dv`jk_UI<74wQw@4%^G1*-+q z$@^80F3l=gf~%#0xfDWdn0QscFxp$F5j;zm4F~Af%Rzm;#@8X*JNrJbTUf}YL#wmG zeDk_zu%*5-q|LyAQ#AF4zp# zF|C|(yobExf{@pGyYBPNB@V`tYy+^I@RSpar($+21-aYU`e%pn{~T~4EdI-2*AEAj6{HR#A9d`cnu6t$$fru> zY;n+I3y9|=M1ihU^6{Y~W2`+->UG1CQ<0%B1s zT$TNCpDcDxS`aHT1JLicQV4cR#Pvf6a(&2`Ofk{_^r$)|@xQc}~C8?&I| z?6~##?iie+=gmq4Dn%U%bO97I8b)EOMIHEzIvBcO>eDlsox-4*uR~F4SWQ?WAqL@y=~M>^=XsF~Crb-CRG(_4O1I(!;931Z8)Z%o z%nTnWGT-yRIcPk0TPW*?j&MEng^yP|*$YIZS{3f&UbC%wdQP(SJFE2OFH!n3Hc7XvuZrRnh zIXSAdW5?z5A935Z^z$FK6-(Lia6~=xVtFqZ^f_i;t0e|X3g&W(FwYc%;iMCVksFPu z{pynJY1a|dSI#jX5QZQ( zs_Xl4La>iTs{E*9CGABx^=;hj=f2IGy|Z5Fz&ZT@-Qe-LVS-QUT}NVQ^$g{rFF-BW z6Z%aTRM)jEJB$r>iDKJ7Qrm zEAONUxcL*zbjj9Q!kHK3dMCDOPd!y>P@qX^dGpN7Lb<$)C|#!Ls)Ga>c54B}r<5p_ zi>Y#MRr(w8p$nE5VxhPcl(8SYI}QdKr;&WZ89cP(UhEkU&2WMCFo_n<=L!Y7bxbi_ z)k)8_?$=IpyUq2YOp?xuOlCn!QvP6M)5WD?Iv~CLO&?^GbU&<8WN&R|vxttcAwh-bRv~i)(Pia$b*N_%UB`lwok!w_dB&?2V@y;j0 zmVBLj8|v$#BJ#NfI~onk6DT8e$T(M~qS}VM^9!G4mj!ZKIU6;4xRKO5`RXOf=Gv92 z-(gC*9>GQVXd(Q?K7EsoT>0~I|z_euh;=GOb1bA5F?>%5Qg(D2o*9$msLq ztFkK%U-U&8(=};Xt7Rz*a4E&yN=lR$%hFJQ0{`BvS^7?&=bjs!pKBotGb3)G%l`D$ETs2LFGFUp z^ttlzq>^%jQb~&|5o>P29B%SSZZ~Ph>BZ>5DRie)JvOCM8mfHb-6byyhT@TrC58;S zN*OrhcNxv(yLU3&bz^(WxX{LR_xqn{VNW4MdUR_|A+Fb&s_9oS!pCP^wxjF!KZ>Hl zvtN`OC2mD6*XZDFPG#3LlwGr$O?}x-cLBAd4m>%+HW$?+HiJ>k%SbZBbf#HfyR3;% z0M66hw7UEJERVu^t!ns~ZH*WK90x|bGg{TqW#MLUO1*Oi?;Bx}R!I^;zG*?SS-wX; zD9oQxbYJf+EN-A${DbqA7MH^Aib0gt(HRz+0a5c z^mrLw*sCq5Q4gwSt|^n@l@V642dB%fyxK$EjO`Y+^6=rI$&o15@UQif(KWF6hh3<|a)7RRc7o>tB;3`1&4Y5{MKu=RRyx*~t@nGqIZ`&x~7Ha(T`S-qtO zP#FrBK@k=KzcB-T%iW#n0frIyZJLMQ^;4@M?S|ji4^7frD25xPN6V;j=0)x= zQt4kBVXHij-H<)_)>M z2*4jxU;d21pX&?7yjEBxAH?%wibVY7h#PdeFMZ&5x_$T8!+0zey3rjf6wH;7roi9z zkOMzw4Mk{G|9#KC@D;J&Ko+G`>v;k4mXEwVcT<%`PvdpRnvHr59$?>P1v1mUK-bc06gtBFZF! zoW()SFyc6gWHL>fAw8^fLw|jlOi|r@j*Jc@@mEsj6Zqy9zf_biYSN*)Gu-unyH! z`C|g6M)z2_3)!JbD=2r44(AB5AtG(ewkY0uc62bCrK}FcbIFEeE#)lC4r?GiHGoCU zQMczunQRSi3T^A$=)k49xKa|hzu?hP4lLn`yJ2{2bl7r^MvyNqj53YwPsYubAD$W+ zJUGNv1H$m*{&j%K)c(+U}+)MqKR4suvR$Yc|?#8_EeL*`G9&WxgV{R?L{0m2&nW_`{yG9>%-^JNkoUOMF%J2+#YL{==a7R z>9o%`M~5&4DjbGnj@wF$y3XH?xrIEOr&U`Y_46i`2#vwTMTn+EVwT+AgOVbaIvONh zHnNKC-dckTdzIx_&>p;Tbb-NA7CL*Q;1EG~FBC_jY>%?oG8BdMZ@4(Dz1VRo=2B0( zS^*K-aAFn5ZfCD*WMgq$@^E>S&w~0E5jf$A*upfpvTc7Rl2T?`UgH@S9HW8#)J(1a@NpQIUn< z?7V;2>?Gt6n(BeEb-hNy2Zt08Rt3QK4V(j6N>uVU_wz^~K>VWr_i@zTOVQPmKDXrtHOn|8oz73?Y1sD*N}N{sUK|MXyu(e;8#W1?yQp zqeQ=o^Tw!8yAgwrh~XzS<(ywOg9800{dhI!rbxKGuXe+Kre^(D0za*1n$dHaY^cYG z@pFXt2~GT$=KEiE`guLtT*zQ`>=%Zy2-M|?-F<#&x?+dFJS;t`^8d=<)uZy4vZ1)6 z>>K|t_2<`yGdseE-`FFanBi{@+@*3C+78M^{~uNIJ40Kndi1+P#UqMP_l3rLlqhDMAw_nL%MM1loe9#s*6M zgaF08GWRSM&0y)dbYifpV}luRoQ0q>!_qnbyQq6-39OIlgJk_Yj4u>U|7&tk8)Jj9 z|Ez#6M3Vqzyboz)I!ASFjIj~UpK~xN-W=l?5PoFSbJL9#2zr?F=|a@@aU(cC*5jh3 zkKp)#4eHdituZEZs)Qcq(IAwj-Z|WoeoopN^PglfVxRHN%yWT?{+_*-0v$WuGklqt za@m!!A(AbZgDeJ~9#)qu40p#fL)K1`g}Y~mtu2-wZyUVqr0hM=5T9gA`qja$*9f7x z@)A5ZHiY3Ml@2$seB2ass}4LrG;dTMunjTvtJKvYb_=c;UKtyHRG>Tf>cEkcW;dk& zdHCV6p^_=_hYyeKangW->(FE>9e!kNm`R@wA_R`lkB+fX$|d}c*N?Et{H9lDmR1As z+OPp-Th15uOfSI~$M%vQ%J3!H8(${yl`$PnF)gEODN0pL`Jzz$HDUfefv=DGg}s3% zh42kR{f9B*A{v!U1@o(r#^u3p>ZT6f{P3+l1|7Br9kb9}dJ4)dLlFi~Bsnb(nPLhG zd~n>)ZOEU4bHSnU!RJ1{$6ev*_~04Q%FzwueciO-#__=-1!r0u!<9-6@JKI7^1#cT?)y>z0JlxeY zy!>67_})(KyL*q(BkPseV-6g54vtY#_v|sIh>Ft9z2k#b3GOMCN2aB{P@-0d2+Oc0 z6V;g7qf2xJ=l=15Mo_aA@-}`Rru#=Vl1~*N&@(8etsok563SliUE?}POCM>ptkA3s zvJWTrp8W8R1@G7!g}M|R?=|;@$=ny(WAc)3wWI0K#@=H}r7I3NdsPwD>m$5(Igghi zGCq`15GhEE4^!!A^*_8vBjWBNP3^HRsFayK8X1@CH@!E;N)|Hx#3lyWy(f_Bo}&#k z-%ng(YOCh@7h;SS;$!1`oq5y1Eesu3n-)af!%Ta`nBe0y+_!F zQ~e1Oj~SG_L!nP&{rIpo?zw$Lqr<$TFlFHB@dX+~@@a+dA@IH9!#H_Va`NvZq^ks; zBk&;t&yVlH{c!=jKu9l+54T~^mVRaET19dXKcY!F9V@2n$do-3v1j7Rh&)uxTJWRp zjH#15FMA?^0@v%k)GO;Lkfp4l*}&)Z-10Z1Y|`E{ga}JbQ)ee%hwlW>vEbLn`F@}O zv1HtsPE_N?!d3--UB}B2)Nae>Cp54;l;U zkH`7OkVr&l!m(2}{E4x&=yB{GUGGoFS?}hyxoX;9XfeQN2?(3I8T&E%?m}!(>^jt% zD)o+Fvj!FnUmJIyijf-UntyZsB`vSN8t0o;JT`w#AOD8H-xByc0{?4#h!t8%v86%F zlhX#B8B@~S;7k!E_U_xKL&)f3X5?X8lrphz@NP(ihiW%eU7m#H{rhw`e23H`5od&h z`-WQb;wT^LN0{>JrFS$< zwvS{Z0{0TQZ=c@)M}r{;^0;oKHvLcqGz!vgH|0%$FSP{s@6kR)fa!g#;qy8)O{(E& zp2AC-pCXtE0{e!WVKEP!7*=PDoDVwij(yCRj0uZbA}^-ZR0SZYhk@r#dqKm=eZvo8 zlNN+%4CnS4o4Joq!2CYG7p0QrD;^8}Z>f0{(DM73Sxdj+jQY4}evFET<;Nwewcsu{ znNsrCI!z`gieVIhcT*tbaT!i;8Sb4Jcx))S1(IwWlI46Vz~0$C1e7K)5yv0vn!f}_W_EA^q{_d(U%j+^uTQYY{IXR4s^k~t5GvrqJ&7sL;cY|*YO%7A?w_Y^Ym>fcb*xz~O%AjEg=PBPlYIGUql?RN;B+gy*`SreNlS92 zNT0c&e;P{gjv;fLWNTfJ=IJDX_|P%1X|*QwR444qk1m&mcxOdywrl4e8d!Q{=n_pv z-y*35nMu~w+yxhv($%f~6h6sUSG7IB`k4%6v& zUk*GDFulBXYB`lDE@@IfyGp(jvZaPLO-|YWd{VQ(QcjX8qzCYE-7Vb*`W}nICnx>t zitM$baJW9Gxv?{(#;471SNwLz| z?!X`D&gp)T8vKWQ)r2zMAMHU3q!9K$bpZ`E3Kvv28y7od$=-rLp7go?C`l@YWBn(S zgV{1R3uUwERFwjobXs&rG#U>lo(jO9P7d_G6LYBWhx70kZdY=yg1A&nXJuRGvcvoo zQIY%m$zeuDBqOM;!Ph5;`#F*e@T6;`kYk`kwkUj)CZV)nGcw-+n(y>%zrl?i#pwTw z|C?m*KeL~8!-nSz7et8#P`V^OURVjhZ|-M>lD|j^rD{khzfA#1erG>#mqxQI&Nt}p z`|s@^EUuBPw&h8wU)VoHnj+>ola$SY<3z>q{@khueX@vPw<_*CFgie3BI0YC9*xR-S*bXf-$hNMS1 zJ%3=Z7?DtGNuxVh-_nqV(%y!%!xD)cRu1@u05dTURqDq&f!cu~l#sQ_b3;0Vva0ON zCKdAJkRC~L8Zt%@pgye8H1t~sdSoJ+5Nbt}YPoP=m{w1W=cxnQq?BEGV#bcZcOP*1 zvdc|TXaRAESCo5fXh-3mLz-x9H1-spWvIJ_|lWw4NtEMGr7${gBpZ*@SezwZ{D zJJf52mQE|!q9?r+m%^*Y*AMA;7ID`#YCByVv4-euRqA!ofu~elPiPVrJ(YKHqoU1X zQ};SCJ05v(>RzlnEdNbL!*TrAv5`Z{?@lC4zmZABAB5H+zeg#{dc% z@3Y*6NrB!zG?d9DB$L}Yr1ct>XUdM95bx53M6Kw%1^kOce$|+ka=$y^j~!x5p0#78 zP=tEpkU_hWOiq8g|DyvxYNie9eGO60zXNa3DKL{Jz=kwjKzDE?v5GQf-Zst$Ju3IVZhg6H?<}taY~Q z-OkBMr?nG`+wpKb)T+ZL5BCa+x`t>pnupIF?lEvF0TZX}mk$pSc*@eu{l&w*f+@03 zEbz;Rhiy}J#o})c4>8P?>6kGu-nEh|l~eGyhj|zBN}=7=u3Z!r)A{$KhRkJs?Om_nu>v_kTO)BTgsYNkUuT;;=>JW8Rv?`qrJ*8M}HtQ5>@&=V4D%Gy}`KEzu z(6NS%v(1WaZx*?Xe5#u)M&wuJ{H`bibT7Rmm!&Ot0Yu{it0fIa+s-fgoFXGuRK?xv z8AhVzZ=d}Er@0+YxJeprs3&?jjPNpR+9Ixy9SKL6~CADrv z8KgdE?Nn@DYd(XaMSTG-mN~8MX}&L-APV^W7c#B)Z_6ScMv8r#AnLa48g+ zWHm3sC#^OA?ITvdXop0sts(kq9#S_Buo1?iL+y&mxaAw@p4(F9CU$RtkY9gdRkEbH zSvoM3!`P_R)?qWt5zyaRN*8m5@;_T|R=3H(d$QhCf&3r3-=O`iD$sL66d>eewYe4Q z)GF=j=E>G(>)|eR>$QiDhtpfNZsoXRQLbR^!Zuud=(yvwYv<@Ki>wYfu%v@U z&0*csGp8(|A;>0?&(5XDt^?o(NpP`HDd>w!BCm}_VyMMpPei+d`?4W6*F~+eNnbgq|D|BMF)xv_->NSyD?*!oYUinV0md0X^d$n}NN?8{E z=BuT4WXf@(k;F_~UoC~_UL8hgrLsMQks{xM$A7=q9hn#+uCV_}9BIzWXT0ib92<*i z8pUAL76Ij^xzq^C7jFE%(sZ=(2X}CAx9rw7S)^@LGqbB=HciioilA`jX4J*d)j}~_ zD#1s;#-defvDEYG>I3xTXkk7WhClckhe~$eIpuIsA?4*Oz2OGF*a{@tVZpokb=)9b?l)ckys$%X zqds_&Z(dLUX!R;-I%kF~g~9>l{+bHEQCs#mK%u*+*3dx=UUw8eb3kPgF#cX=zNluzE?m7#cI0r-twe)25`=!ursI2EuIkJ6o0toJ zi@Gr_Wzmi zRcrzZEjU}*g8F5t$G$}r2#-}qBAK)m_M$-ee1B34X@SUM>R#K5kgdYDlD7OO9+Uqh z)W<~ZLGLZaKKrDMInt4|y4R^lBg&WHR=PXce;oFmtvE+m7b}G$q#wG7wa>QBj?>Bcefeco z7J#1N-b$=#RDSua%rC$9*8nowGXaui$HwJ+1tXSaPmDC*nw#Y(xDQqp6W+3^p~lab$pC`$g}dCEbbU$m~-X-e#p{w*aT2TKN?JmP$hW%4!tjZf8& zAfQyP)hVy$6EaD#Ve$(?r#Aan0Ey#c9SD^44g1DJqgaSSNWx(%1 zZ>wqWHVgxcQQ!!%8{0;oSq;0+ZeqrjRHljBSogq8ujJu964Pbo5CruNKE5~WGX_EQ zpwGw;?y11)@kT7(mvd{DHHjcF3NUaT5b2Y1({;a)z*Mo5&tfU ze_eBKwR_O*eZ`xDtT113=Sre#<7ltTfB7EiEwcA?_4wHKg?ETrOR0gW1IVv_jp#9X zQYI5I$!lM4_2@%VP-V7+WyVnscf5mp)$?Cm8!|+fMO5y9a2Et1iF#-=sFXc^`8m(s|;_YzUkEiSm4Lrjy!>Vp3S8ol5f0jssQ_zwgW z|NWOpZa-E02QN|P-j(+5E;QWh@qhFZ?dz3NTw?{_vH3rSR!*)fhXa+8P(`J>kjyMs zNdn5- z!QER=VG>m<0Ukd1Bku%8yJTVm_wDw~fQ@C~FmIK&oNCZMX|qCjTPqR=*PSSVb< zVQkVUl788ITr_QHYHMn!P<%kx`xY1Y$X@L34+neQ#g4!-z`Y|P-);Bz+r6#6LE|^V zW=-H;uTU_|LpSh)LQ(t~7d`9sR;^UWF^{k#H5!_Mi*XGiYFj3BVA&zHa^jAoTzX-` zxy*oR2!_88nR-@ADu<}}B*lrsCGi=1mcR+XnM%zy3OKV3z9y3(X5UTk=}X5hGScNv zDXCm+_eVQjDF}-ie%?2cR?{Gou+Q>XsU_KLS_LOy8erJ(^BvxUc)`p@+PJpEM}t0M zH&%`<2kc{DsNgtw=W#+T-I3>yb9)y5cwP}A@*Aj=)lQF=o^k6sp}l3nox_0}{R~XH z$g&@e+NxGc6$2o1I$h`M;vrL1LRsF1pKJKF;J0Zff95Sbx8l#7lXvlTy>8|0 zL(aZHaxwVr9`ftrH!r3yZ7?9Y@ND|qG0o&p>yTf#suj5=zpnlEMElP^pZs<#=+8=j z+xDUQ(}5xbG@48%;fA{;HOt#mDXbycMa~tR945Ko`|l>c zUeFS~7HB8pSN{nOtl98^YcnBq&&Ma}<&B^b6igl{U-xJY!k*TuL15x0yU~EZ9wx}Z z1Xu3QVPk>VD4`*qo}@w0GQYFaAM^&>u+tw-pp3kQmPXBnl{bT!e_J_$LLKo^5b!a- zemWVZEl@cR;rB_K&{wWhEUtl&Tt@hePy}E&z_-k5ZIBIH(9mG+sg7^ zRJI-P;=n)hZGPtrb%ww`KR82YDr$j6_`NeKQFsFY0#958&034UcZMi7dha)D{QWaz zM_OuzWyVx{|NZUNpqDj@J(w>%V>A}z~4+^eeqSaA3lFyS@DX` z>GKcIl5vk*Vs>NAavc5=!3z>PCIffUw(616{CN3akzW_(JT!@##x)Z>LdYYNWa4&IjZ4*QM7s7+T0$s+YIyNbMy3_^UGHC}C@=igWc+0eT*CYmC zNpZvnLn)3JWuSy}Ze&}Q=Q=2y3ruIuaw5KC5<8%EIfq}%N>)hht1%4keQnu%*lgohays1Z z@Y8mx*UWB5agj>h9^Oe03poC`ok6d4{(?<0qy#z;P*GX%TsML>`Dclb_COjyTDQQ~ zmch1oMf)vSOCH-wnFv=KZ$XEz!h^%(Z3S(*CfE;uU=x}Qtf&k^5FR9d!G0S+=?duRDUye0^@T zzd1S@z3z78F@1d~O5`!+Z~0_0*KFi`$M*Qs*Y$au{B#jeB|KX2coiOy+l0Rj53@#x z99IFE2z68P^RWOJ#!99laW&z)6K$Hko%bz^e{ECzM7Bdo`+*}9%d)kX&>Dci`RO6m zyMaH0A&g7C6O@N|_bR-58y@jU->G>%91-4i^NtC2Odjvd|$kN=zZ-#gB1Mz42~>VhPYEj z%LTW^KYBmy5ARwdP!G{p+H{bslv;p4(nD3DvM@KM8y)MI)k?rlh z;4q;SN9WaCe9`hR|0Yc06Br{rPQl|bcs%|I(MCj%iCI4h?=O9l;3A+dxbunn(1?3j zxF`A;@D+eF1N&SYqVzM5mho5Tgk4JN=!+m(_9D|sR1n4N@+F1>}sWI$VjW*-C`qY zX3!bz?(X-wv>nrvgQ76nRhqXEDz7kPU(ydW-stwadpm>vks&P#_V#+z)`-A3X6Kp-EO=^Gqi|)}Y<#jKx~OD?#fO%eck&`{R8uRT+)JKA(){&w!fl z;x~w;FkROhw>P(MS-#~uix$cPX9(yGWio-%mnqe}+C(_UflQ~=s8v~xHHP~mSeII_ zJr*B)7o?o~y{Hy>&Zh(O?hgi76~&vH zaCIUL?(C8$RK>{xL_3Lkd7^DRGn4&+h210Bj>Iee1mLA7RfOKOlAVG)1t6E<@iaUb zJg&gwS$I4LkLTgxtFYICED~F6IBaK>Jo%GE3Y&s7L+M$iSY?$Km?mlm^N@s8>KJ_) zntl-;KLd}KPLkQ1mIzUfx}O>KY?z6e4NlU1xm;>6*R!1ZYy6K?;Bkb)8jfwUbYJoR z=Om>ME{It`BMWLs8*u-Itz<+7Ke42+PG2GchfVd zHEA4Y+p%6MNBq@p~ z@6}LTMS>|8oI@#a%mx0P1Nx}28q&h#w_pPQ(*cPd;602i$QLcc;s474k$gLQEU7}v z_P-tw!$Kw_{Ld7yu3#pk%%|QW5^uVU)ylEuH}X99mLB_qV3xamTQ$;GHh*iCC?1Oq z1)E8cEuQ`X$7uQT={}+4Iq_2N$^^Tq`g8eZQaVffHl_RmYtvM7e&G~Fd1;S#u`$#* z$tAP4t{UH+d#WQ z&C-nQEAqB(kWnx*#u~wktP;mju@SPbHimp}PmBn|ebQAf$|*o9Fh0>B@xiRp+qd~c4I*g7?1^w&Ye8Hm zJdJ8%+`J>eBHDyf8xEgJ5^bBqL3<0B6h+)Y%p_F*wZ#S-AF!>1&DyP{UqxkFQm z!!U0-E)&a(21m6W-s5{C?%pA8a7+B}mZaItR^D=boC<4{LP6@eK8`{B2<*HU;$Guh zw^6E&1}Rl>-Eo1rcg3X27_>rKqgaB0qAd&KS>#)H$jBoU-&(H1isKZRX6rzPig_nv z)?>~v-ZoVZ!Ylq~fGu0>5|{IJ_g^@ZfRr zh#0Oi<U)d+%Evo%y1}h)5d;7%55sQGx2cTX))HyTQRu>;8QV@!xsp7}<;+3i5#~&uK zdiK3!RY&5?Lj=nsoU|Z+_!9!0{~nm5|08((cW)5^SEeiT8nj)uyiv)t^xPIvm}cIy z(Fxq+&qJGY(`|+gr^LUqMITxa$v5(T5u)z|c)`;P{tKT|UYi5K+aCdKFRr2i4&L(8$Y?(h>uBDv!mxwUd*+Mp}p zcq1Y&;-k@xfxv{FF{`%4R_?KS=>`iRN1uUQ9=z+ZSNCs=bqj)WU_wrB%x*n{rP@f0GSZO%|`1Lg@>*02o#0#)u?y0)m;;qe6;VIjyvO>jogs-&YgT=;~gVD zfk4dL?IFK&f{q0aZA}1WK$^c?>Na9mm;}h^S8A`Ih~8Ie9o@hOUnMPzDQ+|rxpl|J z!8W*gTjG1~ic9*a*Y5L+N|&_S?u%s?K#k#k7qD1Yri>L!56n}t;pCRNhRe!4A1MZP zRwjTXfh5=q^m=M87EDp$w)`T9J8$y-F17=S>&HOK4%nI?(8PT|YO`jG;|kF7NmLI4LuUZAB#>xNL3F0Qyo7>22s-dR?(+_`n zXDlalO#}E$#+-(Xzx!K~iE3hiyZPd3rSX~!b{8(!7NlF1M1U{X%F9gfKL+YV?i$ib z0=T}VfjE@t1X$T^Z{w|;iv~SGrDA%kPG?`zqRcbf{DTujA_Dr7vGWDzRE<{fYicin z8iUs_(oI2k72Xn4I7;G)n}P@(frAW?^gHd{JrH1Cq;%hoqahusP7!Z?xf9?|koQeS zy?tCo^;ZDdR42HIG95QqloL zK_IN{vKzKE&Vz^+bCUw97i0|FWQCT7gROx~!9FF-`uAqR1}r#Cpb^OzkxC!zdilUJ zB>Y{3UumElP$=h{Gz(h3Vx&Re)S;6|NY(XHc|qPr8dSMA6hr}zAvOTEQjw-l4LB&9 zg3KQu3F-(Pjb-j=oU)UO&=POAK6v9H)tdDzwEQVp>AHspUTZ1rw|j$aYA9{P%Cl1g|%h(+5+k}ic}>9=q2?d~vM3F{HwAsU1H(8EM06J(St2@<;A*ub#I zsWT*+D?gI@;P14DyMz7_KXFL*^h>-euC8(msF@P0S88&(s@>k^U|$?If!{3KL?T8} zpJ7~yB<;zfCFeMEAsf&@)$s)1z;hePnW zZt>svpT+P>y2WlreWKhl2a@th^%A2@y1VK|{Av^}@bCUT;u(*Ti{rsUC%7%jVx2wr z4D9Q3#nG2jy))Q|NWF8>bQ1Noy;QbLJCN#Y&zZ9<4{V$YbLQMqz`t;k$cTCy-B}}P zjFP$-kZ%Dj&=XVE!IFzZ)(S3G={`$V&*1ngeS8(FcqWTL2%CcPXKgUwN15$I zH_0qGe(J39VwS+^wLJm&@L8Im8dqabt3(BlrBrHy@IC|PM30^&-eC4H5c$8>RQfOe zg|jL{d^%r1{!Pn}J@112ZER5}Z=%?}BK;GTjn4|CBy^op%O13@W$|KltC1QEUXZnAo2~DD^+rUW(b;>i32W z<5&lvg%4*rexVZ{Is_fB4FA%ULRKC7S|pL*qZ)0i-ocGq%3+Xz(o#7mZk+~tFS1*+ zbi0B(V+V_&)Dx#}T-!{=F5o8|;?qQ33vZ z-)v<3&W;-zn}?8Emb1W5+yDt6JWi~Vf$Wwv*;v(ivF9*$4A2pk1mDB29XN$VuA?F4 z9A40XD%!&%Lpm5wXV1iI4wG`={E*AK1+xEba&1Q!PC;L?`o2IbLzZ!T=T87p{2V-r zD)jqMVCv#|k}Oh04fNQP>d<*m4=xZQN`%?9=jnifB#B@7LoLnMbTuUevHmbo?vzQP zFsGyqr7AEPDPjvhWU^J)`n8*M*&dm?@2a-ucQ5D@tAr}&Yp6TpQ$zy(uq;Lu{nR*mACAV=XWFBltOFB73}{v<~v zKLj>3kDueEh4hHvux)cgt`+>sTV`x*7#lYk)zk%WEd7RTrb_=x(u%!d2&#OxMF921 z04z2d@oX?|f+Y0%TgpuZoAt!Nj_;q>-Xc;=s>ijV8@2G&TDZCxtyhf}Joy`M5m}XN z56d^%YO`d-KT>@C1sye76z5N_-2lsH>Eb48UU;i zZXL*6MwK`UGo|RxSXzxTFBR8JD0edzErF2GIoVFU14NH(Xgmuj$N(jZ(A_kyO2N17JA$CR zUZnam8N=)_5HCn+F5DuB%aDApyN8E|25@nSFK=yQgi%#yiFQ5GgH7Ew6Y>pt;U+uh zUq4RcYX~&B3c}fOdnEatg#F=v=NTfajsy6$XUHnebE~NxlroHh6}!uC@#K)=%KrK@ zl+{DcCTX08h>VwNYd&xsZ-M{DGwJn^Qx`1tlR|S-j0I6qcBSxEPF9Fyx476_c!Cos zv5v<&XV)Te=wAULyf^z(I6>OP!R$8bk#cFk3I$0~AJ-*X3(n}sH6Jk6<3{L83gv#Y z+=z&`+@)=_Z!oenz5{)K(%|jRIfD4b>59sew7)c3i!`OD#vlQ*v#Afc0^%*ruO9nCURM; z11)LMG@#?C1N-f2Fn`E))9lvu{vb-Ve_dS)&gfs6hAAF zE{!8JeG#`xve!CDmZ2?gsu`8R`=D(B1_7vDh-Z$UuGsC}=6$7wN`{><7iVhJqln*xzHTVwYh?ii^ea5bFt`If#G@DAw3^?qW|#!t3&V>YDpl3$o!;7S|p2jFqN zO`%oPY<$c0GDFSKtx{BNL)cY}V}`0Muxb@IA#-EHs_}ALWhtMz87PvSW=G6fhYT5f zao-ufa|lz7`SmTbWm8qA8su+nQCKz7eu^b8`>vpg`3QFgutFGuK>WQcu$2s8@ZOfP zs{>^OV?JAkx!}|sV=_qe{71^F1r&S!@|0%cdmkyvOOZrbsg?#Be~Y3PDU^DYxibU- zk?TsXxjQ2n)bmoZvI{!-3R>>g_^{pIY16OeZlAQ_r+%aYgJi&q?cuQ9+25M3aQa7t z!m|~k;eKBn$Dx26>~_cEy{>aV`y*xL273Z?72@u|JxL5J+`wz)#&S8Vv!&2MWBf@b zJf#vbx&cHHk$aC-!^o(uyo%H#2_Ci8EVdHIIMYQ18Jbe84m#}~ilj0EQ9SfyMR6R+ zmBf<5SUDc*OBg=UF5GxvSMl+UJg01|Cy74CM)X*%)M6y}js--MwcHAeSDa4^=px|r z%5<~V9fGJGJ?gM#2~^@5hPg;HH67D%%?A#hFncm|Hev08K=>j({U{2HBhj(A@)4yW zKw@n}QsX!Ndpd=JM{u$hiIPS@yWiC?USYeb${#lr%5X`9tTtL|1epXqp@=gwb$RX0 zF2r2uwIK#%wxchmZ=(uYf@UOc@*uQ_ZSfUkU`W!2 zd`W#eX-WaXWK_s%f_O4b3`))is^rqF6=L&Edm*)NnjNjc^~)U znBUp&Vilkk3W4nydEY9CBkoH~A3_N4wQwyev&!1ix?oTnl~*>(tXUTC8Awgm*W&eR zSX?dh-~C->W6S&fcBdzp@iE$U<)zUe{};cj49Wy@zqZsqyw)7>PWM_VZkA9aE3FGO z8;{k7;4%8j1mFf!6{YEr@A?hXsA9%ufAw zGIcNu4Y#{u<1FPY%kwKuBXn?2i5g(EA(nGhRPAk{S&X!Scr?V6k9}hp5^Duvg*n+G$cV zhzoFJOV_`GiQ~SNjGMPl6Sph|yeP_zP)+V`3bc8e#5QDRk`y0+3ClGGRdCvT>oi%5 ziMeK*OZ#L<*s7>Dj0|2V#L5=;@{W_U_%EJT`5?OE94e+{5C8FLA_fb)p1-%-%Wd=j zsZ=k%`@4*H-y|cAC`F_&e7C6NCG}BSM-5z)+HZ z)%r5nNbd3eNNQ~mQr;{hwo(ddyF4~k28Gy!d@UD#&ZHfFOgrqrHv>yr@w7WTzRQ+d z*zZy;CPhAKHXYmWU2&J;T_-KJ^hDmu&_rq^;r`%#wt=|>Z zIH}$|)1rk24{Ir66SRNasnu+3; z7%zTbnUyP}tDE8q1ctR%9pWG&E9>+Q(dg2WX4H?V-SGiqTg+PYHuzkNv zm>q$|(XQoe%X2)uOnrge?VM-vGf$C5Ff3U?;I5STyHAl?PrNAvCjam$LU{Pw4f)HL zsk6N4X^S!qF~Y?n0aEG$(Rw7}m@t5jgXA%Fj}-lxSsxUBaX6!|Y+ zCPYH>DA@cPf?(!<3m(6EMK2W7uzAVQ8z>a{uRy+lMd^6~!QeV9C2`C zbzz$bCQ8PoIx?WK z)Fv1v=+f$H$7z=asWTVe0&flkZ^gIYAcO*edE`DQHfwRKk{Ev=y|yGEUR$rrz?jNL zVxDJQdog7Ct?qCLc6rjnLJW2=lB_Ce@)iX1nI#kwa~3|-JY0Bq@bKYbErUPe0?Dx;B0zdgI zAyvIc2|U{u_}<4PL0PJo%cW{gU>B*fBtwfiq$f~$T-_F5X+*LL0uPRdMw^Wxzco?A zv1p7+45P$Ri5lt^`%+Et>yT`Qk)^r8i^Y2sP?THG3`+y$a9nl5g zFQ>*H8p{5OiK0p6p9(|oTBPZaj7n&fDDwUnPSbLz+cB&+nB^Bdmp}QIa=0YVN&2dY z=k?={ggyDEt0Z>E>UoS4x!c6FEOAdz05g!ocYa*d!F<&1nt|D@z0~ zP97pQfx>$2tpPuEiagNQ1`J}4^8f33Wvtq$l7A9wv=6yr#jdKjDcU`*r7%lO3IFm0 z5&V|=p9-)dr3t7@BMy0C8;<)9oNssx;qg4=+i*Btq>?R6To-gdj62|haVJr%K)VK- zUg_pxWQYr}Puw99+PYok0*UF4#nozL#3fyDmAfCHQH_nmk`Yfi%4UbFt&gAM{hTFj z!>3^6AiX;zno`})Fmv;9(h!W~@gdoL1Ggj=cCWMB;cdD>__IUBLmV?8esxHDdSJ8B zmLBO=S{&0D)?f2Yv(;+pP6-Sd=&InD*+_f|5V~njlwUQi!2DTmzH^_|j*VJoq-@*aVn!&kYp;_WAe2lZA{S1400>AWc0v#_h2yu zYxP4{-ur^_+$OmtCY|sKj>8(&*s;whFhP1@C_8mT4!By{^ra708c9!_oEv1;lmio8 zMUi0x;v|9)fwjd#w!v{ptgVa~J?ag{37Or9Lb#20#rcA{Cej#I6Gxrz@8+uHAR|Vs zjw=~hc5{IRdCrz^vh~imJ>ne{z~JYWe3K&O8$+Jc^25N;a5v(}$FoK*<)}%OS`}@p zhMZKTn7d(P4>o7O%9hcvjF&Af>53GsSEHPkqY0)VO?r_$Y3y)JX4F^vplnG$%O9^P zCSA81K1jQB2j}lhv zC`gh#_{kzMPUOP`Vt3J^bg_gh4rH#TUwgPb%Lyh2!d6jv!4OM2j(?maW2B;^)8JJ(4?Y4mobLHqA&QksBomv+uL&%9}{o zpx9CgENwQsUap0Th?m!-T7g?Sh?op^*+08m9k5Z5Kh9J{=7LvSndr)hco#0x4pkKkNngLpfD zFz5i91!3ih1(GUBgr!uQ{WOezU*@-v`jVb#<;|4MU*=b@lV#yz!q`sgvJNk+y8}LT z4bpzWow&Kzu>#wZ2|!Z=cq}j0B4z~;RSFqwv~<(0eo6vuGyN?;SyDkNB$0)Q`?A(d zC+py^{Jcsx)X3S8op2`2FW4+GG%sIV;BSZu{M--75M?7S!pe;Y5019~&Cik^F^mP$ z2wOp5fw}{c&;6}sp%dt0HpEXTnR)w=}H=5>>y~MK0vZ|YVqx6{TCN=?)jp71J zET#0!8M^M34+9lvANr_NL>~fH8E0qmPK*H5PC|blvZ&E=O>ZjyhQVGt3i*&NgTG!5 zi~0M3(lp~#mK%xvx91)^ldlIVD`X>%j9R!#SCI;nY~53~eq{<5HiaB;A=b(ut`Ilz zh|Sj55SK<5L##+M6objzjDlqFI>c7I@fvwaHM+M^ zj&;Z?>sn|wf&7yK{0ds?xRekP6g9I=7xCz57cITDyXfONVmrh-PH-f@GDl*HZf;k( zzDP^AZ1K6K`M zD-1)^nltA-nQC}k*t7EOTRBs@9+B7p<@R7E^M!0wa0)OX1+$m+IQl9eKAXn~`BGJy z4e*a3^Jqc^ce#}0QZ*EPWJ3KzLWaC&F7UTnq!v^rHEUwWO8soLXyx_Ps50=~ty^Mr z;FK(-tO9;G-q}o(bS41629hA6eS&nVGb*76z21m47S5U-@NbZ@2;kJ+d*1f$x$ z_7=6e)fJSq^lfc2ILt`sitoiA{yJei!UBj;j=l9C`iK~Nin~KpuAWigJh^fvoSi^g zNfyrR;o$Xq@kH1akteE35 z4rR7TIFqQaimOF7mx|M2zwzM*nzwScX#WFJbz(XJ{^18|TY!Hh!~zNHB^i5&ZeB|x zDv;L)YF}YrxT2-fNZ>&ON~Cm~5TcZs<;?&;pT^!R8z+A9M?{#uBr~4^iS7#mA1%|5 z-ULa2*!zwHugZtrVTXgd=gHHWZTt-Q1QKmvQy_9n#3&agyg+H#k6BX==J=ZY$#X=8 zs%@p|I>64J9FnCJlR37a+7(}I$dRG=~@K+b{i}8n3=bIJP2#Yy zLF<-p=B8iT=}QijlDq^(NuWW04m)x!(T{{YI7^6LybZ8>n+C<-J4=Ld$?)aKY%#R? zyvNpeb{8bf*Ul0@>#`Q@R!&0a@ajcfhYh;qD z_^4VNjI&j&#?x1cl+ZGLWxf8NN+TLi74qx%s5(Wsp7Q4BwP}c4gOY*E4jxkk^Tf#h zD~-vOZFW_o7yksJlm7`Z<4c1>w9l$YTpbOM_Qr$JU4Cl}@wB9lEfY$F`)?D{2b&k^ z8UKjn>?U1~ikVmZ3`8_P`Li@aTGwF3^_w|-3%YGExZRorVM*^EXcx;m7Tx)W+Iw{D-Qk^q zfluURr;?9Lv@9>ptuB*S410Op21}65{q1eVyvoQRqWYG=&}kV(w>Nj% z2m8`ArEa^n$G@l|F(EO$)^O|*9A@9U=Hsb`2(gGxEHlwM@b)R<8`rwyNXerT;^7H- zv8u0=hI~OA2(Sy&j@swYsHKVtpx40K=Q;A52h(+8J!T68UG$*q-xjwWTU{%&``9wf zuYxcGiVxfc{vPneo0{|etZp!Qr)esY7y)DboFZ3nqC7$I9cWTFyz|0F*tc zcBEzZ5}*gROFBT%mbCW<0-4QA(_L|fJ7YX*t-D~;4V7OW2$F+$ZsS#=e&A)0!l>lm z880mCi-M{qLQcHiPFCn9#)R@jBUwJ+8MF%Ld|L(y*oP2j@x0}Gf-S#h)#UY^ybb8> z6uGAlMQY+I%M3eH6j^FGkLDI8qY*U(YSJ3FYrM#axlM+pk9uC(XDl!rBd@WUGxJ5! zE0E2pp6SQdrpDixF7m0UJzYdo=bO;#3cH{Bi1^Dy^ovZC;K_Qo(^!I~YRE4%G)A!~ zP%4B~D#9(fMJ^ADi+Qr41-+p*qz+iJ*?Q&uJ^p-y>}WHfh`KBNt$o2c!zv*|4d3Fr zP4UdDjbL?k&9-V`X-Q^Ufj{{bCn?WExxE&xmHD0vkuk5sO?{m{SZS~;uEJ8a#T=_( zl~@w1f5Lw~ffHc%h9RErMlGXg!Sglhj5z<`3LV(J&NvBw*euv-2t;WY08C`H6cGpc zK4jYZ`XPNqQAxuV5Hs&1QN(`<9)A-a--O4v6l$0P7ffLz9~2t=+bS2Lcu`*EPkft5 zVL3LiT9(?<6aSpTPJkHgThGwfAj_h9oD-Z%Li?=N8pxv4>x;U{kie&_K>6b8@7)pT zsD1nA3VA0lCDlMO1*CtL_mdH@%4pC-3k=Dd<8fpB4;~>`iTYq)ASAH_Cto2}Mt00b zT7WFn^*r&xXMf zWs0Y|l1d>AH#obA$2Cy~oPvy6Fj~szff57U*&7JV`$+nh1nhWdrKeI7?tQu*e6!_R zoYqn=l$@TQeTc4p@zz*gU0(}ht@IoOFgdS4Ds_QT!MFr)3#&^jo=YABB2p9g7@c2vz!dw3<5Lx{zC4%hPknnR! z=>o_Vj4d|=*TFBubOY!HdAE4ChcQJbqD$nWaILbgghn#t5`<}`KLYiKul~r(B+iyp zm~-@T1gjn?lqaab=MY|tQfipewyC)kd!{AxU!tL0Wq@>q#QS`}uRKnC*G3=rNxO&q zUP9JlCBZFVG~rrKTznf8>`WJ}P@6dQ0XC<8u*Uvy6WKZb))mUpn9Jq(b;y@^0^%yO z8tt#GgJC8xI?fi&57)G?Oj08c)(eo}h%Hr?GO?nof}ZC8qdt%)MA}!7v+zC+18_LpLV!Bx{ zY~E`w@YYH4*O>CHMD|!09>|7Ik>Yp?9<0lH(-m5$)REcV=liJMBP%Mr?@+fSj`w)b z8T6DxL|aR9)f?PpBeZDx)YYz{)Z)Q#zyJ;U)M8t|;$}2xe~Jblmr9Y`tPDT!9+V|9 z8B9)?AEP5O`XJ8$c#;5YHsR;3Qp_ic^4U<&&w?`IFrI>ZAqxpnVPo5v-RcX8v~p>` z-;rTq&~anGYa|!wx;$wA+h>$oNB0j!0`tOW>BQ@oF5W~y7Tp9b+SY(V-;{2WNkP$$ z#Mo{h*$~ccFr;u@quWPdM>%9R`)N3%eLiZBe}_lisJgTz%jj9y}Ff52xw8Sf;HORt2`C~LuS0=-Yu6xJ{B$aXt z(l%KV^VA5#!9x8^J_TeXbCQK#KRnt7Blr^k;A@bv5j;3rW{UFlVVOZ9Zf1LEWgFGnHS1fVa$O!zkp!GK#3=yTIJYh5WBCrGC~q zD{nd44@fZ!N!6eGLI%e35GA&EI~_I=e`@3vZ1WC(W1@n^+u1k1%{RZG=$k{+;U}I> z#B0@@lXuJtH}fiIsslz4Sh};tY~M5wWngARU$+$Yk`hS}NJ^;%hIL$2u2hKW1U{4Y zGlJZHXw&)%HPK$~1^9@;tPqLRtU|Nk}S1F-CEAL1dI<^eSv_ z!ZL$}_bDq%M`kD!*YaR*f0SBuFe~TYuh`4U#6eJujbVsZpJs4bF98xkmEbgvFNL{W zRGor#6RUw~QB+BXLY(Bpl3hxQYm-G!YemIM34-P(1_Pov>8>6NE|A4BYAG-1L-e)p z60KKhVKuLUrzXFPr_J`*LYVC5RiPSFvN$B|QbXO7AM<{ta(@)pqfoGLqi%aB$j{1p ztrph#i4T-dr8tlB90x&x@7y6{HyDnAk&Kbovjdlvqnc5!)r?sDSFF{P?g;U$z^h7n z@StjR`8i)0Vm{Oz-JcUGdZzy)@aAk}t~)MBZnn808?j5Gp?T28(@%kl%S z{ZsD}pPQ&`*!-5b+c$gNtp&+~D*+-D#{4ti)QpbldYmFykv#qEH#P5K&7m`Co?rN; zCWy<7U4|n}W{`;VGC&j=1!nlzH%Zo$wQISehM)~L3vufdVNg&k_ z#E77UmN&~xmraFQdY=Zwm6jl>yh%5IZaAjRtoxR`vRraWlN}WA*8yBSu^417s^4dv zC^Hewwc={ z`Kc07y*QwvAm$!e<#bxb{ghSCWXJU>YMf1Lh;ha153X@8QzL3UxW@TRjbh`$H6BiD znC_>l@tG3o0~!!i?1A8)FA+z93nh2k11mjJBGRfDk;IQsi!W3oj?3q%IzQ89}A3=lRWvl))T ziD|5YoxB_(%bJtkfm{13*aVBhHEEa)mBK^1UNA{%f^5CKKw{0;ZZfj4POVLF#Lhj4 zTm!l3FMb5Jp740$BjToafvXw~ZjEvMmcv}j4H~)9D?a~Zn`EPspl%=X5u+4A8VZ7M zz19*OhM8-W#KM-zVj`>9Bk8 z5*V}wsJ}01b-|zyTvN-<$|?iLjc~2B&M#h9oW!AR<_mbb63b`g9hHr9;x zm@Bh@@I6NSk&05g&0!ikWS=1CNzXEreGbQtT`*tYRK2}!S~4uxu-m;U@Pu@1cXF`P zOi|s;#=CdKKH@`<*eG?S1LvBt>Bl{_7n9g>tqa-M+6V^mbQ7b$&0f26dx2m1IvM%_ zz!C?K-91R(z~W9DV|Gb<#ickf`7?i4m&Oa`BQULUkkB&!xouo^S^kM)~CMW z`K6rVFWx*l6meU2JD@nJ#F0F}6DkQV{$qqRyT1+;N3CzaSIK1-NPaJYau(2D$S zcc}g!k$S{Ook0@u$B~h7C!^f#jfedDDLVQYlLS2q&It{kX5O^2w72qgKoRaiuf3^9PDNsWo!K=! z4|ZxOr$=shRAn1ZgZ*$DB$98yqYaPED|E-BABS5i%FroR>c;_pV*!RvF{N?-V z>g$j)0Hu}#m%xYXqKq;JqV7&sfuiNhN)T^5Lykb`>zk+^6l5a^o*{)h#V7*}H7;ts zD~QrIgB(o|l5cXhV`;GETJm{>5l558=MD zE``$cYA9}#Hsn^HD7>OKa4Zy>mNp}!8RaZAS<1)_RuTuAB-KH;fJZ?*ET1IwV?gQ{Aks2zfuO<7&BZf`*}uo4 zHCf-9>N<=|(&zHn!J({26eC$P-kl!2K<3iWMEg`gSt~$AgDoCAxnsRSp3Ss+YgQcC!CvLdR(^r2+1gt7urUjXT*@L5@lEoA zJzia}GXBve;u`g-;31fAR2QaZgM=VK@NcNm&X_CH+e3~(?Sbb$<+|~2LGzY&ELBl% zX}!)$<<(U|3D+9yH72+gm0y9! zf3DP9a=C&6|1aS6ufpT+z~k58@#~j}zrk)I*-iN{Iq@>a3jYoDooVSU{>de}ey3J_ zavAtPRDA$hDQ&#cwY3&a@qe~$@!!3qrShHv^8{3W(dPdxjQXEkBGEQ3VRHFd4n&Xz z-U9dpWX%2$!2kFX36>_WH7Ap?fG`37%S$AGz8~i3@Ro%BE9l|hULwvV8L;b`hf1?O zbJL@^A?ZQc%2R)qO7Pv9I?Uab~*HPq@8gGgk965$&gqKBnta z>SxicPgx-B1%6g#A$dR#{G7@{LLyl2O$N5GV)4EDzFk0YGMub-r_-u|<{uBUgCBrTn%g51@ z%*oAN6?BX9BH9RezV677_m$=!tpemf1!)ctpm6|H)YiFu+&ZHw5H(!SLf)UNQN{=o zoSztQs%k=)0!3NP`wXcDjC_dYxXOvUECMax_)Sc`UkfzL;Tg(eoa zKbeP=FGM<)&3rZ(BHiKqT0|B_*}ff%Tk10JGDMoeN~@M9h?04b zNn{12_+E__+d%2YO&SZ*RN6?Fc)DwhzSI*<&KT>G&;;#>#qe^w(6rjfxivYk(oM^A zO#W&#NvODv<=Qg?B_pSnSrb8AhbI57%IY+YXJ=8LVC4ovzpeu*+IG9OwGfO@_=OV4 zf=i^Tm2Cm`ZKPM&VyV<%zD)Z6Wm= zcnn&493D?#7~IJ=VPuoxxGyc!iP3?`6<-7U0yOy4GEq7z6$UExO^eS#!K+jH0n0Nj zut#zX3plOxB*`FPWJ@)_5AmqB2LsS>f+gH8s>KtL94KxU_zN(A`DKzvTYe4hUwHv@ z7edo?W1=w8!@Nzx4BNe?rIezVx)QJn3k8qo;Zbgq)Hsm-sDf)MPgP%PZw`5f?=?xL zvYev=sx(EzOn3WMlT>OJ3Bsi8bG3amD-;0vynek&SN3w*z<~wV>`&9#M^LX!nec!f z6S#y;+aaTQ7@q2s>lrcerMn&0l~Hx)OXV1?>C%?G2ei~i8DDNs*SSqL$yrOR{S|mT z3y-Vtc&i2fq^A^7{BE&bDnh?bqhB7mhLXAf?!MQ-7 zcx87FX}txnG-lgrh{+*1!3@zo5al|GN04d0_+t?8_h)|WdL$!Su2w2WT&k?2pyl78 z2?3$Evi9#d5R8M&`-037XK-*!Z}LerG(llx`pv^wkfjfS>+~7v1ZypG_Z^~KgM?b< z#dnDC5@!<+@ikXJ%cXaeN4Q=J`&~gSy+c|ROBBtEUViBvq9iO+R$=a;W!Q_J;ZeQ* z0LbhG#{Z@YB5V2PGDOi?wXaQ`vxnXVZx48!g~xe#T!hDC@OTm)m*DZ#yVO{w5xIt6 zW)ekl=e|I4lH7fl(9TStK+Otai|^95zE7_SaCBc_wZsHmdY72!`vTj^_elTbORyfx z?^3?J`_2OYg|DMJ7S&hYrQq=QpVN%05N58%Y|%#LUD7NUD5RCiw?9slvX)zR(})OD z1QqCu_#gc`Xj;IVqXUnv-=s{KEBix%@7w*Z&E{9ZTcUSFfz!7Z*s*3|1AMx()W_N1~nC03Azy9}$ z$VOd5RjV?2K5GAf7)_fF5eU@#BMhml>ky!!GQa*`)5sm0pcC_R=tFivEf;^A#^AdT z7(@BD6-BxT8O<@5)cuD1+cacn(S9)W8^1#e>ekZQ&79+#POgDdP!y!MVF^a%uqbFw z74A?M(3aJ@k^?OX{4*iAK1a5UN-Sf)elvd<_^*fLa=IjA8uN}MIFoI>WO4IR7Fvy~{ zOKEx=q%rY?!8{OvUwVQNynx&z(zyAAirUnHtASFiqb-G;3WUT8kdEd3TydZG#0G3x zmhE^HO7dyB0vy8=L)RIHUH;GuS`-}_i3jg~HEe$21?BJD;SfUyEc~Uv`8cuh*K=Y* zT8RtSXzQhuFNLfm*lF|&#>`5x`~UA6;ROwnJP}~9FxG6;O}bAp?tG1({V8Gv;2Q(& zjx&`_pD-xh=`NQ+w8_mMG$>hb1>IdiGj};@D8{?h5S-~oTuxU+|hi47zD$ zA`+UsE=u@4gR;#gpFk$=N%}L6>F;fW*n9GS*bz9&_7?Bny=yJ*?4b`t_wKFXE#q#- z0OO>)?P0e>j7X)w)jfPkz2)QX?pFqzIoGiRH)qZDI$!Db=eFcOoz7SGM{_d#VS3cE zWT>?6IIdKVSnev@wvbmi9vIXj^WC1`1-?9e%5(!XT)AY|{%o z$ZVuKSt)U@GTWx3nKgUfQ>{g5YmgKq&a~FAseliYhnIg>6!Gst`Fi5DE(N%tszFIphHR}$Ty{)kMR^*s=uz;EmU9cs)15xxbGm-Jb z*Ba$jRw*@T?f&@-B-FXf`}x<0A@KE^ZSf+!Q z!J%Z+1Ua$K&`1mBC1cKG%=(&OGw>~5$}57=m~ao%EH}Z7{xl<(2iI{e>|Gq}&A}n- zY(k3Pwv5fOUK8ysRdb$?QKxG71ppzdn0M)!k#W)_j@~(=MV`_uMnT#Aw7MMopt0S8 z1(kAqqyzXX=Vci;4!ry+v_ds-lfJoGj*-F$nwfL`F8cw}fm1F> zMJJtlFJWk>*mO)cmOze!Kpw7;*nQ>xNYLQDE{3TghZsoea3t7gBv6%A&}8r~{^UiK zPHTtv&@D%7O@T+Z_GSK$I1I({b5~X~VUGzx$ipMUP#ua7;d*FiAuy8>m!q)C8cj)2 z-8IAkv24q)mRa?N!(?8#`D;s6HiS?W3;elns(kl&*-B$1&&ihsYp(1+ZiJQfDzH94 znO;?}au9<)VDl82<3z#Wdc#VOnE`G_Am^n3Z-4z3;Zl@UHjBB2l30dI1;{&a>FY!W zO#!f|T<}aYu#kWj#dt}V+oPkNOjn;x!i%EpcAs_7*K=>Lr-&}V!`tIS=I71bL$+Mo zNL>I~;_QrP2C~Az4@bt64s)(`nEdUD&7uA6;8NZcD43GDk&bXGc;6F=SPM{8U0g#l zb_hT53h@TZD@BSe7J)GQq3?imGdxbi;|x5`!sFa`=={X%Yp?S2-%%+vSrsi+WbKCm z@-y)GEId93kI#QcCDyA)Yvl%ilR0Lw>T8dycnXU7$0ni8V_=R&SXF2U)6~5O< zgZ`rCwt6$H3p%;E974dc&uQVT;hoHpQN_t3Q7|hQt!P6~X#v1AtJED`$3K-$dMk}Q zNL=$Q?Ze(VQVPfIP0U&&fG`fVS{$X=J3L1$9gXfF-rIpxsP4>h^4~m1LPq^g&8B;s zNkuXUEZE`ukj~-mWfiRn!ZYEi0OB7ggae=lFsf3e4-F7r8rR85M83tzR(R<(y7l$9 zl?q!u7p+<2+$hFh`-#Svolr0cdcv{S;5|>5a?mXSXM?x1YBKe+1J=o zloKRwsD(JD0HN6|+}h`O6f@iMUKcTN4t#O=$S2u`7QM^%!qo}W)J zq!tJ!3CRXWns1RAwagl_b)dNW%5pUXDm`w55i8iO7K?J#_Rj%9O)QVhpNtGai80RM z&_EigR|oqq^m=S{0BM=wjE#5r$Y2K$hm)zu0p0%APPaF>HP{0g@^_UiUeep3OxO`f_hkqwkwjC3bA#EX^$6d1vez1=m`&md zJbj7&5nL{0)=-F82%I^1i><;er>a6!}mQuYaycc z@4J>FLhlabhRS4hJc5XaVqZyLSeZ36iFbBCNX*37?>-n1mS=e}UIB^Tec5C&_Q$Jgr5KLB0^_SJv%D#3gPg{sqvWQ_#fBYqfmy=9cQVBR0uA@~#v^|E9HCH& zC$YkvMbZ2Q`iy+ET-I?BXi&7h*d_ zS&mT8*8GgJ%qT`x%d$NK{ z5EtzyKO#_iY2(}9nt1Et+kfz*Yy&n2(ElR~8kf3ED==RmF%Fqo3;tN#?_x`Of)Q+w*sk&< zlwol;yE|MQH=wC{?cp{`!PmOu?XKXH>h1n^7t$%*tgShgmGyLl%lxTXW{qmR8>v`- zBuNl!kpgt(!~!mEbq%Bojs3kXFikPq@*Cvt3c5M-BX_u$%jX4y=va$y3Y3$2z_vHH zaUcuXPiUI?vS!aY887SUi4Wc?`VPB!6Ko~{qoLz6G~$fzrnaJH~a4YeV@yx09$#j_YXPsQuN2kvb+G8aZCJquF*Thd) z3u3o`ctbb6+|rtE4-0mX$IXcLxOQe*K_=+9Ib-IT&|TsZeeuiKjtgssIN}CJv)^Rc zIkqOL(qwK0aE1K*&187^6Y zwj%juUW%4Xff~gg zw#?8)Tsv!t#DYFx)>kH%I~(g=g7FuhrmH05YLA~UgI$;TPy98R{OM^6!&uK;xQ)mX z1GE#Z|E<4Hjo@rEZ}OrNY?N#3Yn8P!E64R*a^d26Q6<$z6@u8Og%@N#O}-^KFpwAu zM)o#RUqBEv1VIp3ej%1r7M!Dv#dvWd-%r>=F;3H31S4&ONefhXB{lb#XI8t(`>e9o z!2K~@DwQizsL>yzP+N;mw?7)9T9#0{A!r$pap%U}-93nvvDhB%y#z16;`zSWmQr8Q z2X(>b!yKi!#I$mc8N@uL*9TfDBzS?+7}>UKdHg+}^vn+$HFP6;Vc5-kO{Hd3_P(OC zF$N3+6{U<1+uz?s1CP5Hh|) z5~Z+F5%;MewOgyw2LlZ0-#npG&*E%5EUZMie8IF?Cg1P|1Sf*vwP^h)J(J*UK=7}9 zmE(@g6~ju&fb?$IN84P;I_F5u%7lB*(Kz+GlPLwoF@OMkDlgBxiq};H%3LFGV53c* zQ%lP|L5zN46idEsNuAW;*A|C?|M@9WEzi!tD<`aNmd|)h)h+`-kT~A z7(7P)qCGs4oR}6nBy0!-(5S=^M1&vQq3w7agx(atdq-K;z{iy}T9%(gZIHI%YCr%a ziVLE+CC^?G{zUIY@8GeYr`Nul2r&)gBloF^^c*UZ z=d^A9ThG#JwQgZXc^TqM;s^aUqvA>>0|9L+D7c%;4yZZwV8G})oO)&_x-m)=&6>-h zQEDcP1KVikN^WT7iu~6eQtpF570{_nTABx8KP1sL7jPv?mT8&EUzUu>V?lf<{L5CQ zRY&~Aue>2nu>S@rq3XWrnuq+l_&tK(~J%V@MO1nzJ$S0D`1MixNp&0hNxVTu%yFgi!EvRoY)t8bnAaNt87$j~S zyAULLa#!$Bj)MdM5U=r#S5fI82q4SP3p&RwdstX+KqB!aT#1|2n&&RdMS<5AVr2N! z_Qc0_msj3oV~B%7rU%!UtPSBHjAF4ik_|H3_bt_U;F}E@1gT+*>!M-Eclb{M|H%uE zA+=Ggs6WN55W_~vjLZMm+=PkAbPtX|gOur;I{8O1+| zq=r9vfwHD7!J!q%XLD0*)+Zo+%omvI2kYpmrI5gE4g_b-*=tHPHXn=q+!=$GTA{Cm zzP^;gQ$ohq)MbKc@8c)}@-pW*k^#ZEEK_gn%o|MLk-Yg5#&Z{3H5+xred1WjZLEmg z|G%|sYi{f)!oDqWc9ZOtR8p18B(69Xi&p1;NoA9jWbInPl8xjwhL<4A+TAW}$w+qa zQbkqRq##~4sU*NJ;GHVS3y&1M@d&Rxz)t}F0Mk7^=giT?-UMExGjn<_XU>_K?w;JwfY$tgF@W7Dd8QE-1n9Vx992Z(99&F?%oPFEuCpl6-NA>AL zRj@LV+Hk~sQlc92Gk;;c=!)dBOMXO45-nV8 zZ53Jzth?7{VpO5z{P52e7{=WsZ!hpMa)vx0I+Byl)SE2X-2ANKJ$_6_mmi4R3g!B(xDcWf)Yc8qJ+xc00xDv=!-2}dR_>V%7WMmBQM z;l)*MsksincA1?KrB1hgyYgLps4Xbm(1E1ooXk^{X!5mAY4UQ_&To2P-{5l$d2g*= zL0T!U-e8*r&fJoMMfV6z5b}++m8J^xW3(q4y_F_-H<;6{>>ciQj>KBG!=@e#2UIPK zrR|QJBkA3;bEGbtK&+zKRPh*`LQJLw1(w{IT=HhQS5doCl+giOqu>P^*dWesgK}5n z<`&_KHW|`OV%vb3G8A?yp8IlxTqva6HI$BEev2oaL6mnbXy~ZpUCCde)nu=~-($zg z`lcPy8bGcJr4GiPk!we-1zmN#p%DhU1Ie3_Jrqhvu8zPkx_PJ=(%qfjj|L)Cx|xBp z)+{!q@Z%kc2^FXpd!X!96@}r4H9UhB_SsBGFVeV{vm)0@?Q&7Fk~b8Wu1M*#lPzEa z_pnyO-Q>v&d{U}=(AiQw0Nn*ch^3>&&fV4k4LNDB@T>2n=e`QWSXtIKi%ltDh{TgB zI+8gQW~N#tr4xMuOkCOR<6-V74Iv3rT)<|vtOPY&U|a2bndmtLEg^eVQwXg{gPVh6 z_8xM7XJrvS>zmi#GWAjzb3>bFJpU%kBG;7j4$S_G6%~$Tj9uDU(*u1R0^?kKi6pcA z7TLm~2%Dpw?R!lt_KOxtG^7|q0aMBEWG$zRm?l+0X3wV<>-M_&(W0-Afm510wy*;D zGs4)ojuie6;PU&tl-*iIN%ZU zO9<3Cjhpfe{_M~X2Bw^TErWH<+BTLVF`TsIh55x?N%Jt!cfY4^yfkvdu!d747srt( z3((=*v4ypC403MKG3h z>Up-BDu-CO8W|S!(WqC6#;;~N;VAVk=>kzbqkRpCEUA}h*xC`jMpNY%VK@!MK0?BA zh1>G|QGtM}HEV@;r`WAM`v`&Ru;e~y>%DonyDN4(U5Y(vu&0?qc`k&D- z`Z5kYS}f#cD3`Kza(ayd$JuND(DG<;m$zzx|2ACuC~YMSJh+@mhj7J6*Mb1PZlvQV zg6kjgZb32X<&v>)5JW))4?aS!+$`lp@O#YsB17rHpD^>!`14o%`I}irR`hSo{Eyka z(1)pGW~|vx#dlp7%~YbYQ!zw6J2mt0y~WTg2QYJt7X8N>-$4##;1{HP19Qho6FAcF zH6(mO6H3|87PWFc^kDv&^=x4f%MM2HBxaoDMc9f_e1x;d%%sJk6Nt7QOBv{zWx=^) zbDVv6>R6*wQ(9o;<-ps#N~ZjhcauC3JdHhh27k^UYg}{L@6a#cU*yB|!?aS@58*;4 z9mBmug$dQ z!8gpb@4{6xEkDL@n(5GmyqS(XxMrqhdxb~Fs67ykvW~IAq=#{=tgbBU zW@5G@ujvL(N5?YVqrC{8c#|FAHmgN}@6wM2iD-1LPRA5WjhuqGzf~&SY7okO$jaZG zSe2WH;nbLNBY$|E;Wer#3!rrw$w4G?AcLO74I-ra#0Z>>+eweAj!3@khlLg27vFWN^r+J=+vrYJMZS#am{@CC_MmXqT-<$H~gR?zJwj#T-& z2pr27@L-DHi0V~BXg~nbQR0gUNqQ=Tk{_88Aq9Lm#b@)`ny@=Vt#aJmiVZ)XVuj4a z)=?6p@lBr1tT@w4*AnoH36GQMfvX~sIEXTtLII@>^!gn_yG#e0PXva?{Mq!tD;;n; zz^5(`k&7h~1WOs;%^b~J5(STZ%Wf%*8nuIOG;P;nPeL^n^}*uGGMt?@LSgM@PGeaU zh`i=K`8|=7{?1@<1I35_=rgORpy>f|>eiioE}WU9=D9uSkl7*`8;}}{t5r4aPx?k# zM-t~0NGuUoL#5Um^W~yZvoTvozmCzU9_XUbBoKYg9vx4!nLS5lNg9ehKMf1U3z2%w z@M8=Z{*xJ2awa9@@(}4Sp;^nmM)+Wc?H72Oc z1HU{bT`BSLK9NpYFXWq@yL%{akIk&EVYd~4{f zVaZ~r_W&NuX{eU<+hPg4D99zcm}cwXu-{dI3!Bw73bV*lrA@gPP*a2l`|}MDyugV`jK!+zJ`??NhgiYF5n{^+=pj17R2adjn8(* zXS?IGz46&T_-9zLKXQ-pw{S$|^lNnP0;)6z5S-!DD0<@E4l1kU8@mH{4|!8eX~Q$D z0M~)Whk*@}*&s^c$aX?omlP)pnW^N2JFP{9NcFC3Z99^0X)pG1jydk)w!M94J3!0z zJKJ=aI+-iGDigKhmI!R$I)#CAkmEUlDH6mK`S8g+zr@k#2=M7V55;&6(T88npT^1w z$<3TbA=i-K&a)~#S!PBpAoInt2vOYo-F#+lkEe8PN%@8DAH;zr8tcj>HQ`kXyu7~5 z6pdP;QJ+9FxfZ=hS2Eqd-<3>5TdcFfiL`PX_d5MO*;z7bp}{tohF1RoVO0^qYxXQc z1>nz9XEU+6%(d4}ER?a!y)Nda9jWIF@8q>{PqSB68+J=! zPBaMG6Xp;XVe2c`n!GgaJWYH+o_kLkzDwtIoO#{CM*omN(JM!t_91nqqA*@lv)kv+ zGyc~9-mRopQe=HY@0^m~P%nSAbGHRAoM(`fuhtr#)WgDgRuxtIFhEM-%a;rG$kPuW zfsHwY^RdvkzWUP}Y*9n<|LQ%g$V%ZI4TE7?w~V#Qxe41Se!Z;rZ-TT~E!M9pcnUud z8dAGjC3gKp3!idte;+G*(f$DI>Y(K@u1VybnAGaP-29Bz6cALx3D=WbNn@xFnB<1TeS&hvQA9M)Jtk zuI-8~%d)hYIFjwM%bQ2Vc~+|OvDvkq#NJdk8`q|iY}VOiYd=!?&UgCs?Y`*y00>f& zCAm0PIt0+CPoM5SeO}#thlYkqON)x8s$``|7R>hbM(ZlcHtKb=+J;8mIypo!HXC(w z3+iSN!YDNT#Y>2qb(rMIuQ(p3tq3j|906?M=HhUs3XxNhrIp z6egv)7xq9dD*4qeGCXtt(2(^6t+6th(n%>>Afa5j6ec;NZIBsbmlPW{bK77j$nhm; znOml15na_Zg3Vx^tkJ4j=O{{{-Zr;FNZW;r{bVdrJd$g{4jluesHtQYHjFiBlYD#A zY}L)SJWL8j5#{~?BG_1K-Kd&!9onCv4PM9OG_8jPYff`G7>Q!mdfYV=1Y4jjbsM>E zjmsGMAU;CdjWyUZ!*0}KU(|?quxK5Xlqw|GF}6sl(Q1>j*`nh_(lw(=`)Q5P8uk=k zCZ+kTwd9{>yNlUItJ!E7ti7&)D6#fGNJ!sYgP8S_<%4e)o{$ES;4s|A5jTTc; zb0w13E|UCivqjgeb=nrUsdzp^daptF0gmq30NjjGz1rL|>ZYvH#wg;&j#0A(yx-D) zG=OiqI85tmyU}C|%`Ro@I9K%363fOl4@{(2B0AAjHqZfDcfv(lpREMo3MRw6--&MX zeHL)U%gNOI3}vPF;4=DMUZz(1V~1qysn~qq@qLhMlLW~XBYK2s%o}Z!StfUv0$Peu zqySv1#S?LgTr`R(DXI(5#&3EU`V<25UpGpQzu!McmGqSWow#$DZ+Z6)B z2fo;UC?DmvX|3B_SJN=*n`>C@$XsVlGD4Xa)HY0_kla$bNV4tLR?B*XH{7aIp_pwM z%}uCURE&3^YFd+h3dxH}DtAdOPO6*Gv{0aDOD|dXVHIVOq)UaYAcHG)wOlo}Op;V} zDyiAVcGIY%g3HpnBs5c+O^2C&5M3>`8nmKCS3XvrF|1(ax87)x-6m;PnQSe#kYs+h zZPsgMO(+VIEiIFFgSi3r2r$`VFYHz#Y9%w)B(t#EsxEX5PCWNb3Onzw#~)-B(#+UB-P-&e}nFjKYIA=>V5vOYt<7MaN>0c{nrF^J=^e2TX?PKxGs zqjiIcAZG#pVgKM~4|2J5 zQFL>~gqjWz@eB}KKwV9hl2n?bSI{|rtgkC;oe^qxq1;c?!7%k?-O4c;UGdlOGU(Rm zfu@-&{-oMZFOK_=W?+p@N&xCeKKB?NSJshVi10F;`C}8~!u&wDJ>k6l^#wlKdDQjvPv7*o<_B3HLr?G`I zh=0PTIx=F7Kibc*gNh`y$9TLP$F9?U0TswBH_^Fbn&j&nP&Xloc(`1$x|VPdX!NyZ zw5eI$mLr$V&Kf+6_-WakC6ui0Z(_#ShOHYU!G$kfNt5&(M&Ml?afGfZYfdJ`-Dc$y z6+x@bVjqQ1iDSh%{UC}~QYMzAe)!;XJbP3=YB(T1|~X0ULT+ z?&rls+&871;Cv|?m@$EQq!L9Zaw?@{>5?Xv&5`gt`*Z-NALnvz_qA`Jn=V%1naBAO z)Cmp4+ZNLv5;H?|ZFSu`GR3D%aV;a>qhRSr0&#gvrg}_!VD+Q4I^6SwS7iJ0(L-dB z(s2YQ5RfN$cBEX4WIC2SwT*Q`l`;>bE>BGf`f&OQuN?Q~qrV&@6A>i%X=ik?LUd9E z4S${(L}00NmZ#cunpSAn&@#uRf2o80Q~m!mUHaEuN-UL9tdRL)`AT_lp2a8lJvq6% z3(sIDo{~}Liqz@xt_EBN(y+WBrp2Ef3bd5bcns3i%V^)rY(P8}izalk9LF)Vnv*I2?hRt_P~ zF>YVhIu>a7>+=ZG2r>w=2yzJW2xbt>VZ~|NMUJQPOGFCiG&N&bW~72avHfW^Fs3LV zq2EMs0l_?yeAJy$;R7T*p#{V%Ay`6C7G0-tz3N(ASo-2w9$ghXTW#1jYhd_R3A}`u zzlGo?f>#i{ir@TK7$wH$|m+My$ALC)vrRde>g+Xa>ieE+M|3EO0Xv-cK>5K+{NXy%I(Q=mP zhCf2|2ZPb!$7gxIV2Li2wt1DHV6pLEDWu8DjXG?RohemaV=K7a=+tZ5#;zJ3sZ#uJ`>H25>*@xLJW??P~T`elEPX#b;ce`4?# zqMUg%@?c{~7KUG9Ip#W;l_Bs~`27J9GC3KS>|7X*(4Y-Q5ZpH=mMqIf5gP5)tu4&% zu;?mOtWb0^##0gYc<{6(H8yjwu}QzKLmimSw9Bc_1E;Xc>3%_0D6JE#Z8pO!g7l+Z z=_a{yCAKRR_6KxVL_i18v7mtON>-G|u(xppi7_r)JZ2PTlD9z|ZXC-o&Lh$8gguWm zFazN!Ao*5{Qd%<6;|1zbrN?*>Iai>(u0X5J_6)q4FvyN^WyJ9OnKCckoJ2RG4%%HUAvEBBUj$r?mKnvazG2G<9RE zM*s`2BB!?yye9OM)TZKX@pZ)f9nmr0J`4Qr7*CV%M6~1XP-bR}N~x&K7R$)dY;oRU zsjC<0D0y4_+8FnocpGw#XWj0@8_3jm1fEA{htOW4oe0Bs5$}5lzK`GsLSE1cXp>ry z3-QA}adh~7#KFzpOGdl8S)=x^LOrq;{QWWRe&D{62LE78xKduHhWGRzI+GrdgO98V z+4)CeIbzU?{zia_vK1`+V=+-~irQqHtsyzYX1S&u+%e8|gs&{C!jayE8XWCem{H-* z-h~?6)w3|I!ri?KH8?ho4*fVEHn+_e7L9rtiAXUFX~exa?qB}h30QKM8c>si9;d*Y z-6$jFRRk{}xQyUM1fLz}nIv=}S)fv-(^4f+ukwhPYAEVLG{{ONsb>?(1pbZF_^i=s zZ=zeARx-gerNPTcJg`iMwVq{BsP!z1!8(>HOnFcjZ6;%nUbu(zAq~MMR>YmG&t0t( z0POtd5NzS^7{*JHxwCy}b(&}bl$w2XN$FUMSy!}_VxMKonQa4ToNj-cq1t4o(b_iJ z)^qkRh1xSqni^A+Q{z}zsKGY2hG|tBff$Ur(b>f>CAl;}ijsvLJwJUx+^fd=-gInD!X9H@X%>NQTgSo!8Sw1gHIh4K|W9iP(FXm)&w z7N~l3T+`yoXd<2(SI0G#IYNbnN`Bssjgdu?Uo9==%Vjc?E*9orfSn1+zHiYWD!%Hq zYVbEFxbx!}{+b<&O!dyVkqI=2{~=;%DM6ODXmhmODizH`rZVZQZa~ppc%WVxC-CL z0@sNfNyd8S!n=EeqDE0!?wvXRR}*}BEEF|$&pi9TM(l*#z=EbKGFy_FEYo1i*l^YV z1MKj>LGVWiemub)SQo!aQ7Pu;g4gFyu-Z@e%7BJvj)j{EG>Z4oasnI_2k5SyFi}$8#fW zDdAqI)mU#6f$0>pOlz*v!|K=s?}h(5A#d6TPJGe5B>?|zf}fIboq@xHfqXAdY&gT8 zixr<<&J`9(C_SG|#?>%+`e`EaL+}@fqxD)0EGyGX=zfV+&&V2Yt}r`Ca`~CULZMPv zTp)J4bGc#xj!h}mY{Rz@ z&xUv~WcTf2G!A1SG0tx80vB=^n>dFxbZ?Ep7O{#1Gz2<=7=rj-^!lvgL`X>Zz*VNP z&1XaM?u)n0;C1_4h$kc5>vD}QAii{&GX=MfVD=na$s))jm_=~GC#CjK_ge?dueWC_ z2Uc^-xM2$;+zj!9Q5UK0f!9OaV@08|lf}5ZN9m{Fp)k)JV7JQl9&*;Tha8c&%}<2+ z9whfiYg^S?-E2=9R>xvKX|uDYq|3`?WgD!j(rKduTFhLzR9Kk0lCE5syj&>3BjEs< zPf-&Q$%{db^*KrKXqc^~rARzQ=lDKFl*ti}kezUPW1fn(3sjQG1{}pP0RDJI2t$ zw!Rp486viNZ9k1M^`$UZN8O;uG}e0xArTWot^mTf0| z2U+&ZiQpGFwhbhj{uX9EZ+{_}LySqyk6I@s;I^<$9hCf}>dHf=k9-$D5=~W@K-H z>@;ge+k`tQQMenyv2$Jla88j6^~jt)LInrz!5YUAoH)mC?s$6=^PcGGJ4(-=6Sm3b z+$P2a3o_VJ_8iZD7P5(W5_0(4%sH<8_rAOXvshv299PR1J5aq^GTNIY-J;UfrrM{| zqAi+r%1xClH0qIRgZ{8&Zh(b{Mq%wKuFrZ@<;S4YwHlkfoQc`F7TiIrSodJHQi04v z{VLoa;d{gQOKJ0lMJI3z9*E#fOp0Au+v$wOm5Z^cFD-F=(woF_M%&4u3)}}OE<7|T zE5N|>IdMFn^DrWxK=2y~&LS9}^hS^VsSPp(=$q&D6oe zO>GFhqfhevkBv>P`GmsQh-sA*6S>728rr1Rwhn-VMKI;V!1!F7Ud`#mw&nMtfKi-0Mi-b+zo7{LgFPaznM z`A*99=3ur&16H(Og*^BGTn&GUi<*eF#-HTa9*mOI9w)7!R-)Dy4)-1n3MqS4ZznEo@X8yYJG20<$N8QQ zze0q4;N`nd_mRd9KmbWx5-w67gx*oV^y&h)3I4?=BxTKKUdjpw34 z!&!N=8q{fTR@Q~SM~sS0#}OnDOd&`jNFkV>4hT8jqzXq;d~}dl3vH z7(wu91ot60j^H5#C(iS&dS~s#BK8KkohJt3L(ts_r_Kv?=%j!WZj94@3{N9x&T~D( zFr4{A#{|wIn`7t2NdONQW$Mb-YX;S#g4XzX`9z!4BinI@kgG#7Hyk014L*tBsq=kO zKK8nS2qI3N_ujqsz=fVDdo<4 z-77bx{Scf%f^!H~&Wo!o38)HQcg(uID@(oLE77$?Y}{g9yRu%3RyA!ZHQu5HYJ$92 zX;_=EW{_+mp+>aq!b@Nxk!Sbw;stkxfP`q&5+<;5p6m6M$&^awj3U3y>$tdt4M9xu zQCZ-|4tq)sa7R8uVyZqPWfJ2tQp`YGvDhKvwMOGAxg=hX0wm)~IYd*jcsesnoR_H} zqGU-=Bf9Eh%>C{a>ZH=@0okxK8NRHOsy?Y{hO(w?P(G-)XYjqHvl%&L^pWPQ!33f` z@37#MUxFE6VJV5F67lrxLWrNEKu1VwRLQlB^>$<-4B?E|1ZU}-wV>X>&&wDm8ErGN zKoU_p_LL$#*|&zc0*p0uUgN2ZYiq4Hw-BM2pk{b5MJJ~%F6ne})L9`AOIO`KiNH#+8Z|eGD9uREFzX*JQ=I5}mYO+r4IS-keBhmP|9E*j0Q<}} zaU+Ot2DYd+Wzi+AA&h}@cwNkK&ty4_U*js)`~Hv63?Ac*MoDq*^I@2{#&75$RRzb5 zk22IrET+z{;#<9t3vqYsG=D_{H$gqn;MHrgqfh%Ci$yc5R6Eq$(Aj2Qa>1QKla5e- z?V9VZ<^YwkX=yOOevPjU%3EetxxDJ6$;6pyskJw*aUWB@g<*FO-o!cl<~6R^gDD^q2Dd&nrlx+jAYTiD%O3q2*IQvyE$p$hB&`WSv8T4bc?cz8I0EUq+vC8 zpF`{%#e4=oz&)?y7L1#aDPPEEZQUtSYmsM1DO9 zdk;<+ete6YWCzK=!UgV6Zt;U+6nBA9WB00U{Bdtu`e(P?2Z^cnptSfh`1vhyc-*}w zAeqPic}ql4HVSh~CHjAPi>r8NsJ)H+FVP5RQ8XeE`QM@uj^b_PuWoTKCYqwe${trch_g=#@f3NXORA5#czKb~DL-2hB zKS1z91i$~9H}jC}-lo>Ou}sh#5GMDo<~rOA#< zB{lB_<e5^i)cR8{gu|FZ<9|_dW@< z-{v8Y?SZYe8dqxuW%T;ne9v?)$Lh>1FHl{eje8Ey){^Y7EGiRt9joBQVxoHPZYN!1 zEZ@4nEnh%qo0S4JIEZ}cHm=y)-mR)+ui1dpw|%!-1uhSv;p}biK|%+m|IPZ_uC03i zZ2M|xw+G(bw@;kI^ldq4aq;Gnm+WmX zM_d8nek*gPb^fMM#i;EY_3#uB6s!2`H#ZoZ+msIQ) zXlpDL;5$Q}imKuaxf-3yYpND=&X9La<4lHK$fN}kHO7uyKs*xFHI=P1_R6-LX;oX$ zMBO*-mk#~{)dw6Rq%zP>&w z)q>sgd{037tyAI(07)pUo?R+kdB9MybCJu_OuAf&$V8n2v}1C?5>}%TAnYRORPYmm z&N6;N&{@Gx2s)SW(lJjT*a-OG~C;TxEjk!b@#6+sPwiC~?Ahk^6J1_rf?G`jW( zHRZ8)=Fo+5jfbi1Edf<&x_jWaxcd={AhK-~<#G$zYx7rv^dst*o(@(;|9tm4pC|6) za36~lvT*;d*e=C}pA7K*DAL0M$t`mcT^`)hE?4bk8iTVt88(}YBW5|oQSW7n2`?jP z?(%brhy>Smg)4^L#CY zb!G6J5I66n;N@?z_}K?4*1NEKQ-1A&5?GT3fxL#gtVC_?VgGSY>#H~|Uyv#Gn#Ef@ zr8J<*c#V4?vbO14;fvyB1VJ5w-7g`duk&->sNtrPNwoyKU&i16uXtC8P?h>6Wm(TS z!@#tmZnv-dC867SU20g00PxrW>y0y}`Ys*LIR14}6$C%y;P%Ej;WX-15G+5+inN5P zY?A;T(p6Fv#aDP-EF@}0QGQo3)e_Z}L~IS(@Y)f&z8-dt$6QIplPX$s+n6&wSx%P~ zuN(WBJMm2Wo!s~=8K1`-W0@*~C+_4%5PA+vRQC-F+;7|38?Oz#EuEmix`vHtZW&;{%~@J7 z+r`DQug~^D3rwmGy~8yYJIX}6%QQ79xWfKB-{Ff^Ah9<|b1`SfmE82<_&XxC98ke- z+;iA#R;OajKWg|9ci-AOY%;hv%Pu~$#7|UpZbZ`0@$QXCl?7eVYGa#d8nO3{oK!uI zlh7Eb`l#|zBWfzD!FP}HV6<^rRii5Nd`m^@`e~Xo!bS7*pEv60p~|lPP!ErLiR3pXPd- z4VL$%nlOrcKBHMa6EQ`1>~Y9oZ;Vm+CEYMTtXD-o5jUYE2f<}84ofdxz)-og0$+cZ zze|k%q}xBeOay8@p^d$V~UEa5n(Z-{iG_q`0H(6?*u7iaThB$2B z<;s;>qk82E`%EW2x42YhpXt08viUNGYC~PXf*obEv27}?ZK&6&C#6s~{&QxvZ7B=+ zr5XOlva0iU)7Vm)Rj92^HgB}?fa=rRjap~Rd=~AD^=4sc=@Hu=ApTp7kdykzYAS{pI2CIeZSE!{_k%^?vqa3vFNIptjR* zhYx0R-j9{~xL7#h)$Q$<{d&mQ@F$M)2h~Eb)PFb}?Y)*i*x01o>d`|@`jN&?!TR(d zx^?sem)DO+wDaL=1^4$srNA4Z2iS;DfQ@@UI>nZS(F2X%-Ya2mZFsPjdi8XK>cRce zbdTN$_X7~JA@&0q%^)yENtl-fPR1*$rJAzMD`F{<{CkM;>vB25bA20qs z^wt!;)|qz%+x&Wz2~>f%fT(lUU`Va=hrPx{pimE^j=3J0lwX6Ps=pu4&1PB ztql9Tv;FFi-rhjJ^*TI2?CJKxym4!nXRo%{YmEFJOR$D_+qBU=XW+w=su34Y!vmC! z^u#|Fh~bx#;U2sH$NKuk2h9=<4`}cAAL$$72h68u! zM?Vq!q9XyC>TpN*@Hu=ApTp8k_Rcf1h@Au*z*%QwCo$~B8rdZ4IL10g5@Q3elVCT=21%U6HUexA z1hxYtF|a_8MFPB>PgUKzzh+aSG;fnf&D_4XKBuZqopb6`)u~fMm#%Nw&FdTG+V#fk z)@HpHADVtRzmlDu9yeDi`BtgkteRP?u+=QLUYnD)ZP|9!s8&cZkBDc(X2lM2qwIinwDkS z^-}9qzG;1KzOHYXg?!CyTE(*6YL+*)T9#REnfY4rdc7GRs@99;(rXOasuiuK+1j+s zmes7HwB1`?>kZYTEE(jt$3${PlLKS2W8t0<~FhKxH=bEv(+Fa;0K!Smu^(m9{GB_z)yD zAJ4BoTwYr>Czrl5A5Ug7lS`{#eGW+h^$=^lv=~si+NhKPE>x+RuL0)krTEa|Y-ai) zWSE?qUzlJ0%B(ldx%t(l*=*LFTh5r1=E`Jdb$)tnVKQT`tYub~v$Mk{bRJd-+8&M< z6MEUK)}i%9tCcTTY-;aU&=EFNt5P&K^Diyvkb+fy36;v51?cgP&|Rt5o>A){se`@G z&2q`C)mv%v6_6EFukP=N_>j{RNJ)j^w0Ub3$*%UI0_e`RAT>akE0+NJT%}%brp>9k z-NNLHlcqT`HVT9|dShfXZLVb}sY%oIS}R|G0Bb;$zuu`KT@&o__)uZ9+_0^}{W6m4 zaG_p>r0_RnUOU)7tbyt0u7~+%kw|Y3Hgj>;SP*l)gDS@d2M6Pmg#y$EyD7Ue54g_T zn`R^5Y}xVnmYsiQjmJ&+yLay%&`7?Rvm52436ETKFND?0&M(VM~x!g;a%=yKY<;*Iu28U$JKeQxy0tErRZf@0HAR`i| zVk5AkX5n?AVwp(@+IZcvY=&O6O8Koy%bYN)`R#Ibt7_i9$?;~gX;t%Ok~%=l1OoDM zESCW=2*`Yi3$XZgKL< z+|1N8)axdfaesAcW}Kif7g1|K3N`?J@LBf&HIsldh;5atfS#iH+G>f)PBwrqp{bY) zG81dm3V;|Ceb)*o7qW}14#9zVx^?a5jggTxGx;!Yzp^TolsUb!W{wVj@4>?#rd0K* zo#W=8_{;?MLeS>u;*^;rc>qnBxP3E4^c4qjS8ujVkf&RPmil^a%U7tgrBVrY9fpo7 z*DO0;YSybNuvD&)^u&Z$+);(nGi2^6v?@5kCP*+51FyLaAi}g+t(NPaWL5>6B2w0E z{*K2(`|I{iZ`{o6oYR*Whly7*x#{J#rBxGxZ&B#n!elP{aDHwT@d=@$V=8!M@&Oi+ z{XPVH5HdWuF#lj_b|!c8`%@^z^3R&qvpkMc4#goJU_iCw53_UAs|#GW>93|2W&vK( zOilx?R;C~3GSgE~1t?Rbo1-+8{O;Y+l(}Q>k#g?Aa!MA$ZSTAkO27YNW;2u7{S-s# z_fZU>^iumjNC7F$4NwArB|)?o%_I)7cD`hRc>g@r35d5wT1vrqbBsW1Au79?%|SS* z6%)aEF~Q{QLI?sec5Zq$lW7+}v%EBmxCPW`1L8MZR;^G59fHX=+se1LK$3ALXkc6e zu{<}Ion3`0j%<(IL@*Rgy->~DFKj*S+`{to_h*(Q2PH?%yLZjeTdBCaN-NncCvno; z5S8Q#Wvpi~^4h2{FpEE!UtY>Btu0Q?W=vDC?f3j~x%nl4PjPWz=j=le3EAn){L1Qb zhBJ-Cr{zK;BF*FRf;l7ZzrbPVVR!f$ty1&47lEn+XIvlB2kpL^^H; zG+U$^&0!p-2|$5JGnQMN#S{U^5GiitAP$oR;6)_4nOmW%1Yk&{xFw@+2S(pc#CP2k zF}XOKZHomWry0vGG|P=vy%~;)_Bh}{x*ZN4Oj+TrS4!y&s7-B9pb@{>4i|d5+cMo} z?bCgR=>muf(#=*ktYQ(wDJt^KdZl7D3DXWkIv6w;^ES*2A%xY0Avw}!SAqXLYzV`! zhGc&AGQzqAX=vhi-5%YtIIRXkl4oZdj%xaOWZc+y&OBHw#T3!C>1v zk=5F2)=LC6pxY8bUx zoYBC~@Z#e9vOh($u#x8}7xv`@2g;7eEEJJ+at)b}Vdma^jq{mmzJV>70u4c|gusk~ z=8RRVT5rBi^YouqM9Q@SObcvYlyHFA4GZ`hCT&=jndccNNF(6jdTm%GgaRD|sLB^? zp_LCqO>*TrG$dcJlKzIJiIh~6h#nVammaJ>Oq(N4+pO(^)o^tC;k6nr$XGZdw~CW1 z^VFU0dT_5g?a9E@2Nf4m%F8%Erv)lh!An8~mma;=q=h{HaX705wtlY^-L45pqW zAhm6^5>L~kw^Ke~h0cLZw+B|r7mH1XwimFu$(fnV9?)>YKSJR4goZ=kNGP~+2`B8& zfW=b7k7hGd%h_3Xm#bKKNt%OCfXJSzesAB=I$4YlnyGehIS}y(KU`B%axahE{BqE| z?CFutKxNy5vO5Ju9TE=8>Do?UQFnyHaynM5Tfmr~uT(bjg%`A}0jk5RO{->pxwwEh zFO{F+Dh)1r1P9~j-zz`_&l3>HW z;lY)L+t9eH0YZ_>Y|9J5^pA8;A{;9?PMtV<`%5zk;&H2rxZkiU^;hQ22U98PTG^D8 zhFKb#WlTK0bG&^5wN#_saM_m4$>extq?kKV1mN5F{_8>7>aT2z-OO0VtZdX}Z{fVJMstA5aq^ zN8m`TAf@~z(u$_5NFwo$O6K+Dy^Gc$LJfRWCX`)K2T?Hy$(4(G@g=NoEnmg%btZgI zJQ<$4(rY4v&?JY2qym<5X%aLoLd_7wRTJp0QLhzgIUe*{T;H(Gv76(gV-8AON_pS_ zSSnkUqElX)>XkMVnW=;sqMW;Gvq0+geySt2`u$aBVUOylB1cEZM@U^Fx@T=^!!qaQ z<~B(|LZ!4KDqU^ln`Kau0&5sLW$0kq!1Y$c6R@?Q0UH{=+5{OrE=M}W4+ zhgb4R)@pjx0uXw7)o}i#_Y5@8DaRwionAzKHYZ$NdQInut1xHx=G0pLr1=zw)zAhx zg``dI0uSU3l&Z3ief_f1thcNJ%qemi1S|We(ahDhs-}Bn6M^?k?|y+B5u(_odd+gC zBbb*(RAMD_c{_2Lf$8zjb1azJs>}jTn8u7?LS>uGt51?t`%P;9eq>w+(oK{|_QyA!0GTXXNEoc|(k20j;QH>5temnRNl-@q^O?=G^4OL4+z0#5e=tWBK_xdM> z0Gizs2Dik%{&!FnC8>&KyHUx%=0!K0&gPsIRu)&fnDQv76L0aSPl`QYoo!5~E^U&( zjr~I#uwU22o>ci+Ee~X6p@our{kh?q+9MS|$5E7qkmRjY@In@=uS#qt=4O_s6X}3` zH;jNsHk+Hv&MfXEpWnSZmP)xt)Kalt43)?TdM43!W`23(4$Z&`jwS(oxR?f}gdwNa zvfH)!#=*6DdUJ8rYs{CiKG42s6mcidp!QF&iIyqI0hyq^XKO1pXkSBP?GD)wCp zx@D?{ISGRNwCase)S|{RyS$PJuLs4ODkIEh;l)?#O!K3(?As8mK{nzX!hZNXa`MDajN}lP4r0s^YzS=JP9K zDf3gn!7@LY_E;g8&D>ln zE$f%Y+N8`>JKa8`uM@Qy@7@u^y39cIza6q0*~Tb%r&R(D<_S9fy(cDazYM0$EBCeV z<*sl7I{fmrk+Crwdl+;TQ~rvd1a^5d9kBdF#ipHVqyp6&v?+0|Z|hyXQEIeXqE1ZB ztz`7UuY-jc&XX3PJ6MV7U@av8=0XQB+pg|<=!Q&hm?l@6Z%A>S&=$ zF3@1S4_sOYW?&jeG@JRoI6}_}#5>XX&lve@Ce}3v{)~tB0o)z-n~nbJ(cRL z9cT{HrWwum-;Cy)G{e;$dJB+FgBuVwNWMkgp|H2>0awkN@3ZDjZ_NXxs%Jl_Ghyo4 zw6Nd*=!A>@N!}5{Lllq58in+;AXRP0e7y1nJTog_y#JY(cR?;>D*!j5p+WMMOa*+} zoNxE;d3!Ubl?*6$OoCE<*OWTvr^spvCyrNLd{6T#AA5p?Ua?XtCCd&Q|~udQOB;i-3uKJD562%W%8 z;U~>I~|>K zukvM{yV22{9Bs$siuGF1QGyQb?-3-;GS#sxqWIU>5v+&RFj?7|jE;_sjCh9kAv`TO zY*#F+ksKKw85wm;I6RxvvLzSz?eo>)9S;{0Xs5Nf&nQ6g;mY>M@<~o5M^H?;vjt_z zPS3A+>@{2kqp0iYYdrdHhf5(mey~(GYZe>) zvNqrrrbu1Dd*t|I!z!WsAuC_li9Ieetu^era?_{LeWO&FOEQ#o{8wUHu0PwX&*J70qaDzP8JSd?g1#@<60Ie0KFM%Iy4rZjRu$5g8qxPh}3ET8s-i zM=BTK--z=a`hKu%Ceatv-D^S+r1`8be}BmeBJpn!Q+W}RGy{D8T$%{XYX;eBhKOiB zTznO(G%BQtOTXANYnWgf^$}5fC`m-c-Me>EJAv3pn`3U_Lc2eNPnvNgu`_VQ#=}(m zIO?6l(%O$bh2XI#OzuzX7K{vDtGH{#q7vGuuBlG79#xlD`DRTl)G`rbE=)hz@e)vb z^1iDPxP;rum_|}Nw<#Pz!3ZZEKza4^A#>HTTYLh=5(n*zmNdNw`On8ulBl^#aHa!J zPN=kfqT;sBV~bZt?5&1yVCREAC{ML$6E$9@SA(ILojLs>{W<1Z^&Gm^OFE}v z$!{Z`$qs?r*Wg3b{%+gu^e$gxmhp))3*K zS-Hf_p{Kz>Oot=Ka8#c)LVgj6Cs{BJ)>t}0V1i>gc_vrmT(>OIvo~};<77+ zE{4}u=NEFTnaSx{oUEwenc1ne2OW4TX$o&8FcfVIC#U4=5@kcaMW^#7Skp%@sh5kC z@S5&b^r{x5+@lJm#VZ_CC)b1y(M-L^K~HW|xJNx&s|i_1b|0ekEZ)>o;e%rU`uFSt z_ECG8d?0zd1ABl_TJ}ukuA1d55Rmd8q^7}uaOjyPnm(7G1oPUc52~4J(*zxxJp9r+ zZz*36SeW+LLO>XdQirl(#V>wkMs z4#;`Uh+v0tr^mFy(|YAoAyq-abrmER&_ffHT_?l6d&xUjo~Q5#M+ro!$FAjOO7k({ zTJ;kETU!n6e0`uBoF5FW5=ufcU1}aMnX`-tk~s=xO`Q^J2SMLWH+9$E2X(i|t)Mrw z##3RNd<qz_Ql|6eVM0tW<+OO*57NSX9 zwgh5*!V1w<^Tty;Vls9U4PAY)V;nnrJ1};XWA9+3EADA3zHgBmhz>x!l(u{T^UgN5 zU2ju|yE4uwk#3W{lW|ycV7?zkQNrsgEks9gAOEW*>^PRt_cc#E+`a6x&OaVWT&d(JETV;No5JnIPJX$#Wh;*Z)N1& z42-i-LFw$2mlCO>=6yxe&dn`{ybeHn+8VNY_A zVB@hrJRCRg9bGRN;x7jO--rM0`KVzO4Pzai5u+G2DiLEnBHyFNdQ`s0jP;m&?=sfA z={;stdW==^*2`~QMy1cF_8aT{Mm27%$BhVvb{myLMs>hgAAs*3WBssE>^0Vp7{xwg z{isodt`tJtSjssg?;D>`-s9mrssKM z3V$v@@I@-nG>XH<`X!@y-B=$qiieH$A$opd6pt9|ml4qVr$+Ipv7RuB$BgwPV~4eK+b1ih5PkZ%p+ ztMxlZ@rn$+szSeK6w`*)Z#*BTh-)h1bEJ!Gas)~0DUj69?t}W-eNgZ0KB)3f;BP4z z0b*<6<4Q7$uYK^4e)3yg@PV#gITc1pPwi!tdu5C-cjIFKADF6q6d#B2(T@+5lVyZl zMrm2@!ACDX5Lyef>GzVf;v#^rAfY1VZ6mFI@j(}hs3^Qcq}44xZmGB1_Az|(crT+C zA!Hk~%R4+;ShWXJmW|bR-OOPhQ9$G+9R8r&{-Dq7lMobeiv|@1UDiUBK*{(sJ6(u~ z(F8xIk^OJOV+Rmq7|$cdeMok1HzEUK#(fwJzSxZ#J5d8#w2W^N{3xOLKp0EZHAzGU zmson%`WPG6=BkJmw%&E5zjZ!1i*p@B>$sLjo%2s(k<=4(uLO0fx$nB@w8oha@$r$XYHwdZq@sUat6z)>KvgO#EA@YParPM{`&FDFqM!Ix90jNl7sP9MUfzxn-?oT>zl|EtiCw>q7>K>+UE%}c zaxr{9??!C^KYNVVLln|$Jnu7}_tSfi0o3>W5F+#2m=SqgJ7si%9DRP+co8?64I>hX z)FQ^0KsX}jQAGE*q+Ol^WJ3iI_A$eiqT8S1xI0CUKg9`mie7(;lSbM)v zw1{aQJka`#lJI=m{vN!(@s$%c@=LpmCEN+JZ4(4v0-+}eyxAdnMv7y)$R=~%5odgj zO(rU_fYys7(|x}4X>@RTcc-zdU=ylXDWKt8zZfP%=shLI2=7fW85$-&fJfl9FC<#Z zwN~qxsE>YXkM$H`h%7(IGK|y&Wp7B5+F8+{%JPh`g<6Q1fm2a9-&Tmg8EGbYaANZl z$op#uWRN8H>Bx!5(O4`p6gd{@>KcsjzXA9(SgrydiKy0 zSg^}LO(8;`ea093a}R&|jWeJr07j5s4jIi&`96Tc1k?w~I6F#>utyc~@8kLdVmiVe zA+}K{vkIVY>|nYWaM8tD)*Uc2`^X(Ix3<(esRuY$cBpXAl^X%1#~Cs=u!cABaSQtw ztC>Nai>ODP(nS`4NV@!lBi4Lq)#7_D~^?xq)I3rT%63tNp z=i{&@?Zi;X_*;dVs@n#ho7JUy>wz4Hh`BNk4@|rgMqO*!zppioG*!K~UKpg1L37US zlAgjMb%)fX-IxrCiPo~F1)Xtkx62n7RdLpX}9PU~tyyG94$!0J(g946VG2v)<;0sZBG?dqU5JBNr<}_wGb8zF^S;+g} zI1CeyoQQr5|Kg1OKG6e&{RS@!0Oq#~*bOsJpEyWI;sV(fGXT|q$K4+6C3}Lf*=4){ zsdZSqpM`EYv)e0C-D|X{L(Y}DMAzK?=CA?(J$6PjTA*NxUB(AinzReAgTG{-!YEEw zwYxItTf1t4mQI=uIy0-XU!D6a4v5B&`X;#cA0W&lgz=up;mBDKR7WD080Y;u&i{9V z$Q`i#qRVI=Bh|P_YQkw$38G?zc-|$L0Lc0rX!4-Ni=H7pLoi5}4Cx_Eci|KcnV^@M zz!TT4;%Hjujqb(h7tr6mL9u-@whw#Q{yk%-&uIP+#!e4P{bhiNqg6M4Lo~!ew?np4 z5A=9H=`Tp|coRqFB2wKkDO^{85&3t4=LY!kc!d?g%*rg~R-~a{0zxc=8yT5vQpw2- zQzm@;03Qxx_A4^Np5VJcNbeLkKhV%6FGL{7_(3nEVWX_1H4>`VtA@oRL*t-G>WoHG z9#16y1Yw^g(i(_#0V7|GoQNSyUx-|Y4MYz|m0F^R><@UJ`>m#yM4a!a=R4;4?xOGQ zFOeE~Iy&?8=L}x;V$uZq0E|2*kpOgaZwkmWB4T^RoD!*7f$UdG?Kg|YV<$YW7j>vj zQGIVx)W5G6HPC6R`ro9ep@>%0;Z9o>f0LsAg~(%?Pah$+x(m;@acX1>#oTwj1VMfq zpFK9twBjAy7(wgS#A@gXzZ})RW=L$H@f;0jaqZ3pTE(`JujBGo0{)UN`;&*1!g@=p zJ2VvV=!N!8cP!8dEcG_J-79u;u5{e21jv_EuJt=eNj9Kh4)K=+;6;y8qI$uQaoks z#*NxT3h$NSzY-~aK;a`&s&e>mMvA8?{Hzp#9R8n1if1TX@5ZwWV~Z(tx*UR|f4e?6Qp zn@IOZRgjvLw`l+ECvwA$M)a`j2Ld9U`vq*||4tqKI~#uX1%bqH-}m-Kk)(~6di$eb zFe?7z5Ev@KC#w4Gy}T#mF8R$09_e{GIx0B|%5+F2zblp#jK;a(tL!;RlJ`XXs z<>*4UKJc10bp=s|x(!4B+AND?_$5?QylujH9nCb=POorhPon_3v_C+dGsLsvB^&_m zY6HND$SLtZPHav=NSuC8Mdk2tB62j+@A{vHgKjbDq~YMl#(staj^AEHHEQPRtfN5j zHVsZqX;uU>T$h+Tw6cav3OjNFS`vc%o6iiEOI=DXy_JS@*Sp)iPY?b!3X8p5-_zc) z#s_M`oLQ4Q%e<)bB|a>Cl;r&PfGFi$puQl~uBnJxY+zcz=`Zztm%h~VH~dSbqC@3U z=}ts0;>2K%8ui7+R9p-@mG;|X$a!Mrl;B~bwrftIKihNx0ibnq&u?bh2CVyOxPhLXE~6h4tv*k=;we) z=cGnDng`nNBhj1?OS&J!zc`T&2oxrrUR`V)jqWWr9K9~4kyex@TP!i6Dp9ux;?)vC zX?i%VlsL+w3h$xtE?+n;ow$_8K2Ih4l`^?KjreZ$qHHh4K(LMB+L}HkhJgaK$8)TJ z;$CWxaqs?%7}}Ju6#M&zYqGi1^#+i;0wLefr?E#AA8e0f*7g8nfdGH313apjtrLLJ zK!ATwXqLxFf)BYSuc5aqyuGqW^U=)Y3d?~^W>UO7o}`hVt`QJ#k0&2wUL)ClD&@nT z4*p4e>dw{KSPL1!zU+Y#>Rz7)lf69HlZv;8ulP{Ki{{L3f2u59NDVq7SMMH7&C(#n zf=FpcbX@|ks5P5;@$xE9apa?4yuHdlJIJx?vS;iH^@RKgMbZ^Dj-3FV=B)UKg6VW* zL_H6SCy6Q)Q*kM(e$9BBl{b#x{&`wB>f-6%icjz9ar7Qun0HM*X^JeCVWVOh7UW2& z*I9of2I?UOlB+*nkNR&ve0`55Rd47epO%DZpL5?H}#8q*aT(;XNS zUeE51>)EphcwH#Ahnopyft(2_~Kr8P? zAQ?v4Y&;FH*%bB8%E0O9fZ?C{z0{>t^PJ&GoSLC+ ziRgIekf>PMbwXlt6_-|rafNbMg6`Jd)#UG+U4yNtMCyM_OZ`{1)IGBQKzq)zMvuw= zftLJ_wB)SafAdEM5=3B%ehE<2y$@T%)|e5010C#q7I9(60bY?Js-KK8p>j_mpe5H> z?T#u1S#Peexg@pC?a-ZA%;TK7gRQ|$lk#?7Zm?->Px?NiLBi$uTGPVG-s&$XF>pxi6$_Ks%)gbUYA7};rl2%Zc5+`IVE`(7BMIiS=DJe%EY5su*w?~&MaRCZCo0rDg z7BFDkZwyAn$6-~PQ_e!fDW}(EgNlYzeWVIqR?M=83-Izkj>-A!O_#A^=YFN1{p!Dh ze}C%>GSuDM`!cO2`F#x2Ho3=ak>>>S__(gN63%*8`ZX`o#8`Mxg>ARdxpihi8qVrI zoM}xx#J4i7qK0}?))Zt*0Si8v-UH1Fex>44Z4 zryRr#B%&?;N6B`!OM!DT{Ut34n+rzta$96v@&fqoceOh7BO9OLu@srhRl$B|`B1Ce z*@#oQelglRtAb>9B3A(w52Gn?56;)^2?^Pa>ltia z=5NaJk{rW2D^;h&0S2$1T^c5f8wD~N6Nhn$N7*GZ2?p|MoB6GSod|gj%%ot< z^W7iz48Tx%2H5XB43y`ir@ID#9pM|8^&}3KQU3&J#xnuJaWE>*Dgb|=;(H%gpuRO6 zD~w31OAKSb7%}8LhnA2s7o-v~H}i;9vtc0>J9qs`qGmsyU3uF}&58n?*D~?^C48Jy z2l14`Q!2hZz`e0hHxxgK$b*m359m-yL0WeA=qAwI8^TUKDveSM<3*p*93))hga^L+ zjpnK_uWiX$Q;Upnp=VCP&z}_&)ssT2KogHH(Zi9QE;Tttq9~9RCL37xNhCt6GQS{~ z!W_@BtP+wZJ+_X_7hdpL9jitxAuz);&;hkhEL?Oso0R_%#?u7f?FNc!Af36gPP$b( zpe{P5HBP$qjYriQ+X=L*g#SN{o{SXaVFJ}ZW5Pt;ZIX_g%u%s8(CQM#(x-Mv>H1cg zIcNT^I{Vu%>p~8_6(^|A3`9tat*FR&8O_44;tPcEOcZGDgWYcNc6yf%M}13!xBXbY^VB^i z=gtu^M6-1{3~?p*ph;_aXm8$Y*ne5(>ywKx$SvEaBS619!pgHRvfHN>^}lLG#mJP2 ztOfYx)R|JuRoEeC?Apc19!f{(SJVTK9o~=W`6o8O)7F4Dbv~MsH;PMq~YcJfyPu+Q;p{qtg13 zN)YH#GKo0J;88MO=n8a;9TX+Jj_}BaqoU(OinKm*3CjxV-&88cFQ{qeZ)3LOjwb3j zY2_K{nACA;&?{^B2VvVhSQ0L724LQyzf1$JvqLy(xE0zle!@V=#2e z5w=jPrh8O~yIMaW<#k*wX&*to4lP#td1w%|$D!fZQKs(3G%T?p^*6t6z<-ZXmiN-A z^xIJfL;on^)MX&5i&)&+mL207p#TsxVfzk=bTK?$L6HvC6s_elOj8*K+lN0THy%l-EMt>H%jfyKUAigN@!>PM`@IBK!W(cMsh+yJf{RP zieA4MJ_}-a1LDq*fk6)~9GnF)+ymc9E&OzpPBOaI*?-ya2wz^DvIhsoif$YLWg84{-I!<45i_62)mj6lcXc5t70Ov|g0_$mOkw zd}Z*t|4-G5`GPV(UYC|Nn%TfFDSHAmARzOA%wJU7SO2y`%Wo^p{a5(-Z}EZZ1Ceg# ze>q@RNx1#=m*r%>C)$6mzo)-%AU4p|f4IND|D*o%{g>ePQ2!ZtUhMCKuaEmL!*{&D zyZ=`I)w1y?@u0K`Rl&VWTJOl^iuFP+$8&d5P+!}b-;|3R(p@?4(A%Wa(W;1ypjChq zT0o)nY`9RbR_irV+GH>^A`@{P>{l`5=!HDDWd1vR{5^c+q_HnmQWQ@RCl}@)EX~g3 zZhn7?4S{J5^It&(OE#MyB^rPBK+ZUb~QJ>vc^9A`kjcyS(?g- zFZAN4Mb1uZ2d)`Dp2g==`ZUyOZrf;em7I|g$vvE0K-)fIxdUWjl8<-U&D%W`w)USO zR>oPw06cMMI~_TOGY+10#L$%dRNt9y`tFh8u7A;3q*wbFkGa1otXJhzspH-KJ*Q)* zyM``Z-?E$6H_El^P{GZ5Ej~2;aDF8_J3VeH--TJLumwuMYje`JE!#%NO6FWMU$tQ3 z^#U@~8?T$?XPYfESxA{C-pUxP8MShicu^2QdZRpk~Qy1ia+#)klZ<F2QgtSH}{s{>f7?C0hqtBF>% z=Gbt2$X{=#dgMP8L2cF>Xcq;lEmZFn?hkKR=&!W2RY}K((1hdh{OZHywN-O+=_~W` zWF|AYwEETO>U^5@(qcg9z^V*zp-N~T{TkX9A6lHvOh1GSlT-5x^Q&K>^XIww)uq{N z)&y2GC(V_~%=G=uKz>xlS}(-TNZh2gY$ zYZS?@_M(E`Ut5qGAk39Z0DZ1fuQ$`?RNZc2^2JHh92px0LL9v@GMYBmvXj&#G)>DF zpm%EI9Tj1Z$K`#l_sdAGIDkP?_!}~>9qb?0!1Qz1L%B1w2b;OLYb=Pl-a(b)gM)+d zpriFBhzvX_)W|nUHulX73Gd|)R~aXAlhXN)H@y*u1j5mXD$mW%jD`> zW)?k@>-QB-%qP;Iz>mz$jZEIUH3=;Y$-h3!hw*T3h-$%ws~C637xS1>p=q$zOSs;|(Kva#?k~E@@wxX&=~>yN`v39_9qSXG_I> zb}ZeaPI)InI@Iy256#LqMjX23tv%XkOPWl-rQ#ESa&sIWcb=N5CnHbAHKnf8OmtFW zQdn*z(bma)GInEp^tQM{rPSOYL{b-Fk%+<(8!Tr9h(^#cAS>8@~c`;$VLP(!!drzGWfu0H?*ArI>l zoYlN%a%Ok+>?h5qbQxOO*JxC;AvR6v(oXSd0a;?ZNbamyunCw5%1gvgpFoqYwNG*5 zDc;i~!8$Eyo9WimxVi{f<$(@O%9>r82$xLl*hU0!;c+3Y+YN7ct-B_(C70rf`6Ps= zkXL~iv@$){P$cGSd~q^}hx!IiMoe;}aM?~=R#3c`%f{dJ0O7qWBk_pp=q#B!IFQ!S zCDi%Mq^@?_%IyyBkfjoMJBjIwkRh`mXrYY|{#^KB)h~ zXD;vRVUpe8o?n6 zg<&AZuhRH3G6F-0Z8dRHgXhjiZ`<5g008sPJsq}c=uaY<*tE72so||g1Azp$kztOG zIF6#m-2{LY_gv=f)2bKq4V(v%KJO%a^MROhj&_jq4(6Qp<{axF=QQLT8_{wW>|yr- z+hk&HVR3S01hY^}Qfl@>8VL^C48+wRM~OX zrRjuAb?Lm!j4D%9mwxWv6*nmgc=V$Jv36G{#0b}!@DS8^Gmyl_Lo&VT@xTyprYKx_ zJaZ|6F77}aw1p9*Nt&h$Ml&3SqceJHWRnw$BIXAq3p%Pbg{IU__k%GII$d@6X5RL7 zdSWS)(8fao+c|}067D;xnxwLaTt`I~z-FRetGqTxP1fwpDQ4AqBi`ifPr0gq z8=nXQv8<$jV{7mJas~|=09MwV9>e^5_n8X-=9j$|Cj3^`_CkZGcnBB=Ks!Wm<@ZuA z97*g~GCChu@Hm7Y)OdSA{x)NaP)G_;)0@i)N@HT_#hmX;*sF zYEGzd^W;x+)j`B%rT{}Y+(?B;UFhWu?&SSs|Bx5r1vY=^Mbo9+RHDfa>H0@-8W0=WzfbCL6oYS)fQafwfM{kXSa;ks}n%ypsY+PxM! z5jHTZ_A#n|jOibE8~NS~0i?gZwG4H`8E>!n9e@nQjS#mGt(rp;a{-nfs`IK^=T%)2 z7C}l8TO|=&b%|Kod)ZUQN+{zRz#u6bupbmG*G$w0v#S}Q!~;x_X^WZ6q&^P{*e==^ zw8t)J0=-YFB*8k_McP}IVWBQzCM20eQo5SvkCeF&fh5QdJ+obR`EWx!*Y_Z-kOad- zRANt>!`x_loY(;%SIuPN@-^b#_Ofa=qrCfM&^&QYTsdA5h#(#Wa}D)2AQe&z^# z!W9Dqhc|8~N47_CAaBaePw(aKNr!TQ*B}vQ1SLg5z6zi-iFVmW!?HbgXAA8+nJJ7Z z>^)`j8ZQ5aEYa>$EQiA;5k0a!J2(B#Wb{^NYr;?kTm&B(>1g7xhU*z#F+xDnvPdOC zUbdY5UariiVnH4^eMu+0DO&%sRdF_Q-Dz<*mv(aRNU{r?LO;q*Pn)acw#Ks{BCYwU zx>T*bL3pR((y2Lv@J+&(XBXd|UNj(rK%nvOW)atQ=$R=2${K(A9dBOEF3p(BbMI>p zEB1$n*^+2v{A0mBB6KS)zemNzwD=yQyJ^WCL8Z%B6>r_@ zt%u*bj7qOj?ZaDXBUVJX+Ck?TQM#74m+qwPlXueg%R6b~@=n@A@=jVju}ycfp%ME} ziOrV(TJVUnHE)#ZO0|jk^7^m+)1zhMm=WN2ZABf>Xi48{d@2GboXEC2 zboY|s(sfJqDqmw+=etgM=aU@mmGrAorryxbSnC5cIX)}=Yz6hvZRduyqmi?bu1Gv` z+;MuYTy5OoE&#OOXCG65;V%H$_ZiDT!2A_+ZuBduQ!Id1d93Ou@~9QJvP(J);4z+T zvUMvdGT-*9xB-E$@&}JK{q}Dz?VfY{H(nZWgz+erQQ8z$9T+_6+Vv}=b(Ud+SeiD+*v#~k0P*ATt#?7bt=olXoA)jm`-zjv`L{Xmb1#(Dv ztsotU&Z@LMB%y9$3b-ad@CLx(V-?-%cr=}#=+zh^-xv|MD{kaTHq@FT3fB<$nm|4# zEmxe_J#|Ii{N}mv4PlF=D0&wrPU1deY5jEYjC52JKf;C)J@?SrHk3Me8Ql5kk?4u& zvB+t4=!58xATH|`dmDvQKx znDH^OS&RmdAGzEGvFDj0QS7%-4HTt6%V)HOE6X0`W8Mj4?^e!tpXa-OkN94BNz)GB z6M@^v|VoO27EPW0&wQX7c9n{4hp)>Uh+-97+cp$7`NQL<|6z z_PEPDhW9(E$X<8kalFh)MfM3t7{!xxeq5a~E}o)u&Cd4+B!9&BQIWoQnvP1cPYo4# zh63a6z_S#1hL*c; z3d9zN25QV~ zlUfBvXbe259JY9~pX2PKTJ}>~_A!;{R49m12600J@qq^7rb_gI10uBHw*pA@V|hFo zGzy@jQ@f{)?f(-U$4MtL|Jc|)gZXyOU|m6%IO}5dowN9#3q|Y``2(YP8#7^f_FwD% zW~197Pmb6*XB0o9TX29$P6Jte=#Rgn$A4t(K$4G8AF=y-F#3DMDo1*X^D$oGwsRVR-E~_0Io0_LrTf^q=P zjUFfQ7Z`+XJVS9J38GTIe(1d3cU~urb0u*v-#5R}1OK&Yz*GR2y1M=dbp3f_`&X&P z;%>e_YwTXYd^;CJ*I#sZ{YCuG)%B+A!D(a1G>S9CvzOd~vlIwY3&IDHYIn|K30e=$ z5$Fq;T6zol=4o%6);$PBfAOKQJ7jEM)0=dWnlxk-=Z!PPpChcF#iGugJ_BjL8R>IM zfmDH=`dfOZ{#ESM;`iM>h@6NeZ|fyL$C8mkKS2==$?g>wK%2iTn$P`x*|^{QpZj(o z$s$PkPspp2i2hJSNBc2)Nkyx+KrlDr-}E=)n?Kpt27Sv$ab<6T2x*Exa0c~HH8GUI z$emA>2!dB^9E}wTj3{Q|YZN9h*yN;^bJf^Mc#B>$c9MIEvPW2#08&7$zu+pLqssok zxVS$(>~UZ`d4~LwyfEOjKGeG2SwkST_8{!r#dOCW7v3M<%;cOdYP9db<4qUA$iqUg z$v92L2r;2%)I3K!Di=LAt!;9x6>cKUGdnziO_xv7WQT1co!3$4b&M}Fnx2}Z+0oLp zxZG%Jk|%%>d0Aw8Gg!jV8{diXDP4HfiHWN#X?sgn@)W(d!74X9WACD~m+#W((^ubM zb58D`McH4A>?i=uCHdy`?1BqN?X4GmWd<85x*)cIZl4KnHw`j7CSOc`?Y2#w}&S7;!AgLGR&P5s(P;qFTAYjo>H3j0PGFAU&t8(xQ ztRIpe>#$uo^x0(}iLis{4Mtc&%&xll@C7+Lc7(GH4K8ujZ5s{xR z-gJ4uI;MHRaxTiyT~!JGe;fZ-%IP?Zjc(~QDT8`)2Co6lYy@~5Iv`5XoezB~$9?I1 z2>K8HKNdX^>529C_4o9D{O%kB-Ts+lpr1Jg`eW=E=%>vu(7W>bvo&3<8N3)uS?unmY%Fbq1b5pY*rqDmqXmI@G9O$H&f6NDeWnpr9 zR>8j!k0b4jS=)FV00JfSP|)0n(m@Py+u zdvbN2CGF^KNK+WSo!E^t6Xz=h{LF*2pL=A3M0!kAZWH&|f(*^%%Ix*& z<+(YO+N-mswGG_f!WoX80*IJY$ihvlYSwuaAfiB3#X^z9?tCW~7IF_^Iy0Mvrjtis zc05wFP%mzhmda)3(6xHf6pW_=%gr3}8-?Ubc8-A z$|7)r5jU*i73qW5(vqeRuCLyH6gpm2bW}Pv*sbPkw?TFt51wO6Z!=OM$$XVai6kn$ zwOz0pt#J_5wyk@y@ne9=N;RIs6gAOTPz#0AswQHM@(~SBm5cZlbNLwa_Y-v#tHt`@ zn^cSpLwGT5KHEZ{WD2=t^ti6l4%&%Iox-3E|p_5;d2_mUIh+hj|q zzbNxwKD6?njXSZ^c+Zr*RRyuS-Qq|E?BzU@56aQ(Ru#%y0#QEq>QNmg)K=2r%U7FN zQCSVSyMlI@4x`8_dFswik1Bc6s3!2@MUacFq`TTQ!aSN96L+qyEQ9I{^4{f;A(`aH zI8ZI=eWQd$2Y?lOnfLd#C2ap2HWQ`{n8aK{ddJ`dA`avPvRY zuY0xy0}$X);W=CWp@sTz#S-XctaI?%3}{?ld}G?A>J7bb-MuOC=oUNNIa*zV`$tFR z63O!kBE^(H35jA!pX{7#!c2m~m{g%D^Q!q-O8NGKzdM0ornj2dIzc!%R7xVcs-fD1 zFE{-J0$T!Pg#pvs-x08KNwOqjB1n-6Moa*$Ujyvu@6aDf&^TkMtsRRDKi_+A4X%9Bi~F3hJrRn`y4djF8^0k`<`WZVS> z-M&$$>c8c72m{im< z^0b-w8dxupl6~UJ|2BO>>i>7sCHWF=w*0j8h>ObKphw=GOT>ih%{v1`(LqQin5h=_ zA)0E|E9xTbo3vT46t%B?cAb0BQG@Gu!(yFvsBMM!S2JIR>DnwQ|EL-&Pm+QJ65`O8 zXP^q}Lh~L>(r*SAH}`V3Ruscy=Od*L)K8N>JPZXg`^HweLRaj~$;C*X z547WXVqj--!gcoYzdNgT8Td{AsG=dNV9{y&poowW_52@crOD zBpooTboL!iJJW7z5WS~QzcCd|x$zRl`K6iJrBwhki1CB*LM3n8H0xVj zo>^O%O|liCnCRdnJ(nxjU?Q4J+E%5MHf7DYk-B)&8%ed+kN-p7VL2C}^-%tBC!k5F zTrkBCceGO&L^~huL{2Rrk@MkBMAef8(T6*JtDM7qGT>`OIJ)C?MVD<_Qs(Tup6QCG zSd{iEyC;7Qm#0PXiG(M1apsn@EbT8m`*3o!ee~F^+j_L)-N($Em9mY(2p7&P#imu$ zx*q1iMZWEgq#CW}YO%t+vW1XjKg$t%sTqAWfs>pe(3=DwB zjrFd(YC6p1r1N;8kVSHbj$=GB-q*FuwhR)j#}d*qZOR9LyPN=A6#!(A4**64LIA4p zLZF}^2oT}(N}aPEL=`|9<#-<3EmLh)i?;wNVy9~u zzLF_dX8yD4%!ai{Y%2GV&#JYdBrtbyf_J!ObpaMYw^0`31c%_RMR zE_>yQsiLc8oA!<|l>C&q+LP9+k#eM(tk|UqPy0#8i2}(>kRF?Ii!KriAeXPAmbyve zd7N-dwxpZfGxGgmu_>Z%;wPf5D6uG#s7eSCqY2P-fV@v@N`hCy6J>bD_q0bTNC)+3 zS|Q%mSP+82)XAL}DEu`3ng>N`{~Xrw{4Zqg*OtSeN(abewCLSN6=UT_#^aZVN3mfJ zf8tj-6Ys^qVa&TWqYHtxnQ&hH{~(_VCcSLq2XzNp7<-tMyFo+xb)HtDZ z>1l|b1DTTPTI1X>CQOD=u;4?QHP#Y)@S`w**cVIcOENxw3uG}-N+_41e&gmc4%wT( z@N0kkH3Ks`XKTl+<~Q<9R8n#IfsQtysh@4-n+523Ynv^P>gLa7mzSd)MeIWNz| zwE0D+I=!%Tz$u0}!lP^Xs_lE}_D(I{kA_cdr7_jG>9ExP7-UuLwd+bSwnS;)+%brk zLCNVZ2`e)>T;*gH+jrcw`kf8(E5GZte87gm1xTKe8L7Pf@7s(ps!V6&w$U6;OWDVwLK={S2Y9n8% z2(zba<|`{vsX*0H9*_WV%!FvJZ)=X=v|36tCFBrH0z6U7DSj^0fCUq5<-|1^E^OAz z1&|TUuf(UhO8u49#9F1u?kwkcbiA2L`B$aUq>mV|T+>mM&CPxpu)#BA4pyvuX;3pz zlZ_cSd2%I<-f-uL#v(KSEMKnKEt3cF0@}qi%XuGcvSoD7b_@DKR4VSWlA$jgd8dxX>%=NWKYkt5zmKiQzn_bk}_RY1$mzYL%{y z-o93`24P^pqeJ$@Aj{Li)RXaRqfa|;9m=%a41_Gr&iLDg#uFoK&NIqCWBhZ2OyM-y z!{4q|JolYiSg2l@E|fx=>i)bM27xxRo~8m(%l0u;WyEnZyg?pnhF(Q?=Rj;$b5IGf zar1>`HKfgQJMvF@Ej%-`*(^0T4EydFWz6$vd0}mFHaEXG`C!(aBs2Lq6=?es*4J7! zLJVRmX|vD@>^d#)oAq1(fUu6EQ6Ja%_pmb^9Q0V0hSjHS1(2f(K)-UlSiH15#N=B6{#H`u676DhM_u4X2M*>+}mb$NPufs!0_yWRby>3vVd#P6C< z&bG&o3rDh<3+s!Mx#_j+>hdC>M|M9o2<-^_O>7GDsNTv0|KGS4Yz1d&i4+nZ#-Te zbhW*DIOz?;`9{O46>*5rmQoIO<`ZZ+;@XRVX_vY|P0aXY1>=0$#A!KF83-SM*~C+9 zXcQ#~&`jdOE1f4$M?LHm`}@FTYz2>_BJW4$Ys$q9z@%d4YmKdznQuPZ!jotAcpP{3 z3CRxXu9>Lk=W7K^?0dQn3=NZ+7B3~4l%4DX^z8YXsEW|zG~+H|^YM~4<88_=`p?O( zPA=IEt57bL3r;>tNeeVI8*5?PcxRc9`kBc`*(}iBqwHiFA|^A#!^0_PxO-;p;$!Ye zNkmMgB~d?T=3IIyZYzJ8V+(tDVJj|p$+z%=2Y4ZRp|=7pPIHjVNHm3UFgq&Pe$xa- zq&{orQiG?&rI%thJohO1ZmOr?zmjude-fbuebP@6xO%j!4 zVTQP|y%uIzNwG`{Z&}e9`tD2EV6lIbd#Zh~fGxe+DAy#V;4X}4{ed(%6<%Zr!FVf9 zNoiQY2Fm`Ndqj0z{c44d!bu`>0%1V$2hKrvuT0LgQRqd@_C3aPKG~b}Av%=aJLpr_ zP^z_B9w2eIZM>Zp!?|fa{L%yoIX-dY;Ay(6$sw9SXS#_~u44x@LHb$; zSsc?KP?jF!%P?W=agMNs?T-hO;Y-y_sRR&2e=EK-c@U;J_$8wl#MSFU zy$MsZM!iPnxFUU;`Uib7q@iT#v%xt+(c*<~6h3qme~8CyDjpS2T#4m!NL||m5ku?@(`1zzNV{o8%tvmJ1RehInLa$KV zJvda~WFeiZ=B%OPnp(b;O3Ugw2*q8|@RamFK=eSUO_1&n+0?O7KRL^hD@2Q0K1ug6b@Lkw>(IB3dhuT#c{tZ-Z2_a~nH$=WLSLU)f zvf3>H)!wS$O8g4?Ie|Fsq%s}qr|3Y9oC}iXnOzl`;&S zii21+<)uVX(CE_uLTpo-%C?VE-CCb)eMj?bmehX9ZdF`%_-s2({fg9qp6oD{WR)}~ zsL4sY+;i3UTQNQj51|aW1b)33BJwes3>@f~9IKgpIUoQ+`TCSZt@t3t!<}&Wh4mU{ zJ;Fw5aBb=POUsX!a%dcZwURkC{X^B=9u_rc4V0@Q(H&HE-&oTg4@)k`5}szX-#LcF zjCO~`gAagvQw;;n*eH~egTv6-gQ*ZMmo@k1k9R)Z&=HA6;jQxRpb?~YKzzM{{%9OR za8WBI5{_E7sts*k=_gwJB7aDFfo*6!E?A7bp?JNeu!odVpl=kJhv0}sRD9DHQO!1l z#YC*~hVzh24-(Jo#Ae(}aMGGzt7j6iT`k_CV>XvnQ&VY~!AG^yqTdSyEzAdlfcPx^ zMIc%A2S9=F!9Xa=+TRgVltMGHTcmzR8o|apn_IKOcZI|j+pFQqFic)F@9)33MVLGS#l+V0F(=K*?&zc;Tf_IkT^Zt~Zj~ zekOEzu*SW}q0I=I=&8@PL~Y2U$5xYO2V5LY1kg^%HCfOi4u)NhTgP_1H@NnTV;p ztW1nZ(FGD&`VQ0Q404$_-)uV43U6T$N>4VnDsusG(C-0}e6NV1O;Yt-r={!5D!)5>$XcEU=h9rcG zEXik93sWbn>3oU>7e?oY?N+|o63SXGHz;J9o?4gZDfdi=3ZzQFyuA1%k2jm^Sv6EX z8Kj|d5R(YOpw6|pm=IlMF@gxP$8Hx(En%ro21z{`Ob>FW3_cwZ1;ie&$mE1J%F17grHeV?{%j0ItDs0xu$f~c?a&enh&xNDj4d_6zo(|lw2Tb6%;Ez>Op_(H;_HsV&<3mW|`b}CfyS)oo>=*f|`&cp%_rN_uHN5c&y0Px1aB1vZhx50{)Zej)bj@bKBW>Bh&Xc7~_BfX~BRNX^-+H@mW4xTi&U)APr{sjOb>$URZ`pT3X^p%RJ zt+3MYPv$wEIi1WTj%KuTd~ELJ`B*3+YT2L?UCMabs;^D$kW%Ni!CtO^7Pq&k>`3?&qaY_j)N(f<`)vK=S#bpH)5L!$P zfT9^IQ9I4eveiUo_q9-UT!cs|{8nOe3A0|6XjkQCk*IN-u<07~wNg;>VRf&u3tq7q z#Xga1;?S2WJcpj5!w4JSg?=jCU3(W}sFM&2!w5+4sx&#F9>%`6ld7n+$=b}s7)}BJ z-}x3EIY=hbc#vz{Or(&J9pAu37k$c#HPq^m!p}G(Xro-Wa}EE3l9mMz6e3+E9LKgn zd(H=z#5Mc$%Xh{k)h#zH&=5aq{%Yu}&eK@%=?sZ>8 zceo)=pE9;X4cmr?hX+OFJCYi1kr7&REb5UQnzVuRjq6Pyw91Ma3Qs={KMPV&-QnKB z*VdjnJlF_82ku&i^FY%*UI=@cmS!PTdc`wd*P2sE^XZ5VAYiM8u6Uo-%0IM{deNY@?NE znbSIAl@6lX6#K)&ar55M^@1V(@P3{9cxT9!sDby;uN!#Lb}?#HBF1_|zDJGqsCoNJ>Wvq9}_ikgoTfX-g>pk+l*I4hB?|sI4pM38(*8Amq+*psx_d~||A$pG)l>wuA z*jPVoMDV-Is2nj?#oJN!c1*n;S8pfyt=p)aG^(eJ^-}-=>huBL8o7QN?}A)EgEw`r zpT%qCi*ds`XWT9xGOQ2bXTY#Nf}g{N^|5h#{k&maFxD^Pvv|b#F<`~S`?Y@zsJbLB z&Bnk%ydZmh2(N#(J~2uWymJ}Sd}|nAtzX6~kFCoTdRm2kig#X%(6cHuf%mV9&<|B; z60fqxB2#!PCca!jToun#*=fAA8UwH4P1X1^j2BSj%XPeKx|qOAr6sHp!x}N3j~dn( zUMT%z=-L|y3qSeUgLg{*7`pQ&m2sKMxP{k8BgESnm`&mZHuj&v>)U^NE|Z`;JC~9X zc|R53$iUzDxWcb^ua93M@x7Lqz`62`ul2ERjM1%CExtCaQ7+JLVf1zZOTp{0y5t@9 zf7+ls?4L)B=TW??9;k2!?@)~zc-^`d0ihV!i+2<4&^7b&n)ELE?!`+_@m}3Nyvn`# zr;OJZD1SHIxQ-W_@(167`uLkaWkezocz%gj$o4@8(PfM_-b6%>_me&Hg0H$QZYyeS z(hEv2x)jUNOj>wxSfCet!mIFDPWOUg0n{~g&zRRyKV6oj9qMS|eMla6{FKq_Zk=vp z(p~0za}u=UbTgYb^n^E*{n$I#F5P|8YnNC8ziypzqenl^@&F6K3s#NDxyT2R!|;Dk zBnH37BQc{lQiutet0?9xgCy>54Ebue3p*Kz0VqV$LxjG&h+=>qx+z5$QU#`fE`1&& z@`)XWZC5Wb6(YyN8YK6EQ$P45u&pjpk$w^BzI&1I}y_r|%v`J_i1K z5jE^Gy?4{q=f`5eVmkvQ0Q!xcqsF&g#@7Jzn6Z1@*gawFo-}q(8M_}CyQlG{>fN)( z?m1)kLu2xQ7YuKM91}8w~eCFkE+ij}Y9oD8m)a zKkJ6yC*UjG;uZ8zR`;H5aLNLH04)TP|6+vh{^o)}A9(>X|4&EtPPvE)9NIX(Kic@_ z*Nn#i1_%)$|Dz~Y<0ALeMXdE1s!@%ud&dZ1O1|eDs(tDV2T~Fy<(eTlVTXpGGtjd3 z4Drnfl#f?$1x~x$pu_w{s^+UZc3vZInqnz&RM*rzlSJ(AXDpil=o!#)aOO(K_EI38#pw zYM?PO-?j?M8s1DEbaR4!g{!!kwe^uNt?Lc|8mPz%H(jzB?wOwSpg=e2EmVG#Z*3|V z-7K3@X(Yv_mj@n1GXJN9mE4uSF-1xFVdBQeWwQaS4#yH7+62 z@s3MFugAL^-&)K*a_L?8*Amct)slx22(;s^o3uRb^a2x3UQiG&FjEGtw%7sWWL$6;?+B|&K4J{-8nv(EMa2e9>0ag~G^ zKO|*vR0(wLdSffi)ui?tfAEhrh7`T^=m@mHPAnPeqiD%ac`H10bChCnMCqFhy;C zAzt(ZH6k2TwwP*``0{b(shDt04viS2<|F~cZc~yjnWW2=1Xo_V746$7(Bir`WEtYPH`YRgyJ7;6`4VxB-QyUmWN<2) zS;xl{L~2apm=J>wj!E?9?1RKPU)4;0(Ec3+c!JP=802EVaT@;rkp3ryv4Ev_i~gX# z_$#U}aMsgjG*6Ov;At?Z>DVt(T2Y}yfYOVknn!Wz;Io&K(?r^zJff6;ja>>AuAEEQhe^!nrYtm1^-8-!)H$@Faqihhpj*7AKqeQR*a0 z%XX>UU)`#|5E=}{lpZ}g6XTJuWiC{>Qa-?Lq)V}#Grqs&tb!ahx@c%Ssy%tlU_+8% zPTH>JGB`eFiul;XhaGTf_S@DqvjPBq1tFoB0XjR`AM5WUY_eXfhRui^Ha~1LY-V^g zDqut6x-|VcUJ7gxAA@vM>wY*ScHvUMx7|csVxa611LY2nkKHu?Cj!+-s8^0>|Kc_gE zm%LtpuuKZY;CVzup(L!uNy1X->0R0-U|HLW$x(|LlJt(}gw*GR(dT{iB&5Rp9r~iw zPvRN61n3u3YSB-Jk$FGkh%7CIE!hbi$U5_8%WJNfh}QPv@5(21@`&s)?nRX7nY?7I z@Ghs`eu{C5yi z7ju3uX&Q2F_hx)QAQlQ0-&>)4->>t1RPudH@_o1D`(DBKLL|UvT#P+Chos8vh=l*Q zx2uhjt183i+&ep8JF_!8)BWnUyWP^t7M4QW2o*|0>sn|aLT|CHhO+8Tw{&TzoeyA( zTTR+P)PF>5g1<;e_(4R|7(Wt8H1)R?kr+P+Dxk!qp&^?(8guFg4q~ zz4zR6&b{}X_q^Zd*{qw-1vh#-_`shKO~;wTZnw&F9hk#TM=8^;#V*Gj?uvKNWj66j z%O|@wrm-$%7H2;;v+z|}k<_NJBiD#=iVVvvGqb(im~^!v$1Qq32Di9dxP=4J&3-&! zYB;R2GS6*XVvm!uZ8N?rPD^p#5IqKG#Z_PlulX$D4zhOte=LE&^Vc3r$U>FzHe@X2 z3fFuXBRZ1Ui!+?BpcYi%O06KW)W?^LEk=*LaK(h_3Gd-f-F4 zMJ@_iiyO4~hg#`RB`6TiYzTXdD!qRS#|M>G7X zU*rQ!(u5lbCV}WHSJn2!YP{HHcUpS~L-CA16fH&`MSFXCpxT)LZ@EtY25l5Iw`B+WPM5D#I9JEDMNs$0n24PIp)8h3*| z&`YqjMYeTfS&`#gkH<+LOd@d9d^Nb$rIww#o~+Xq?w3@Vo(_Dga@Cj@fAJgKQ&N~$ zhSm_D@;sz0;iQR>X&6o+A%_zV#9tTMAaX)Ikn9w~ybvyCY&0=UEN1QbuR;lAvQpBE za8#aI)~P;FTZ+kQUOb4fSSvlOluy$y{ewfKz@a4~J2JT*CUQH6%M^}jM6RpP+8P;& z??L4DvAmT^@cZ zje9ELSXRvy9FF5q85-$7sL<_M-=F?AqxKBSF(yKPFK~0}Z zIf)~*mE7P6wFHJ*uH1~@C8_4unSiV|u~%8bnGagRycm0lN2gTnX0@L>*$Zt@!mkaJ znqvX!A@rQsVcmtDFO3P&wGR%dQ`#gj8TXo2`*bbzwUC7MN(quZP6f?gd{yFbFIXpV z3)LPB8_vazHz8ANri)y%!6xmt!-uMe7EaW+Yi(p~k~9D49MJ%a<1Wr-Ah|;mKt`G5 zgYj!kuIKmcj|C_V2B@f85J4_43JCq8eHG(MC3gA3y9M0}VaVkndf>D(fb^n}u^!SK zZfoR2;@Sa!WL9E`f*|gibVAQ{q1k1jbw$=9q>?t_O!nMD7`wP|2axmTMBBZNAh8ml zjN`<*UOPZ#H&-oxPhNM>`b>F8XoR`rqRudX(F1&clkM}PfKemf`~ld`_=;r!o$=Le zTNp57W^2lj%dX-=$$5-!w6+=wCFmM$xAS7bm`wC(wkrO6sutbhQudH3hciT6#KV8= zFgg@yGkB4yc~r2C0NU@)Ho3FS?raMd@gqm^ACVp}no2h{o~NmUfB7-gWN3cylFdCLg=S+iJTcznt1{^wXA{ClufG?mGaei1I zE}?Lf7Bs}dA{nq6l!v6qBdaLS&Po;wk_S|{aw^cmSxqX9dB=eB#p*w2Er|u9)pHg} z?HOQE#|cftYLQfzmFi3{rx7iV+V|x%Xja4yn7lQ4<&A^ATp7^LVG3Rgl;;94plP zYA&&YvTeYMA8oX1ud4mkik*oui0t`*pP%RFpPWRjPPB_{L37+Zj2=$rCyzm%Uu}PF zKG0f|8pN4n6Hp(}Bl5)PCUSN|ym{W{_AW}LwdT!jhSl=ahYYLGCH}5O?#Y#~5hvM~ z5sf)_!6P>460LCt)`YdUkPXujU>E5qKE!Uc&iM{@IoIKW^F@?htR;r*+Ogc10v+&O z!4bf_VXGtUVkrtL@)>Xqpj>&1B4N&n1mK*?8J>(Tfp#i|=qyCxe5zr?HSjxb;JJr_jtv`NB%+ zw1hZv2&*u`KK|O5v5@I{ZxsOGTt@D0>`e~ zUj7~Pg|&B7?Oj#N^S}LYWCzYr5D)UWi!LoV|I10|7lTjcNvoMc)e?QG;Nsb>4U#=J z_-)iL(5Z)ZDB3Nn4nnfWHg%I?eyNbDq`)B+vcF55Tg8+S=2cN=g8{l4Bl;-mvgidV z-w}6C9JrzpNXmebr%yp&NT>zS1kKjS^uhJW*bi*3tmN<~kvI_AtsJ!tYJU?%PzlsX zYoedC4duo%jh|E1lC7xi6B4|p?M8rv-3ZXy<09!vygn_kq0I0(%MS(gMP`zR43Xz{ zb|#xa7%C8}8_H|+0^feQ%bqUIXL^)pZ5a7%IhwJg?xz{**Msy^4obAjF;}rQ{14+a z4ZNU`S;NX(28WFYwP{l~c-h>^mr_2`3M7Tp0aE0|fo3|ae%A_2r2LrOgIZZRxJN_9*{x6Ym>?&M$;*hNW2M|7 z|M7ab6B#@`E#0Yc!Pe`Mda^<4tL^ougf5M0mGqjWrJ3wwdfsc6iFcosdg4RB?A7Zv zC5zgW)Zc^b&6!J1-fH}l-Q9a@@2T2lY>Vl`+Z5vZTG14mM39heP~H&QXQa5Pxev*M z{Z_Pd_j@(E->0o|mWV57C8wP6^h9sPSKXUVIRiuftF!U`=D0fBHDU|JwYD|{y687f z3AoT!#RAbu%KH*5I>^G>npgWnIx1gE(mE1Xq;q*}3< zMFxD2s^5*>ezK=GYkd-jVQJu_n-Jr7S5F`#V=qpWt2l5seo#(DUj5RAB;bPqN~ z>PG@rHnOcGCMMs4I=O|j=H~Ni9u6daSrBghR!x_c6iGFNT6k|=kAcbmK>wO9t$oXclJZ zsXiB+d<^GYjlH4-`I;)dy@+ z3`5017Kx+5BEKOtVs(VdkviJLFVfiP`<^}&E)}F6c+cd7V`zt5@SnXa(WF%u`C)0v zHwJnkScd@?L|#h^>dwoD{7XznK^udaC;7AtU1wb0C*T(H_@Nj?j58y;he4GQ$Iyaf zs(Y<(s{=@fC`F&+!w;Q9jkSjuco4WTcH@bub-}7Y@UZ#dSn?HVTgtoMu>0-Nqp0d5 zXF+N30IWovdf86>u?lSMFUjr1Lb%`u=_S_T_H|y(lN{8wOV&79iD#&YM-c}pQSmw=!qp{G_ zsy+g>S&Pl4V(L0`klRp_u-oaY!l}j3Phj({itofv8N0qBLOswd)YE2%$6ymC9WPR_ zS58{s&AtI^+X$OxeLb6|3zG^{%?F0U8h}bD)a{U;Fi%s6X5P9+l3r3ayh#PUZY8x; zbB>)v@7u-fAbnt8V_Ia_KX4)F(U^Wgp>p=Wc=Zenhxh^bo`K;271oc-UOpyiJjg*< zbyHm*bt|nSV#q~p6H0@e$}{1Fxv)gU0wPKKE*&1oHgFE26ZW~wmVdrsaTS>v&&e0t{HU2M%^~+@o4LeWL!OE&yhW2Z>Mb}B{V^P-D>d*uSM%UtOPri^l1Jv zJO#rfo7C;&c01gNyf7VYMQ*`(!&{{}QxFV(%4E*JRpJ3Bi)F$MrwGfzuAGeve zZXt>5pQ-+?9rr*;MMce3wOxIITQml%3abiP2Ex`oB&g`J6%&%vnYW#vAYpbs7Dupn zQ`X~u!f<*I|4BCHw!opfy}xxS$lQN;(QU+{8zGgtNZgx_VNR8G8ONObs1%MvI-y5+ zLl9o<7RyU!W-7;LXJ#arH(PC@3 zs>nKtGTLM-xW8ozn4pcv8*&msDeChonBC<$uLzsBOJ2e3++jvfIYvA)*0=dPsWax@ zNT+-DPn-%8O50tDFMWa!8~AWNAEr9wl+4`snJt^~-hSczOYbUKrc)XL>$u-N~{D*oQ1q=5?oy zz2Qt$*q?7Z8H5G2Qg=UN5|pq_bfN7W0BEqLmke^c!%tWweIpxW`KXJ5@puGllT<&K z>CJ6T>cOeOzQO*%!OU%$soYSeNI%(fvNSNfDOda-)Z`mNc-ri}Yj|AQmKd~4FI#21 z?Y7%)yC3e;Qv0gZF3Bp%mTh&ryGv5ZuC!jas$_S|_N^(^Ig*ZDs#4cE^5b5cOvVEY z%!GlNVe$Zy0GTjDU;>0BWOz!#b0kUx2&R5-D$f1Q!DFvj^}MTb>Et6 zR<@kSjpoDT;7nutY17@<^sQ8N*cuNU4 ztkePWjrHWM<^Yi)AmsX=`&E-prxnj|pTPj#tYdKpeee#NbM)ZZ^*AUtSR&9*ixj~p0~s^dO_MpdjTjCe=j zt~Kf#)H_HTK<^{VUAO8DKW#k*w1Va}q63i}3`PPmsXCgru4EAH>JMuG?xGK=p@cbi z9ZH|8H5$#dHQn%hOumq{tg-P7AYx`>ER(iYidpK?Or!2ssxUfr#A_;hDmhr)bhkaH z`k9O9I$CXPK~ne|7#K*FnmZnjuOfwohP_jBtW;@vVc5Erod-~CZ8z#b5y|AH?{9lk zmoE7{6UOZLZhd2;+1S}0Z8SHi$Rvzyqv>0KJUdlieLeN$tM6_($@OMq3(Bt5oGP}` zvqWSasLu9xwrfsOq~VPptu;0_fEq-y56#GRx8}5n+Js>fG4NVmtH8L)mS|~4{q3#H zcp3V%1%&7&lhsOvG zXt7ij0hwz&S$_6*ewK&LjZx#v*_j!nKAuj56@o;(r2JxOCc7*PQ(?Kq?DTw2=Dn6o z7E4*^0tEa3z=nZS1I3+c6&UV7nulbj26BbMQen!+>Cs@9xJ z6FG2Y4KRDXR@uPTcn(byRs|R@PoYZlfZsfZ?tZo7Vjni2dH}ncRWaZ@Y19GZL~Pyx zj^RG4_(5B)#-`(qQHib@iTp})16n8O2S^QI=K!-0=elm>Y6Xm}nW|~Kb?D4vD0HX( z5IS1N(ZcbpdpNvxHKfx<#>$#o!)YCm!>xNhf(<5K$j%2h+_o7b^F!w;bfazq{BgPl zc8-%B^3djX)6t+c+bY|315$g0nsvzds8VxnjF%a6D&tBW2Ws1=(RS+9=F@G0idWrq zwj7y$PNiRPHw4@&Kq!r-`~4UwX2w){APjv@fMLQ}uVt4q0U<6ntY!n)DRiRNsOZhl z7-R@Y=OPYT#lq)^r!vumPBo%uD4Nt7Yn&!IRA4x9bg@O%rc?2y^a4o${bXU6qcv7) zklcQX5MIJ@l}WEeP#94XuwZ9>-L1MP;ZeU4ubPh6*l7ZxU@rk9X(B}8MRIazeyq?e zB?}MeC~LudZ3BEzR6sRCkrZva!hE zJOT1VxD;3Ef2TL`;CZWy8Tqxx$A?ikAo~G6Y+M|5NZHHluU41 zdAjYi$Z5{Ba;UHmYLy|DRF9jugz%8l)T_vHkOUqP;*%g%cg38K_48yt#S~%61wmQX z7%-WlyHSVoVQEppnG0J7L|faj0ab03MjFWUK=RZFUlwyMGMT}k0UPpN2l0$*{yg_( z8J1!TKx{ziSiZNjjRJKn*B&=H&6b+Fw1P=Ef?QZ1mKhe+#!Z31gC17=ohAuwk?B&9 zpeRlk{4hB-7pfH_NrQlrmFw>qaF`BN_6aD3Bw_joQsN&; zb~Ld~79P90sc_I>H9pECP8GM?g4wfChc;Fo!7vk$A7itCDa_@UiwF``_|;g39;pE3 z6HVA(uWY$cetuRKW3pG`Lxla97fN)uQ3B#azjzyj%0?5XDLKc;X3El9EvD2^SBO;t zJVk?L#(r11>4#xp{ygcgTkeMDL%$ronwq9VU&fZZQHhO+tapf+qTVVbK181 zYumQ%X>RXsHrd@DbyK;Os`~RLRX6W*&bj>7VaEa|pq8?dW=GpAbbWixq%|yRfQx-3 z;K`{)nsRIrr@N~&(ZO1FC=x|CYzVF%M{&0{pQyaCsTP_jkj5mf+*al}wfYvms^e5} za4q(@Ji2&W&n@DIg|;i7Dm)xejJ78qqb+qQ@nE>p-__X?%%Gv4A_~zVE_dN3yG+b?A_P#JxsP9nutI@}{AgGt|1O+&j4)65H6#d37jBd)fp zKasT80IET91d3jy&V2V3FWkxjs6>LB%0WSjhtX#7w4YVsGPI=4&C^{25>@_5L56Zjqd9D zVkZ!HRz4Q4)i_DBau6Zw!j!^_V+XzGYjL1JzWgc?%o(uH!Pq7*Xa2@KA$zg)J3zBe zwAd@?N)a-NY;q*UfTyi?XvdNm5}p{?;mC*?Iu9#QqYvy}T68UnU4!(`;;65dbZl~_ zht#*?0a4k_=808k5D$S5Cu2_~ltMC4fqZaEQFXyeb!O-c-RXe{8=0*95Hx2K8ZA5h zVZ`#U!PhjEx^_Z~j2C)3y2Noq$z>PXj}fqu&cIhO>=ABS|~RCmy#n?^xbf z1&wLDhsS6I?U;T#)Y35kS2V{Jc*vM$(Vg?CAUvVQ);AqH-ML9rrTW1#TdUc=(D&WO zd<*D0)cPP6+Ac-2Z`|TEOF@zFuL^-z+PXIA;^?RKi!eqi64+p2d`wjXdv*)3I%KfXyP^7%Grm9 zy1`%#iujT8T{ac zY3=fDw-XjP1DmW+fGy@F$HWopvs7{MA|f;t1UR_3-aUim@F!6ZhuDH4K2T(HCT~O* zDd%6M=VR30o1qk#()Vma;1c3tPL!IELXPR?wQo)8U~ zl99n;r~lf=&>y0wLF=c%tPN+k?{5L2(p~T11!(?_Y*_njO3lQTuLOr~P`Wz!6D`PX z*^E>WG*LI|UF`l#LdO?1w*$|nxvpU>E?>cC+j+CQ^24~SPpj}$d z3e(lvK<6?A+p@V)xJnFj&5(qIV7r)ob3exgOmaVrO})Z1E=q+VxE}`*>g7Nk5YRuUD4#`sG6=-(T*FZ;`f>5MFX47R+}MM zB`5jrW0HmMc1?LxNySabo<(2v;^rEd%>s`donY=_R;S^fs9psE%Du;}qmljPEI4Fyf4As@_l)3dprVo(%$6u+`zbu0`p-Uz)4-7a!$ zin0FS%BBWa(zIdgxeYnO_xttfH*V5_pPlhavo=#Ik(YB3$0-gbOfxlwoe-PgZp5bA?$7PGSLu_!G7n&!I@dVj4??BWGFS2Vh1e3wNDd zt9~&nIr}YT#>B7$cPdd%fqTGDZt}x|tFvX{@uOkrJO#c^fxjJm>J5H0*7*@5 zJGn~m{4qa1Fz?v7h@RiNIA%K(!lYFQ3I#V7R)7X`tHORziJ8s8*h`Qprc-6@bFcFU zX!M1m#2FfsC6&Gz5u3MVfRE9y}TP2$L!OjroVmUc*|!7b5liPiYujsl_qWu@(v7x&eX;8Rph9(J|QJ*Iy5P zTDB-SZrnTj+h)F8Rt=puWx&^TLEF1xwVcVs;Zq}nDxRQCcPb8 zFRgc+Q}yaq8A9w@VN5HBQkoyffCh!epktC}igM8Clyk)u>IDi7i#Q`H()tK=!mx&g zH-MNP^bpy3#|MuEC{ll6xed=OI=@R>_?TROEPH}!zz;EW?UfSh1QNlcS^AANv z_6u9ftYke`Jfez%H}>KP<~IQW#4=>ooNGqy0uBdc-{4x;q_7%vUk-3NM;$@cEWHD6 zTMs|eeNdw#jzlA58{nmsZ!@E`VkMv{!?!kStyQ+4^_rJ1vhjo z7uCBY*y!%|@98h?Rvx>nBlxHi;#lV_-RRuY{8d{&D+&$;9xAu4BBG*u2b6||WixI{ zbVS;d0^qm{+rn!(h~YS~=;lJ7v>UU_0dqO_P9pl-s8~ctxYzJ_-)l!IV=@Hk%UASz z`Tblm>{0tD_aqG_k-~7^^8*Sm+mbprGGTV3VMkC*O)%Gi@L@NZKvrRQ8ixiJr=B&7 z{#jx$w*ha(yzzOf+F)Rwy$-JV+Vi^5+}n*H{`4y~1M{4;8;JgKkhV#BFf;g$P;7TL ztjeqPc%4q;{?r@Wt+283{$>|*#lX4x`$hpD*i`p!<2-8mvG7LsKFz79p6;&$l*Pl*(6C|N1_oHg~vbt&e-> zTaxo5>1l7gg25B%0zcj_xg-x1+r0lELe1t%;TCtanu0 zuxOtraq}Sw+W9$*MZIF__Oz~XS>d|*HRvL8o`>pdTrcX6J3d$QzmbD!Lx0bi;T>IO0J7k<|Ex_!QLFet47cjw?B)o*l<4*Murp}j zN2)jfqi~B_vs;w*zfz3JxhX50<`FG0DF(n?2iXD3h#+$r zU+uHDY<9uD;r`*nv1%44U}SwJ=dC7jId=NZ;YrnX5Bg>x#FTaWq)RXY+AI!A#>}#{ z2n>vtL$IR+CG@v8ZL~Y5*i$jtLwmIT%LYh2dY&jJDG$g#ei;(p3U`%3Ey`HloM5(e z$9I2y@zdDd5;clH-|Y>{>xt*B8A}UvFO->ky;e{)`Jp$4_Epl&mQ8c^cBf`_xb0KJ zl3rTh4ZhliG1;A4MDJ6>x?#)GjM}>=_UIpzDv69OK+aEexG;SEACpTkWBnR@<7dN` zH|$2De~xA%9VnCh18Vx_&x$QxNo#=BbE+ucU}1TdceWOej}Yn z*UTl52doiR@-xI_&#(9!g9-90BD1nxrpZf$J;%f~OOF^vZ&dvB3_kF9*cPXGeDh~e zUV4^yXkPM6Uo`xcI@jc9S2KnF0}?ZT*m#`DFHrnHM)BlVGa0#|0MIQ&K!PrNcL8e%dy2--=)C8Xc74X# zYx?~~V>Sr*{EhCrcM)sxdv_sg3VV0HX5YW?XEHu<@xLJ({W*C3a@Kkw@CEuWF>YU_ z%)X0mUjZ4P@q-6t8J`M$2Y*bS6$TH?5e3Mvb|xd--x_ljE&!rykBBw-!iwa>6xDrdv`LEU&gnu z>KUICx36es-&MD-2a{hbyLYuL@9KMZ6d9lPeFr-x&%I#r0%Mo{IQafiYd^2_4_o_& z=l!B>^oPU$rf>Y_^Z0n5{6g5hBVc|P2m<`vJkx(L!}8A1cfi2>&d`4#VD{_}9N#;6 z*$W*1owDYShVLJ{=8uQ(AH4RB#q0M|xp==|%)ZlaU$ZB_YIpDSS>EmY4|)xs{U^xP zcTDXV3R^yRgjRo+kUv8Fci`GL3GWwtqdyA%H%jBTxugd^3b({+@XIPlG~chsFa1@M zTfV-_Z`E(`uJ4^kd%}Qk-S3{C28c9R(5pb^LUix*_pqJ|lIpjv*peWne>~UcrBD>{ zS5FkCxZQ8r&z(`9w7rvjxt)$)F#qTZP}D1mJ&8^g3B%V1B7Z(ufqUu{e_VcHH8Zr< zp~Zz&gULO{!-P;HXk#VahI}V1YwGlhc_+_kZbkYBm2*HRv_LvLj`noPahi5*=hBqS z#?%N%*|~Q*x^rl|%sz2}moNy!zYXo84F#C3LR18rE19;@K3y39I{CvxShEQpxJx)u0)3a({|vCTbRBsXox$BWV1kL?Y6;hVV>w(dbd>? z%UEv7;9B~DiTC--$^Lb3u#RBrZMLe2EN|C$#x?D`u@GAo48T~YMd{kqYSl|iCO>eH zAFT^(iiJB(?RHyciO74+HPT;t+vBaJt}1WV(nLHBch`8s9vGpX=Mmkl72&as4L8?B zeUJ2@!`v*lB>>k*dDXiYD#if2?pAV!*?NBTXO@erf}y6Gtgm5ojUG`{K7_%<5??Ib ztKfw!k8;g5mh7ix6Pb7O;dxIan6DXn6N5<2_Fv7>9=W!TlRBxvI}rl={v|QdyK^G^ z=X1EWj!}&+8li6Q#+~yX6r)QBtDYraj>WcaO?%gw@ZUDQBidUpMjFp{E!u-IH6T^h z*Y6rL@8ZGQn6|DEjA!oa3GtSVOT(G#GMQ%^SvE_WMr9*fx`!Rx;*in$1=VU8M7zF! z3vT>mn>$1_#;Z?80FPrjTFE%9q5x_Nv3d_mFXay4YRZ-Gv}&ro6lI9J8>B9Ma{lOl*vHSe6W&qY zo5s%lkaN4AEs~Z#SGJn2(68ym!?J_g>7Z)I~JHGLVY!jT+NMI@Zgsbt9Wo0 z+S%PSws1>(ZAx!eVXJt;+iNr1Ura)mx+BRBMT}--unb-8Lr*=_asJxzgMYpl1ucE* zGPQM9fvLSbAil5m0;#$45Akz1^`6rk^n@~Q_5A&(>W&osN!enKr>*arZe((q&fIfO z50GVfZ|*+#dm)2akgM$o&DdJ%*4A^4)|gZYA0EQdb5)Fbz79n{g|KyB(v38%d}r=F z-;OKj)~&ATaA#ccWKqZU{~&IXSe`$wjP}{WiD)93KCJA-*3-T*b6o1iF;etqYdhbD zag2b!s_u9Z;eoB5s_xiVcR(4w{_Z9%x6q2;<#DB5K& zQ$>%D?fD~n+-b^HO~*rDZBU@8vIB;B4b|AmjtPj+s{ zTs{e2096lfFKmGiJ0ySj!RtkR^GMNstg~1HLB9ST5AhCSbHB) zo8v4lk z`f-G+d#@^;psKDil>@_XEQQ6)-42!1ApcyTl)PuB@E;ALr-h8Cg?RLS%eG@=Ym=7K zqi-isyb80W#C<78fbc6eO1$>{aLUMaQ3WTHZ(;E#MPXN}!n745(x=LO2Q33U5bXTI z%0bx~pEMd81hG>7`xb>!y4dg6U)^AJ~X5K0D6brxV$LxX1*I4|G=aOW;hwlT4RQsd96P9J@by`i7-iITAVpP|NWx{ z4ZGu?%f}N%@JRRL$dc=^9K9Gf#ghuj5wEUhZq`XOC>2FmoyAYZ-5rvsokg2?%Bn_tggiF3LvO$CgJcf=&;S{f&XO@v>q zX;<<_c3UpFl|TcLfnTLfRuU!KNChgj=7tSy@|n}($X~>WD`pjLMi;(X&79#ZD2u+5 z<}YH$RF7}+ycLNOxn0w@t@KS6jhg+$W#Oma%4fw zrN}}sUKL-Oa4E5}#3E?usH}#j;I@R6MRwxhMI9OqG163z_+AI9%%YgD zbRpK-e2>(|Rlq4E#{PG$4t--@Pt6L-t^P`8-a@3Zpx8-ATrlMmHYAfh1wW|cxe3M? z65xr-sU=!j5reqz!7hi!P}oym5+sF`|GjvZUg|snKY-L#10i4yB>@w}%dr#)7TqIH z)DYy3ag5(v$ZGqHwPuK#@@jEe6${pDJTri2&27F}8+~191bqd{# z?CrSv+BmXnpC^trJVBWZegnUk_yyFRVZShnO zEHUZK1=5!T2zRhaln7Xx!K~`-1Jsc<6l8SN#^pmw&}~wqni6Vv2>aNaT(#}4M&v1q zSk0t!gp5d%ydgNxcRYj6XV0Y*MR@!imEw%UCQ zRlxXWhzeAM-*ks1O(+^mw7XJ5KpbB`6d3wDd_-BkSzkp6rpzu?AK%-ZKEerI8H)WQ zu{u{WXO&~Rdqii>)wxWL0N`4IWCWA`ygJQUKBka{bVFYfY78cow<=d3uWv=Dw`uVM# z?elK=K~g*G6;1)o9yb0$S2@U|(M`uc8+iz){9uAe8qwY=uBz^*Tjbc_>zKBqf?zz^ z>gWmklG$wiivrbN^&_ozK7k4ScY19=q4-`9>JqCZtfm4`sxP#MokX@%&W5fc?M(;j zf=jX^L=#g$j0VfLCriOlp@HWeHzSFb5-E7hcOmS#f=?$V>U>qkiuR9@mq*<7`2RTy zskR}R@+_hjn1?$%(;T;Dg(jn$OeI{Picz8i@h;VHAr-J~29sGuJhpL$Xba8Gn!r%V zBI{WIWF-O4iXE5_jybm7L>?lm=(s1Es5r)}u@Xa=76&m=M#eUocM+IXmJmZ>4c>+# z(to)vmIoCt0mw`|I6xPkWoQqI*36s!Uqpudm=uGNkjY7qFD9nf7sLZMO(epD2H3e& zFEkIPxMYE^uZGUO4dUWBWR8>-?3C>#?TAhzdt|m7naf8O4U2NQc&sD$4ZZQ0-Ysw= z)VQiA2)#Gj;YC33_(|HtxfyQn9VYV#>qU7D>LYhm?L2;CeD%WSqoE=-n)XE{b`Jq_ z=XIhql&>$u^0}6g%8H2>9Db*w^hES{kr7l9BKu0L!`4KOR9X9?k~-Y;T8Cb(s!_^B zj%SkAi5J~!RMVrVYE`KAc-I_jnioj6d^c+z9$Yr(wUF)t+p7G9qcg?x59`3EXTYT6z*Fx8K zL4SBHHd(v!;hZ-(x7VxM?Db*oeZ|ul_`&esG-+opRdd=^uNT%g19rlPTf7MtJWp8s zNFhT1y4P#;tW|OPG?g~~tf6Y9oMfu$Y%0WAA0Z#}Kb@X<87?G>WQ^P5D#uR?V@-^^ zBS#e6<}fjBj_htJaStFOcKzZjD}9sUZrU*r;-iw?t-aM!jD89)J~(-`jXuxXy-%H< z`z`DpuiQQARt3*DRtHh(Ys)5R3iHdSs6WL9wI;`(SEI#!oHHIQCRv0%%^jcFgF-#< z5WJI38Eg6d*HxG3Q z!5PzZ_?EE&{T5N^ z+b4z5LFgQu4i$5<@bhqcWtaoC4||WW&NpdURrd5X8XUtl&p#w0oY{$I>-i!d1(!x( zmiuWrMVmUye`AQaf0tLtDPgK*$pl7zDv>$oSn&fYy)Q3{pvDBmlO>mAW-s5zuqiu- z>cYzC{SamWcbL**nTi_b$l!mj|0UX~AwQARIycmbMj<3i70js~pQE0BJdafKehG0= z%BM7NOoZOlq=<351icn#Vd1b4H`0`7W3h~R$R;_Gj7^5*6}Q=l>%ohOS7o##CzGlS zlady&%7ki0Xwn{Gs5=dBe&|rC(<&y>%tC)CSNuX`Y0vzJJNs*RCT!pSSh`;xlq|Cg zS-QcalQ%ni0>qHc+}x>)jAf3sT+E$^rQIJ@PO6P=f(48=gqUSdjdtg) zA>+^3^vrQICA?B$l`$Q%V`8Gad5u_>Q4MQ03D|}W6@aFj8(&(R76?XDvvl-gWiWAV zgRASk@1osLP8`EL#w!hmQ8XIZ!B|t)nM*P>k<)8-+vjds*sh*6_e6w?oi2$ySnY!_ zGcyQNaMi^LcW30z7I+8oGmj$qmxwI*qn%;-tBi=?2(qSWUmKZp0uV|Xr6jmcX~2X~ z9~yKUGN`Olp9!KvDsT-r&U<1%yrYe!crbvog|(>P7*{)MZkH*J zZpz{o6Od-c>Jg(X!}kA+>~9$`-lWY_PvqFnXdELd8Fj>T_N|g7SI44Q$fQX|N^jH+ zCytiw^7sTpf}H*q4#PBSZj&fb4&V|zY}=K5WDOn}>avqZ@$_`aJ?Fx9q@v3S)kk7j z&6|OolzDAG_scIvjxl_8!1g+7XG4jZhT#frolMCQ&U^u1dt>WldnoT{_(?MBQ<#J$ zE?q32q_**GFJtfJoxJn+&>zCy&NNos`6%{c&+$D{IQ-uE6~9Z1zT#@2ELye=vdwr8 z{M4w0<@vXcaAFYl!lfS(0G~nI>4MmL6xJf^?1h7@Y^muaXZ#w24_aVEXVO(*j2-e`jJ8!LKChK8cFSa;A zY`Jk#OX*S%O7<^hO?jflLwD^#1=@%>oA$!{aSeE^5s7lvF+#6+@ynI0q3HC`eN+aa zdU~J+HA;P~&0w(syVpJ+8a-AYuxcI*@tIlP@9G~Yj!1KKx}qOXqBIytTc^Z@CNHz8 zXL=nBTN3Fd2y=30gD!F%f377d&VnA1I`Di`bcAq?t0cx!2br9XZn4{)IOS__K3y8+#Y(t-~EXWEtO?d21NGk@3|teXC;?!e@39O`lnL%`*64;#YX?&+0(qP0jo< z@WIS5_7shtqnwTduIYR7wU6x!)FFHVuWRQgcuseL^nW40oF4JMdG)2gv^{;^NKHiO zzk?^)<^7Sp^KR>=e-6=kzVI0M+0!_gIhfJ!`_mgC;2)V?%dkJ=`{8(tdr?bVcs%T? z;`Ps3M?Ii^;k7YV0Pe%m=#U_x!cPFj3smZZYrqvoQUav*?BRfs^cVM%i)kX%$JxLi zyN|OybMtaYF$mw+WeIAmSGR~izXo~-_jeQO{g~UX=daF+J$QuG=I*X2HMs$;#wMM( zJ9;FIhp%oqv~dR;P&LoLzV#@q_g>wSY=RCps2WaV?d=_CzRQMBuo`lI&Xew}eRybc zKp5TP{wf@7Xq%{D?`)H^%)CCsYub#ox{q}*_vBKDjF~Wkdi!fs;w-lJBeFs|p{qjs zFxv)*!|G*38S1(~Pd|0vPIf}r-!1s6^~Td`1zN+$FA*A;$x`u;J(^EcR-A>H~!d*PjTXFhJNco?yMO))WG5XNdN zvhm}T?aq%llh9{CoRo~en#$+?EQ)$JR>9+!?UOf|9n=Q=M<>PO7ELcwcn4(o+plm* z5TscPUCUfQa>r9L^sAhj3?&7nN_||ix5a;sf4bl`2_R;G~ zQkt`gLNRRhinpMfTV0i*1z()Kqfhetvu61AEOo-Z=kCc{XBb=(_@F4`?p*x?3k3>q zqPp(W95MndIw=J!)+OGu4U9DLze=F`fWpXW8a6j2aa#sqSya>Z%sy+MDBcyGUtS3Cnx6k^nu)1Q)Rb0d$Bu|k38fOM zoYm_oc9h=5f!HD#fDH*mNK8Yig#;<~`lqBY83`g@xn*>vVcG<9sj#{J?C`UImA( zvE34CGw^P%J}})9W08sY0+Z<+(~>)$8HFTstUfZb-W9aTYUhYC2912OeTuG7m=dMA zQlztlVQ%&)6G<Z2k!c>(}*eFPwp$(s$$A$ZLe$uZKMFfza(WE2A} zpw^Jgm-i1&4U|M?{xiKU-*n@!=pP>BR{(UrC5xN_V;O{y3h7R9 zXJBdAlhX<3?9={uw3jM|Jpm`dCiIORi*j$_m;FZ2J>QV8bFqV(x=G zZe_07wpW}aUj4!Ct|HORdY|Mh9`8X%JIDd|D7-@j zD{moAjTd#Eivkn_B^-yE_v^BV`wY`UEUuk$IwYj@JJA24M!B&&;Is{ky~u*Fvx$07Sv;?{L2uI2%d2}_KU9Un2S6x8jgsPxY<0dj75PN zTRujrNXtSVH<^hj&KM(|8q>hSg>^y@nqdu21LN=VC8BnyRJu8|@-o_< zA8u0?k(nT|Q0|~ArN3}FcYX=-;{J1N9T(!p9$`li0 z0eafat{5#^G7{W6e}&Nd1s$73=kMS&Z~TE5yZPdytY$u&DvVT16!!Lsfg666D!J9} zNv@$~lmU=An30}Cy@;GaR4cQs>Kfk^xplyAF!y=>xb@cJEH7mI zvfn3e^Zc>rEy>T><(52DDK@!&tko=*y}@d>U-Os)?>O7F~2pPUW_&bKrh`dUZ z_+fzX$sWjf)<%h4rtwReTTEj&aQuVGya0fynSLOEw6S*J0K2hv&^T(1p#Q+wY$pIf zG5LjxoftD$rOP+)!%_t^oj`V+2G&e(`x87x6eWbYh6|1JlXuzny%RaL0Wp|7 z!05lVvv7p05wC5Nb>>+;M5HhUfl*s(W;8&Y-P&<(TAC2*&6*SHCp73;6v+4ln z9jaHV`z2{5IT4kg0Vg3xG3Sa<)yc}K?l$^XLYM0%)wQ-E9hoxDA$;e`;ws>la4>tg zi*k6pSo;j6^p0a}s>@(JYztjdgBz~|7ch)E!^a?T+g}JBxH4wVAdC^iD}D_YPq||5 z5FHwFa3_Eu@}DM`Znn8u=XMno*t0V$zI74M!Si2G?8pY7`$Jk+yBkBgzXU-FePxI6 zwCnYOGtaRm3rd&?aF2M58OMk@Rrg%veb~KUnY=~M=IFHTr~7@(4X7?5(XG9qyLUmN zCGEqZg=Gg5ficcg5wEDFbZI@L7;{f;;q=@$#-@o%W$~q8a9ko}FnXT_0Y?BV-lMXi z_`R6t(odyw$j5mzITu`c@7PyLFP1G);EEmH?WPv?!MX?Vllje14pq>*)m@>?-UA-b z0}Ol{?kB3{-ZslfMADTI+qMU%9R@TX>uj6$6pjam{rq}2r*9D49^QkeeC(d-D+Jd_ zwj$=1`78s5=@Fqehe{8xd8a~+!t=yKw8T2RTz1Cdork;#jSD?ZbkoqW#~RI6m@qRJ zpyE_=N{Acj(<5)vCv;F?_+6{{=fRby@s0vH)p2)M91BH>TKi_lM{GCmnBY+OoGzJ7f3)7EUw^ZW_huNi;`SD+$rJi0 zXwd55w4R{Nl`a*k9uz8DT{f?ODKu(oKLE1rT7CkmLcF2|9;r*20p<~7bBg_ zlu)ATA@=k0FEGOe(cwI6ERS6VVn0~QpLi1V>8XpOuBa(27^CNt3U+zP9 zo9I69K%?nlJrNSBfz*zEc9SB8J+Bsq7>kiTBzPYNC8(X&+`6Bn-Zv2!?O&S=*#kM2 zwaiGS1-ZOf03${%>KI)wlbOj|-8d;(`)Y_Vvq^+8CGV%`b4-IS3CR)87QX&{H@{HK zV6K!^)bj%i4z(@LR+kdXI5CcNE<|%YPZ`TZ)nZWlT847l-UxaQddTzpYzwz8he&wu zyL_mk$OZt}bLV={^lzXbPQF%^VPC$0tVQ))_tbn1=GaXJQ(d3mmPaI%;kZx*sX3oh zM%74;hMdDj)nHEic6}99k2ZBntW%dMkIO#oVcNou$YW_AUm@P|gCZcC`;h~X+Pj8{ zrl&}O2^`->T+_(}oR*2Z#AZ^4|ACn^H6s!k&Ow=jGuMps6BNbBJ94qYhn?$AcEIOF zEQFae32k{2Lex!7JIV^@8E0>p*4mGExrfSpjLj(4ui?_euVt(4FR(g1Q z;A7tVM`##bl;u+^>rE_K1#fZh%lxc?IFU%_FDZJ2Fu__D%z7Ls)1yz$g#iNPI+^s% z!@Q>GccWojFJYdyr)!Si1J$%1t^7N_BV)PG1U{%nJ1-A-0`J7m^lt6hEQ z+8;~if*2ApJN?`2Fz1uj0z>srMEkdM0uQ~*uSbALHFICue)3Fkh(=+zWJD(5{g-+! zBhsg6P)iSTP38{pr&X;H-I5|bMs zZGpGF`eGN=Cb3qjx2gsVEW-a94GxT`|4$O+bcZ~dQW@GVUGu;qZStR_Xi`P$OlpSm zPqUubA*4$Yvew5j-Gm>do%9HTwI$sb<*MVJ`@pucpvMbZY^&poRJ%1Ac<_t|jVt^DdEEoYp(p4pS$7}wO{>O0Z{p=?_LzucCh;u%U3nd) zVnW3VJFU8~0HR^v+dUH}K$Q(-?1cjVzoGU1r17re2J5nvBbJyUV?aY5acIk&N8kE% zN1769UlDb)R(nVHLCIetXw0pam9VCv!==IU4Ev<;1waOUy1qj9PrC52IO$un-~*xd zv|2W*wqDhTOAL;N)Y^oBQtB1qgZLNxD3maqC74jF@NE}aA6BsxoLFJ_{Bi>4c>=|U z5o^}GHAw+R9TY3YTwic`k(0;ic_fq)wG`b-qYQ7U_k@qLp1ReC z>f7^ld8^|SI}t1_W4?Hq+@VM3Xk?ottBYs9v?Cci%1wxs6Xd%nWmx12rYtHGGC@gFV`OULWk|Nr zKQu@E;2scOG$3egk)4Br8z@$$?w}3ABklG}o0?y!-Q#l03NeX2+SWY~u(f|z&$(mT z1a0t3?VN`bUcgFar@JD&HDh&oU!y zgZJY|_H?@7v?9%fyI(`p^i3ubu=tzZ%^H zn2F!O=R)SX+86uz+i=M3o&qtCgeCweh%noANyFd3(hdbdkB1d(t$Ro>A>~fhf$ob< z0dlQu89bJGYRZu09=aocsVY$1+jJRmuR@Aubx%02XQN00Xnp#_R-;a|k)*JvO#73l z$*MVRD?k@P_>-rHMjJGreRwjDMlyh-GyW-7s5SMxmB3zIBPacL%;i{Ud0O&iR4 zm*q6!>|Hwd?cKg9Poh zCh5$qYm^qQt;LQjU(cqPQGdLe=pB=~SIeV&N^ZvkqX=5~>qmrr3%xz*Z53GO)JfHA z;?1)Q{$@SrI|!Gh!w;IDKJ&BfCE7N!gFbWGjpuq>k34yVRsrUl+bH29dQk#>o8iDH4SCna}Cb8(`H6$3(2EUDtOY9VWp@~b% zeK7X;A<)b9M3hfnop5WlRw-uJ+hx6ic4+$=C2wx_13zwZt}-Hs95CSAI|QnE=g5nl z#OrPZ!&?$fqhB7RneMflUl940eONe`Wf6rNFxgl?+-39LX`K&(brkP2-L^}u-5pXT zb%Vob#P{t5KFQBsAhiXeypnW)4lz)`dp<3k540QG`2RsS~eqB&08TQ<<+4;y7BfotDT~S`W`NhqHzB97w)>g5c zqjbIIZKdeEdz$rNNK$m|IrpSn;pPhH!MR+$Azx?I7*sa3ZmX|rBXod94$9uMC zWxTlB0|4ruY5pTa=a4PmnBAJ$K(L*YdQ)uk7V~JSSTDETd73P-YmwcY-mNYQnIsOO z4hz6`e7@rs>z+^FSlHt*ej5(`h5P||aag0gI@+s|L8a@LH9D}t+F!wg)Z1<y|%@3PR4*U_oQo@C$NB|j*I*h_OK;gh`8C0 z?ZjC-ImqCC%+*1Dlw$eu5S^7fkg>7D8YrTf$v5zd*5+;Pdxnn3YA14f@l*y6sVEyGO7af@(EZFVJ(Kc?=%HiNxO>JV7}@wkNOLT2}=X4rYL5J&np2 zQpd%1$+YNu!tFeIqYe~#E0j4~yy1`dD8#Cq#i-exA^pm48@0T}{vs^5h=KkO0Bk^$ zzc-Xw{NqZY?NfDU;oyaVqaiRq53V6d=vKSKv)l}a>k9&8b5Oo_>10%A!9}5G2}uQF z-Ac42K{%{2!Cm*IxYFi3660=V=ZS%Frg%f%SO_LK4#D>iQryQ{elk!dJ<8rpoJyn) zE34`!l}71^xLHc>17 zw5p6zd?EfGQg`8=rZgoNGL7Fty@g+*xfG}8nNWJd?kmcrA1Lj$2!9BMpso)7Fl&?v`b{ zqneHsEjkdd@z_?KGNcZf9Q>O8Xz+^@R>ARhwj7{@hCfoQHr;LC!dnqIR&&Nk41Rr0 z3k;f-J!(?Q;!iT-Cc|r{bqE#+WiPIDJg4TF#GxfWbQA@Jj~s{YBC_1KE?&IY0`w4buP)D%L~F=WhtFvft#bS_VgyOBU;Wl(24R9W*2W*aYggaJl;g)Okui@ISj<{yavwqZ$MYD3%mzQ z+az2BxA$fW`DKuKa)pKbVz!hkFD>J~pKdQtm6i4;v;lY;>7Kv{y@!-AWk5>x7n&W@ zX|97+#c8TOe*#z%J@y1vq@=*3MPR+O@y5^uuIZSJV=wYo_nuh6av)wRp;nH$S z9qq+qWWu5-!xa$4AR{n(!fW0o8oLhV$fY{irRHw_P6~A ze$CvPrpMcrrdwI70eAZ5*>qA|buBMu7jot0&m-({X!-LYGtuX{&m)N-ER@P#ixy?C zMG`%UN%SO?iew}Q(IQ9{ghdjA%&>qJKu=$X7IkfFp&M#zd z;vMLj6})gvx6AQXclqW@e%87NMO#1M4>S#HU(H-!8?UaVQKj0RsNnPRmFuty`vJUF zCh&W$ioZ6+*{Ce}#KE7*tMq$?e%Gz%ywK;ZTYt0GSgX_|=0+QSbAD+$JFhNHN7{OA zI(KMDvkeO>`9hB$7bo58kwWt>(?lRIx;?uzt?8;w#HPuZm$7iNTCT1tHBM9h`?8NlU z$ZU2N3Y)w-d1Z2LC^;yR2D9m?dm|1`q2wCT+}IT#6zz(;{rQ;^StxHy(Nk6{przYW zdB+*Ugg>=wN7C(?!k!BV^NWs~9_Ae#XACov&T9-Ykk%QKXyZ9a{pZFRV1&L@Ns5Rt zsnE!$t?-D3LhQ9jz>{I44y}BSl&Kbw4i%&zIc&ky-m1~@Rh6^z^U((9&@=h0=bixs@%C=2+SoxQZ25%^q3w8eqbsu1+-rF;pFs1u;=+^RDY5p&pxDfv)G2O~ zEz{LQRnwyM1r{n1!=-3(!NdA>V2M^lN+Y=;rZkl3<4Z&EwrpI{ulSBcHgoU{mHi<~ zID{u8W~$LLH~AWJ&4{T1w!n;WJX2w`5XB8gGfD1D33z{o!Z(Y|{U@D7$PaajmlWC} z9!2RQzgV8l&F7FVONH!WkqmxWaW_%4wgm4$H&%QR7Z0$JqWHZvOJ+LAhGb`F_u34e zCDaHLRf7z}y6>A1V$L+sK2V_h-SIWq2p&uCQqgXh?J{$PZr?<2xW&-mEZOn2MU$=6 z1&{L;6S7j$#l_uSe!-+Xcc+BAw)gK2A?**{x1w%a@NkbrnGQ*?MH?^R{yE?3OAY;C zZ0h68xY}scXQr0r&h6Cjq>elmc*$L{F;u&ed#d%Gr#7ErOSJjd zgQbvTm&LH~{l=7~UL~c9WQa-R$&@}*D%t2m=c$(x9s?1pXu1Kc((?tqz!XjNja(0E zx{GPugL|~sk51`!_|w|7n`srxr2xy~^FK!@)5dz7*a2<1J9a-!&y0AE!;?!G z_%$IyFN^0D+BYWa1Vo@=0E+TGDC1GHvQ^&pH!bCiklPWk1!dzg3kMUq?Fc{*i5lFR zA8A=>7#2ThvQ9P4^CNV+Jf)Y+3wF_3;Nv=Z+iX4!YS2edmMDfd7@WE~Pm@_vG%hqK zG$4E+_%P5Q4C@8P54IVLJYd&CjS@8O5xZjZLM#v|VqN$`lov1`G~9YB7_>BUx3c)( z9tB_#m*a>LGz6;|74j_%`EaNreqEhkpj4Ie?u1efqWXh?e(dfTunpJ7jp_BLgnf&*3)zK~Wm?}@L)Vf60+KRH;nw%A zA=tzqUHgru(q}q}mU?58Eu|E5j+D)S=@Hcs%78HSN8}-5D1?_OxhUbrO#l&xBj=T! zmkkgJffpJo776d)utqZKEK!tVoKE3k<2P~^bt^kh;u9%&e61%>!c+$|A|-V;@H`UT zPPO**TaCI*#S$WZQmfu@#|A!-G^?I|gIzOD5wQRgjcHf3DGJ8qi8D4LCA=^)@?gTr zxjWpE19n~rAO|xn!nY)EfbfWysWy3XAxY4)&^?RD$%F7D8nKJmNLmY= zyA6wXzslX4glem9HX0t(hK^#mGpxW>j82EvtjiBen@^2mW}WrQPR+OEB?YCY#Mu)0 z6E*>NfN)a?3-m6=Pnw&-G34`(fP;C#JrcbO18spS;bM}n04>yzMh>pMR{~4Ak!J`) zbV0COT+T;L<>;62>8?ksjC8cf-D>J~3fku3BS{LtO=kmLv~e9XJ%n!8=?wzhy@C2? zygBfa>ZpW3twsp$j|wPGONagkq+gp@Seopgf6}2-K4KwYYHQa9K4Z? zb>oHr(r}xN8EJSWQZlK2(_CmN3Glw7u^<)jt<1^%ES$Kbgw94 z;)GPCV%vl*knIvXJxYW|h2otp^4RHDn!d!5G2S$NbUApqW|z1j+#XSc1)0XyU0Lds ze7VR=xSx#OgIg)(=W!!+rmeL)sewky;M$y12|7X72P3=iEg(2Bki7BIe@SWs9nb3< z;xG~iP&hO(g0(tjgmv@`dW|qgHAqRrT-}s4+aQeD!D&a{RNyx3>^6*F7h@Dth1Kzn zzsWZxLY&fMzMV45*j%0P%V1k&f82wwmw6G$Lc(*$E_mGOZd-VeR8%sUo%jMi7WiTj z4>T7*K5dnSWOySCVrXo+!}WN3wzI;eygOWmPH{pMzDV)x2<QzJE7`uwMW@oNZeq7_r-D}`?)va8HIuo^y{#7F zOjyt`XDA{52l-842zg%YWbx-kYiN|hY0s+VZj_ca9d6@rOeNc-iyp4RcAJqSB4i;U zqi4~*P-A1)8{Mirbf7FVWe4b&d*U}MRh&^RQ*l-d2%mK$ldak?Jy4bq557HY6YmA> zXI)Lepl%LygwuwRyI>*Z;3b}><9XCjj>pOzs)!QX`DqKl5Dt<7xJu#lwHG68G?qad zXgq{uw<6xp0LCOyu}*%MEl}a9Yf7XhZ`Dc`mjlDk$wOoq35SUu82+!X>TC3 zwW=>U)DF+622oCM`-7s15?1>;a;5&TjywDEQkE!+vqY(r-=>bpexpQ>HptPY7YB(P zuK+coE&rNOBZL_HgWxxh7zes@)Y&bygWp9`Ta3U)JqxdXyVXj~s@OJyLf&VE)-`$S z@QR4INWwQCSB#@OQJUdjdXUaPaH(Scjga!f4s9%BC8AWk{fwzq-fVT-4K81mXkjt3 zx2B>|W0bv>xrSk_^J?Ei+<;Nn@k0A&aeV;NGi`_l4K0g?$vbwsKqTf~ZZ;GogwX65 zmVYR@ym8eY(`VGm+o=N(nyB|<4iPRBn>%&i-DTA)= zs7Ti#bcE>;;MYI6;62BugbuN6t@bpvKYX~$yE7cKm9nd5Ppn)icNVmU5csBq`iX4K zaBNYg=7p~O5juPJzAv^=FimXRE$cGwxlr0E;sE@9O%@OleYm1h+sE@mk*rP)GGE(0 z>v!X_#wjK3zT^tdZg7=l5}QRmv?8to^ns;@#tk8zC^wzT!$^$TDN-AY`gDl)T%K`< z@m#=s48dmR>JT2w4Kx$bM4JWKndQ923*hE9dDGCyC(w_MSHRE4228Zt6A(Hiv5wlt z?Q&)&xoPw;e0QU-Hno!y8*;zab;oaoViV+Qu1K1-5i9$01}twmk>O5Lg_?3=u2e3T z3M(@u?quYk8AiCd0c3|d;T7TRyTU^e@?;Dp<9Ri5mr$Nz>tjhM(%F3~rr4MT`d|y8 zGL{Rp1jSHHw+8iTmn4bwSbXQDIoSngtI>QqO-EzV@FE==6encpeB*IALr9cLTLmr* zXkkI(xk}aJ5?5;`6M|p5gVF5piZv09E)VBt${#D^wi3NHO9I;!Yp;^C zDkfw$Vg&W`Kyt;*Z5m}YwuRSMFC=lJC=(-ax3+$vG`MULjS}<^o(D&HE$mtZ)dnja z+25EYSF1&hSqvXh4YbQy&)C{DyEYtliy#C)i6CY{X>t;g+#|8@)1V7>Xdp%eu#ilU zDVkM91Z)#qV9GYrN0jhVW(JTT#z3sEHh`tnLp0X8U4>}#anYjDyIE;SkuaoN$@R$F zjJVJ?^_;JEoO;zkj1I8&QiF_rcx|f?$4A02)S5$j8D!RucrSs2oKyomQLVMHZ6VLC z!5YoBcm-H-rzUK-z>OaZd_qosiBm1G35s29mdS@I~ju=KuO0Y zuMIYZz>|(B#%ims~_3fplco%z{3Xu+`b$X@QKQ^XXkzr?~!g1Dnb%QY3qU&5r6?^ zyhn1tARtaIL}5^knOVek16eaKh}JWySkMOgaqr*2Jkcpr0-ppw>mnxVXy>WjetCH4 zgQWpSf|P1%T2|j;2M@dXv6WIl7$FV861TFT`E8Bg2-~EsR}Q4RRMr&zUW_lry1$1l zXI}O$1E?^&MTNsHhC}JGhO@Qs4jd_cZlOeHE3rGHgO=T}yar4uUZswPTe)W0{lxr>G3S@`c>9NcIN+bCkDFf&2!nK~^Z)BxdX3TIlOKw8M%&f|G^ z5sTct2!4H;yi0vzEo8qa2hb$Hy|KgJ@n&pm%^*%HAp#-gT)W|TXciLIp%3Y13SKA? zYfWnUsP)iswgWD_C$frfm4SG}dmw~>t;X)z?e(lpn?*FJ#7rngpVj06X){Jm`;r{ZXiJ-M z(0Q8)aXvDrwAP;0#f(!r=*ivK=1twVhFcG2#{_Mzc>?IQq_ucq;etoY&=x&vX>Z z!4BRaxNcN*I*}=&A}omcW0^aIhC@fYKsdCZBVD9+Np?E_!9;0 zOryT;ZtU>A?^fV-s(hWnIpMM58+9?puY2R`YmDh&oz+19$&HP$b)$TMgTZJKI+P#6}n(r=E3S zD(9uzCU>HDZJs_^KdOvxS5hrn9KX6EB{V9lLp73_3W}w~uc_tHiUwNDCz4as%AMDV zkF-F);pAR-AR^WCof<23!M4Pi!tj)JI~yEBr>$k}i);A+uoic=)|}?jI%UuCoauNd ziiU@d$J@E&(roJ1)04yHwEDCm*)zMEFKQRT}V}Sz4US z-&`qVOQaNxC8dTVe(l}Bt9`2)VkFr|vJ$5-ABg(5&p1U0U7`z=mvL?KWBYBz?Zk3I0r7@TQM z4ElcMRG17qlUU8dY5O4Ax%k)`c9AZ}&0>4(xw63Df)VTj0!e%AI*1fAyx&ocm-Jqy zlX6y&MSk-`-6htMCfhcbR>P z{4t+r_8au_9m1N*>9%zf1C3EgTj1vFGGQ^w}YH z6^eYaK_9*BA!E%yhu%c}Ui3Wtup2)yKcw!XBDm|?9xA1qJwMEz9VS<_hgtKN$SX1Y zd(e-eau!`RD~S>LkjyAb2-NQT|!-@*D5?De&TpP2%dPymjORNqR*!T+pMJPJ=!7OaJM- zWTL1**NVz$tglmW;Ht_$gBfDI0+ABmX)@p)}uK0aZr zrB7R3tqeWxdTDajO0GQ@}eAiLdlQ@=m9mBfNnd{NS3HTz9%gdh= zEI!YDPM`J~ecEeJ2sD8+2fv>_g$oCY4BRjH=&U&GbiqT1wVk+Hp@f}yQX!0sx@4eX z<~|w7U457C$aj-*PL~ke%_pwa96-hcOzlmGs52Qy9(!rA#qqx3MTpz{#D#aZN#T}x!zd~_`b z$_VSYgXvMzJ@QLo+Hr|#0h0Y37HY*HS@>TSryOMeha}Sd!-VE1+)i-mL49}O_?|Jt zx;lquVc& zIE5&6n9xm6p^)w{;#pjZ!<6FhQHrEWA=@ZKvLL7*8;Y$=vgT0G7w%m?@zu|0-8(|% z!|ze{;21jx3x{*m*(aZgZqD8xXV3dJz#hXD#e>(_vwkd%_aEQ8P~xY&UlkK~zWP~g z53D*sx;*341ESu91<0GvlUmc0p&@vkf1f}xPm6&b{eN1jlPXn0cHKtOJVh?v(f@jK zHzyC?yPO(YyOAI?+_e}KEKK(g6lD5vAc=+CAb3aQ8;|r*`fBBfz(ZCOxC0;;@X{>5 zhip2|NuWcV8?L)eI?cVQylLny@Dkf@{l7Zfz_^5h4AgfHD{40Rs2CU`1tJcg!E zenqZu8Jmu>OX`S}O8Kx;&6>S-k{C^^`Ba9NhOTyrq}-%mODjU_C(^1#EI@Vy58tUetR6a?*HH1wZ%wsmFIJ+yQ{Z*s%Luc zGdpXuUR$eifHh#@kZ5IRoe9RUtnFGmBcojpcxD%N7SDR7$6*oO;COSvQG`I^Vk4Q$ z3nGe;h$3-+K*~d;h`ex>jSND`69@^Ac>r}?S|J2h3O>YO@t&VT;< z`8;d5tNWd-LRKGQLEdFYLzR#?hU~U z=+Fhw@C8WN3+USgjPr8E+aH7hBaHyUI)~Rl40_Ch-*CWLj1lzn+njN>b8dZ9Gjq_- z%pi2KZ=wAIoS`Y&3v?W0)_K73{+b_eGVFg1BfoO?ncz>j{DCm$PpC5~ybHaW^%NLM z0_L7rZVuK=pTcI%s%m2A8#WC&rZ6eztA@)PVK;`A*d2q2GM5lHMjM4t{0xRO+}L6* zYIYU1eay_=yq&vhFybf3stSPboKGrS`F%LN83!z18b_BpoJPQ0@dWUjc2#lXpg9Yh zGIr;|@dg96lS}nuvuDoDq4E~)(VGE@Wdxq>nITH$kMEY@%}_D?NSQ6XypAboz(k&i>8C%wp)452MtTg{z_4Z{b|UBV^4JW);;mXEKv6_cOCq15%ZWpFVv z`KXpdlbV>rmu#Ev&>F@vAji@19HS!;UoNn61)lv%knKu6uEdMJL@7KR3tYR88`XE< zg;zm3U&Mzc{IKEyixR>OOG&|QGi_?6{&;cAJU%Gr$8Brl|!D?m#vn=72iv& zk|U;UX)I%!r+oE0&GL8Q`!73nPey_w#BM;#--F`r2+8KqRp=CNy&-&f=03b03*lF4 z@jOWg=5Q1{5$1qO)SoMu8^Y$wQ=Qgh=3V0BSF^ z?ars*^!OtO(iUyLUJlq#LIwcVY@VKK3T%e!d%NDh7OfurfJ5- zSlp2cZz_yxp%-{^5l{H2wlY95%u`KZUS~Q@X7r6LsVD6uQxnF#%ZwS`sMK|;=0uJZ znBc0~n-}##v?&Hb?^3S{lbJt0VD|pj zS#N>ulF3Tk!UARIr$(%V_p{yCYp;ZJBJ@F{gtzp1&DzsmVAnJQ%t5ibmGKEmXfxK` zs&xe`jf9vxIAUg7&;M&1a&XixZi>ZX2>_kSrn& zv=`QR2O)#~!-4bh{bPF56&jGW<4Yh{9}A7`6O=mt2h2Cfr60>#yqrO6_WsVi<0zfH zi+gSJzem|$;{Y*`pLQmMpl_4Z9l&<9G#++#D0Y@f80Zey?)jjS{G+#4tN}~EWD)Y3 zuFD8fJbw#nJ~+ZvHSK*Qg=KXQmeo#ZX0f%+VrwVhe(P1s z*L?2FBPt4G?7YIAldp9vR%t$8@rfeHU#W0i-lt>@TANQ>_2P=*Xtt3$7o)99Wl4E% zw-U%@f4JAp7~42pFx0RoysykIiKy*m8c3`Uzc}B<{VnGRDWO;ki)|IPSUgt(EN0t% zxW-iS%P7O6B9Pf)Zv#*@ym*~VIIlWvxbLDNl0P0oxHAyK{|g!9h<8S_-iqdE=$z*t z!QsO=e00Q%e83ED51c_*T61yq^*sq^u&0^8mIP;Xk4nE)U2bPcpA)v>eK=i)4o}-V zMkc=9J(XhWjLNc0;WTe2|8hMsEv}sXz3x@5L9vLS0ess<$9AttX)b>0EfwDI&FBpj zj%E_-j4L-3<31WYp?VX__J4vm62>0dsyC^6Q>r(udNZmw z8+BtfYSO%RI`ni3WQB0_G>U2UZ7K6_H4qO)_NflyXDxFI}096y;+ z-C=0Pj7-sGbo}In1OEIz<`7;BxNqmrkVN)U(QxT!eMzvj%yxS*khAe14##d~qRjEz z?u(n>7bfR2OqTpfMaogCA5pAqwFIeLkq8ovx*>4e5<;GIapc^G9Hi$|#-go2!q+FA zSrTu4+C>V&RgrS@f5sc2@h#64HAIjeO|wC`o(yegWX_IiH~8wk(`97v+m&;XQWHXEx5VPAa7!4Q&`4!UUS~e;tU7~` z@_Dyry=;yXU;ZEpR?fa3QnpL!e33bL+YhPO4BdG;YNx^+ph&EwHtT$&YO|(7z5kBt z)x2D#!74fKqD?@@OVx4n)>YFVCjyxA88h@fKuLw67qh&t3jS#-94=JY3y)G%zRwpO zB|-U1o!*y!5(l`9#j8Rs538HYt%wgPsmz6h=={^}(IT=W3B7<$$&v!><)}!1(&q9N zDE|wf{F@x*SEqEU9NlLs1r66`N!b&6JVb@GqvV#43W+M|9Q=tNw~wRqqYnA7)o(^| z9cQZeCHAhkV(CL3f+0N&28ycT^5Ab)jD@aT2Cj^E4AH);S@kP>%_;j-BE7q zLqaNFiX0vTARvW|wp_rcjB_dOin@2vO?r}KYLt%_G0j1w!+V{0G;NG(oWE!)e@FYQ z;#m-hYU>4f4D@JJr+#5;>dA_q=b8VrqBfj4c{$$e^SE;b!iNO0-8DFU0T zxl9C7?0#@38C2+C@cK|C$&AYDy;Yc$K6Jx$z_5SG`F|YHA;t8lCg97a@(^6uOts(+kgaeF$a1U0NWc6<8=}XoAfrTWPNG+x4`_Qi1^vxj;(QwW%P!X4r7_Lt zI57XEL&u*>LdWZ+j{7?{F0uVwvi*Ewba$i*`sw;rcy2?&9R+en-xshM!W1uVG}Iyn zbRrs&?u3lW@uV;+rr3;3Lv0-zFfzD_(P{XGn`+UHQg{O5F# zTXJNomaSY1glX)w=)?MyfcbLC`EfNcOwq3IFV`3mCSd1J%MI@zTaRjtF-G%el;zd| zw2VBjb8GAt-anMr1#mLaAQhY{_8} zvR(j%6LqugT^rmf>afrxgUrL;%3jZa4;NI2YxGHYv+=;hpfX32V5Yr<@3`I(_E6Bd(SOVJ@wW_wQn~5cK5D73>-!Jz zMN9D)^#h_Dy|&MBo7k@goHzP!Iv9UbKfFolld?Dz_E|v*=`mpkX?flaN6YCL*kNNea1KkL&RvE^hkSRWK0Q*S`>QF12&hz>L$|#-Ju`&M;gw%kw$3c6|E* zy^78>ieD5XNkpE*J#h6pH}Cam40A_IZEtwF&Rs>H&b1)GEzf(6;(3<}7cb0mHo_F+ zX5}79VEXGJF7TR1-zM2F&?W|gwu&G~idUAq z(x_Sd&F(03i?4<^b_=-EYa$4WB_>zH(V8V0!6;Iw0OtH?l9}_D>4u)uhxK*B%?kK5 z|EX0JLa2dRcw5|p(>yfDCuH+;{T-Wj7_O_T;E_Y?RkrTgqG|eH`fzX1^np@S^|-0p z@Q&7X8KCAxcQhT|`Z*or+q|UK>%&|BkA7&J7t{KN2gQi(ygqO}ZhCI+0YBHdvGmXo z__n^r2BDjAGfVU8=wIT_e!iHC$LQ;?aQGn(Kf>XEu)usW9amufT_5ZGHV)sx;b%Df z9EV?w7|)=Dp!mkb@3dXwqH9w3Ua;rWh0?+2rwDOnw=5xqyS7H|v$kf0%VWj@S>vW5 z$xVC=2W+g!--iQp6W{M;!H0187!FVSz!WXcFSuX|ee!gy=3m9(YfcT5(Jzj)jQ+0+ zBRB#tA$Dl}hR|4WL+i$LqtU1|YUbx~qmdnK9B526Zp{ugDp_M9ov53;#~KNL>Ww8) z903ZIL!K`m4O_-HF0GrfddA23-z~xM^-J%3=Q;Twq2=6z$U^DYG1IS{x@F>a)fkU;_0$xbblRgFp+K zFBeA8L39209F9<5wFp$`y1r^9gduJ}!V`C$yywmnCqqWVT@T#7;#K&&-+baODDi*! zKz{fA53a48FtYo^Y5UM*8J>h2`mraF6$J9cjKqV{=H1!S-Ee1d*qyZ#Cr{=`sLyY4 zJBqmxTy_~FEjQnEH1mcNCy_8fiX0`0b1@&6<$F7{!wz!bnHrF^&F>Mj@Xb#nJCf?c z&m_XA6C%HNj@yeO6;VZJeMk!q$;VGbI$$r?avGVa=0tGmY9}Sk+0zNlYS-+O+B$ToL;HrNJ=e55t38^P((F@|nwF`jHLFvk zcFEK;n$;~*56RTmGz&WM8l@hQsjq9+QO$l`vrlX5FzRFS#T%M+T(jSx>?dUEo0@e} zv)`oD9+~=8ETNJFsL=D_ zYm?8~v}#=`6-SK0Qa`DbiYuk!qSR%jR07cpOZ~o5Dxs80h*C+!EO>a@rZGHREaSir zw)_zb#y^=fu{`}4U6`crk?WH*pY)?*S80aLPBFQQwW^&-iuq>6af-9k(`ErG^nPH4 z@(0vPBnv3aPQ`5sLdYU1F%RKKhX6E#`%(Njh9Aep0;HLF zU_WsP#>MSzyJ}_H{gZ@Q@^h;>6PJ*SYqv~k086{Yi}WO)6s+1QtUW1gZ$5F5D&(>9 zBQ!Oy!=&`+-TEQ@w0=S-N{YQ{6BB}z3#Q_k&gl`r8|Gp6U4-!Ty*F?=_*#n*fkHZU z`XXe1cm`mJ95XIgMj2~o7t`CIt>l(6|}yLJkY zd;=QOwTsZ&!#t;JXFxpwT^B4Z#o4Os)@h--nvewvvCA<*8i?HD8kdBaeh5NLKY$Q3iryonNT*hJ zZ7b6u*8zT1Yt-CnK{>YV`j+{YfQfll&?UAmBp6;+(tATAu}O2@;6&nWSPy4_NF0Oj z6s(Ll^^ATh_Lg31sfpm!KBIs`-*E%7k%eSwY)b1-vmw`6Z4mtq*z<`bMA zmFq5pHqc9@+LnrjKzE2R?+DRe1F#;}&oY7&Q>9sh3y4BEtiRz2hgYg00oPk39@}Yc z-z~dBeg7KPm!!TQ24Y!atAw$1>iO@pbzw0YX%Txs8oB$cd;};6A_xC##7Nkn;y?kA zizn2CHpbSygd`)72_Z$+aHCm`<1Q1)WCDSM>F;X0S)>*~<%r4-YtK4_tN{NykfNPH zk|rNX4n!*XJONU{4{Em_zN^8%TLk8ALQGF6=<;D6!J1J6d{HJb87H!=9U;1Rgd?Ya z>F+WIH;8kTlBh`gz1{5sqBv0ibHLx&c~O3QgYvYNL3Xj`i&ciF&i7)SCup)yfXHx^ z{+3V%Y~h3ru zT&0wQTv`>dU3jMZDd+nhk0~T9bNO zXH+AwzAmIZ#}$)t?lKrIMg(BUcIPd33%|;$or1 zg6bMJO%duET3e37&%V@h4Ew8|)`AFiSVx0UkQ@s&1tge1kIAmaMbAi70XWeHqiz>1 z+I5vn#R@_%prS#oowo{Ghgj{rZD{eYdt-}4qARUOqDxTx=M^N1yS*wBJubVOg;8KD z6+rt+bN%4~F)FT#OfC~C3AJFRbikzNj2g#PBqN|)lJFp%%Q3%-ko9!*mEz#v768+L zvUyn8rfNq%QLzwE5O@+@fYo6FZx*QXibQvYL49US){R;?tW|b}a zcDO#wajn{pOG)re*h9p9+clB96VckPm8&kG+qg(rFP1Aib(@_v6sxr=qomH-D_xBL zKuC?a7`tP*<4y6u1biQFm{8T)0O(U!;ny`TgHYnfkb12?%!QK4DhYefXam9*AybXX z?J4PM7qaFT=$Y56raS9TDDVa-B?n5EbC>vV*QqKSh2?# zuJJKkApjg^|;o< z1_LYrxCfGnI4$!8k`1=m01AbB=V!RnaEV$0onogc)A!!em`eR=l6J}P1tja#nT?qC z=VIE!n^;Aa00H~(-El1MCb^QGcHjn;Z`W%7Kq}^0WzZxPdH56BEqGi1UGa89*Ye&O zi-U-M&MCk@#F#A6LbBZukb>Uzy%dJIL2Zjp!;Vr|)WXd}+f=Rm$|?T(xzO5V7dpo#@naL8ky8dXP7;voEgLw~%(b2`*jGd@U2HB7qlord|~> zQoledekDk2bDBT$7pGzVKE`L5-Sq@(?%|kr%d4YZc4PM{sl*{UsoigvTJb*3*JcOF zFO&(7de&pS(r>AirikZxzth-=n+R5Jb!sOtsRMsoUE0UEHi%nFO^<`R*0f=qa||KI z8~nt;Af=5nK{BcVe-Ir<#&(VK^6A_q3yXS(A51HRGec<1D=tzshXd8XD+kM@o%iSs z5(*ffLPmL3Kzt0LTj@RKW2m;inKF9+3qbt z(8^WI-fgjd2`T7y9oT&Vm((AMT^4GWx&VvQ`gH7s{sv(75q&}rD_4F9DLIko>3c_L z#~(v9xrQ{TU7S~uwgpcN3oPR;I(u0ZQgK}3_=I})q7(i;(6#y;mzF6R$o~Tk(-^Vr zxjy@FPJ@599uBKo6>qkkQTTZO{r8PqS#xo2@%n_ZoV}hiRo`vk~<=HzZ3p5KvXDH%8pCNA-l=}L2IWBn=WnIr3Zzr zvQw&6*UKA!jMW~Zd3%#i%+BZ;JV+GcsocBNxs*ht=Q$nrfAv$GG?*kerX1)JVL3&F zNqyP)jo>UgP6ED3;;iepX-b&Hfna&eRui!SBF?pKpreRSkLzXEW}>QFXS<&^u{bD0 zsZw)ng~zk=T6dGml-4&|2jOGHG#=Rn2Hl-H?LYr_56Fl0H~{)J{k2$U1dul(fINez z%m|hkCwmOkg+xSpbYhzp1=*N{Y@M-ITY$y}`G+=4$gC>msvUr-x#`!e;fgWuw-i&4 z5zPZu>4W3{?T6!O5MR$A923D)?|%y)PkzQ@JM{taOyVG8hJyES1+1VaI>T0rC=z9G z#fHnP@28de;<(dceCU2ku%-lKO=)6Hz(keCZdK>C1Z>bAq_z6L)^uHG+qe5&xJ~0* zxo&Sy2b%?7>xYpWi>_65jm>5|aXZwX-epj{XW;C?gJ4mHTU@Kyj!|?Op}KI}7#tjQ zPN_xwS)KRQcL!iz&RNb2bEdguP8i~_52|0r>Q|`xcQQwOJZ?5SZ{h*Idqis9AajBB z#VlZ6+*X>ik_Gy?AKAAlsCr9oM(Xui-P?pQe7!81-FEA()d;h$y9GRXaW-p@3l4~v zJ5CI`N8*SUi|bw5o3U>FDDF(Pt3Y+d{`7P_@+4*vKM+#p3Vxtf9s>v}4$KGmQNs_n z^{Ny+5B^mls3!GPSE>yUV!FChhf=9jI+Z3{vQlB3X#0`dHAiW$N~)Ug z0Q%6bwcIDRu4Tlg@<}0=679|{uPhVNFE7lG=h)Nq@=A_SeR-OHujJV2XSX;4W#VR5 zARN(O5MA=5 zoQ}X6JH`K=)&OiklfOy0Bcq3usw}YNZd>Yn_+FYN#<+nYCMLb(I>t7h)3%oc=Bn7HYrrrZE__)#gAwB@!k0GJ^mA9MB(kN%D7!10iOM~wq5Z%MZbN& zm)aC-ECT(1p(*E|s1R@C)BtAU zgj9T-;hGO_G7u+q`LB9rpJZBk#b{GdCG7+9Vro?GI6H_3AL6^ca~B+7jIbfNO`0CVAONt}=ZO{K zW&*dDWOR#jJ2Ek1Y!$b+0jf@l)FiwHro$jEfXDdepBJpHa(~Bh&9BL$cv9`&^J_h5 z|M;lFbhSkj4XbV}QUjvi!a2>Qwzp`LaRQ#;J9a8|CZ?PN%k{Xx zly^c8%kY%ZDIlhwZWf1tVx{Zid@pU0-d?WnM*s(6Hy$t z+2AT!G;;ca!oR}6OWqE9~Me3MlviWlKQ99{1IhN*UB4Y z{`>>dn)(NY0Th|&q6ws&Z+W;4Q|(bHHqki8)V%pz&NlKp&q$?p^Zuhyd`Xu!?qc2# z!&6#68)NhT8rxj@jN<0se?rdx-y;!%=J*WfCUMR&y!mH8e@vNwh9hx} z@ian#4h03s&W)o$Qlh{=r@RM60oGI^3JZRmney{lYls6TT1l~)KPG10{7Fe!12gV= z(v33XIN8*m`3<=%vtG%hqghTNYSK?Cll~?%i%qMO{>_L>(# zq8m98-;k8~FL-<8S27zvgMz3hs*Bk;4WI8Z&ey4OzW+;?bHHro-y*|M-Lp<+Z=VTu zq!b9)SuKaXF0_s@$rh7>E&hp)Y_Xk*9hx{z-^)LI;#rn}9`q4oRe_Ql}{d}my z14!!BkM2hO=#c$L@qTm!`jHm>ND+pr{W!$>krw?Rlim8i)!_l_z=qo!HJp|Wcd~{b zep`R|C%Q0??jqS5&4N4)lEJMFjIv|wz@}%tT(zxtn6&W2ej9u50??1keeaCi{2rDv zAZesNkju!Fd$b>sE9jXdddDTH`)*18Xb0CRm)3w^hWRnswV#%K`B~YQpKG~sqC9PU zg4c)S?(7M!xeHt(KMay4t~?ZZ*!N-mIMKqWU&r+ibT+<#is}a>bwO#Cq$*;uL~?1R zn}4PC+9|ZY@6kOI;m%|2hmWRGsm|09G!-Um*ixZf92>PGRa4SHc;G-5Kqh07VfE4v zH&ZV$wU8yw6b{Gb%7~~6#WuUZkNezYI3JcPO8aWGPzyzjzUS8yO||PeaakL zHXq}h?Bd50{P?Ok_F`HlO=_9w1ioGJmmN9fUlaRLIz?Ef2FzRZbt6wqe{$|R?s8wL zuIFdGjT7p6PIFyP*vRTkq>=}(A9!Xw@>(`q`hU%T6Jxohokx=LOS=EQ?aOxfmtJLu zk?8%cK!<(DE?;Km+kodA;x;f~`$kOcLqlW1dm*Q!aXf!R+~v$Eev6ZE%cRd+^qHs6 z8}wFq{Dg?+t-^FJKSj?s^7Py~xF8GoJG!)~>Vm&aw-6wap1Ayz zt*3-&u=`Uwx3@&gZ`9J05i^=Sz7pyuuITmlMb^n2w@i^DOF_i*s z7RAQHqKzcqowN%L1a208hw^qXtpIzUQq_D3RVzUH0^SZPhThiTAKPgrJ)BBN`@EQt zVVOYaZ9D^df#VJI0wfv+?$>+TA0{HdBE`=?QFQ>vBNac9B-}6CwwQ#Yx%}T#NO(I4 zvI%~H$KG{q*y32t>G;(bbJxPpSlf}ZCnF8iAGG$^w4Ei#lw(t?Ls+$I!c>$ zdS#ooUEatZ& zWa19CG?-8<)<^55;{Vx`ir<32(ojpP^oAK-admOUDduUWkq2>BDC`Gy<=z*GFnDxo z{zt;}g_*<5_{S@)eMq)x-T1J<|IHiU8+f5L9z5OtJ#C*V%ebPljPoM}X-wc(SqdX- zesc6XboPTPy11gUjPo-jmyFW5fWS6flca=WUL3AYde#eR)WhBHB26jL=o6c>|3zuDLg&rh2hqCS@a#5A4~Sr!6T(o1>_7e2G&}qnxHApZaCGcg zwI4GbS?hFfhsbN!wm29oj9mY=F72a(Dz`rUU7dBf>3)%6_+USzYzQi#EukQ zv~Nqb@!jJicMqxK`b$b3+_I|!#gFz#@#CZ(7C#QQx8zbsj9FzRRAD3)Om2(L&2((( zVBPInWKTMx>rSc3DVdz6$tm|Be7F@=x>ZJ z55|M{w08A?#dci#>Mfng1_k0|K<}>sF_#;7{*a(8KJEHA(y0egy4$W;%`^BV3Ey}Wd8#ctXBkanx8DX)^6+72^zmM_}_ZN$|!-V}y# zUBV!NPPWgGiO8R5x4ddPG;up9&AFITO&>BJFKC${P~S@R+_AK{nc?SHTX@g z3BsJ{ERC-Rv75IxttiRp@KTuhyZG^YzN7OxyUpfVc(DsWJ;LV)Gq~c7GJeMF^gH~L zkRx_R?yk!`+9l;mW0w?bJN1%XC|fPQd?Ky7k)QB>9*yC>HfhkGBIOXNhGHk-^9}uV z{mmGC(`Uc9G~shg`NIK)3%?o}({^{lHc>@I^I~!BOU(0G)aEH)q#b8HBNZ;XSftV% z%92VKUAz1+qrpE#V?yG2-B#{2>SB%~59>+t`NskmyvZ-wgbe|Qk>)@5ET@FoXOjP_ z)a2u4xpkECpF;70m^79;NlwKMk@dt8yfzf)#xinpelvP<;@a*nh3%!jsn|;?o^uj> za+00}m2Yy0<6nhrlPJlO<;6zKBO{l6rINH^O_Dd6Uz4IUF=%d6(*YCtYnnQj?Q$+l z!MS9jY|NL&Y+RzI_P6B<|1a_5yTn=#TE(D=nfb58?3R49Tk>YNM6+xDfxs1~vhB9= zI)nKy&|`2+O0M2?AJUJ*+Dr@kxCA$sp(+12o{oTBzLxvu`X5JZnSCkoP)b5cVRyLY zRw$I3j7)9!r}7SUM5d-FmHkGWjrA1bs!I&(eiz?aiHkgucLwK~`S0-P?FsxCJa^kL zKmwYeB*P%#2!7z>E%v>_zCaja5Bd4!mE{$aOn)!jX4@nWdvHOS{|G<+bNoQ_Y4e}p z$8Slr`W=Z|o;k3$AN~Wu004W)`nPrHf|u5(W7699OzfDBe|zNLqp>J0*q|1Du{rGf zM5+MTi2%E1q+BU7)@yanx&@=1Fqo#mvd2=dr#e&JsUxYj z%vqsWt2ySB5E~1VoI>=NQ4%?5gH0H8{zh@5P+08ZDr||rwNXzCwDO?y| zGrufWA>I3*T)MG1oi*>EOHuRPQ0nNyq3wHt$Egpkm8(NgE4yivSYwNH=qX8X03z#WH_~T_i?dqe`GwV?HHwE)u`K6*#W_S zZO65ZvTGEp)=;gU?u8MT*Pmbts=?}pyJ;J)UEgwy+B*HXzIem9ZddI(Y%`X3)+*(a zF<&m(RmV>E7NKQKayD(tSbIYGXR!S|Z{L`yLABJ`kBpmk-GK*VbTHi;?zh)H%K%b{ zRc+R`p);FB7rXbkT&Wmqwz1>b>pPW!bT4EzZq2RCF5Or$vWs`{#=DtaT)Fd+f!@Aq z@Ya50vx>@F+m$lZ3tg%gs{r}hdb)QZXHLyRf$Zem{M^bN1IX~q+{$7upEqWfOe1S7 zXU&zlsT=cI(^$S?E-&SCgTU!*>=KNJ2(PZ$V%;Lt+hdveR@Z3M;(7&LPM7M%8Rl} z$Yb~}pc|Wz4OZSz-QIvD22bId4RX3li!)OrAI1HKxwL>e%ND>5C`42rjD>}{C8Q+A z+|UyDO=4swv!>IZPVYD%<4mMce{l8cRRaTE43?b1?NWJ=_J?avTsvb74~T!emo6Fo zk=dE9JR(1Sj$|8@5<|2LytkRX^6l1ZTa9u7v$P7g0VWw^RCEE|^@z{m-I?6+5#iUv#}(u|+|K1(@Q`Q(E6ZBC`d!%X7Z(&j4&50cEW@ zz5dl4_8TZxsZxYBwOlHza*L5sfAup2--e7{_Gy~t#hObbcaKs;W*RM8!&|exNI|FA zI5X}OV2r~#=9JQu7WkRg9#5^D+8kX4(A>cga(0lng@c`(D2%&;)O z5>>;r%z(xjfgG42Co@dWu|E|g1}6WX;U*;nV4LUU5aKzfa0*w5U>MG}T`I4GNEs#@*!5wo zXhdQP&CsQ&90F4)$5c4SsIQLE;iw#H9i!uc9LQ;DRG5XZc~}l(WUpb2L=?Y-#b*$0 zC6n^eyM?@hI)Whj7rGz6FvrCie~yJ2wGyIu906!lM(B@6n5o~<85A^^;>Q zIh87BKm3r|q#U!k>~zj7%q*PT%Ny0Ay92w0EXdq>fme{zTq19wef{~8OT});SC{mZf3-L8^W2{x!Kv-$yvagV4g;J6IGYMo4`9i z-UMFy@n)`CcJolbky|f&srX}O4ZRTCTliz42-0TNCi(?J96A(m=!a=Lb{(|wAu8Xl@gZ!nC;O=n(I|e2SBKNi^GN{utD~13 zpo}A^F9mcF*FrBPv_ridW!2IY7_(NLFC|$rxV-ki!~}xypDLOtNn)&Cl7cckQAHe{ zBnIRa3n5YT0)|C8Z*LS!PxeF7LyK>6Zsa18?ENgeMoX^Ya@%{U;REn2Ih!qACI?s^ zO;<;gB{8Zl3Cfm3+lTXHlc+9<1_&EL?q3)m87u?nbO2VM%w~pZ@;O);v{@`t0{4Ki zw&M(-?r6YR->D85HvC^JI@lBFk1`w73}j~F13dWOKn?5-Jow*0wd@T%_}@G#TZ&9P z6R5D+OS{U&7&}lUcAa$)9{jHyHtSbtVE$KpV}HfKXqo^%1QWTTva43D&SL7)y=N<9 zV5d1)%Ioy2Ts3ay7N?iYdbh$qn-rZLL&qarC|oSmFzThyn<&AI7`>A7k4 zOyD!3|2#FAO6DwAp#^GenR-{$kNW@28h{iKeLzCDAE71&=Rr)Fc)*ILs36NI^T^BW zIkU2CVDP?E|EC7hj|pPh@O*ysl7rt4k(1DX2GqU}sGaIZ%HW?~BoH{cq-0ePtzuU* zEV19X0xNKWW61ue9&4sGD4uEcJ%#mZv}(fDiN(IsOj4&OUIeZv?5N)s!58a8sy9Fn zNG9n4NhLiX*x4)bK*W=taLDY*uJ$WrdAU@cNQcR>!RT>GPJ|>+C5KbHk`ts`q$R}{ zgF-`!FMHXik!^AU;ce4d3E3e!2(TX4>Q;b503s2SD6#V@;ks4nEyX)P3hQ-_ohu-+ zL4%n+>KZV{l|_MwDCX~G&YWDz=lnD+FuQl570+AkX^+lPiGHProNiKj0Dvz9KP*&uc_5B{EIwgR@;_~!uIAVBxM-qjV* zB7k}owqotS2tZq~_JaUr9LU%oNUfH`)KY;u{<#2kpIpgm4ppB(kPDa?2&o>;1+1Md zbQl{D6UZ@pP(%nH;}fV=(2JU{76;732a0Q*|@ zJT@vHFZK8PAr0Gee*!gJwop136km~Mq^vx=JKP^C2lMJ3`xx(B5fz17AW4T>5N*8| z+@uCNgz65F_v%$+kV2}2o)N{Dr|DjC`}UGOS?mDV>9w-AW;-p6CpVIP*k zvO)}F0hKfKK7c$>!ClC8&xa_?o~6Nx!#YC)f@-|McsnaLnnJNs2``OE0-+lJ6dx7K z6@s#|Mh6E6&w94Xb^OOJV&lyeQ@&O=t-3lpjatsABZ)lC z>krinb%xID-sd`G79OpD#yXLwegppA^+${pLFvadN?zxhlRo-&ZudO>gNJjwgKOn# zpUMllvQpx4xVD3WhR?xQVQK(%c3_IcIHYpc_}JHsXZw^<1~A|?AEFhaMi1{43${pY zEIM37^#H@X5GwKn6a}szhN!67D_R99VW;9c{#jl}D=1P<0F+o=O!wK8NKwouq)?>N z0ovhT%2Hgx0YLvr=^?4fmY*jxmh2yHz}U$H;1&|OOa|+C&xkM)AT?D~dZgGko1LGC z9-u))11c~wEW|aFf1vSmR=-cw-Esz?H@*=f&XW;Xh@&(ZrZ83VdRf?7Cq<8}>OCXM zn8C}>+iR3xnn(C&f2~+AAUC^WG%?Wti1F%KHf9ZBBL!@17m^M&6d{NOvE0`u4;ZyN za8RWh@#t^D-Yq*Wp@+;0WOP`W7eRMePCw<@FIsTc#f`hSY>O=c7_};^%N}@xKzO}W zlR)08eXcah-)FPDAwfUF;vLP2Z>QB{QaqH6Fk%Ud(l0;t`u5hGwrFzWC0ZM3JotVivKMN%ach;4WEwA3RBJBr^Zsa|yI0IS@CIO2uFVeejIH7m zgX$clv(|F4f;_1VO^`%EHxQhiZFZ@G8G*AcVq`1G>Oed#Z&U%W-|a#6J)_xZdqL=T zcZwC(BPxz2{E;mH9F%dtr?l8l^A|mOAMbfwtXE;)SYuqj$LDNo$8quI2~~&}He7Yj zEZZGWTkUVyB4?EfBaDRE!Pbn|i>Hlj#Txagbt~u~>mq`>F|>*#HR&+o!UVZ^#Re&N zxe92)G%~eySzovibk0xc-|;B@L_`}0p9g>S03uIDQlzD<%kS^tdH;Y>46j1E^h5(; zOMB3mx7|L6Nks@`CKWlT?yXel;#J*_Xp2#YDl>;|y7DBJTp^po{vdO8Y#&u@x^{zm zmak&j@AfMC08MvW$uhAI6NE!oI07-t0_7*~1^m2?mIowe`AM%Qq04R$aQFq+4i{!g znvTK;yE+gl@Q0YDm>-XFQ@7u_(hR&4k-W>ZEFhd!x0z8J%tjoLq;*5gwWw5OB@MX{ z6`j}@S=gH%hbP!zUGq`js9kRJD%DZ>1veaEqj4Mr5sk-11}&=RtlEmYIrFwfQOZts z7m4rGUSey8N)&eF?$eI`St#6!6FM1&96BGp5;IIs?${o2aX z^wI=P&4uyvYh@R60QTCzm)#n_Pr6nEzO3H=U_J||;u3EUFH8z7#x!DyWB?ecY#?R{ z)ddewR8AXJgxl^9(mjW<(KQve8zWJQ_)sPN2Wt^KnN}rPB#qyl!RFp;d{G0H?xDUC z-wWV^G!PRLXi_@NUZp}ajx#T&&f#^+3(|BmhZ8e?f0$uSu(Eo+NH>h_ij6|FgB7ql zyM#*xdBRh6urd6;FusNh3g5zD3pH*`Dt@y=AU_%jv?-QKK-^ry5`OdKks~f|@aw1& zTS6BjBN1i|5gRpQVZ|sF^OHA}PYp%opj?3R&m|cVvT0Ji9e7p}n|K2etGj%~Xn2Vw zX#TcwKt$wJ2@B$MW}34 ztl~x+OM$bIuZ1oNn|&|x4p%=OUPa&AY9wGpUgLtXQDcoIj$T3en)aBtA<=L`&;q9R z^-;V%$w=@I;@1a0Y^6&%O}3C5h0XFlHf)XeX#!E7vPr<|E?+jrMjPiATYxa81aGx9 zu7j4Uc66&j$fP;Nw=p4aQ?vqA&n&>g@*uByU`^E49Z47CTQO94a|# zbvI&JNv2DdEFJ%o?zD0B@TxDOJVj0Z{TR7nTNO^; zD>}I$X3sGZU>=_1`3azd=53&2W;ww1z2^7O7vtE9E9PHnYQ z+v?I*yI5*ct8{ByhqTp0?036XIjpVlrz7mCL#rIswvK75#~@EivyW@*I*(5OT+{BX zof4&tqpcd6bxK=(N3%|At7kRqjJDdVS+8lU?`qcT+UhyYdP7@%PqW_CR{JPV zMzh}1R{N>l_v!fq&6?C!2k7}c^<!dqP_vWxX$_&rG=$)=gy4*3jcBXaHEUE` zofRc#spOnyjZsPH@wh1Yp)C1j&AOniej>_zLS^PP>mrqb(OeQ`z9h>mXx4;gFH-79 zGIdF_E|Wv+WzD)m51(q*ReCTr>tlMzYZeT3O0%-E*b3reJ~NGIZ39|=;o9a4*EX-* zwN3du@Mn=c3Q{m<k$LKl$&-)D~<*6oP*3F20aoI{+W|68^CWXOPq>Fi*6H zn*H{iMI=o{_}_b(ej)_2UO&B9O)PX%Qh2Q`W5Z?g8jsG~%ji|GjNV4ehoqbMar{8% zk>xA+LB4NKNZ+^Ul7Yr!6qwAP zsElVPy>s@n;4$1wEV(DWALBv1&{eI*J#((dwH_XK&B5V(-fjxWy(_Fn@)1fdgk>A# zJ5sHURy4b!O7Yg|ek!dZ50-4bCWtdt)?0(7L|XU_;%^FU)!JF*3E$$N5y(5pjjY?qmxlgx1jpZKF-N+@_Gufoq6EB3)Oz%4B?eILtqYdy9JXI7)Fa&#WI;7Mn>*x{n$o%RE(o4 zMaSI}tUw6!$oDLZtaz+-YYx}&FUeKk9kuGs6T;tZD;N7oDEo`*Vkg!tyf9D{6Lp23 zk6z)8ohH1*>Xb1>K5V`^S@=(6L2ZHsCAIZ7j|HJ8@P8j%FRnfrW|HWAiqu9}K049^U2``Dzq%y$j4NbV#FKAx4 zSst(^#_}8bWC@>2NA!|DwpcoR$4CI7;h`dr$r(uH$hCg0YSWyv?J2_s@`Q~7rHP`TiJra5dp2{H-Pf{7 z;5!R;(Hp($^RO4Gz+V<|&qIj!TZ{`B%IUW~iC$6+IjN^v$OTuUuofpMB9W$@$-^Y_ zd2uzdI!N&14ldYo>1`draEV5{UBFl+GC+1mL==D_-xxmNL6LD7>^J`b$!GFaB9MG& zEaI;m8h4e!Hdr_`a<|^1@txu0i*yn3uQVC$xl2EyA7&HPp$cB#9|(0oVGiVP7Q}hC zhy$IzcSrk5oAyk{NH)*n7#RhlI*BmB7}}48si9C97)41|6Zc{Wunf3h+qLy}9!;r_ zhc%(~<$Q!x@Kj+6ILQHitxP9kzJ6Qit>oYxHT+ z=ema)#Pk(}rQgZ~w+MBP${aSGr~|fIu93pKdr5IaO}Cl zv8PQ2K5<4GqEHimB2?<&2y%W81PS>Aq2SaEN9-yKPB9$8KO{PMOoVufr}kosKjKRG z)FQMv>_ZFk?DD^ONO4R{5Mp%eG=k+)*>?s)-2c~G6@Jlbrw5AJh7V~B$c7J{n%zaG z7a+iP<1_v|ibojVh-<5dm6R?@IfB}KEO?aC4^hEmsM^QG<9Mcl4<}GcIi?1DjQQdW zODRR?B5;AngJ%IyVj`eN$>9o_oS^na(xxbG>w)W#)t8TWlfhCRBk z`v@?S`8H0xpOXY%Ulz|K$_J?RdYg(YBbi@=-`V8)ui^SMJ=e|ad6zC4sYS0b&3 zGS=Lt2cet{Lit7`CqK?$ z^a(-T>4Ey~&k5AAmj|_vZhZNm7|kN1w;H-gE{=Zw&`rENbT7RWblJ9{W$B*e(yVz668DpDI3RaJEcI)AwmH;6E_8Je;TK#{}bRDA| zKc};W`X6chnWRuz$vTg^`0$T3D1ICM-+GD)fE3$==;DB}Lj>ZS`;It=#4kFybl#KL zv6nLxrof`}QQ_-`L>%t#hD02)W1zsjBo#4ZGzz&#M9}BUC5T8J0+ILuJM9I{QA{1f zk8$~md7o*y9)mQ7LCc4;x(wZz)Gz9B{WQgAJEZr*4x~%Zu=s^ZRaHIBRMi`#yf^{4 zvpb9^$8c==-dT-D)K!;!8{!gM%9kI$1{0Z(i}*V&~yr&F%%dcBMt{dL+lOTB-q2l4ePT8WogRq#s_bI7&6y1&&-&SBfM#@zcJF)PB zfbHm07O4ASFW;E6LxA@svhU|A5^3Mk2Xpzth^4oozKI{JBKV_%<4D33oksxA6-7)t zn?^JuY0(s(@a?WW?>-lFMeow3zoDPh-;9Xv{#R9|#bR@!?v0|rx-2UDIbuRyCeow0 z6p0q5)urg>K+G`sIfb(Q%NnhTm{$Ke#0~%sY{h_LxQ8$XCGs|o2WoXkgpThhC#M*C zTFA@nB({gECBhz9GIBFa>toB_A~kKavl}`%^gFXLaTi==*QHl`aI3LfoXD76$C$z(meCpXr8q-wVtMl(Fb*8ZhEFkFv>cUT`4^p5h1Oz-oWhW^Q3+~;a6?*XVeh-Huik8swHKi9<;$AO0 zv8;$2&C*zDrnQbgycT~r702#2v6nH_$1I`;nlbDgfsQ)Rmy3HkDj)Z9L8sGZ6+h5k zGSk!Ggr3-`xLj^-`q(xin8JN=TFeP4*l#f#fh`tbTlmbPcZIEWnmU%!<%t30Lqy@= z#X9ZEd_F};C{g@nP!BxEGbE03rxNA{4r9G_8!#NYG!|b(IRGoyV%@PfW61rxH2lWk z*r#JC6LiJkzxGAt zJacIiBZLOOnE(n6$%rz@jj=!y4S=s5W>s7R>^Q~vv9S9=a?W;yNLfs2;V*7nGfjy~ zaKd*gJ&8WJ54aC#pY1)*Qi0jV&hUAu1zT?;5kgYhO$f&llE9WcoJk{vlkPxNkVjD>{w2+qLy1Te3f=1Eb^pIYB>kKRgXÝ!q^=2VLVfI9adE&985xV}(}3)N8oDrG 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%0AZmo^B5OIr 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